interface CfnNotificationChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FMS.CfnNotificationChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfms#CfnNotificationChannelMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.fms.CfnNotificationChannelMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_fms.CfnNotificationChannelMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fms » 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 { aws_fms as fms } from '@aws-cdk/cfn-property-mixins';
const cfnNotificationChannelMixinProps: fms.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