interface CfnResourcePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.XRay.Mixins.CfnResourcePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsxray/mixins#CfnResourcePolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.xray.mixins.CfnResourcePolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_xray.mixins.CfnResourcePolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_xray » mixins » CfnResourcePolicyMixinProps |
Properties for CfnResourcePolicyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-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 xray_mixins } from '@aws-cdk/mixins-preview/aws-xray';
const cfnResourcePolicyMixinProps: xray_mixins.CfnResourcePolicyMixinProps = {
bypassPolicyLockoutCheck: false,
policyDocument: 'policyDocument',
policyName: 'policyName',
};
Properties
| Name | Type | Description |
|---|---|---|
| bypass | boolean | IResolvable | A flag to indicate whether to bypass the resource-based policy lockout safety check. |
| policy | string | The resource-based policy document, which can be up to 5kb in size. |
| policy | string | The name of the resource-based policy. |
bypassPolicyLockoutCheck?
Type:
boolean | IResolvable
(optional)
A flag to indicate whether to bypass the resource-based policy lockout safety check.
policyDocument?
Type:
string
(optional)
The resource-based policy document, which can be up to 5kb in size.
policyName?
Type:
string
(optional)
The name of the resource-based policy.
Must be unique within a specific AWS account.

.NET
Go
Java
Python
TypeScript