interface CfnOptOutListProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SMSVOICE.CfnOptOutListProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnOptOutListProps |
Java | software.amazon.awscdk.services.smsvoice.CfnOptOutListProps |
Python | aws_cdk.aws_smsvoice.CfnOptOutListProps |
TypeScript | aws-cdk-lib » aws_smsvoice » CfnOptOutListProps |
Properties for defining a CfnOptOutList.
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-lib';
const cfnOptOutListProps: smsvoice.CfnOptOutListProps = {
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