interface CfnResourcePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SMSVOICE.CfnResourcePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssmsvoice#CfnResourcePolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.smsvoice.CfnResourcePolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_smsvoice.CfnResourcePolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_smsvoice » CfnResourcePolicyMixinProps |
Properties for CfnResourcePolicyPropsMixin.
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/cfn-property-mixins';
declare const policyDocument: any;
const cfnResourcePolicyMixinProps: smsvoice.CfnResourcePolicyMixinProps = {
policyDocument: policyDocument,
resourceArn: 'resourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | any | The JSON formatted resource-based policy to attach. |
| resource | string | The Amazon Resource Name (ARN) of the End User Messaging resource attached to the resource-based policy. |
policyDocument?
Type:
any
(optional)
The JSON formatted resource-based policy to attach.
resourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the End User Messaging resource attached to the resource-based policy.

.NET
Go
Java
Python
TypeScript