/* 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. */ /** * Specifies the configuration data for a registered hook in CloudFormation Registry. */ export type AwsCloudformationHooktypeconfig = { /** * The Amazon Resource Name (ARN) of the type without version number. */ TypeArn?: 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) for the configuration data, in this account and region. */ ConfigurationArn?: string; /** * The configuration data for the extension, in this account and region. */ Configuration?: string; /** * An alias by which to refer to this extension configuration data. */ ConfigurationAlias?: "default"; } & { [k: string]: unknown; };