package awsxray // Properties for defining a `CfnResourcePolicy`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnResourcePolicyProps := &CfnResourcePolicyProps{ // PolicyDocument: jsii.String("policyDocument"), // PolicyName: jsii.String("policyName"), // // // the properties below are optional // BypassPolicyLockoutCheck: jsii.Boolean(false), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-resourcepolicy.html // type CfnResourcePolicyProps struct { // The resource-based policy document, which can be up to 5kb in size. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-resourcepolicy.html#cfn-xray-resourcepolicy-policydocument // PolicyDocument *string `field:"required" json:"policyDocument" yaml:"policyDocument"` // The name of the resource-based policy. // // Must be unique within a specific AWS account. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-resourcepolicy.html#cfn-xray-resourcepolicy-policyname // PolicyName *string `field:"required" json:"policyName" yaml:"policyName"` // A flag to indicate whether to bypass the resource-based policy lockout safety check. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-resourcepolicy.html#cfn-xray-resourcepolicy-bypasspolicylockoutcheck // BypassPolicyLockoutCheck interface{} `field:"optional" json:"bypassPolicyLockoutCheck" yaml:"bypassPolicyLockoutCheck"` }