interface CfnResourcePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.XRay.CfnResourcePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsxray#CfnResourcePolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.xray.CfnResourcePolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_xray.CfnResourcePolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_xray » 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 { aws_xray as xray } from '@aws-cdk/cfn-property-mixins';
const cfnResourcePolicyMixinProps: xray.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