/* 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::MSK::ServerlessCluster */ export interface AwsMskServerlesscluster { Arn?: string; ClusterName: string; VpcConfigs: VpcConfig[]; ClientAuthentication: ClientAuthentication; /** * A key-value pair to associate with a resource. */ Tags?: { /** * This interface was referenced by `undefined`'s JSON-Schema definition * via the `patternProperty` "^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$". */ [k: string]: string; }; } export interface VpcConfig { SecurityGroups?: string[]; SubnetIds: string[]; } export interface ClientAuthentication { Sasl: Sasl; } export interface Sasl { Iam: Iam; } export interface Iam { Enabled: boolean; }