CfnOptOutListProps

class aws_cdk.aws_smsvoice.CfnOptOutListProps(*, opt_out_list_name=None, tags=None)

Bases: object

Properties for defining a CfnOptOutList.

Parameters:
  • opt_out_list_name (Optional[str]) – The name of the OptOutList.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of tags (key and value pairs) to associate with the new OptOutList.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_smsvoice as smsvoice

cfn_opt_out_list_props = smsvoice.CfnOptOutListProps(
    opt_out_list_name="optOutListName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

opt_out_list_name

The name of the OptOutList.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html#cfn-smsvoice-optoutlist-optoutlistname

tags

An array of tags (key and value pairs) to associate with the new OptOutList.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html#cfn-smsvoice-optoutlist-tags