interface CfnNotificationChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FMS.Mixins.CfnNotificationChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfms/mixins#CfnNotificationChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.fms.mixins.CfnNotificationChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_fms.mixins.CfnNotificationChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_fms » mixins » CfnNotificationChannelMixinProps |
Properties for CfnNotificationChannelPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fms_mixins } from '@aws-cdk/mixins-preview/aws-fms';
const cfnNotificationChannelMixinProps: fms_mixins.CfnNotificationChannelMixinProps = {
snsRoleName: 'snsRoleName',
snsTopicArn: 'snsTopicArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| sns | string | The Amazon Resource Name (ARN) of the IAM role that allows Amazon to record AWS Firewall Manager activity. |
| sns | string | The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager . |
snsRoleName?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role that allows Amazon to record AWS Firewall Manager activity.
snsTopicArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager .

.NET
Go
Java
Python
TypeScript