interface CfnResourcePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnResourcePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnResourcePolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnResourcePolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnResourcePolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnResourcePolicyMixinProps |
Properties for CfnResourcePolicyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
declare const policy: any;
const cfnResourcePolicyMixinProps: lex.CfnResourcePolicyMixinProps = {
policy: policy,
resourceArn: 'resourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy? | any | A resource policy to add to the resource. |
| resource | string | The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to. |
policy?
Type:
any
(optional)
A resource policy to add to the resource.
The policy is a JSON structure that contains one or more statements that define the policy. The policy must follow IAM syntax. If the policy isn't valid, Amazon Lex returns a validation exception.
resourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.

.NET
Go
Java
Python
TypeScript