/* 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. */ /** * Resource Type definition for AWS::AmazonMQ::Broker */ export interface AwsAmazonmqBroker { SecurityGroups?: string[]; Configuration?: ConfigurationId; AuthenticationStrategy?: string; Users: User[]; SubnetIds?: string[]; StompEndpoints?: string[]; MqttEndpoints?: string[]; AmqpEndpoints?: string[]; DeploymentMode: string; EngineType: string; EncryptionOptions?: EncryptionOptions; Tags?: TagsEntry[]; ConfigurationRevision?: number; StorageType?: string; EngineVersion: string; MaintenanceWindowStartTime?: MaintenanceWindow; HostInstanceType: string; AutoMinorVersionUpgrade: boolean; Logs?: LogList; ConfigurationId?: string; BrokerName: string; WssEndpoints?: string[]; IpAddresses?: string[]; OpenWireEndpoints?: string[]; LdapServerMetadata?: LdapServerMetadata; PubliclyAccessible: boolean; Id?: string; Arn?: string; } export interface ConfigurationId { Revision: number; Id: string; } export interface User { ConsoleAccess?: boolean; Username: string; Groups?: string[]; Password: string; } export interface EncryptionOptions { KmsKeyId?: string; UseAwsOwnedKey: boolean; } export interface TagsEntry { Value: string; Key: string; } export interface MaintenanceWindow { DayOfWeek: string; TimeOfDay: string; TimeZone: string; } export interface LogList { Audit?: boolean; General?: boolean; } export interface LdapServerMetadata { Hosts: string[]; UserRoleName?: string; UserSearchMatching: string; RoleName?: string; UserBase: string; UserSearchSubtree?: boolean; RoleSearchMatching: string; ServiceAccountUsername: string; RoleBase: string; ServiceAccountPassword: string; RoleSearchSubtree?: boolean; }