OptOutListReference
- class aws_cdk.aws_smsvoice.OptOutListReference(*, opt_out_list_arn, opt_out_list_name)
Bases:
object
A reference to a OptOutList resource.
- Parameters:
opt_out_list_arn (
str
) – The ARN of the OptOutList resource.opt_out_list_name (
str
) – The OptOutListName of the OptOutList resource.
- 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 opt_out_list_reference = smsvoice.OptOutListReference( opt_out_list_arn="optOutListArn", opt_out_list_name="optOutListName" )
Attributes
- opt_out_list_arn
The ARN of the OptOutList resource.
- opt_out_list_name
The OptOutListName of the OptOutList resource.