interface CfnOptOutListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SMSVOICE.CfnOptOutListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssmsvoice#CfnOptOutListMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.smsvoice.CfnOptOutListMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_smsvoice.CfnOptOutListMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_smsvoice » CfnOptOutListMixinProps |
Properties for CfnOptOutListPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_smsvoice as smsvoice } from '@aws-cdk/cfn-property-mixins';
const cfnOptOutListMixinProps: smsvoice.CfnOptOutListMixinProps = {
optOutListName: 'optOutListName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| opt | string | The name of the OptOutList. |
| tags? | Cfn[] | An array of tags (key and value pairs) to associate with the new OptOutList. |
optOutListName?
Type:
string
(optional)
The name of the OptOutList.
tags?
Type:
Cfn[]
(optional)
An array of tags (key and value pairs) to associate with the new OptOutList.

.NET
Go
Java
Python
TypeScript