/* 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. */ /** * Resource Type definition for AWS::Oam::Sink */ export interface AwsOamSink { /** * The Amazon resource name (ARN) of the ObservabilityAccessManager Sink */ Arn?: string; /** * The name of the ObservabilityAccessManager Sink. */ Name: string; /** * The policy of this ObservabilityAccessManager Sink. */ Policy?: { [k: string]: unknown; }; /** * Tags to apply to the sink */ Tags?: { /** * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. * * This interface was referenced by `undefined`'s JSON-Schema definition * via the `patternProperty` "^(?!aws:.*)[a-zA-Z0-9\s\_\.\/\=\+\-]{1,128}$". */ [k: string]: string; }; }