/* 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. */ /** * A valid security key in PEM format. */ export type Key = string; /** * Amazon Connect instance identifier */ export type InstanceId = string; /** * An associationID is automatically generated when a storage config is associated with an instance */ export type AssociationId = string; /** * Resource Type definition for AWS::Connect::SecurityKey */ export interface AwsConnectSecuritykey { Key: Key; InstanceId: InstanceId; AssociationId?: AssociationId; }