interface CfnProtectConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins.CfnProtectConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssmsvoice/mixins#CfnProtectConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.smsvoice.mixins.CfnProtectConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnProtectConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_smsvoice » mixins » CfnProtectConfigurationMixinProps |
Properties for CfnProtectConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as smsvoice_mixins } from '@aws-cdk/mixins-preview/aws-smsvoice';
const cfnProtectConfigurationMixinProps: smsvoice_mixins.CfnProtectConfigurationMixinProps = {
countryRuleSet: {
mms: [{
countryCode: 'countryCode',
protectStatus: 'protectStatus',
}],
sms: [{
countryCode: 'countryCode',
protectStatus: 'protectStatus',
}],
voice: [{
countryCode: 'countryCode',
protectStatus: 'protectStatus',
}],
},
deletionProtectionEnabled: false,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| country | IResolvable | Country | The set of CountryRules you specify to control which countries End User Messaging can send your messages to. |
| deletion | boolean | IResolvable | The status of deletion protection for the protect configuration. |
| tags? | Cfn[] | An array of key and value pair tags that are associated with the resource. |
countryRuleSet?
Type:
IResolvable | Country
(optional)
The set of CountryRules you specify to control which countries End User Messaging can send your messages to.
deletionProtectionEnabled?
Type:
boolean | IResolvable
(optional)
The status of deletion protection for the protect configuration.
When set to true deletion protection is enabled. By default this is set to false.
tags?
Type:
Cfn[]
(optional)
An array of key and value pair tags that are associated with the resource.

.NET
Go
Java
Python
TypeScript