ConfigurationSetReference
- class aws_cdk.aws_smsvoice.ConfigurationSetReference(*, configuration_set_arn, configuration_set_name)
Bases:
object
A reference to a ConfigurationSet resource.
- Parameters:
configuration_set_arn (
str
) – The ARN of the ConfigurationSet resource.configuration_set_name (
str
) – The ConfigurationSetName of the ConfigurationSet 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 configuration_set_reference = smsvoice.ConfigurationSetReference( configuration_set_arn="configurationSetArn", configuration_set_name="configurationSetName" )
Attributes
- configuration_set_arn
The ARN of the ConfigurationSet resource.
- configuration_set_name
The ConfigurationSetName of the ConfigurationSet resource.