interface ProtectConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SMSVOICE.ProtectConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssmsvoice#ProtectConfigurationReference |
Java | software.amazon.awscdk.interfaces.smsvoice.ProtectConfigurationReference |
Python | aws_cdk.interfaces.aws_smsvoice.ProtectConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_smsvoice » ProtectConfigurationReference |
A reference to a ProtectConfiguration 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_smsvoice } from 'aws-cdk-lib/interfaces';
const protectConfigurationReference: interfaces_smsvoice.ProtectConfigurationReference = {
protectConfigurationArn: 'protectConfigurationArn',
protectConfigurationId: 'protectConfigurationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| protect | string | The ARN of the ProtectConfiguration resource. |
| protect | string | The ProtectConfigurationId of the ProtectConfiguration resource. |
protectConfigurationArn
Type:
string
The ARN of the ProtectConfiguration resource.
protectConfigurationId
Type:
string
The ProtectConfigurationId of the ProtectConfiguration resource.

.NET
Go
Java
Python
TypeScript