/* 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 Schema of AWS::EC2::IPAMResourceDiscovery Type */ export interface AwsEc2Ipamresourcediscovery { /** * Id of the IPAM Pool. */ IpamResourceDiscoveryId?: string; /** * Owner Account ID of the Resource Discovery */ OwnerId?: string; /** * The regions Resource Discovery is enabled for. Allows resource discoveries to be created in these regions, as well as enabling monitoring */ OperatingRegions?: IpamOperatingRegion[]; /** * The region the resource discovery is setup in. */ IpamResourceDiscoveryRegion?: string; Description?: string; /** * Determines whether or not address space from this pool is publicly advertised. Must be set if and only if the pool is IPv6. */ IsDefault?: boolean; /** * Amazon Resource Name (Arn) for the Resource Discovery. */ IpamResourceDiscoveryArn?: string; /** * The state of this Resource Discovery. */ State?: string; /** * An array of key-value pairs to apply to this resource. */ Tags?: Tag[]; } /** * The regions IPAM Resource Discovery is enabled for. Allows for monitoring. */ export interface IpamOperatingRegion { /** * The name of the region. */ RegionName: string; } /** * A key-value pair to associate with a resource. */ export interface Tag { /** * The key name of the tag. You can specify a value that is 1 to 128 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 -. */ Key: string; /** * 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 -. */ Value: string; }