PoolReference
- class aws_cdk.interfaces.aws_smsvoice.PoolReference(*, pool_arn, pool_id)
Bases:
objectA reference to a Pool resource.
- Parameters:
pool_arn (
str) – The ARN of the Pool resource.pool_id (
str) – The PoolId of the Pool 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_smsvoice pool_reference = interfaces_smsvoice.PoolReference( pool_arn="poolArn", pool_id="poolId" )
Attributes
- pool_arn
The ARN of the Pool resource.
- pool_id
The PoolId of the Pool resource.