/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * This schema provides construct and validation rules for AWS-XRay Resource Policy resource parameters. */ export interface AwsXrayResourcepolicy { /** * The name of the resource policy. Must be unique within a specific AWS account. */ PolicyName: string; /** * The resource policy document, which can be up to 5kb in size. */ PolicyDocument: string; /** * A flag to indicate whether to bypass the resource policy lockout safety check */ BypassPolicyLockoutCheck?: boolean; }