interface PoolReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_smsvoice.PoolReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#PoolReference |
Java | software.amazon.awscdk.services.smsvoice.PoolReference |
Python | aws_cdk.aws_smsvoice.PoolReference |
TypeScript | aws-cdk-lib » aws_smsvoice » PoolReference |
A reference to a Pool resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_smsvoice as smsvoice } from 'aws-cdk-lib';
const poolReference: smsvoice.PoolReference = {
poolArn: 'poolArn',
poolId: 'poolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The ARN of the Pool resource. |
| pool | string | The PoolId of the Pool resource. |
poolArn
Type:
string
The ARN of the Pool resource.
poolId
Type:
string
The PoolId of the Pool resource.

.NET
Go
Java
Python
TypeScript