123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182 |
- import {Request} from '../lib/request';
- import {Response} from '../lib/response';
- import {AWSError} from '../lib/error';
- import {Service} from '../lib/service';
- import {ServiceConfigurationOptions} from '../lib/service';
- import {ConfigBase as Config} from '../lib/config-base';
- interface Blob {}
- declare class Kafka extends Service {
- /**
- * Constructs a service object. This object has one method for each API operation.
- */
- constructor(options?: Kafka.Types.ClientConfiguration)
- config: Config & Kafka.Types.ClientConfiguration;
- /**
- *
- Associates one or more Scram Secrets with an Amazon MSK cluster.
-
- */
- batchAssociateScramSecret(params: Kafka.Types.BatchAssociateScramSecretRequest, callback?: (err: AWSError, data: Kafka.Types.BatchAssociateScramSecretResponse) => void): Request<Kafka.Types.BatchAssociateScramSecretResponse, AWSError>;
- /**
- *
- Associates one or more Scram Secrets with an Amazon MSK cluster.
-
- */
- batchAssociateScramSecret(callback?: (err: AWSError, data: Kafka.Types.BatchAssociateScramSecretResponse) => void): Request<Kafka.Types.BatchAssociateScramSecretResponse, AWSError>;
- /**
- *
- Creates a new MSK cluster.
-
- */
- createCluster(params: Kafka.Types.CreateClusterRequest, callback?: (err: AWSError, data: Kafka.Types.CreateClusterResponse) => void): Request<Kafka.Types.CreateClusterResponse, AWSError>;
- /**
- *
- Creates a new MSK cluster.
-
- */
- createCluster(callback?: (err: AWSError, data: Kafka.Types.CreateClusterResponse) => void): Request<Kafka.Types.CreateClusterResponse, AWSError>;
- /**
- *
- Creates a new MSK cluster.
-
- */
- createClusterV2(params: Kafka.Types.CreateClusterV2Request, callback?: (err: AWSError, data: Kafka.Types.CreateClusterV2Response) => void): Request<Kafka.Types.CreateClusterV2Response, AWSError>;
- /**
- *
- Creates a new MSK cluster.
-
- */
- createClusterV2(callback?: (err: AWSError, data: Kafka.Types.CreateClusterV2Response) => void): Request<Kafka.Types.CreateClusterV2Response, AWSError>;
- /**
- *
- Creates a new MSK configuration.
-
- */
- createConfiguration(params: Kafka.Types.CreateConfigurationRequest, callback?: (err: AWSError, data: Kafka.Types.CreateConfigurationResponse) => void): Request<Kafka.Types.CreateConfigurationResponse, AWSError>;
- /**
- *
- Creates a new MSK configuration.
-
- */
- createConfiguration(callback?: (err: AWSError, data: Kafka.Types.CreateConfigurationResponse) => void): Request<Kafka.Types.CreateConfigurationResponse, AWSError>;
- /**
- * Creates the replicator.
- */
- createReplicator(params: Kafka.Types.CreateReplicatorRequest, callback?: (err: AWSError, data: Kafka.Types.CreateReplicatorResponse) => void): Request<Kafka.Types.CreateReplicatorResponse, AWSError>;
- /**
- * Creates the replicator.
- */
- createReplicator(callback?: (err: AWSError, data: Kafka.Types.CreateReplicatorResponse) => void): Request<Kafka.Types.CreateReplicatorResponse, AWSError>;
- /**
- *
- Creates a new MSK VPC connection.
-
- */
- createVpcConnection(params: Kafka.Types.CreateVpcConnectionRequest, callback?: (err: AWSError, data: Kafka.Types.CreateVpcConnectionResponse) => void): Request<Kafka.Types.CreateVpcConnectionResponse, AWSError>;
- /**
- *
- Creates a new MSK VPC connection.
-
- */
- createVpcConnection(callback?: (err: AWSError, data: Kafka.Types.CreateVpcConnectionResponse) => void): Request<Kafka.Types.CreateVpcConnectionResponse, AWSError>;
- /**
- *
- Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in the request.
-
- */
- deleteCluster(params: Kafka.Types.DeleteClusterRequest, callback?: (err: AWSError, data: Kafka.Types.DeleteClusterResponse) => void): Request<Kafka.Types.DeleteClusterResponse, AWSError>;
- /**
- *
- Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in the request.
-
- */
- deleteCluster(callback?: (err: AWSError, data: Kafka.Types.DeleteClusterResponse) => void): Request<Kafka.Types.DeleteClusterResponse, AWSError>;
- /**
- *
- Deletes the MSK cluster policy specified by the Amazon Resource Name (ARN) in the request.
-
- */
- deleteClusterPolicy(params: Kafka.Types.DeleteClusterPolicyRequest, callback?: (err: AWSError, data: Kafka.Types.DeleteClusterPolicyResponse) => void): Request<Kafka.Types.DeleteClusterPolicyResponse, AWSError>;
- /**
- *
- Deletes the MSK cluster policy specified by the Amazon Resource Name (ARN) in the request.
-
- */
- deleteClusterPolicy(callback?: (err: AWSError, data: Kafka.Types.DeleteClusterPolicyResponse) => void): Request<Kafka.Types.DeleteClusterPolicyResponse, AWSError>;
- /**
- *
- Deletes an MSK Configuration.
-
- */
- deleteConfiguration(params: Kafka.Types.DeleteConfigurationRequest, callback?: (err: AWSError, data: Kafka.Types.DeleteConfigurationResponse) => void): Request<Kafka.Types.DeleteConfigurationResponse, AWSError>;
- /**
- *
- Deletes an MSK Configuration.
-
- */
- deleteConfiguration(callback?: (err: AWSError, data: Kafka.Types.DeleteConfigurationResponse) => void): Request<Kafka.Types.DeleteConfigurationResponse, AWSError>;
- /**
- * Deletes a replicator.
- */
- deleteReplicator(params: Kafka.Types.DeleteReplicatorRequest, callback?: (err: AWSError, data: Kafka.Types.DeleteReplicatorResponse) => void): Request<Kafka.Types.DeleteReplicatorResponse, AWSError>;
- /**
- * Deletes a replicator.
- */
- deleteReplicator(callback?: (err: AWSError, data: Kafka.Types.DeleteReplicatorResponse) => void): Request<Kafka.Types.DeleteReplicatorResponse, AWSError>;
- /**
- *
- Deletes a MSK VPC connection.
-
- */
- deleteVpcConnection(params: Kafka.Types.DeleteVpcConnectionRequest, callback?: (err: AWSError, data: Kafka.Types.DeleteVpcConnectionResponse) => void): Request<Kafka.Types.DeleteVpcConnectionResponse, AWSError>;
- /**
- *
- Deletes a MSK VPC connection.
-
- */
- deleteVpcConnection(callback?: (err: AWSError, data: Kafka.Types.DeleteVpcConnectionResponse) => void): Request<Kafka.Types.DeleteVpcConnectionResponse, AWSError>;
- /**
- *
- Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.
-
- */
- describeCluster(params: Kafka.Types.DescribeClusterRequest, callback?: (err: AWSError, data: Kafka.Types.DescribeClusterResponse) => void): Request<Kafka.Types.DescribeClusterResponse, AWSError>;
- /**
- *
- Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.
-
- */
- describeCluster(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterResponse) => void): Request<Kafka.Types.DescribeClusterResponse, AWSError>;
- /**
- *
- Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.
-
- */
- describeClusterV2(params: Kafka.Types.DescribeClusterV2Request, callback?: (err: AWSError, data: Kafka.Types.DescribeClusterV2Response) => void): Request<Kafka.Types.DescribeClusterV2Response, AWSError>;
- /**
- *
- Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified in the request.
-
- */
- describeClusterV2(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterV2Response) => void): Request<Kafka.Types.DescribeClusterV2Response, AWSError>;
- /**
- *
- Returns a description of the cluster operation specified by the ARN.
-
- */
- describeClusterOperation(params: Kafka.Types.DescribeClusterOperationRequest, callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationResponse) => void): Request<Kafka.Types.DescribeClusterOperationResponse, AWSError>;
- /**
- *
- Returns a description of the cluster operation specified by the ARN.
-
- */
- describeClusterOperation(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationResponse) => void): Request<Kafka.Types.DescribeClusterOperationResponse, AWSError>;
- /**
- *
- Returns a description of the cluster operation specified by the ARN.
- */
- describeClusterOperationV2(params: Kafka.Types.DescribeClusterOperationV2Request, callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
- /**
- *
- Returns a description of the cluster operation specified by the ARN.
- */
- describeClusterOperationV2(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
- /**
- *
- Returns a description of this MSK configuration.
-
- */
- describeConfiguration(params: Kafka.Types.DescribeConfigurationRequest, callback?: (err: AWSError, data: Kafka.Types.DescribeConfigurationResponse) => void): Request<Kafka.Types.DescribeConfigurationResponse, AWSError>;
- /**
- *
- Returns a description of this MSK configuration.
-
- */
- describeConfiguration(callback?: (err: AWSError, data: Kafka.Types.DescribeConfigurationResponse) => void): Request<Kafka.Types.DescribeConfigurationResponse, AWSError>;
- /**
- *
- Returns a description of this revision of the configuration.
-
- */
- describeConfigurationRevision(params: Kafka.Types.DescribeConfigurationRevisionRequest, callback?: (err: AWSError, data: Kafka.Types.DescribeConfigurationRevisionResponse) => void): Request<Kafka.Types.DescribeConfigurationRevisionResponse, AWSError>;
- /**
- *
- Returns a description of this revision of the configuration.
-
- */
- describeConfigurationRevision(callback?: (err: AWSError, data: Kafka.Types.DescribeConfigurationRevisionResponse) => void): Request<Kafka.Types.DescribeConfigurationRevisionResponse, AWSError>;
- /**
- * Describes a replicator.
- */
- describeReplicator(params: Kafka.Types.DescribeReplicatorRequest, callback?: (err: AWSError, data: Kafka.Types.DescribeReplicatorResponse) => void): Request<Kafka.Types.DescribeReplicatorResponse, AWSError>;
- /**
- * Describes a replicator.
- */
- describeReplicator(callback?: (err: AWSError, data: Kafka.Types.DescribeReplicatorResponse) => void): Request<Kafka.Types.DescribeReplicatorResponse, AWSError>;
- /**
- *
- Returns a description of this MSK VPC connection.
-
- */
- describeVpcConnection(params: Kafka.Types.DescribeVpcConnectionRequest, callback?: (err: AWSError, data: Kafka.Types.DescribeVpcConnectionResponse) => void): Request<Kafka.Types.DescribeVpcConnectionResponse, AWSError>;
- /**
- *
- Returns a description of this MSK VPC connection.
-
- */
- describeVpcConnection(callback?: (err: AWSError, data: Kafka.Types.DescribeVpcConnectionResponse) => void): Request<Kafka.Types.DescribeVpcConnectionResponse, AWSError>;
- /**
- *
- Disassociates one or more Scram Secrets from an Amazon MSK cluster.
-
- */
- batchDisassociateScramSecret(params: Kafka.Types.BatchDisassociateScramSecretRequest, callback?: (err: AWSError, data: Kafka.Types.BatchDisassociateScramSecretResponse) => void): Request<Kafka.Types.BatchDisassociateScramSecretResponse, AWSError>;
- /**
- *
- Disassociates one or more Scram Secrets from an Amazon MSK cluster.
-
- */
- batchDisassociateScramSecret(callback?: (err: AWSError, data: Kafka.Types.BatchDisassociateScramSecretResponse) => void): Request<Kafka.Types.BatchDisassociateScramSecretResponse, AWSError>;
- /**
- *
- A list of brokers that a client application can use to bootstrap.
-
- */
- getBootstrapBrokers(params: Kafka.Types.GetBootstrapBrokersRequest, callback?: (err: AWSError, data: Kafka.Types.GetBootstrapBrokersResponse) => void): Request<Kafka.Types.GetBootstrapBrokersResponse, AWSError>;
- /**
- *
- A list of brokers that a client application can use to bootstrap.
-
- */
- getBootstrapBrokers(callback?: (err: AWSError, data: Kafka.Types.GetBootstrapBrokersResponse) => void): Request<Kafka.Types.GetBootstrapBrokersResponse, AWSError>;
- /**
- *
- Gets the Apache Kafka versions to which you can update the MSK cluster.
-
- */
- getCompatibleKafkaVersions(params: Kafka.Types.GetCompatibleKafkaVersionsRequest, callback?: (err: AWSError, data: Kafka.Types.GetCompatibleKafkaVersionsResponse) => void): Request<Kafka.Types.GetCompatibleKafkaVersionsResponse, AWSError>;
- /**
- *
- Gets the Apache Kafka versions to which you can update the MSK cluster.
-
- */
- getCompatibleKafkaVersions(callback?: (err: AWSError, data: Kafka.Types.GetCompatibleKafkaVersionsResponse) => void): Request<Kafka.Types.GetCompatibleKafkaVersionsResponse, AWSError>;
- /**
- *
- Get the MSK cluster policy specified by the Amazon Resource Name (ARN) in the request.
-
- */
- getClusterPolicy(params: Kafka.Types.GetClusterPolicyRequest, callback?: (err: AWSError, data: Kafka.Types.GetClusterPolicyResponse) => void): Request<Kafka.Types.GetClusterPolicyResponse, AWSError>;
- /**
- *
- Get the MSK cluster policy specified by the Amazon Resource Name (ARN) in the request.
-
- */
- getClusterPolicy(callback?: (err: AWSError, data: Kafka.Types.GetClusterPolicyResponse) => void): Request<Kafka.Types.GetClusterPolicyResponse, AWSError>;
- /**
- *
- Returns a list of all the operations that have been performed on the specified MSK cluster.
-
- */
- listClusterOperations(params: Kafka.Types.ListClusterOperationsRequest, callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsResponse) => void): Request<Kafka.Types.ListClusterOperationsResponse, AWSError>;
- /**
- *
- Returns a list of all the operations that have been performed on the specified MSK cluster.
-
- */
- listClusterOperations(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsResponse) => void): Request<Kafka.Types.ListClusterOperationsResponse, AWSError>;
- /**
- *
- Returns a list of all the operations that have been performed on the specified MSK cluster.
-
- */
- listClusterOperationsV2(params: Kafka.Types.ListClusterOperationsV2Request, callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
- /**
- *
- Returns a list of all the operations that have been performed on the specified MSK cluster.
-
- */
- listClusterOperationsV2(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
- /**
- *
- Returns a list of all the MSK clusters in the current Region.
-
- */
- listClusters(params: Kafka.Types.ListClustersRequest, callback?: (err: AWSError, data: Kafka.Types.ListClustersResponse) => void): Request<Kafka.Types.ListClustersResponse, AWSError>;
- /**
- *
- Returns a list of all the MSK clusters in the current Region.
-
- */
- listClusters(callback?: (err: AWSError, data: Kafka.Types.ListClustersResponse) => void): Request<Kafka.Types.ListClustersResponse, AWSError>;
- /**
- *
- Returns a list of all the MSK clusters in the current Region.
-
- */
- listClustersV2(params: Kafka.Types.ListClustersV2Request, callback?: (err: AWSError, data: Kafka.Types.ListClustersV2Response) => void): Request<Kafka.Types.ListClustersV2Response, AWSError>;
- /**
- *
- Returns a list of all the MSK clusters in the current Region.
-
- */
- listClustersV2(callback?: (err: AWSError, data: Kafka.Types.ListClustersV2Response) => void): Request<Kafka.Types.ListClustersV2Response, AWSError>;
- /**
- *
- Returns a list of all the MSK configurations in this Region.
-
- */
- listConfigurationRevisions(params: Kafka.Types.ListConfigurationRevisionsRequest, callback?: (err: AWSError, data: Kafka.Types.ListConfigurationRevisionsResponse) => void): Request<Kafka.Types.ListConfigurationRevisionsResponse, AWSError>;
- /**
- *
- Returns a list of all the MSK configurations in this Region.
-
- */
- listConfigurationRevisions(callback?: (err: AWSError, data: Kafka.Types.ListConfigurationRevisionsResponse) => void): Request<Kafka.Types.ListConfigurationRevisionsResponse, AWSError>;
- /**
- *
- Returns a list of all the MSK configurations in this Region.
-
- */
- listConfigurations(params: Kafka.Types.ListConfigurationsRequest, callback?: (err: AWSError, data: Kafka.Types.ListConfigurationsResponse) => void): Request<Kafka.Types.ListConfigurationsResponse, AWSError>;
- /**
- *
- Returns a list of all the MSK configurations in this Region.
-
- */
- listConfigurations(callback?: (err: AWSError, data: Kafka.Types.ListConfigurationsResponse) => void): Request<Kafka.Types.ListConfigurationsResponse, AWSError>;
- /**
- *
- Returns a list of Apache Kafka versions.
-
- */
- listKafkaVersions(params: Kafka.Types.ListKafkaVersionsRequest, callback?: (err: AWSError, data: Kafka.Types.ListKafkaVersionsResponse) => void): Request<Kafka.Types.ListKafkaVersionsResponse, AWSError>;
- /**
- *
- Returns a list of Apache Kafka versions.
-
- */
- listKafkaVersions(callback?: (err: AWSError, data: Kafka.Types.ListKafkaVersionsResponse) => void): Request<Kafka.Types.ListKafkaVersionsResponse, AWSError>;
- /**
- *
- Returns a list of the broker nodes in the cluster.
-
- */
- listNodes(params: Kafka.Types.ListNodesRequest, callback?: (err: AWSError, data: Kafka.Types.ListNodesResponse) => void): Request<Kafka.Types.ListNodesResponse, AWSError>;
- /**
- *
- Returns a list of the broker nodes in the cluster.
-
- */
- listNodes(callback?: (err: AWSError, data: Kafka.Types.ListNodesResponse) => void): Request<Kafka.Types.ListNodesResponse, AWSError>;
- /**
- * Lists the replicators.
- */
- listReplicators(params: Kafka.Types.ListReplicatorsRequest, callback?: (err: AWSError, data: Kafka.Types.ListReplicatorsResponse) => void): Request<Kafka.Types.ListReplicatorsResponse, AWSError>;
- /**
- * Lists the replicators.
- */
- listReplicators(callback?: (err: AWSError, data: Kafka.Types.ListReplicatorsResponse) => void): Request<Kafka.Types.ListReplicatorsResponse, AWSError>;
- /**
- *
- Returns a list of the Scram Secrets associated with an Amazon MSK cluster.
-
- */
- listScramSecrets(params: Kafka.Types.ListScramSecretsRequest, callback?: (err: AWSError, data: Kafka.Types.ListScramSecretsResponse) => void): Request<Kafka.Types.ListScramSecretsResponse, AWSError>;
- /**
- *
- Returns a list of the Scram Secrets associated with an Amazon MSK cluster.
-
- */
- listScramSecrets(callback?: (err: AWSError, data: Kafka.Types.ListScramSecretsResponse) => void): Request<Kafka.Types.ListScramSecretsResponse, AWSError>;
- /**
- *
- Returns a list of the tags associated with the specified resource.
-
- */
- listTagsForResource(params: Kafka.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Kafka.Types.ListTagsForResourceResponse) => void): Request<Kafka.Types.ListTagsForResourceResponse, AWSError>;
- /**
- *
- Returns a list of the tags associated with the specified resource.
-
- */
- listTagsForResource(callback?: (err: AWSError, data: Kafka.Types.ListTagsForResourceResponse) => void): Request<Kafka.Types.ListTagsForResourceResponse, AWSError>;
- /**
- *
- Returns a list of all the VPC connections in this Region.
-
- */
- listClientVpcConnections(params: Kafka.Types.ListClientVpcConnectionsRequest, callback?: (err: AWSError, data: Kafka.Types.ListClientVpcConnectionsResponse) => void): Request<Kafka.Types.ListClientVpcConnectionsResponse, AWSError>;
- /**
- *
- Returns a list of all the VPC connections in this Region.
-
- */
- listClientVpcConnections(callback?: (err: AWSError, data: Kafka.Types.ListClientVpcConnectionsResponse) => void): Request<Kafka.Types.ListClientVpcConnectionsResponse, AWSError>;
- /**
- *
- Returns a list of all the VPC connections in this Region.
-
- */
- listVpcConnections(params: Kafka.Types.ListVpcConnectionsRequest, callback?: (err: AWSError, data: Kafka.Types.ListVpcConnectionsResponse) => void): Request<Kafka.Types.ListVpcConnectionsResponse, AWSError>;
- /**
- *
- Returns a list of all the VPC connections in this Region.
-
- */
- listVpcConnections(callback?: (err: AWSError, data: Kafka.Types.ListVpcConnectionsResponse) => void): Request<Kafka.Types.ListVpcConnectionsResponse, AWSError>;
- /**
- *
- Returns empty response.
-
- */
- rejectClientVpcConnection(params: Kafka.Types.RejectClientVpcConnectionRequest, callback?: (err: AWSError, data: Kafka.Types.RejectClientVpcConnectionResponse) => void): Request<Kafka.Types.RejectClientVpcConnectionResponse, AWSError>;
- /**
- *
- Returns empty response.
-
- */
- rejectClientVpcConnection(callback?: (err: AWSError, data: Kafka.Types.RejectClientVpcConnectionResponse) => void): Request<Kafka.Types.RejectClientVpcConnectionResponse, AWSError>;
- /**
- *
- Creates or updates the MSK cluster policy specified by the cluster Amazon Resource Name (ARN) in the request.
-
- */
- putClusterPolicy(params: Kafka.Types.PutClusterPolicyRequest, callback?: (err: AWSError, data: Kafka.Types.PutClusterPolicyResponse) => void): Request<Kafka.Types.PutClusterPolicyResponse, AWSError>;
- /**
- *
- Creates or updates the MSK cluster policy specified by the cluster Amazon Resource Name (ARN) in the request.
-
- */
- putClusterPolicy(callback?: (err: AWSError, data: Kafka.Types.PutClusterPolicyResponse) => void): Request<Kafka.Types.PutClusterPolicyResponse, AWSError>;
- /**
- * Reboots brokers.
- */
- rebootBroker(params: Kafka.Types.RebootBrokerRequest, callback?: (err: AWSError, data: Kafka.Types.RebootBrokerResponse) => void): Request<Kafka.Types.RebootBrokerResponse, AWSError>;
- /**
- * Reboots brokers.
- */
- rebootBroker(callback?: (err: AWSError, data: Kafka.Types.RebootBrokerResponse) => void): Request<Kafka.Types.RebootBrokerResponse, AWSError>;
- /**
- *
- Adds tags to the specified MSK resource.
-
- */
- tagResource(params: Kafka.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- *
- Adds tags to the specified MSK resource.
-
- */
- tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- *
- Removes the tags associated with the keys that are provided in the query.
-
- */
- untagResource(params: Kafka.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- *
- Removes the tags associated with the keys that are provided in the query.
-
- */
- untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
- /**
- *
- Updates the number of broker nodes in the cluster.
-
- */
- updateBrokerCount(params: Kafka.Types.UpdateBrokerCountRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerCountResponse) => void): Request<Kafka.Types.UpdateBrokerCountResponse, AWSError>;
- /**
- *
- Updates the number of broker nodes in the cluster.
-
- */
- updateBrokerCount(callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerCountResponse) => void): Request<Kafka.Types.UpdateBrokerCountResponse, AWSError>;
- /**
- *
- Updates EC2 instance type.
-
- */
- updateBrokerType(params: Kafka.Types.UpdateBrokerTypeRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerTypeResponse) => void): Request<Kafka.Types.UpdateBrokerTypeResponse, AWSError>;
- /**
- *
- Updates EC2 instance type.
-
- */
- updateBrokerType(callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerTypeResponse) => void): Request<Kafka.Types.UpdateBrokerTypeResponse, AWSError>;
- /**
- *
- Updates the EBS storage associated with MSK brokers.
-
- */
- updateBrokerStorage(params: Kafka.Types.UpdateBrokerStorageRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerStorageResponse) => void): Request<Kafka.Types.UpdateBrokerStorageResponse, AWSError>;
- /**
- *
- Updates the EBS storage associated with MSK brokers.
-
- */
- updateBrokerStorage(callback?: (err: AWSError, data: Kafka.Types.UpdateBrokerStorageResponse) => void): Request<Kafka.Types.UpdateBrokerStorageResponse, AWSError>;
- /**
- *
- Updates an MSK configuration.
-
- */
- updateConfiguration(params: Kafka.Types.UpdateConfigurationRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateConfigurationResponse) => void): Request<Kafka.Types.UpdateConfigurationResponse, AWSError>;
- /**
- *
- Updates an MSK configuration.
-
- */
- updateConfiguration(callback?: (err: AWSError, data: Kafka.Types.UpdateConfigurationResponse) => void): Request<Kafka.Types.UpdateConfigurationResponse, AWSError>;
- /**
- *
- Updates the cluster's connectivity configuration.
-
- */
- updateConnectivity(params: Kafka.Types.UpdateConnectivityRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateConnectivityResponse) => void): Request<Kafka.Types.UpdateConnectivityResponse, AWSError>;
- /**
- *
- Updates the cluster's connectivity configuration.
-
- */
- updateConnectivity(callback?: (err: AWSError, data: Kafka.Types.UpdateConnectivityResponse) => void): Request<Kafka.Types.UpdateConnectivityResponse, AWSError>;
- /**
- *
- Updates the cluster with the configuration that is specified in the request body.
-
- */
- updateClusterConfiguration(params: Kafka.Types.UpdateClusterConfigurationRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateClusterConfigurationResponse) => void): Request<Kafka.Types.UpdateClusterConfigurationResponse, AWSError>;
- /**
- *
- Updates the cluster with the configuration that is specified in the request body.
-
- */
- updateClusterConfiguration(callback?: (err: AWSError, data: Kafka.Types.UpdateClusterConfigurationResponse) => void): Request<Kafka.Types.UpdateClusterConfigurationResponse, AWSError>;
- /**
- *
- Updates the Apache Kafka version for the cluster.
-
- */
- updateClusterKafkaVersion(params: Kafka.Types.UpdateClusterKafkaVersionRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateClusterKafkaVersionResponse) => void): Request<Kafka.Types.UpdateClusterKafkaVersionResponse, AWSError>;
- /**
- *
- Updates the Apache Kafka version for the cluster.
-
- */
- updateClusterKafkaVersion(callback?: (err: AWSError, data: Kafka.Types.UpdateClusterKafkaVersionResponse) => void): Request<Kafka.Types.UpdateClusterKafkaVersionResponse, AWSError>;
- /**
- *
- Updates the monitoring settings for the cluster. You can use this operation to specify which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can also specify settings for open monitoring with Prometheus.
-
- */
- updateMonitoring(params: Kafka.Types.UpdateMonitoringRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateMonitoringResponse) => void): Request<Kafka.Types.UpdateMonitoringResponse, AWSError>;
- /**
- *
- Updates the monitoring settings for the cluster. You can use this operation to specify which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can also specify settings for open monitoring with Prometheus.
-
- */
- updateMonitoring(callback?: (err: AWSError, data: Kafka.Types.UpdateMonitoringResponse) => void): Request<Kafka.Types.UpdateMonitoringResponse, AWSError>;
- /**
- * Updates replication info of a replicator.
- */
- updateReplicationInfo(params: Kafka.Types.UpdateReplicationInfoRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateReplicationInfoResponse) => void): Request<Kafka.Types.UpdateReplicationInfoResponse, AWSError>;
- /**
- * Updates replication info of a replicator.
- */
- updateReplicationInfo(callback?: (err: AWSError, data: Kafka.Types.UpdateReplicationInfoResponse) => void): Request<Kafka.Types.UpdateReplicationInfoResponse, AWSError>;
- /**
- *
- Updates the security settings for the cluster. You can use this operation to specify encryption and authentication on existing clusters.
-
- */
- updateSecurity(params: Kafka.Types.UpdateSecurityRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateSecurityResponse) => void): Request<Kafka.Types.UpdateSecurityResponse, AWSError>;
- /**
- *
- Updates the security settings for the cluster. You can use this operation to specify encryption and authentication on existing clusters.
-
- */
- updateSecurity(callback?: (err: AWSError, data: Kafka.Types.UpdateSecurityResponse) => void): Request<Kafka.Types.UpdateSecurityResponse, AWSError>;
- /**
- * Updates cluster broker volume size (or) sets cluster storage mode to TIERED.
- */
- updateStorage(params: Kafka.Types.UpdateStorageRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateStorageResponse) => void): Request<Kafka.Types.UpdateStorageResponse, AWSError>;
- /**
- * Updates cluster broker volume size (or) sets cluster storage mode to TIERED.
- */
- updateStorage(callback?: (err: AWSError, data: Kafka.Types.UpdateStorageResponse) => void): Request<Kafka.Types.UpdateStorageResponse, AWSError>;
- }
- declare namespace Kafka {
- export interface AmazonMskCluster {
- /**
- * The Amazon Resource Name (ARN) of an Amazon MSK cluster.
- */
- MskClusterArn: __string;
- }
- export interface BatchAssociateScramSecretRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster to be updated.
-
- */
- ClusterArn: __string;
- /**
- *
- List of AWS Secrets Manager secret ARNs.
-
- */
- SecretArnList: __listOf__string;
- }
- export interface BatchAssociateScramSecretResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- List of errors when associating secrets to cluster.
-
- */
- UnprocessedScramSecrets?: __listOfUnprocessedScramSecret;
- }
- export type BrokerAZDistribution = "DEFAULT"|string;
- export interface BrokerEBSVolumeInfo {
- /**
- *
- The ID of the broker to update.
-
- */
- KafkaBrokerNodeId: __string;
- /**
- *
- EBS volume provisioned throughput information.
-
- */
- ProvisionedThroughput?: ProvisionedThroughput;
- /**
- *
- Size of the EBS volume to update.
-
- */
- VolumeSizeGB?: __integer;
- }
- export interface BrokerLogs {
- CloudWatchLogs?: CloudWatchLogs;
- Firehose?: Firehose;
- S3?: S3;
- }
- export interface BrokerNodeGroupInfo {
- /**
- *
- The distribution of broker nodes across Availability Zones. This is an optional parameter. If you don't specify it, Amazon MSK gives it the value DEFAULT. You can also explicitly set this parameter to the value DEFAULT. No other values are currently allowed.
- Amazon MSK distributes the broker nodes evenly across the Availability Zones that correspond to the subnets you provide when you create the cluster.
-
- */
- BrokerAZDistribution?: BrokerAZDistribution;
- /**
- *
- The list of subnets to connect to in the client virtual private cloud (VPC). AWS creates elastic network interfaces inside these subnets. Client applications use elastic network interfaces to produce and consume data. Client subnets can't occupy the Availability Zone with ID use use1-az3.
-
- */
- ClientSubnets: __listOf__string;
- /**
- *
- The type of Amazon EC2 instances to use for Apache Kafka brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge,
- kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
-
- */
- InstanceType: __stringMin5Max32;
- /**
- *
- The AWS security groups to associate with the elastic network interfaces in order to specify who can connect to and communicate with the Amazon MSK cluster. If you don't specify a security group, Amazon MSK uses the default security group associated with the VPC.
-
- */
- SecurityGroups?: __listOf__string;
- /**
- *
- Contains information about storage volumes attached to MSK broker nodes.
-
- */
- StorageInfo?: StorageInfo;
- /**
- *
- Information about the broker access configuration.
-
- */
- ConnectivityInfo?: ConnectivityInfo;
- /**
- *
- The list of zoneIds for the cluster in the virtual private cloud (VPC).
-
- */
- ZoneIds?: __listOf__string;
- }
- export interface BrokerNodeInfo {
- /**
- *
- The attached elastic network interface of the broker.
-
- */
- AttachedENIId?: __string;
- /**
- *
- The ID of the broker.
-
- */
- BrokerId?: __double;
- /**
- *
- The client subnet to which this broker node belongs.
-
- */
- ClientSubnet?: __string;
- /**
- *
- The virtual private cloud (VPC) of the client.
-
- */
- ClientVpcIpAddress?: __string;
- /**
- *
- Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.
-
- */
- CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
- /**
- *
- Endpoints for accessing the broker.
-
- */
- Endpoints?: __listOf__string;
- }
- export interface BrokerSoftwareInfo {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration used for the cluster. This field isn't visible in this preview release.
-
- */
- ConfigurationArn?: __string;
- /**
- *
- The revision of the configuration to use. This field isn't visible in this preview release.
-
- */
- ConfigurationRevision?: __long;
- /**
- *
- The version of Apache Kafka.
-
- */
- KafkaVersion?: __string;
- }
- export interface ClientAuthentication {
- /**
- *
- Details for ClientAuthentication using SASL.
-
- */
- Sasl?: Sasl;
- /**
- *
- Details for ClientAuthentication using TLS.
-
- */
- Tls?: Tls;
- /**
- *
- Contains information about unauthenticated traffic to the cluster.
-
- */
- Unauthenticated?: Unauthenticated;
- }
- export interface VpcConnectivityClientAuthentication {
- /**
- *
- SASL authentication type details for VPC connectivity.
-
- */
- Sasl?: VpcConnectivitySasl;
- /**
- *
- TLS authentication type details for VPC connectivity.
-
- */
- Tls?: VpcConnectivityTls;
- }
- export interface ServerlessClientAuthentication {
- /**
- *
- Details for ClientAuthentication using SASL.
-
- */
- Sasl?: ServerlessSasl;
- }
- export type ClientBroker = "TLS"|"TLS_PLAINTEXT"|"PLAINTEXT"|string;
- export interface CloudWatchLogs {
- Enabled: __boolean;
- LogGroup?: __string;
- }
- export interface ClusterInfo {
- /**
- *
- Arn of active cluster operation.
-
- */
- ActiveOperationArn?: __string;
- /**
- *
- Information about the broker nodes.
-
- */
- BrokerNodeGroupInfo?: BrokerNodeGroupInfo;
- /**
- *
- Includes all client authentication information.
-
- */
- ClientAuthentication?: ClientAuthentication;
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The name of the cluster.
-
- */
- ClusterName?: __string;
- /**
- *
- The time when the cluster was created.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.
-
- */
- CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
- /**
- *
- The current version of the MSK cluster.
-
- */
- CurrentVersion?: __string;
- /**
- *
- Includes all encryption-related information.
-
- */
- EncryptionInfo?: EncryptionInfo;
- /**
- *
- Specifies which metrics are gathered for the MSK cluster. This property has the following possible values: DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION. For a list of the metrics associated with each of these levels of monitoring, see Monitoring.
-
- */
- EnhancedMonitoring?: EnhancedMonitoring;
- /**
- *
- Settings for open monitoring using Prometheus.
-
- */
- OpenMonitoring?: OpenMonitoring;
- LoggingInfo?: LoggingInfo;
- /**
- *
- The number of broker nodes in the cluster.
-
- */
- NumberOfBrokerNodes?: __integer;
- /**
- *
- The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
-
- */
- State?: ClusterState;
- StateInfo?: StateInfo;
- /**
- *
- Tags attached to the cluster.
-
- */
- Tags?: __mapOf__string;
- /**
- *
- The connection string to use to connect to the Apache ZooKeeper cluster.
-
- */
- ZookeeperConnectString?: __string;
- /**
- *
- The connection string to use to connect to zookeeper cluster on Tls port.
-
- */
- ZookeeperConnectStringTls?: __string;
- /**
- *
- This controls storage mode for supported storage tiers.
-
- */
- StorageMode?: StorageMode;
- /**
- *
- Determines if there is an action required from the customer.
-
- */
- CustomerActionStatus?: CustomerActionStatus;
- }
- export interface Cluster {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies a cluster operation.
-
- */
- ActiveOperationArn?: __string;
- /**
- *
- Cluster Type.
-
- */
- ClusterType?: ClusterType;
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The name of the cluster.
-
- */
- ClusterName?: __string;
- /**
- *
- The time when the cluster was created.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- The current version of the MSK cluster.
-
- */
- CurrentVersion?: __string;
- /**
- *
- The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
-
- */
- State?: ClusterState;
- /**
- *
- State Info for the Amazon MSK cluster.
-
- */
- StateInfo?: StateInfo;
- /**
- *
- Tags attached to the cluster.
-
- */
- Tags?: __mapOf__string;
- /**
- *
- Information about the provisioned cluster.
-
- */
- Provisioned?: Provisioned;
- /**
- *
- Information about the serverless cluster.
-
- */
- Serverless?: Serverless;
- }
- export interface ClusterOperationInfo {
- /**
- *
- The ID of the API request that triggered this operation.
-
- */
- ClientRequestId?: __string;
- /**
- *
- ARN of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The time that the operation was created.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- The time at which the operation finished.
-
- */
- EndTime?: __timestampIso8601;
- /**
- *
- Describes the error if the operation fails.
-
- */
- ErrorInfo?: ErrorInfo;
- /**
- *
- ARN of the cluster operation.
-
- */
- OperationArn?: __string;
- /**
- *
- State of the cluster operation.
-
- */
- OperationState?: __string;
- /**
- *
- Steps completed during the operation.
-
- */
- OperationSteps?: __listOfClusterOperationStep;
- /**
- *
- Type of the cluster operation.
-
- */
- OperationType?: __string;
- /**
- *
- Information about cluster attributes before a cluster is updated.
-
- */
- SourceClusterInfo?: MutableClusterInfo;
- /**
- *
- Information about cluster attributes after a cluster is updated.
-
- */
- TargetClusterInfo?: MutableClusterInfo;
- /**
- *
- Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
-
- */
- VpcConnectionInfo?: VpcConnectionInfo;
- }
- export interface ClusterOperationStep {
- /**
- *
- Information about the step and its status.
-
- */
- StepInfo?: ClusterOperationStepInfo;
- /**
- *
- The name of the step.
-
- */
- StepName?: __string;
- }
- export interface ClusterOperationStepInfo {
- /**
- *
- The steps current status.
-
- */
- StepStatus?: __string;
- }
- export type ClusterState = "ACTIVE"|"CREATING"|"DELETING"|"FAILED"|"HEALING"|"MAINTENANCE"|"REBOOTING_BROKER"|"UPDATING"|string;
- export type ClusterType = "PROVISIONED"|"SERVERLESS"|string;
- export interface ProvisionedRequest {
- /**
- *
- Information about the brokers.
-
- */
- BrokerNodeGroupInfo: BrokerNodeGroupInfo;
- /**
- *
- Includes all client authentication information.
-
- */
- ClientAuthentication?: ClientAuthentication;
- /**
- *
- Represents the configuration that you want Amazon MSK to use for the brokers in a cluster.
-
- */
- ConfigurationInfo?: ConfigurationInfo;
- /**
- *
- Includes all encryption-related information.
-
- */
- EncryptionInfo?: EncryptionInfo;
- /**
- *
- Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION.
-
- */
- EnhancedMonitoring?: EnhancedMonitoring;
- /**
- *
- The settings for open monitoring.
-
- */
- OpenMonitoring?: OpenMonitoringInfo;
- /**
- *
- The Apache Kafka version that you want for the cluster.
-
- */
- KafkaVersion: __stringMin1Max128;
- /**
- *
- Log delivery information for the cluster.
-
- */
- LoggingInfo?: LoggingInfo;
- /**
- *
- The number of broker nodes in the cluster.
-
- */
- NumberOfBrokerNodes: __integerMin1Max15;
- /**
- *
- This controls storage mode for supported storage tiers.
-
- */
- StorageMode?: StorageMode;
- }
- export interface Provisioned {
- /**
- *
- Information about the brokers.
-
- */
- BrokerNodeGroupInfo: BrokerNodeGroupInfo;
- /**
- *
- Information about the Apache Kafka version deployed on the brokers.
-
- */
- CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
- /**
- *
- Includes all client authentication information.
-
- */
- ClientAuthentication?: ClientAuthentication;
- /**
- *
- Includes all encryption-related information.
-
- */
- EncryptionInfo?: EncryptionInfo;
- /**
- *
- Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION.
-
- */
- EnhancedMonitoring?: EnhancedMonitoring;
- /**
- *
- The settings for open monitoring.
-
- */
- OpenMonitoring?: OpenMonitoringInfo;
- /**
- *
- Log delivery information for the cluster.
-
- */
- LoggingInfo?: LoggingInfo;
- /**
- *
- The number of broker nodes in the cluster.
-
- */
- NumberOfBrokerNodes: __integerMin1Max15;
- /**
- *
- The connection string to use to connect to the Apache ZooKeeper cluster.
-
- */
- ZookeeperConnectString?: __string;
- /**
- *
- The connection string to use to connect to the Apache ZooKeeper cluster on a TLS port.
-
- */
- ZookeeperConnectStringTls?: __string;
- /**
- *
- This controls storage mode for supported storage tiers.
-
- */
- StorageMode?: StorageMode;
- /**
- *
- Determines if there is an action required from the customer.
-
- */
- CustomerActionStatus?: CustomerActionStatus;
- }
- export interface VpcConfig {
- /**
- *
- The IDs of the subnets associated with the cluster.
-
- */
- SubnetIds: __listOf__string;
- /**
- *
- The IDs of the security groups associated with the cluster.
-
- */
- SecurityGroupIds?: __listOf__string;
- }
- export interface ServerlessRequest {
- /**
- *
- The configuration of the Amazon VPCs for the cluster.
-
- */
- VpcConfigs: __listOfVpcConfig;
- /**
- *
- Includes all client authentication information.
-
- */
- ClientAuthentication?: ServerlessClientAuthentication;
- }
- export interface Serverless {
- /**
- *
- The configuration of the Amazon VPCs for the cluster.
-
- */
- VpcConfigs: __listOfVpcConfig;
- /**
- *
- Includes all client authentication information.
-
- */
- ClientAuthentication?: ServerlessClientAuthentication;
- }
- export interface ClientVpcConnection {
- /**
- *
- Information about the auth scheme of Vpc Connection.
-
- */
- Authentication?: __string;
- /**
- *
- Creation time of the Vpc Connection.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- State of the Vpc Connection.
-
- */
- State?: VpcConnectionState;
- /**
- *
- The ARN that identifies the Vpc Connection.
-
- */
- VpcConnectionArn: __string;
- /**
- *
- The Owner of the Vpc Connection.
-
- */
- Owner?: __string;
- }
- export interface VpcConnection {
- /**
- *
- The ARN that identifies the Vpc Connection.
-
- */
- VpcConnectionArn: __string;
- /**
- *
- The ARN that identifies the Cluster which the Vpc Connection belongs to.
-
- */
- TargetClusterArn: __string;
- /**
- *
- Creation time of the Vpc Connection.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- Information about the auth scheme of Vpc Connection.
-
- */
- Authentication?: __string;
- /**
- *
- The vpcId that belongs to the Vpc Connection.
-
- */
- VpcId?: __string;
- /**
- *
- State of the Vpc Connection.
-
- */
- State?: VpcConnectionState;
- }
- export interface CompatibleKafkaVersion {
- /**
- *
- An Apache Kafka version.
-
- */
- SourceVersion?: __string;
- /**
- *
- A list of Apache Kafka versions.
-
- */
- TargetVersions?: __listOf__string;
- }
- export interface Configuration {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration.
-
- */
- Arn: __string;
- /**
- *
- The time when the configuration was created.
-
- */
- CreationTime: __timestampIso8601;
- /**
- *
- The description of the configuration.
-
- */
- Description: __string;
- /**
- *
- An array of the versions of Apache Kafka with which you can use this MSK configuration. You can use this configuration for an MSK cluster only if the Apache Kafka version specified for the cluster appears in this array.
-
- */
- KafkaVersions: __listOf__string;
- /**
- *
- Latest revision of the configuration.
-
- */
- LatestRevision: ConfigurationRevision;
- /**
- *
- The name of the configuration.
-
- */
- Name: __string;
- /**
- *
- The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED.
-
- */
- State: ConfigurationState;
- }
- export interface ConfigurationInfo {
- /**
- *
- ARN of the configuration to use.
-
- */
- Arn: __string;
- /**
- *
- The revision of the configuration to use.
-
- */
- Revision: __long;
- }
- export interface ConfigurationRevision {
- /**
- *
- The time when the configuration revision was created.
-
- */
- CreationTime: __timestampIso8601;
- /**
- *
- The description of the configuration revision.
-
- */
- Description?: __string;
- /**
- *
- The revision number.
-
- */
- Revision: __long;
- }
- export type ConfigurationState = "ACTIVE"|"DELETING"|"DELETE_FAILED"|string;
- export interface ConnectivityInfo {
- /**
- *
- Public access control for brokers.
-
- */
- PublicAccess?: PublicAccess;
- /**
- *
- VPC connectivity access control for brokers.
-
- */
- VpcConnectivity?: VpcConnectivity;
- }
- export interface ConsumerGroupReplication {
- /**
- * List of regular expression patterns indicating the consumer groups that should not be replicated.
- */
- ConsumerGroupsToExclude?: __listOf__stringMax256;
- /**
- * List of regular expression patterns indicating the consumer groups to copy.
- */
- ConsumerGroupsToReplicate: __listOf__stringMax256;
- /**
- * Enables synchronization of consumer groups to target cluster.
- */
- DetectAndCopyNewConsumerGroups?: __boolean;
- /**
- * Enables synchronization of consumer group offsets to target cluster. The translated offsets will be written to topic __consumer_offsets.
- */
- SynchroniseConsumerGroupOffsets?: __boolean;
- }
- export interface ConsumerGroupReplicationUpdate {
- /**
- * List of regular expression patterns indicating the consumer groups that should not be replicated.
- */
- ConsumerGroupsToExclude: __listOf__stringMax256;
- /**
- * List of regular expression patterns indicating the consumer groups to copy.
- */
- ConsumerGroupsToReplicate: __listOf__stringMax256;
- /**
- * Enables synchronization of consumer groups to target cluster.
- */
- DetectAndCopyNewConsumerGroups: __boolean;
- /**
- * Enables synchronization of consumer group offsets to target cluster. The translated offsets will be written to topic __consumer_offsets.
- */
- SynchroniseConsumerGroupOffsets: __boolean;
- }
- export interface CreateClusterV2Request {
- /**
- *
- The name of the cluster.
-
- */
- ClusterName: __stringMin1Max64;
- /**
- *
- A map of tags that you want the cluster to have.
-
- */
- Tags?: __mapOf__string;
- /**
- *
- Information about the provisioned cluster.
-
- */
- Provisioned?: ProvisionedRequest;
- /**
- *
- Information about the serverless cluster.
-
- */
- Serverless?: ServerlessRequest;
- }
- export interface CreateClusterRequest {
- /**
- *
- Information about the broker nodes in the cluster.
-
- */
- BrokerNodeGroupInfo: BrokerNodeGroupInfo;
- /**
- *
- Includes all client authentication related information.
-
- */
- ClientAuthentication?: ClientAuthentication;
- /**
- *
- The name of the cluster.
-
- */
- ClusterName: __stringMin1Max64;
- /**
- *
- Represents the configuration that you want MSK to use for the brokers in a cluster.
-
- */
- ConfigurationInfo?: ConfigurationInfo;
- /**
- *
- Includes all encryption-related information.
-
- */
- EncryptionInfo?: EncryptionInfo;
- /**
- *
- Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION.
-
- */
- EnhancedMonitoring?: EnhancedMonitoring;
- /**
- *
- The settings for open monitoring.
-
- */
- OpenMonitoring?: OpenMonitoringInfo;
- /**
- *
- The version of Apache Kafka.
-
- */
- KafkaVersion: __stringMin1Max128;
- LoggingInfo?: LoggingInfo;
- /**
- *
- The number of broker nodes in the cluster.
-
- */
- NumberOfBrokerNodes: __integerMin1Max15;
- /**
- *
- Create tags when creating the cluster.
-
- */
- Tags?: __mapOf__string;
- /**
- *
- This controls storage mode for supported storage tiers.
-
- */
- StorageMode?: StorageMode;
- }
- export interface CreateClusterResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The name of the MSK cluster.
-
- */
- ClusterName?: __string;
- /**
- *
- The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
-
- */
- State?: ClusterState;
- }
- export interface CreateClusterV2Response {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The name of the MSK cluster.
-
- */
- ClusterName?: __string;
- /**
- *
- The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
-
- */
- State?: ClusterState;
- /**
- *
- The type of the cluster. The possible states are PROVISIONED or SERVERLESS.
-
- */
- ClusterType?: ClusterType;
- }
- export interface CreateConfigurationRequest {
- /**
- *
- The description of the configuration.
-
- */
- Description?: __string;
- /**
- *
- The versions of Apache Kafka with which you can use this MSK configuration.
-
- */
- KafkaVersions?: __listOf__string;
- /**
- *
- The name of the configuration.
-
- */
- Name: __string;
- /**
- *
- Contents of the server.properties file. When using the API, you must ensure that the contents of the file are base64 encoded.
- When using the AWS Management Console, the SDK, or the AWS CLI, the contents of server.properties can be in plaintext.
-
- */
- ServerProperties: __blob;
- }
- export interface CreateConfigurationResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration.
-
- */
- Arn?: __string;
- /**
- *
- The time when the configuration was created.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- Latest revision of the configuration.
-
- */
- LatestRevision?: ConfigurationRevision;
- /**
- *
- The name of the configuration.
-
- */
- Name?: __string;
- /**
- *
- The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED.
-
- */
- State?: ConfigurationState;
- }
- export interface CreateReplicatorRequest {
- /**
- * A summary description of the replicator.
- */
- Description?: __stringMax1024;
- /**
- * Kafka Clusters to use in setting up sources / targets for replication.
- */
- KafkaClusters: __listOfKafkaCluster;
- /**
- * A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.
- */
- ReplicationInfoList: __listOfReplicationInfo;
- /**
- * The name of the replicator. Alpha-numeric characters with '-' are allowed.
- */
- ReplicatorName: __stringMin1Max128Pattern09AZaZ09AZaZ0;
- /**
- * The ARN of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)
- */
- ServiceExecutionRoleArn: __string;
- /**
- * List of tags to attach to created Replicator.
- */
- Tags?: __mapOf__string;
- }
- export interface CreateReplicatorResponse {
- /**
- * The Amazon Resource Name (ARN) of the replicator.
- */
- ReplicatorArn?: __string;
- /**
- * Name of the replicator provided by the customer.
- */
- ReplicatorName?: __string;
- /**
- * State of the replicator.
- */
- ReplicatorState?: ReplicatorState;
- }
- export interface CreateVpcConnectionRequest {
- /**
- *
- The cluster Amazon Resource Name (ARN) for the VPC connection.
-
- */
- TargetClusterArn: __string;
- /**
- *
- The authentication type of VPC connection.
-
- */
- Authentication: __string;
- /**
- *
- The VPC ID of VPC connection.
-
- */
- VpcId: __string;
- /**
- *
- The list of client subnets.
-
- */
- ClientSubnets: __listOf__string;
- /**
- *
- The list of security groups.
-
- */
- SecurityGroups: __listOf__string;
- /**
- *
- A map of tags for the VPC connection.
-
- */
- Tags?: __mapOf__string;
- }
- export interface CreateVpcConnectionResponse {
- /**
- *
- The VPC connection ARN.
-
- */
- VpcConnectionArn?: __string;
- /**
- *
- The State of Vpc Connection.
-
- */
- State?: VpcConnectionState;
- /**
- *
- The authentication type of VPC connection.
-
- */
- Authentication?: __string;
- /**
- *
- The VPC ID of the VPC connection.
-
- */
- VpcId?: __string;
- /**
- *
- The list of client subnets.
-
- */
- ClientSubnets?: __listOf__string;
- /**
- *
- The list of security groups.
-
- */
- SecurityGroups?: __listOf__string;
- /**
- *
- The creation time of VPC connection.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- A map of tags for the VPC connection.
-
- */
- Tags?: __mapOf__string;
- }
- export interface ClusterOperationV2 {
- /**
- *
- ARN of the cluster.
- */
- ClusterArn?: __string;
- /**
- *
- Type of the backend cluster.
- */
- ClusterType?: ClusterType;
- /**
- *
- The time at which operation was started.
- */
- StartTime?: __timestampIso8601;
- /**
- *
- The time at which the operation finished.
- */
- EndTime?: __timestampIso8601;
- /**
- *
- If cluster operation failed from an error, it describes the error.
- */
- ErrorInfo?: ErrorInfo;
- /**
- *
- ARN of the cluster operation.
- */
- OperationArn?: __string;
- /**
- *
- State of the cluster operation.
- */
- OperationState?: __string;
- /**
- *
- Type of the cluster operation.
- */
- OperationType?: __string;
- /**
- *
- Properties of a provisioned cluster.
- */
- Provisioned?: ClusterOperationV2Provisioned;
- /**
- *
- Properties of a serverless cluster.
- */
- Serverless?: ClusterOperationV2Serverless;
- }
- export interface ClusterOperationV2Provisioned {
- /**
- *
- Steps completed during the operation.
- */
- OperationSteps?: __listOfClusterOperationStep;
- /**
- *
- Information about cluster attributes before a cluster is updated.
- */
- SourceClusterInfo?: MutableClusterInfo;
- /**
- *
- Information about cluster attributes after a cluster is updated.
- */
- TargetClusterInfo?: MutableClusterInfo;
- /**
- *
- Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
- */
- VpcConnectionInfo?: VpcConnectionInfo;
- }
- export interface ClusterOperationV2Serverless {
- /**
- *
- Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
- */
- VpcConnectionInfo?: VpcConnectionInfoServerless;
- }
- export interface ClusterOperationV2Summary {
- /**
- *
- ARN of the cluster.
- */
- ClusterArn?: __string;
- /**
- *
- Type of the backend cluster.
- */
- ClusterType?: ClusterType;
- /**
- *
- The time at which operation was started.
- */
- StartTime?: __timestampIso8601;
- /**
- *
- The time at which the operation finished.
- */
- EndTime?: __timestampIso8601;
- /**
- *
- ARN of the cluster operation.
- */
- OperationArn?: __string;
- /**
- *
- State of the cluster operation.
- */
- OperationState?: __string;
- /**
- *
- Type of the cluster operation.
- */
- OperationType?: __string;
- }
- export type CustomerActionStatus = "CRITICAL_ACTION_REQUIRED"|"ACTION_RECOMMENDED"|"NONE"|string;
- export interface DeleteClusterRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The current version of the MSK cluster.
-
- */
- CurrentVersion?: __string;
- }
- export interface DeleteClusterResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
-
- */
- State?: ClusterState;
- }
- export interface DeleteClusterPolicyRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn: __string;
- }
- export interface DeleteClusterPolicyResponse {
- }
- export interface DeleteConfigurationRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration.
-
- */
- Arn: __string;
- }
- export interface DeleteConfigurationResponse {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration.
-
- */
- Arn?: __string;
- /**
- *
- The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED.
-
- */
- State?: ConfigurationState;
- }
- export interface DeleteReplicatorRequest {
- /**
- * The current version of the replicator.
- */
- CurrentVersion?: __string;
- /**
- * The Amazon Resource Name (ARN) of the replicator to be deleted.
- */
- ReplicatorArn: __string;
- }
- export interface DeleteReplicatorResponse {
- /**
- * The Amazon Resource Name (ARN) of the replicator.
- */
- ReplicatorArn?: __string;
- /**
- * The state of the replicator.
- */
- ReplicatorState?: ReplicatorState;
- }
- export interface DeleteVpcConnectionRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK VPC connection.
-
- */
- Arn: __string;
- }
- export interface DeleteVpcConnectionResponse {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK VPC connection.
-
- */
- VpcConnectionArn?: __string;
- /**
- *
- The state of the VPC connection.
-
- */
- State?: VpcConnectionState;
- }
- export interface DescribeClusterOperationRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the MSK cluster operation.
-
- */
- ClusterOperationArn: __string;
- }
- export interface DescribeClusterOperationV2Request {
- /**
- * ARN of the cluster operation to describe.
- */
- ClusterOperationArn: __string;
- }
- export interface DescribeClusterOperationResponse {
- /**
- *
- Cluster operation information
-
- */
- ClusterOperationInfo?: ClusterOperationInfo;
- }
- export interface DescribeClusterOperationV2Response {
- /**
- *
- Cluster operation information
- */
- ClusterOperationInfo?: ClusterOperationV2;
- }
- export interface DescribeClusterRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- }
- export interface DescribeClusterV2Request {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- }
- export interface DescribeClusterResponse {
- /**
- *
- The cluster information.
-
- */
- ClusterInfo?: ClusterInfo;
- }
- export interface DescribeClusterV2Response {
- /**
- *
- The cluster information.
-
- */
- ClusterInfo?: Cluster;
- }
- export interface DescribeConfigurationRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions.
-
- */
- Arn: __string;
- }
- export interface DescribeConfigurationResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration.
-
- */
- Arn?: __string;
- /**
- *
- The time when the configuration was created.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- The description of the configuration.
-
- */
- Description?: __string;
- /**
- *
- The versions of Apache Kafka with which you can use this MSK configuration.
-
- */
- KafkaVersions?: __listOf__string;
- /**
- *
- Latest revision of the configuration.
-
- */
- LatestRevision?: ConfigurationRevision;
- /**
- *
- The name of the configuration.
-
- */
- Name?: __string;
- /**
- *
- The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED.
-
- */
- State?: ConfigurationState;
- }
- export interface DescribeConfigurationRevisionRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions.
-
- */
- Arn: __string;
- /**
- *
- A string that uniquely identifies a revision of an MSK configuration.
-
- */
- Revision: __long;
- }
- export interface DescribeConfigurationRevisionResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration.
-
- */
- Arn?: __string;
- /**
- *
- The time when the configuration was created.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- The description of the configuration.
-
- */
- Description?: __string;
- /**
- *
- The revision number.
-
- */
- Revision?: __long;
- /**
- *
- Contents of the server.properties file. When using the API, you must ensure that the contents of the file are base64 encoded.
- When using the AWS Management Console, the SDK, or the AWS CLI, the contents of server.properties can be in plaintext.
-
- */
- ServerProperties?: __blob;
- }
- export interface DescribeVpcConnectionRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.
-
- */
- Arn: __string;
- }
- export interface DescribeReplicatorRequest {
- /**
- * The Amazon Resource Name (ARN) of the replicator to be described.
- */
- ReplicatorArn: __string;
- }
- export interface DescribeReplicatorResponse {
- /**
- * The time when the replicator was created.
- */
- CreationTime?: __timestampIso8601;
- /**
- * The current version number of the replicator.
- */
- CurrentVersion?: __string;
- /**
- * Whether this resource is a replicator reference.
- */
- IsReplicatorReference?: __boolean;
- /**
- * Kafka Clusters used in setting up sources / targets for replication.
- */
- KafkaClusters?: __listOfKafkaClusterDescription;
- /**
- * A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.
- */
- ReplicationInfoList?: __listOfReplicationInfoDescription;
- /**
- * The Amazon Resource Name (ARN) of the replicator.
- */
- ReplicatorArn?: __string;
- /**
- * The description of the replicator.
- */
- ReplicatorDescription?: __string;
- /**
- * The name of the replicator.
- */
- ReplicatorName?: __string;
- /**
- * The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.
- */
- ReplicatorResourceArn?: __string;
- /**
- * State of the replicator.
- */
- ReplicatorState?: ReplicatorState;
- /**
- * The Amazon Resource Name (ARN) of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)
- */
- ServiceExecutionRoleArn?: __string;
- /**
- * Details about the state of the replicator.
- */
- StateInfo?: ReplicationStateInfo;
- /**
- * List of tags attached to the Replicator.
- */
- Tags?: __mapOf__string;
- }
- export interface DescribeVpcConnectionResponse {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.
-
- */
- VpcConnectionArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK cluster.
-
- */
- TargetClusterArn?: __string;
- /**
- *
- The state of VPC connection.
-
- */
- State?: VpcConnectionState;
- /**
- *
- The authentication type of VPC connection.
-
- */
- Authentication?: __string;
- /**
- *
- The VPC Id for the VPC connection.
-
- */
- VpcId?: __string;
- /**
- *
- The list of subnets for the VPC connection.
-
- */
- Subnets?: __listOf__string;
- /**
- *
- The list of security groups for the VPC connection.
-
- */
- SecurityGroups?: __listOf__string;
- /**
- *
- The creation time of the VPC connection.
-
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- A map of tags for the VPC connection.
-
- */
- Tags?: __mapOf__string;
- }
- export interface BatchDisassociateScramSecretRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster to be updated.
-
- */
- ClusterArn: __string;
- /**
- *
- List of AWS Secrets Manager secret ARNs.
-
- */
- SecretArnList: __listOf__string;
- }
- export interface BatchDisassociateScramSecretResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- List of errors when disassociating secrets to cluster.
-
- */
- UnprocessedScramSecrets?: __listOfUnprocessedScramSecret;
- }
- export interface EBSStorageInfo {
- /**
- *
- EBS volume provisioned throughput information.
-
- */
- ProvisionedThroughput?: ProvisionedThroughput;
- /**
- *
- The size in GiB of the EBS volume for the data drive on each broker node.
-
- */
- VolumeSize?: __integerMin1Max16384;
- }
- export interface EncryptionAtRest {
- /**
- *
- The ARN of the AWS KMS key for encrypting data at rest. If you don't specify a KMS key, MSK creates one for you and uses it.
-
- */
- DataVolumeKMSKeyId: __string;
- }
- export interface EncryptionInTransit {
- /**
- *
- Indicates the encryption setting for data in transit between clients and brokers. The following are the possible values.
-
- TLS means that client-broker communication is enabled with TLS only.
-
- TLS_PLAINTEXT means that client-broker communication is enabled for both TLS-encrypted, as well as plaintext data.
-
- PLAINTEXT means that client-broker communication is enabled in plaintext only.
- The default value is TLS_PLAINTEXT.
-
- */
- ClientBroker?: ClientBroker;
- /**
- *
- When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plaintext.
- The default value is true.
-
- */
- InCluster?: __boolean;
- }
- export interface EncryptionInfo {
- /**
- *
- The data-volume encryption details.
-
- */
- EncryptionAtRest?: EncryptionAtRest;
- /**
- *
- The details for encryption in transit.
-
- */
- EncryptionInTransit?: EncryptionInTransit;
- }
- export type EnhancedMonitoring = "DEFAULT"|"PER_BROKER"|"PER_TOPIC_PER_BROKER"|"PER_TOPIC_PER_PARTITION"|string;
- export interface ErrorInfo {
- /**
- *
- A number describing the error programmatically.
-
- */
- ErrorCode?: __string;
- /**
- *
- An optional field to provide more details about the error.
-
- */
- ErrorString?: __string;
- }
- export interface Firehose {
- DeliveryStream?: __string;
- Enabled: __boolean;
- }
- export interface GetBootstrapBrokersRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- }
- export interface GetBootstrapBrokersResponse {
- /**
- *
- A string containing one or more hostname:port pairs.
-
- */
- BootstrapBrokerString?: __string;
- /**
- *
- A string containing one or more DNS names (or IP) and TLS port pairs.
-
- */
- BootstrapBrokerStringTls?: __string;
- /**
- *
- A string containing one or more DNS names (or IP) and Sasl Scram port pairs.
-
- */
- BootstrapBrokerStringSaslScram?: __string;
- /**
- *
- A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.
-
- */
- BootstrapBrokerStringSaslIam?: __string;
- /**
- *
- A string containing one or more DNS names (or IP) and TLS port pairs.
-
- */
- BootstrapBrokerStringPublicTls?: __string;
- /**
- *
- A string containing one or more DNS names (or IP) and Sasl Scram port pairs.
-
- */
- BootstrapBrokerStringPublicSaslScram?: __string;
- /**
- *
- A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.
-
- */
- BootstrapBrokerStringPublicSaslIam?: __string;
- /**
- *
- A string containing one or more DNS names (or IP) and TLS port pairs for VPC connectivity.
-
- */
- BootstrapBrokerStringVpcConnectivityTls?: __string;
- /**
- *
- A string containing one or more DNS names (or IP) and SASL/SCRAM port pairs for VPC connectivity.
-
- */
- BootstrapBrokerStringVpcConnectivitySaslScram?: __string;
- /**
- *
- A string containing one or more DNS names (or IP) and SASL/IAM port pairs for VPC connectivity.
-
- */
- BootstrapBrokerStringVpcConnectivitySaslIam?: __string;
- }
- export interface GetCompatibleKafkaVersionsRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster check.
-
- */
- ClusterArn?: __string;
- }
- export interface GetCompatibleKafkaVersionsResponse {
- /**
- *
- A list of CompatibleKafkaVersion objects.
-
- */
- CompatibleKafkaVersions?: __listOfCompatibleKafkaVersion;
- }
- export interface GetClusterPolicyRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn: __string;
- }
- export interface GetClusterPolicyResponse {
- /**
- *
- The version of cluster policy.
-
- */
- CurrentVersion?: __string;
- /**
- *
- The cluster policy.
-
- */
- Policy?: __string;
- }
- export interface KafkaCluster {
- /**
- * Details of an Amazon MSK Cluster.
- */
- AmazonMskCluster: AmazonMskCluster;
- /**
- * Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.
- */
- VpcConfig: KafkaClusterClientVpcConfig;
- }
- export interface KafkaClusterClientVpcConfig {
- /**
- * The security groups to attach to the ENIs for the broker nodes.
- */
- SecurityGroupIds?: __listOf__string;
- /**
- * The list of subnets in the client VPC to connect to.
- */
- SubnetIds: __listOf__string;
- }
- export interface KafkaClusterDescription {
- /**
- * Details of an Amazon MSK Cluster.
- */
- AmazonMskCluster?: AmazonMskCluster;
- /**
- * The alias of the Kafka cluster. Used to prefix names of replicated topics.
- */
- KafkaClusterAlias?: __string;
- /**
- * Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.
- */
- VpcConfig?: KafkaClusterClientVpcConfig;
- }
- export interface KafkaClusterSummary {
- /**
- * Details of an Amazon MSK Cluster.
- */
- AmazonMskCluster?: AmazonMskCluster;
- /**
- * The alias of the Kafka cluster. Used to prefix names of replicated topics.
- */
- KafkaClusterAlias?: __string;
- }
- export interface KafkaVersion {
- Version?: __string;
- Status?: KafkaVersionStatus;
- }
- export type KafkaVersionStatus = "ACTIVE"|"DEPRECATED"|string;
- export interface ListClusterOperationsRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListClusterOperationsV2Request {
- /**
- * The arn of the cluster whose operations are being requested.
- */
- ClusterArn: __string;
- /**
- * The maxResults of the query.
- */
- MaxResults?: MaxResults;
- /**
- * The nextToken of the query.
- */
- NextToken?: __string;
- }
- export interface ListClusterOperationsResponse {
- /**
- *
- An array of cluster operation information objects.
-
- */
- ClusterOperationInfoList?: __listOfClusterOperationInfo;
- /**
- *
- If the response of ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.
-
- */
- NextToken?: __string;
- }
- export interface ListClusterOperationsV2Response {
- /**
- *
- An array of cluster operation information objects.
- */
- ClusterOperationInfoList?: __listOfClusterOperationV2Summary;
- /**
- *
- If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.
- */
- NextToken?: __string;
- }
- export interface ListClustersRequest {
- /**
- *
- Specify a prefix of the name of the clusters that you want to list. The service lists all the clusters whose names start with this prefix.
-
- */
- ClusterNameFilter?: __string;
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListClustersV2Request {
- /**
- *
- Specify a prefix of the names of the clusters that you want to list. The service lists all the clusters whose names start with this prefix.
-
- */
- ClusterNameFilter?: __string;
- /**
- *
- Specify either PROVISIONED or SERVERLESS.
-
- */
- ClusterTypeFilter?: __string;
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListClustersResponse {
- /**
- *
- Information on each of the MSK clusters in the response.
-
- */
- ClusterInfoList?: __listOfClusterInfo;
- /**
- *
- The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response.
- To get another batch of clusters, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListClustersV2Response {
- /**
- *
- Information on each of the MSK clusters in the response.
-
- */
- ClusterInfoList?: __listOfCluster;
- /**
- *
- The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response.
- To get another batch of clusters, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListConfigurationRevisionsRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions.
-
- */
- Arn: __string;
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListConfigurationRevisionsResponse {
- /**
- *
- Paginated results marker.
-
- */
- NextToken?: __string;
- /**
- *
- List of ConfigurationRevision objects.
-
- */
- Revisions?: __listOfConfigurationRevision;
- }
- export interface ListConfigurationsRequest {
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListConfigurationsResponse {
- /**
- *
- An array of MSK configurations.
-
- */
- Configurations?: __listOfConfiguration;
- /**
- *
- The paginated results marker. When the result of a ListConfigurations operation is truncated, the call returns NextToken in the response.
- To get another batch of configurations, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListKafkaVersionsRequest {
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.
- */
- NextToken?: __string;
- }
- export interface ListKafkaVersionsResponse {
- KafkaVersions?: __listOfKafkaVersion;
- NextToken?: __string;
- }
- export interface ListNodesRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListNodesResponse {
- /**
- *
- The paginated results marker. When the result of a ListNodes operation is truncated, the call returns NextToken in the response.
- To get another batch of nodes, provide this token in your next request.
-
- */
- NextToken?: __string;
- /**
- *
- List containing a NodeInfo object.
-
- */
- NodeInfoList?: __listOfNodeInfo;
- }
- export interface ListReplicatorsRequest {
- /**
- * The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
- */
- MaxResults?: MaxResults;
- /**
- * If the response of ListReplicators is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListReplicators.
- */
- NextToken?: __string;
- /**
- * Returns replicators starting with given name.
- */
- ReplicatorNameFilter?: __string;
- }
- export interface ListReplicatorsResponse {
- /**
- * If the response of ListReplicators is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListReplicators.
- */
- NextToken?: __string;
- /**
- * List containing information of each of the replicators in the account.
- */
- Replicators?: __listOfReplicatorSummary;
- }
- export interface ListScramSecretsRequest {
- /**
- *
- The arn of the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The maxResults of the query.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The nextToken of the query.
-
- */
- NextToken?: __string;
- }
- export interface ListScramSecretsResponse {
- /**
- *
- Paginated results marker.
-
- */
- NextToken?: __string;
- /**
- *
- The list of scram secrets associated with the cluster.
-
- */
- SecretArnList?: __listOf__string;
- }
- export interface ListTagsForResourceRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the resource that's associated with the tags.
-
- */
- ResourceArn: __string;
- }
- export interface ListTagsForResourceResponse {
- /**
- *
- The key-value pair for the resource tag.
-
- */
- Tags?: __mapOf__string;
- }
- export interface ListClientVpcConnectionsRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListClientVpcConnectionsResponse {
- /**
- *
- List of client VPC connections.
-
- */
- ClientVpcConnections?: __listOfClientVpcConnection;
- /**
- *
- The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response.
- To get another batch of configurations, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListVpcConnectionsRequest {
- /**
- *
- The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
-
- */
- MaxResults?: MaxResults;
- /**
- *
- The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response.
- To get the next batch, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface ListVpcConnectionsResponse {
- /**
- *
- List of VPC connections.
-
- */
- VpcConnections?: __listOfVpcConnection;
- /**
- *
- The paginated results marker. When the result of a ListClientVpcConnections operation is truncated, the call returns NextToken in the response.
- To get another batch of configurations, provide this token in your next request.
-
- */
- NextToken?: __string;
- }
- export interface RejectClientVpcConnectionRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The VPC connection ARN.
-
- */
- VpcConnectionArn: __string;
- }
- export interface RejectClientVpcConnectionResponse {
- }
- export type MaxResults = number;
- export interface LoggingInfo {
- BrokerLogs: BrokerLogs;
- }
- export interface MutableClusterInfo {
- /**
- *
- Specifies the size of the EBS volume and the ID of the associated broker.
-
- */
- BrokerEBSVolumeInfo?: __listOfBrokerEBSVolumeInfo;
- /**
- *
- Information about the changes in the configuration of the brokers.
-
- */
- ConfigurationInfo?: ConfigurationInfo;
- /**
- *
- The number of broker nodes in the cluster.
-
- */
- NumberOfBrokerNodes?: __integer;
- /**
- *
- Specifies which Apache Kafka metrics Amazon MSK gathers and sends to Amazon CloudWatch for this cluster.
-
- */
- EnhancedMonitoring?: EnhancedMonitoring;
- /**
- *
- The settings for open monitoring.
-
- */
- OpenMonitoring?: OpenMonitoring;
- /**
- *
- The Apache Kafka version.
-
- */
- KafkaVersion?: __string;
- /**
- *
- You can configure your MSK cluster to send broker logs to different destination types. This is a container for the configuration details related to broker logs.
-
- */
- LoggingInfo?: LoggingInfo;
- /**
- *
- Information about the Amazon MSK broker type.
-
- */
- InstanceType?: __stringMin5Max32;
- /**
- *
- Includes all client authentication information.
-
- */
- ClientAuthentication?: ClientAuthentication;
- /**
- *
- Includes all encryption-related information.
-
- */
- EncryptionInfo?: EncryptionInfo;
- /**
- *
- Information about the broker access configuration.
-
- */
- ConnectivityInfo?: ConnectivityInfo;
- /**
- *
- This controls storage mode for supported storage tiers.
-
- */
- StorageMode?: StorageMode;
- }
- export interface NodeExporter {
- /**
- *
- Indicates whether you want to turn on or turn off the Node Exporter.
-
- */
- EnabledInBroker: __boolean;
- }
- export interface NodeExporterInfo {
- /**
- *
- Indicates whether you want to turn on or turn off the Node Exporter.
-
- */
- EnabledInBroker: __boolean;
- }
- export interface JmxExporter {
- /**
- *
- Indicates whether you want to turn on or turn off the JMX Exporter.
-
- */
- EnabledInBroker: __boolean;
- }
- export interface JmxExporterInfo {
- /**
- *
- Indicates whether you want to turn on or turn off the JMX Exporter.
-
- */
- EnabledInBroker: __boolean;
- }
- export interface OpenMonitoring {
- /**
- *
- Prometheus settings.
-
- */
- Prometheus: Prometheus;
- }
- export interface OpenMonitoringInfo {
- /**
- *
- Prometheus settings.
-
- */
- Prometheus: PrometheusInfo;
- }
- export interface Prometheus {
- /**
- *
- Indicates whether you want to turn on or turn off the JMX Exporter.
-
- */
- JmxExporter?: JmxExporter;
- /**
- *
- Indicates whether you want to turn on or turn off the Node Exporter.
-
- */
- NodeExporter?: NodeExporter;
- }
- export interface PrometheusInfo {
- /**
- *
- Indicates whether you want to turn on or turn off the JMX Exporter.
-
- */
- JmxExporter?: JmxExporterInfo;
- /**
- *
- Indicates whether you want to turn on or turn off the Node Exporter.
-
- */
- NodeExporter?: NodeExporterInfo;
- }
- export interface ProvisionedThroughput {
- /**
- *
- Provisioned throughput is enabled or not.
-
- */
- Enabled?: __boolean;
- /**
- *
- Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
-
- */
- VolumeThroughput?: __integer;
- }
- export interface PublicAccess {
- /**
- *
- The value DISABLED indicates that public access is turned off. SERVICE_PROVIDED_EIPS indicates that public access is turned on.
-
- */
- Type?: __string;
- }
- export interface PutClusterPolicyRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The policy version.
-
- */
- CurrentVersion?: __string;
- /**
- *
- The policy.
-
- */
- Policy: __string;
- }
- export interface PutClusterPolicyResponse {
- /**
- *
- The policy version.
-
- */
- CurrentVersion?: __string;
- }
- export interface RebootBrokerRequest {
- /**
- *
- The list of broker IDs to be rebooted. The reboot-broker operation supports rebooting one broker at a time.
-
- */
- BrokerIds: __listOf__string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster to be updated.
-
- */
- ClusterArn: __string;
- }
- export interface RebootBrokerResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface S3 {
- Bucket?: __string;
- Enabled: __boolean;
- Prefix?: __string;
- }
- export interface ServerlessSasl {
- /**
- *
- Indicates whether IAM access control is enabled.
-
- */
- Iam?: Iam;
- }
- export interface Sasl {
- /**
- *
- Details for SASL/SCRAM client authentication.
-
- */
- Scram?: Scram;
- /**
- *
- Indicates whether IAM access control is enabled.
-
- */
- Iam?: Iam;
- }
- export interface VpcConnectivitySasl {
- /**
- *
- Details for SASL/SCRAM client authentication for VPC connectivity.
-
- */
- Scram?: VpcConnectivityScram;
- /**
- *
- Details for SASL/IAM client authentication for VPC connectivity.
-
- */
- Iam?: VpcConnectivityIam;
- }
- export interface Scram {
- /**
- *
- SASL/SCRAM authentication is enabled or not.
-
- */
- Enabled?: __boolean;
- }
- export interface VpcConnectivityScram {
- /**
- *
- SASL/SCRAM authentication is on or off for VPC connectivity.
-
- */
- Enabled?: __boolean;
- }
- export interface Iam {
- /**
- *
- Indicates whether IAM access control is enabled.
-
- */
- Enabled?: __boolean;
- }
- export interface VpcConnectivityIam {
- /**
- *
- SASL/IAM authentication is on or off for VPC connectivity.
-
- */
- Enabled?: __boolean;
- }
- export interface NodeInfo {
- /**
- *
- The start time.
-
- */
- AddedToClusterTime?: __string;
- /**
- *
- The broker node info.
-
- */
- BrokerNodeInfo?: BrokerNodeInfo;
- /**
- *
- The instance type.
-
- */
- InstanceType?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the node.
-
- */
- NodeARN?: __string;
- /**
- *
- The node type.
-
- */
- NodeType?: NodeType;
- /**
- *
- The ZookeeperNodeInfo.
-
- */
- ZookeeperNodeInfo?: ZookeeperNodeInfo;
- }
- export type NodeType = "BROKER"|string;
- export interface ReplicationInfo {
- /**
- * Configuration relating to consumer group replication.
- */
- ConsumerGroupReplication: ConsumerGroupReplication;
- /**
- * The ARN of the source Kafka cluster.
- */
- SourceKafkaClusterArn: __string;
- /**
- * The compression type to use when producing records to target cluster.
- */
- TargetCompressionType: TargetCompressionType;
- /**
- * The ARN of the target Kafka cluster.
- */
- TargetKafkaClusterArn: __string;
- /**
- * Configuration relating to topic replication.
- */
- TopicReplication: TopicReplication;
- }
- export interface ReplicationInfoDescription {
- /**
- * Configuration relating to consumer group replication.
- */
- ConsumerGroupReplication?: ConsumerGroupReplication;
- /**
- * The alias of the source Kafka cluster.
- */
- SourceKafkaClusterAlias?: __string;
- /**
- * The compression type to use when producing records to target cluster.
- */
- TargetCompressionType?: TargetCompressionType;
- /**
- * The alias of the target Kafka cluster.
- */
- TargetKafkaClusterAlias?: __string;
- /**
- * Configuration relating to topic replication.
- */
- TopicReplication?: TopicReplication;
- }
- export interface ReplicationInfoSummary {
- /**
- * The alias of the source Kafka cluster.
- */
- SourceKafkaClusterAlias?: __string;
- /**
- * The alias of the target Kafka cluster.
- */
- TargetKafkaClusterAlias?: __string;
- }
- export interface ReplicationStartingPosition {
- /**
- * The type of replication starting position.
- */
- Type?: ReplicationStartingPositionType;
- }
- export type ReplicationStartingPositionType = "LATEST"|"EARLIEST"|string;
- export interface ReplicationStateInfo {
- /**
- * Code that describes the current state of the replicator.
- */
- Code?: __string;
- /**
- * Message that describes the state of the replicator.
- */
- Message?: __string;
- }
- export type ReplicatorState = "RUNNING"|"CREATING"|"UPDATING"|"DELETING"|"FAILED"|string;
- export interface ReplicatorSummary {
- /**
- * The time the replicator was created.
- */
- CreationTime?: __timestampIso8601;
- /**
- * The current version of the replicator.
- */
- CurrentVersion?: __string;
- /**
- * Whether this resource is a replicator reference.
- */
- IsReplicatorReference?: __boolean;
- /**
- * Kafka Clusters used in setting up sources / targets for replication.
- */
- KafkaClustersSummary?: __listOfKafkaClusterSummary;
- /**
- * A list of summarized information of replications between clusters.
- */
- ReplicationInfoSummaryList?: __listOfReplicationInfoSummary;
- /**
- * The Amazon Resource Name (ARN) of the replicator.
- */
- ReplicatorArn?: __string;
- /**
- * The name of the replicator.
- */
- ReplicatorName?: __string;
- /**
- * The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.
- */
- ReplicatorResourceArn?: __string;
- /**
- * State of the replicator.
- */
- ReplicatorState?: ReplicatorState;
- }
- export interface StateInfo {
- Code?: __string;
- Message?: __string;
- }
- export interface StorageInfo {
- /**
- *
- EBS volume information.
-
- */
- EbsStorageInfo?: EBSStorageInfo;
- }
- export type StorageMode = "LOCAL"|"TIERED"|string;
- export interface TagResourceRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the resource that's associated with the tags.
-
- */
- ResourceArn: __string;
- /**
- *
- The key-value pair for the resource tag.
-
- */
- Tags: __mapOf__string;
- }
- export type TargetCompressionType = "NONE"|"GZIP"|"SNAPPY"|"LZ4"|"ZSTD"|string;
- export interface Tls {
- /**
- *
- List of ACM Certificate Authority ARNs.
-
- */
- CertificateAuthorityArnList?: __listOf__string;
- /**
- *
- Specifies whether you want to turn on or turn off TLS authentication.
-
- */
- Enabled?: __boolean;
- }
- export interface VpcConnectivityTls {
- /**
- *
- TLS authentication is on or off for VPC connectivity.
-
- */
- Enabled?: __boolean;
- }
- export interface TopicReplication {
- /**
- * Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.
- */
- CopyAccessControlListsForTopics?: __boolean;
- /**
- * Whether to periodically configure remote topics to match their corresponding upstream topics.
- */
- CopyTopicConfigurations?: __boolean;
- /**
- * Whether to periodically check for new topics and partitions.
- */
- DetectAndCopyNewTopics?: __boolean;
- /**
- * Configuration for specifying the position in the topics to start replicating from.
- */
- StartingPosition?: ReplicationStartingPosition;
- /**
- * List of regular expression patterns indicating the topics that should not be replicated.
- */
- TopicsToExclude?: __listOf__stringMax249;
- /**
- * List of regular expression patterns indicating the topics to copy.
- */
- TopicsToReplicate: __listOf__stringMax249;
- }
- export interface TopicReplicationUpdate {
- /**
- * Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.
- */
- CopyAccessControlListsForTopics: __boolean;
- /**
- * Whether to periodically configure remote topics to match their corresponding upstream topics.
- */
- CopyTopicConfigurations: __boolean;
- /**
- * Whether to periodically check for new topics and partitions.
- */
- DetectAndCopyNewTopics: __boolean;
- /**
- * List of regular expression patterns indicating the topics that should not be replicated.
- */
- TopicsToExclude: __listOf__stringMax249;
- /**
- * List of regular expression patterns indicating the topics to copy.
- */
- TopicsToReplicate: __listOf__stringMax249;
- }
- export interface Unauthenticated {
- /**
- *
- Specifies whether you want to turn on or turn off unauthenticated traffic to your cluster.
-
- */
- Enabled?: __boolean;
- }
- export interface UnprocessedScramSecret {
- /**
- *
- Error code for associate/disassociate failure.
-
- */
- ErrorCode?: __string;
- /**
- *
- Error message for associate/disassociate failure.
-
- */
- ErrorMessage?: __string;
- /**
- *
- AWS Secrets Manager secret ARN.
-
- */
- SecretArn?: __string;
- }
- export interface UntagResourceRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the resource that's associated with the tags.
-
- */
- ResourceArn: __string;
- /**
- *
- Tag keys must be unique for a given cluster. In addition, the following restrictions apply:
-
-
- Each tag key must be unique. If you add a tag with a key that's already in
- use, your new tag overwrites the existing key-value pair.
-
-
- You can't start a tag key with aws: because this prefix is reserved for use
- by AWS. AWS creates tags that begin with this prefix on your behalf, but
- you can't edit or delete them.
-
-
- Tag keys must be between 1 and 128 Unicode characters in length.
-
-
- Tag keys must consist of the following characters: Unicode letters, digits,
- white space, and the following special characters: _ . / = + -
- @.
-
-
-
- */
- TagKeys: __listOf__string;
- }
- export interface UpdateBrokerCountRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The version of cluster to update from. A successful operation will then generate a new version.
-
- */
- CurrentVersion: __string;
- /**
- *
- The number of broker nodes that you want the cluster to have after this operation completes successfully.
-
- */
- TargetNumberOfBrokerNodes: __integerMin1Max15;
- }
- export interface UpdateBrokerCountResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateBrokerTypeRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The cluster version that you want to change. After this operation completes successfully, the cluster will have a new version.
-
- */
- CurrentVersion: __string;
- /**
- *
- The Amazon MSK broker type that you want all of the brokers in this cluster to be.
-
- */
- TargetInstanceType: __string;
- }
- export interface UpdateBrokerTypeResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateBrokerStorageRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The version of cluster to update from. A successful operation will then generate a new version.
-
- */
- CurrentVersion: __string;
- /**
- *
- Describes the target volume size and the ID of the broker to apply the update to.
-
- */
- TargetBrokerEBSVolumeInfo: __listOfBrokerEBSVolumeInfo;
- }
- export interface UpdateBrokerStorageResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateClusterConfigurationRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- Represents the configuration that you want MSK to use for the brokers in a cluster.
-
- */
- ConfigurationInfo: ConfigurationInfo;
- /**
- *
- The version of the cluster that needs to be updated.
-
- */
- CurrentVersion: __string;
- }
- export interface UpdateClusterConfigurationResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateClusterKafkaVersionRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster to be updated.
-
- */
- ClusterArn: __string;
- /**
- *
- The custom configuration that should be applied on the new version of cluster.
-
- */
- ConfigurationInfo?: ConfigurationInfo;
- /**
- *
- Current cluster version.
-
- */
- CurrentVersion: __string;
- /**
- *
- Target Kafka version.
-
- */
- TargetKafkaVersion: __string;
- }
- export interface UpdateClusterKafkaVersionResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateMonitoringRequest {
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The version of the MSK cluster to update. Cluster versions aren't simple numbers. You can describe an MSK cluster to find its version. When this update operation is successful, it generates a new cluster version.
-
- */
- CurrentVersion: __string;
- /**
- *
- Specifies which Apache Kafka metrics Amazon MSK gathers and sends to Amazon CloudWatch for this cluster.
-
- */
- EnhancedMonitoring?: EnhancedMonitoring;
- /**
- *
- The settings for open monitoring.
-
- */
- OpenMonitoring?: OpenMonitoringInfo;
- LoggingInfo?: LoggingInfo;
- }
- export interface UpdateMonitoringResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateReplicationInfoRequest {
- /**
- * Updated consumer group replication information.
- */
- ConsumerGroupReplication?: ConsumerGroupReplicationUpdate;
- /**
- * Current replicator version.
- */
- CurrentVersion: __string;
- /**
- * The Amazon Resource Name (ARN) of the replicator to be updated.
- */
- ReplicatorArn: __string;
- /**
- * The ARN of the source Kafka cluster.
- */
- SourceKafkaClusterArn: __string;
- /**
- * The ARN of the target Kafka cluster.
- */
- TargetKafkaClusterArn: __string;
- /**
- * Updated topic replication information.
- */
- TopicReplication?: TopicReplicationUpdate;
- }
- export interface UpdateReplicationInfoResponse {
- /**
- * The Amazon Resource Name (ARN) of the replicator.
- */
- ReplicatorArn?: __string;
- /**
- * State of the replicator.
- */
- ReplicatorState?: ReplicatorState;
- }
- export interface UpdateSecurityRequest {
- /**
- *
- Includes all client authentication related information.
-
- */
- ClientAuthentication?: ClientAuthentication;
- /**
- *
- The Amazon Resource Name (ARN) that uniquely identifies the cluster.
-
- */
- ClusterArn: __string;
- /**
- *
- The version of the MSK cluster to update. Cluster versions aren't simple numbers. You can describe an MSK cluster to find its version. When this update operation is successful, it generates a new cluster version.
-
- */
- CurrentVersion: __string;
- /**
- *
- Includes all encryption-related information.
-
- */
- EncryptionInfo?: EncryptionInfo;
- }
- export interface UpdateSecurityResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateStorageRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster to be updated.
-
- */
- ClusterArn: __string;
- /**
- *
- The version of cluster to update from. A successful operation will then generate a new version.
-
- */
- CurrentVersion: __string;
- /**
- *
- EBS volume provisioned throughput information.
-
- */
- ProvisionedThroughput?: ProvisionedThroughput;
- /**
- *
- Controls storage mode for supported storage tiers.
-
- */
- StorageMode?: StorageMode;
- /**
- *
- size of the EBS volume to update.
-
- */
- VolumeSizeGB?: __integer;
- }
- export interface UpdateStorageResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UpdateConfigurationRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration.
-
- */
- Arn: __string;
- /**
- *
- The description of the configuration revision.
-
- */
- Description?: __string;
- /**
- *
- Contents of the server.properties file. When using the API, you must ensure that the contents of the file are base64 encoded.
- When using the AWS Management Console, the SDK, or the AWS CLI, the contents of server.properties can be in plaintext.
-
- */
- ServerProperties: __blob;
- }
- export interface UpdateConfigurationResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration.
-
- */
- Arn?: __string;
- /**
- *
- Latest revision of the configuration.
-
- */
- LatestRevision?: ConfigurationRevision;
- }
- export interface UpdateConnectivityRequest {
- /**
- *
- The Amazon Resource Name (ARN) of the configuration.
-
- */
- ClusterArn: __string;
- /**
- *
- Information about the broker access configuration.
-
- */
- ConnectivityInfo: ConnectivityInfo;
- /**
- *
- The version of the MSK cluster to update. Cluster versions aren't simple numbers. You can describe an MSK cluster to find its version. When this update operation is successful, it generates a new cluster version.
-
- */
- CurrentVersion: __string;
- }
- export interface UpdateConnectivityResponse {
- /**
- *
- The Amazon Resource Name (ARN) of the cluster.
-
- */
- ClusterArn?: __string;
- /**
- *
- The Amazon Resource Name (ARN) of the cluster operation.
-
- */
- ClusterOperationArn?: __string;
- }
- export interface UserIdentity {
- /**
- *
- The identity type of the requester that calls the API operation.
-
- */
- Type?: UserIdentityType;
- /**
- *
- A unique identifier for the requester that calls the API operation.
-
- */
- PrincipalId?: __string;
- }
- export type UserIdentityType = "AWSACCOUNT"|"AWSSERVICE"|string;
- export interface VpcConnectionInfo {
- /**
- *
- The Amazon Resource Name (ARN) of the VPC connection.
-
- */
- VpcConnectionArn?: __string;
- /**
- *
- The owner of the VPC Connection.
-
- */
- Owner?: __string;
- /**
- *
- Description of the requester that calls the API operation.
-
- */
- UserIdentity?: UserIdentity;
- /**
- *
- The time when Amazon MSK creates the VPC Connnection.
-
- */
- CreationTime?: __timestampIso8601;
- }
- export interface VpcConnectionInfoServerless {
- /**
- *
- The time when Amazon MSK creates the VPC Connnection.
- */
- CreationTime?: __timestampIso8601;
- /**
- *
- The owner of the VPC Connection.
- */
- Owner?: __string;
- /**
- *
- Description of the requester that calls the API operation.
- */
- UserIdentity?: UserIdentity;
- /**
- *
- The Amazon Resource Name (ARN) of the VPC connection.
- */
- VpcConnectionArn?: __string;
- }
- export type VpcConnectionState = "CREATING"|"AVAILABLE"|"INACTIVE"|"DEACTIVATING"|"DELETING"|"FAILED"|"REJECTED"|"REJECTING"|string;
- export interface VpcConnectivity {
- /**
- *
- Includes all client authentication information for VPC connectivity.
-
- */
- ClientAuthentication?: VpcConnectivityClientAuthentication;
- }
- export interface ZookeeperNodeInfo {
- /**
- *
- The attached elastic network interface of the broker.
-
- */
- AttachedENIId?: __string;
- /**
- *
- The virtual private cloud (VPC) IP address of the client.
-
- */
- ClientVpcIpAddress?: __string;
- /**
- *
- Endpoints for accessing the ZooKeeper.
-
- */
- Endpoints?: __listOf__string;
- /**
- *
- The role-specific ID for Zookeeper.
-
- */
- ZookeeperId?: __double;
- /**
- *
- The version of Zookeeper.
-
- */
- ZookeeperVersion?: __string;
- }
- export type __boolean = boolean;
- export type __blob = Buffer|Uint8Array|Blob|string;
- export type __double = number;
- export type __integer = number;
- export type __integerMin1Max15 = number;
- export type __integerMin1Max16384 = number;
- export type __listOfBrokerEBSVolumeInfo = BrokerEBSVolumeInfo[];
- export type __listOfClusterInfo = ClusterInfo[];
- export type __listOfCluster = Cluster[];
- export type __listOfClusterOperationInfo = ClusterOperationInfo[];
- export type __listOfClusterOperationV2Summary = ClusterOperationV2Summary[];
- export type __listOfClusterOperationStep = ClusterOperationStep[];
- export type __listOfCompatibleKafkaVersion = CompatibleKafkaVersion[];
- export type __listOfVpcConfig = VpcConfig[];
- export type __listOfConfiguration = Configuration[];
- export type __listOfConfigurationRevision = ConfigurationRevision[];
- export type __listOfKafkaVersion = KafkaVersion[];
- export type __listOfKafkaCluster = KafkaCluster[];
- export type __listOfKafkaClusterDescription = KafkaClusterDescription[];
- export type __listOfKafkaClusterSummary = KafkaClusterSummary[];
- export type __listOfNodeInfo = NodeInfo[];
- export type __listOfClientVpcConnection = ClientVpcConnection[];
- export type __listOfReplicationInfo = ReplicationInfo[];
- export type __listOfReplicationInfoDescription = ReplicationInfoDescription[];
- export type __listOfReplicationInfoSummary = ReplicationInfoSummary[];
- export type __listOfReplicatorSummary = ReplicatorSummary[];
- export type __listOfVpcConnection = VpcConnection[];
- export type __listOfUnprocessedScramSecret = UnprocessedScramSecret[];
- export type __listOf__string = __string[];
- export type __long = number;
- export type __mapOf__string = {[key: string]: __string};
- export type __listOf__stringMax249 = __stringMax249[];
- export type __listOf__stringMax256 = __stringMax256[];
- export type __string = string;
- export type __stringMax1024 = string;
- export type __stringMax249 = string;
- export type __stringMax256 = string;
- export type __stringMin1Max128 = string;
- export type __stringMin1Max64 = string;
- export type __stringMin5Max32 = string;
- export type __stringMin1Max128Pattern09AZaZ09AZaZ0 = string;
- export type __timestampIso8601 = Date;
- /**
- * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
- */
- export type apiVersion = "2018-11-14"|"latest"|string;
- export interface ClientApiVersions {
- /**
- * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
- */
- apiVersion?: apiVersion;
- }
- export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
- /**
- * Contains interfaces for use with the Kafka client.
- */
- export import Types = Kafka;
- }
- export = Kafka;
|