/* 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. */ /** * The datetime value in ISO 8601 format. The timezone is always UTC. (YYYY-MM-DDThh:mm:ss.sssZ) */ export type Iso8601UTC = string; export type PricingPlan = "RequestBasedUsage"; /** * Definition of AWS::Location::Map Resource Type */ export interface AwsLocationMap { Configuration: MapConfiguration; CreateTime?: Iso8601UTC; DataSource?: string; Description?: string; MapArn?: string; Arn?: string; MapName: string; PricingPlan?: PricingPlan; UpdateTime?: Iso8601UTC; } export interface MapConfiguration { Style: string; }