/* 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 default version of a resource that has been registered in the CloudFormation Registry. */ export type AwsCloudformationResourcedefaultversion = { /** * The Amazon Resource Name (ARN) of the type version. */ TypeVersionArn?: string; /** * The name of the type being registered. * * We recommend that type names adhere to the following pattern: company_or_organization::service::type. */ TypeName?: string; /** * The Amazon Resource Name (ARN) of the type. This is used to uniquely identify a ResourceDefaultVersion */ Arn?: string; /** * The ID of an existing version of the resource to set as the default. */ VersionId?: string; } & { [k: string]: unknown; };