OptOutListReference

class aws_cdk.interfaces.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.interfaces import aws_smsvoice as interfaces_aws_smsvoice

opt_out_list_reference = interfaces_aws_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.