We recommend new projects start with resources from the AWS provider.
aws-native.devopsguru.NotificationChannel
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
This resource schema represents the NotificationChannel resource in the Amazon DevOps Guru.
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myNotificationChannel = new AwsNative.DevOpsGuru.NotificationChannel("myNotificationChannel", new()
{
Config = new AwsNative.DevOpsGuru.Inputs.NotificationChannelConfigArgs
{
Filters = new AwsNative.DevOpsGuru.Inputs.NotificationChannelNotificationFilterConfigArgs
{
MessageTypes = new[]
{
AwsNative.DevOpsGuru.NotificationChannelNotificationMessageType.NewInsight,
AwsNative.DevOpsGuru.NotificationChannelNotificationMessageType.ClosedInsight,
AwsNative.DevOpsGuru.NotificationChannelNotificationMessageType.SeverityUpgraded,
},
Severities = new[]
{
AwsNative.DevOpsGuru.NotificationChannelInsightSeverity.Medium,
AwsNative.DevOpsGuru.NotificationChannelInsightSeverity.High,
},
},
Sns = new AwsNative.DevOpsGuru.Inputs.NotificationChannelSnsChannelConfigArgs
{
TopicArn = "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/devopsguru"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := devopsguru.NewNotificationChannel(ctx, "myNotificationChannel", &devopsguru.NotificationChannelArgs{
Config: &devopsguru.NotificationChannelConfigArgs{
Filters: &devopsguru.NotificationChannelNotificationFilterConfigArgs{
MessageTypes: devopsguru.NotificationChannelNotificationMessageTypeArray{
devopsguru.NotificationChannelNotificationMessageTypeNewInsight,
devopsguru.NotificationChannelNotificationMessageTypeClosedInsight,
devopsguru.NotificationChannelNotificationMessageTypeSeverityUpgraded,
},
Severities: devopsguru.NotificationChannelInsightSeverityArray{
devopsguru.NotificationChannelInsightSeverityMedium,
devopsguru.NotificationChannelInsightSeverityHigh,
},
},
Sns: &devopsguru.NotificationChannelSnsChannelConfigArgs{
TopicArn: pulumi.String("arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
my_notification_channel = aws_native.devopsguru.NotificationChannel("myNotificationChannel", config={
"filters": {
"message_types": [
aws_native.devopsguru.NotificationChannelNotificationMessageType.NEW_INSIGHT,
aws_native.devopsguru.NotificationChannelNotificationMessageType.CLOSED_INSIGHT,
aws_native.devopsguru.NotificationChannelNotificationMessageType.SEVERITY_UPGRADED,
],
"severities": [
aws_native.devopsguru.NotificationChannelInsightSeverity.MEDIUM,
aws_native.devopsguru.NotificationChannelInsightSeverity.HIGH,
],
},
"sns": {
"topic_arn": "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
})
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myNotificationChannel = new aws_native.devopsguru.NotificationChannel("myNotificationChannel", {config: {
filters: {
messageTypes: [
aws_native.devopsguru.NotificationChannelNotificationMessageType.NewInsight,
aws_native.devopsguru.NotificationChannelNotificationMessageType.ClosedInsight,
aws_native.devopsguru.NotificationChannelNotificationMessageType.SeverityUpgraded,
],
severities: [
aws_native.devopsguru.NotificationChannelInsightSeverity.Medium,
aws_native.devopsguru.NotificationChannelInsightSeverity.High,
],
},
sns: {
topicArn: "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
}});
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myNotificationChannel1 = new AwsNative.DevOpsGuru.NotificationChannel("myNotificationChannel1", new()
{
Config = new AwsNative.DevOpsGuru.Inputs.NotificationChannelConfigArgs
{
Sns = new AwsNative.DevOpsGuru.Inputs.NotificationChannelSnsChannelConfigArgs
{
TopicArn = "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
},
});
var myNotificationChannel2 = new AwsNative.DevOpsGuru.NotificationChannel("myNotificationChannel2", new()
{
Config = new AwsNative.DevOpsGuru.Inputs.NotificationChannelConfigArgs
{
Sns = new AwsNative.DevOpsGuru.Inputs.NotificationChannelSnsChannelConfigArgs
{
TopicArn = "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/devopsguru"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := devopsguru.NewNotificationChannel(ctx, "myNotificationChannel1", &devopsguru.NotificationChannelArgs{
Config: &devopsguru.NotificationChannelConfigArgs{
Sns: &devopsguru.NotificationChannelSnsChannelConfigArgs{
TopicArn: pulumi.String("arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel"),
},
},
})
if err != nil {
return err
}
_, err = devopsguru.NewNotificationChannel(ctx, "myNotificationChannel2", &devopsguru.NotificationChannelArgs{
Config: &devopsguru.NotificationChannelConfigArgs{
Sns: &devopsguru.NotificationChannelSnsChannelConfigArgs{
TopicArn: pulumi.String("arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
my_notification_channel1 = aws_native.devopsguru.NotificationChannel("myNotificationChannel1", config={
"sns": {
"topic_arn": "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
})
my_notification_channel2 = aws_native.devopsguru.NotificationChannel("myNotificationChannel2", config={
"sns": {
"topic_arn": "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2",
},
})
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myNotificationChannel1 = new aws_native.devopsguru.NotificationChannel("myNotificationChannel1", {config: {
sns: {
topicArn: "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
}});
const myNotificationChannel2 = new aws_native.devopsguru.NotificationChannel("myNotificationChannel2", {config: {
sns: {
topicArn: "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2",
},
}});
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myNotificationChannel1 = new AwsNative.DevOpsGuru.NotificationChannel("myNotificationChannel1", new()
{
Config = new AwsNative.DevOpsGuru.Inputs.NotificationChannelConfigArgs
{
Sns = new AwsNative.DevOpsGuru.Inputs.NotificationChannelSnsChannelConfigArgs
{
TopicArn = "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
},
});
var myNotificationChannel2 = new AwsNative.DevOpsGuru.NotificationChannel("myNotificationChannel2", new()
{
Config = new AwsNative.DevOpsGuru.Inputs.NotificationChannelConfigArgs
{
Sns = new AwsNative.DevOpsGuru.Inputs.NotificationChannelSnsChannelConfigArgs
{
TopicArn = "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/devopsguru"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := devopsguru.NewNotificationChannel(ctx, "myNotificationChannel1", &devopsguru.NotificationChannelArgs{
Config: &devopsguru.NotificationChannelConfigArgs{
Sns: &devopsguru.NotificationChannelSnsChannelConfigArgs{
TopicArn: pulumi.String("arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel"),
},
},
})
if err != nil {
return err
}
_, err = devopsguru.NewNotificationChannel(ctx, "myNotificationChannel2", &devopsguru.NotificationChannelArgs{
Config: &devopsguru.NotificationChannelConfigArgs{
Sns: &devopsguru.NotificationChannelSnsChannelConfigArgs{
TopicArn: pulumi.String("arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
my_notification_channel1 = aws_native.devopsguru.NotificationChannel("myNotificationChannel1", config={
"sns": {
"topic_arn": "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
})
my_notification_channel2 = aws_native.devopsguru.NotificationChannel("myNotificationChannel2", config={
"sns": {
"topic_arn": "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2",
},
})
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myNotificationChannel1 = new aws_native.devopsguru.NotificationChannel("myNotificationChannel1", {config: {
sns: {
topicArn: "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel",
},
}});
const myNotificationChannel2 = new aws_native.devopsguru.NotificationChannel("myNotificationChannel2", {config: {
sns: {
topicArn: "arn:aws:sns:us-east-1:123456789012:DefaultNotificationChannel2",
},
}});
Coming soon!
Create NotificationChannel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NotificationChannel(name: string, args: NotificationChannelArgs, opts?: CustomResourceOptions);
@overload
def NotificationChannel(resource_name: str,
args: NotificationChannelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NotificationChannel(resource_name: str,
opts: Optional[ResourceOptions] = None,
config: Optional[NotificationChannelConfigArgs] = None)
func NewNotificationChannel(ctx *Context, name string, args NotificationChannelArgs, opts ...ResourceOption) (*NotificationChannel, error)
public NotificationChannel(string name, NotificationChannelArgs args, CustomResourceOptions? opts = null)
public NotificationChannel(String name, NotificationChannelArgs args)
public NotificationChannel(String name, NotificationChannelArgs args, CustomResourceOptions options)
type: aws-native:devopsguru:NotificationChannel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NotificationChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NotificationChannelArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NotificationChannelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NotificationChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NotificationChannelArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
NotificationChannel Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The NotificationChannel resource accepts the following input properties:
- Config
Pulumi.
Aws Native. Dev Ops Guru. Inputs. Notification Channel Config - A
NotificationChannelConfig
object that contains information about configured notification channels.
- Config
Notification
Channel Config Args - A
NotificationChannelConfig
object that contains information about configured notification channels.
- config
Notification
Channel Config - A
NotificationChannelConfig
object that contains information about configured notification channels.
- config
Notification
Channel Config - A
NotificationChannelConfig
object that contains information about configured notification channels.
- config
Notification
Channel Config Args - A
NotificationChannelConfig
object that contains information about configured notification channels.
- config Property Map
- A
NotificationChannelConfig
object that contains information about configured notification channels.
Outputs
All input properties are implicitly available as output properties. Additionally, the NotificationChannel resource produces the following output properties:
Supporting Types
NotificationChannelConfig, NotificationChannelConfigArgs
- Filters
Pulumi.
Aws Native. Dev Ops Guru. Inputs. Notification Channel Notification Filter Config - The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. If you do not provide filter configurations, the default configurations are to receive notifications for all message types of
High
orMedium
severity. - Sns
Pulumi.
Aws Native. Dev Ops Guru. Inputs. Notification Channel Sns Channel Config Information about a notification channel configured in DevOps Guru to send notifications when insights are created.
If you use an Amazon SNS topic in another account, you must attach a policy to it that grants DevOps Guru permission to send it notifications. DevOps Guru adds the required policy on your behalf to send notifications using Amazon SNS in your account. DevOps Guru only supports standard SNS topics. For more information, see Permissions for Amazon SNS topics .
If you use an Amazon SNS topic that is encrypted by an AWS Key Management Service customer-managed key (CMK), then you must add permissions to the CMK. For more information, see Permissions for AWS KMS–encrypted Amazon SNS topics .
- Filters
Notification
Channel Notification Filter Config - The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. If you do not provide filter configurations, the default configurations are to receive notifications for all message types of
High
orMedium
severity. - Sns
Notification
Channel Sns Channel Config Information about a notification channel configured in DevOps Guru to send notifications when insights are created.
If you use an Amazon SNS topic in another account, you must attach a policy to it that grants DevOps Guru permission to send it notifications. DevOps Guru adds the required policy on your behalf to send notifications using Amazon SNS in your account. DevOps Guru only supports standard SNS topics. For more information, see Permissions for Amazon SNS topics .
If you use an Amazon SNS topic that is encrypted by an AWS Key Management Service customer-managed key (CMK), then you must add permissions to the CMK. For more information, see Permissions for AWS KMS–encrypted Amazon SNS topics .
- filters
Notification
Channel Notification Filter Config - The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. If you do not provide filter configurations, the default configurations are to receive notifications for all message types of
High
orMedium
severity. - sns
Notification
Channel Sns Channel Config Information about a notification channel configured in DevOps Guru to send notifications when insights are created.
If you use an Amazon SNS topic in another account, you must attach a policy to it that grants DevOps Guru permission to send it notifications. DevOps Guru adds the required policy on your behalf to send notifications using Amazon SNS in your account. DevOps Guru only supports standard SNS topics. For more information, see Permissions for Amazon SNS topics .
If you use an Amazon SNS topic that is encrypted by an AWS Key Management Service customer-managed key (CMK), then you must add permissions to the CMK. For more information, see Permissions for AWS KMS–encrypted Amazon SNS topics .
- filters
Notification
Channel Notification Filter Config - The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. If you do not provide filter configurations, the default configurations are to receive notifications for all message types of
High
orMedium
severity. - sns
Notification
Channel Sns Channel Config Information about a notification channel configured in DevOps Guru to send notifications when insights are created.
If you use an Amazon SNS topic in another account, you must attach a policy to it that grants DevOps Guru permission to send it notifications. DevOps Guru adds the required policy on your behalf to send notifications using Amazon SNS in your account. DevOps Guru only supports standard SNS topics. For more information, see Permissions for Amazon SNS topics .
If you use an Amazon SNS topic that is encrypted by an AWS Key Management Service customer-managed key (CMK), then you must add permissions to the CMK. For more information, see Permissions for AWS KMS–encrypted Amazon SNS topics .
- filters
Notification
Channel Notification Filter Config - The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. If you do not provide filter configurations, the default configurations are to receive notifications for all message types of
High
orMedium
severity. - sns
Notification
Channel Sns Channel Config Information about a notification channel configured in DevOps Guru to send notifications when insights are created.
If you use an Amazon SNS topic in another account, you must attach a policy to it that grants DevOps Guru permission to send it notifications. DevOps Guru adds the required policy on your behalf to send notifications using Amazon SNS in your account. DevOps Guru only supports standard SNS topics. For more information, see Permissions for Amazon SNS topics .
If you use an Amazon SNS topic that is encrypted by an AWS Key Management Service customer-managed key (CMK), then you must add permissions to the CMK. For more information, see Permissions for AWS KMS–encrypted Amazon SNS topics .
- filters Property Map
- The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. If you do not provide filter configurations, the default configurations are to receive notifications for all message types of
High
orMedium
severity. - sns Property Map
Information about a notification channel configured in DevOps Guru to send notifications when insights are created.
If you use an Amazon SNS topic in another account, you must attach a policy to it that grants DevOps Guru permission to send it notifications. DevOps Guru adds the required policy on your behalf to send notifications using Amazon SNS in your account. DevOps Guru only supports standard SNS topics. For more information, see Permissions for Amazon SNS topics .
If you use an Amazon SNS topic that is encrypted by an AWS Key Management Service customer-managed key (CMK), then you must add permissions to the CMK. For more information, see Permissions for AWS KMS–encrypted Amazon SNS topics .
NotificationChannelInsightSeverity, NotificationChannelInsightSeverityArgs
- Low
- LOW
- Medium
- MEDIUM
- High
- HIGH
- Notification
Channel Insight Severity Low - LOW
- Notification
Channel Insight Severity Medium - MEDIUM
- Notification
Channel Insight Severity High - HIGH
- Low
- LOW
- Medium
- MEDIUM
- High
- HIGH
- Low
- LOW
- Medium
- MEDIUM
- High
- HIGH
- LOW
- LOW
- MEDIUM
- MEDIUM
- HIGH
- HIGH
- "LOW"
- LOW
- "MEDIUM"
- MEDIUM
- "HIGH"
- HIGH
NotificationChannelNotificationFilterConfig, NotificationChannelNotificationFilterConfigArgs
- Message
Types List<Pulumi.Aws Native. Dev Ops Guru. Notification Channel Notification Message Type> - The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.
- Severities
List<Pulumi.
Aws Native. Dev Ops Guru. Notification Channel Insight Severity> - The severity levels that you want to receive notifications for. For example, you can choose to receive notifications only for insights with
HIGH
andMEDIUM
severity levels. For more information, see Understanding insight severities .
- Message
Types []NotificationChannel Notification Message Type - The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.
- Severities
[]Notification
Channel Insight Severity - The severity levels that you want to receive notifications for. For example, you can choose to receive notifications only for insights with
HIGH
andMEDIUM
severity levels. For more information, see Understanding insight severities .
- message
Types List<NotificationChannel Notification Message Type> - The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.
- severities
List<Notification
Channel Insight Severity> - The severity levels that you want to receive notifications for. For example, you can choose to receive notifications only for insights with
HIGH
andMEDIUM
severity levels. For more information, see Understanding insight severities .
- message
Types NotificationChannel Notification Message Type[] - The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.
- severities
Notification
Channel Insight Severity[] - The severity levels that you want to receive notifications for. For example, you can choose to receive notifications only for insights with
HIGH
andMEDIUM
severity levels. For more information, see Understanding insight severities .
- message_
types Sequence[NotificationChannel Notification Message Type] - The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.
- severities
Sequence[Notification
Channel Insight Severity] - The severity levels that you want to receive notifications for. For example, you can choose to receive notifications only for insights with
HIGH
andMEDIUM
severity levels. For more information, see Understanding insight severities .
- message
Types List<"NEW_INSIGHT" | "CLOSED_INSIGHT" | "NEW_ASSOCIATION" | "SEVERITY_UPGRADED" | "NEW_RECOMMENDATION"> - The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.
- severities List<"LOW" | "MEDIUM" | "HIGH">
- The severity levels that you want to receive notifications for. For example, you can choose to receive notifications only for insights with
HIGH
andMEDIUM
severity levels. For more information, see Understanding insight severities .
NotificationChannelNotificationMessageType, NotificationChannelNotificationMessageTypeArgs
- New
Insight - NEW_INSIGHT
- Closed
Insight - CLOSED_INSIGHT
- New
Association - NEW_ASSOCIATION
- Severity
Upgraded - SEVERITY_UPGRADED
- New
Recommendation - NEW_RECOMMENDATION
- Notification
Channel Notification Message Type New Insight - NEW_INSIGHT
- Notification
Channel Notification Message Type Closed Insight - CLOSED_INSIGHT
- Notification
Channel Notification Message Type New Association - NEW_ASSOCIATION
- Notification
Channel Notification Message Type Severity Upgraded - SEVERITY_UPGRADED
- Notification
Channel Notification Message Type New Recommendation - NEW_RECOMMENDATION
- New
Insight - NEW_INSIGHT
- Closed
Insight - CLOSED_INSIGHT
- New
Association - NEW_ASSOCIATION
- Severity
Upgraded - SEVERITY_UPGRADED
- New
Recommendation - NEW_RECOMMENDATION
- New
Insight - NEW_INSIGHT
- Closed
Insight - CLOSED_INSIGHT
- New
Association - NEW_ASSOCIATION
- Severity
Upgraded - SEVERITY_UPGRADED
- New
Recommendation - NEW_RECOMMENDATION
- NEW_INSIGHT
- NEW_INSIGHT
- CLOSED_INSIGHT
- CLOSED_INSIGHT
- NEW_ASSOCIATION
- NEW_ASSOCIATION
- SEVERITY_UPGRADED
- SEVERITY_UPGRADED
- NEW_RECOMMENDATION
- NEW_RECOMMENDATION
- "NEW_INSIGHT"
- NEW_INSIGHT
- "CLOSED_INSIGHT"
- CLOSED_INSIGHT
- "NEW_ASSOCIATION"
- NEW_ASSOCIATION
- "SEVERITY_UPGRADED"
- SEVERITY_UPGRADED
- "NEW_RECOMMENDATION"
- NEW_RECOMMENDATION
NotificationChannelSnsChannelConfig, NotificationChannelSnsChannelConfigArgs
- Topic
Arn string - The Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
- Topic
Arn string - The Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
- topic
Arn String - The Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
- topic
Arn string - The Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
- topic_
arn str - The Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
- topic
Arn String - The Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.