/* 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 domain defined for 3rd party data source in Profile Service */ export interface AwsCustomerprofilesDomain { /** * The unique name of the domain. */ DomainName: string; /** * The URL of the SQS dead letter queue */ DeadLetterQueueUrl?: string; /** * The default encryption key */ DefaultEncryptionKey?: string; /** * The default number of days until the data within the domain expires. */ DefaultExpirationDays?: number; /** * The tags (keys and values) associated with the domain * * @minItems 0 * @maxItems 50 */ Tags?: Tag[]; /** * The time of this integration got created */ CreatedAt?: string; /** * The time of this integration got last updated at */ LastUpdatedAt?: string; } export interface Tag { Key: string; Value: string; }