interface OptOutListReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SMSVOICE.OptOutListReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssmsvoice#OptOutListReference |
Java | software.amazon.awscdk.interfaces.smsvoice.OptOutListReference |
Python | aws_cdk.interfaces.aws_smsvoice.OptOutListReference |
TypeScript | aws-cdk-lib » interfaces » aws_smsvoice » OptOutListReference |
A reference to a OptOutList 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 interfaces_aws_smsvoice } from 'aws-cdk-lib/interfaces';
const optOutListReference: interfaces_aws_smsvoice.OptOutListReference = {
optOutListArn: 'optOutListArn',
optOutListName: 'optOutListName',
};
Properties
| Name | Type | Description |
|---|---|---|
| opt | string | The ARN of the OptOutList resource. |
| opt | string | The OptOutListName of the OptOutList resource. |
optOutListArn
Type:
string
The ARN of the OptOutList resource.
optOutListName
Type:
string
The OptOutListName of the OptOutList resource.

.NET
Go
Java
Python
TypeScript