/* 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. */ export type AssistantType = "AGENT"; /** * Definition of AWS::Wisdom::Assistant Resource Type */ export interface AwsWisdomAssistant { Type: AssistantType; Description?: string; AssistantArn?: string; AssistantId?: string; ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration; Tags?: Tag[]; Name: string; } export interface ServerSideEncryptionConfiguration { KmsKeyId?: string; } export interface Tag { Key: string; Value: string; }