interface CountryRuleSetProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_smsvoice.CfnProtectConfiguration.CountryRuleSetProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssmsvoice#CfnProtectConfiguration_CountryRuleSetProperty |
![]() | software.amazon.awscdk.services.smsvoice.CfnProtectConfiguration.CountryRuleSetProperty |
![]() | aws_cdk.aws_smsvoice.CfnProtectConfiguration.CountryRuleSetProperty |
![]() | aws-cdk-lib » aws_smsvoice » CfnProtectConfiguration » CountryRuleSetProperty |
The set of CountryRules
you specify to control which countries End User Messaging can send your messages to.
If you don't specify all available ISO country codes in the
CountryRuleSet
for each number capability, the AWS CloudFormation drift detection feature will detect drift. This is because End User Messaging always returns all country codes.
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 countryRuleSetProperty: smsvoice.CfnProtectConfiguration.CountryRuleSetProperty = {
mms: [{
countryCode: 'countryCode',
protectStatus: 'protectStatus',
}],
sms: [{
countryCode: 'countryCode',
protectStatus: 'protectStatus',
}],
voice: [{
countryCode: 'countryCode',
protectStatus: 'protectStatus',
}],
};
Properties
Name | Type | Description |
---|---|---|
mms? | IResolvable | IResolvable | Country [] | The set of CountryRule s to control which destination countries End User Messaging can send your MMS messages to. |
sms? | IResolvable | IResolvable | Country [] | The set of CountryRule s to control which destination countries End User Messaging can send your SMS messages to. |
voice? | IResolvable | IResolvable | Country [] | The set of CountryRule s to control which destination countries End User Messaging can send your VOICE messages to. |
mms?
Type:
IResolvable
|
IResolvable
|
Country
[]
(optional)
The set of CountryRule
s to control which destination countries End User Messaging can send your MMS messages to.
sms?
Type:
IResolvable
|
IResolvable
|
Country
[]
(optional)
The set of CountryRule
s to control which destination countries End User Messaging can send your SMS messages to.
voice?
Type:
IResolvable
|
IResolvable
|
Country
[]
(optional)
The set of CountryRule
s to control which destination countries End User Messaging can send your VOICE messages to.