interface CfnResourcePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnResourcePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnResourcePolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnResourcePolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnResourcePolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
declare const policy: any;
const cfnResourcePolicyMixinProps: lex_mixins.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