@aws-sdk/client-opensearch 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/dist-cjs/index.js +186 -3
- package/dist-es/OpenSearch.js +6 -0
- package/dist-es/commands/AssociatePackagesCommand.js +22 -0
- package/dist-es/commands/DissociatePackagesCommand.js +22 -0
- package/dist-es/commands/UpdatePackageScopeCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +108 -1
- package/dist-types/OpenSearch.d.ts +21 -0
- package/dist-types/OpenSearchClient.d.ts +5 -2
- package/dist-types/commands/AssociatePackageCommand.d.ts +19 -1
- package/dist-types/commands/AssociatePackagesCommand.d.ts +127 -0
- package/dist-types/commands/CreatePackageCommand.d.ts +33 -2
- package/dist-types/commands/DeletePackageCommand.d.ts +18 -1
- package/dist-types/commands/DescribePackagesCommand.d.ts +19 -2
- package/dist-types/commands/DissociatePackageCommand.d.ts +10 -1
- package/dist-types/commands/DissociatePackagesCommand.d.ts +116 -0
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +6 -0
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +10 -1
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +10 -1
- package/dist-types/commands/ListVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
- package/dist-types/commands/RejectInboundConnectionCommand.d.ts +1 -2
- package/dist-types/commands/UpdatePackageCommand.d.ts +28 -1
- package/dist-types/commands/UpdatePackageScopeCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +834 -778
- package/dist-types/models/models_1.d.ts +307 -58
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +51 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociatePackagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DissociatePackagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectInboundConnectionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdatePackageScopeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +663 -635
- package/dist-types/ts3.4/models/models_1.d.ts +125 -57
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +7 -7
|
@@ -22,26 +22,26 @@ export declare const InboundConnectionStatusCode: {
|
|
|
22
22
|
export type InboundConnectionStatusCode =
|
|
23
23
|
(typeof InboundConnectionStatusCode)[keyof typeof InboundConnectionStatusCode];
|
|
24
24
|
export interface InboundConnectionStatus {
|
|
25
|
-
StatusCode?: InboundConnectionStatusCode;
|
|
26
|
-
Message?: string;
|
|
25
|
+
StatusCode?: InboundConnectionStatusCode | undefined;
|
|
26
|
+
Message?: string | undefined;
|
|
27
27
|
}
|
|
28
28
|
export interface AWSDomainInformation {
|
|
29
|
-
OwnerId?: string;
|
|
29
|
+
OwnerId?: string | undefined;
|
|
30
30
|
DomainName: string | undefined;
|
|
31
|
-
Region?: string;
|
|
31
|
+
Region?: string | undefined;
|
|
32
32
|
}
|
|
33
33
|
export interface DomainInformationContainer {
|
|
34
|
-
AWSDomainInformation?: AWSDomainInformation;
|
|
34
|
+
AWSDomainInformation?: AWSDomainInformation | undefined;
|
|
35
35
|
}
|
|
36
36
|
export interface InboundConnection {
|
|
37
|
-
LocalDomainInfo?: DomainInformationContainer;
|
|
38
|
-
RemoteDomainInfo?: DomainInformationContainer;
|
|
39
|
-
ConnectionId?: string;
|
|
40
|
-
ConnectionStatus?: InboundConnectionStatus;
|
|
41
|
-
ConnectionMode?: ConnectionMode;
|
|
37
|
+
LocalDomainInfo?: DomainInformationContainer | undefined;
|
|
38
|
+
RemoteDomainInfo?: DomainInformationContainer | undefined;
|
|
39
|
+
ConnectionId?: string | undefined;
|
|
40
|
+
ConnectionStatus?: InboundConnectionStatus | undefined;
|
|
41
|
+
ConnectionMode?: ConnectionMode | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface AcceptInboundConnectionResponse {
|
|
44
|
-
Connection?: InboundConnection;
|
|
44
|
+
Connection?: InboundConnection | undefined;
|
|
45
45
|
}
|
|
46
46
|
export declare class DisabledOperationException extends __BaseException {
|
|
47
47
|
readonly name: "DisabledOperationException";
|
|
@@ -80,9 +80,9 @@ export type OptionState = (typeof OptionState)[keyof typeof OptionState];
|
|
|
80
80
|
export interface OptionStatus {
|
|
81
81
|
CreationDate: Date | undefined;
|
|
82
82
|
UpdateDate: Date | undefined;
|
|
83
|
-
UpdateVersion?: number;
|
|
83
|
+
UpdateVersion?: number | undefined;
|
|
84
84
|
State: OptionState | undefined;
|
|
85
|
-
PendingDeletion?: boolean;
|
|
85
|
+
PendingDeletion?: boolean | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface AccessPoliciesStatus {
|
|
88
88
|
Options: string | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const ActionType: {
|
|
|
111
111
|
};
|
|
112
112
|
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
113
113
|
export interface S3GlueDataCatalog {
|
|
114
|
-
RoleArn?: string;
|
|
114
|
+
RoleArn?: string | undefined;
|
|
115
115
|
}
|
|
116
116
|
export type DataSourceType =
|
|
117
117
|
| DataSourceType.S3GlueDataCatalogMember
|
|
@@ -135,10 +135,10 @@ export interface AddDataSourceRequest {
|
|
|
135
135
|
DomainName: string | undefined;
|
|
136
136
|
Name: string | undefined;
|
|
137
137
|
DataSourceType: DataSourceType | undefined;
|
|
138
|
-
Description?: string;
|
|
138
|
+
Description?: string | undefined;
|
|
139
139
|
}
|
|
140
140
|
export interface AddDataSourceResponse {
|
|
141
|
-
Message?: string;
|
|
141
|
+
Message?: string | undefined;
|
|
142
142
|
}
|
|
143
143
|
export declare class BaseException extends __BaseException {
|
|
144
144
|
readonly name: "BaseException";
|
|
@@ -165,8 +165,8 @@ export declare class ValidationException extends __BaseException {
|
|
|
165
165
|
);
|
|
166
166
|
}
|
|
167
167
|
export interface AdditionalLimit {
|
|
168
|
-
LimitName?: string;
|
|
169
|
-
LimitValues?: string[];
|
|
168
|
+
LimitName?: string | undefined;
|
|
169
|
+
LimitValues?: string[] | undefined;
|
|
170
170
|
}
|
|
171
171
|
export interface Tag {
|
|
172
172
|
Key: string | undefined;
|
|
@@ -181,57 +181,57 @@ export interface AdvancedOptionsStatus {
|
|
|
181
181
|
Status: OptionStatus | undefined;
|
|
182
182
|
}
|
|
183
183
|
export interface JWTOptionsOutput {
|
|
184
|
-
Enabled?: boolean;
|
|
185
|
-
SubjectKey?: string;
|
|
186
|
-
RolesKey?: string;
|
|
187
|
-
PublicKey?: string;
|
|
184
|
+
Enabled?: boolean | undefined;
|
|
185
|
+
SubjectKey?: string | undefined;
|
|
186
|
+
RolesKey?: string | undefined;
|
|
187
|
+
PublicKey?: string | undefined;
|
|
188
188
|
}
|
|
189
189
|
export interface SAMLIdp {
|
|
190
190
|
MetadataContent: string | undefined;
|
|
191
191
|
EntityId: string | undefined;
|
|
192
192
|
}
|
|
193
193
|
export interface SAMLOptionsOutput {
|
|
194
|
-
Enabled?: boolean;
|
|
195
|
-
Idp?: SAMLIdp;
|
|
196
|
-
SubjectKey?: string;
|
|
197
|
-
RolesKey?: string;
|
|
198
|
-
SessionTimeoutMinutes?: number;
|
|
194
|
+
Enabled?: boolean | undefined;
|
|
195
|
+
Idp?: SAMLIdp | undefined;
|
|
196
|
+
SubjectKey?: string | undefined;
|
|
197
|
+
RolesKey?: string | undefined;
|
|
198
|
+
SessionTimeoutMinutes?: number | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface AdvancedSecurityOptions {
|
|
201
|
-
Enabled?: boolean;
|
|
202
|
-
InternalUserDatabaseEnabled?: boolean;
|
|
203
|
-
SAMLOptions?: SAMLOptionsOutput;
|
|
204
|
-
JWTOptions?: JWTOptionsOutput;
|
|
205
|
-
AnonymousAuthDisableDate?: Date;
|
|
206
|
-
AnonymousAuthEnabled?: boolean;
|
|
201
|
+
Enabled?: boolean | undefined;
|
|
202
|
+
InternalUserDatabaseEnabled?: boolean | undefined;
|
|
203
|
+
SAMLOptions?: SAMLOptionsOutput | undefined;
|
|
204
|
+
JWTOptions?: JWTOptionsOutput | undefined;
|
|
205
|
+
AnonymousAuthDisableDate?: Date | undefined;
|
|
206
|
+
AnonymousAuthEnabled?: boolean | undefined;
|
|
207
207
|
}
|
|
208
208
|
export interface JWTOptionsInput {
|
|
209
|
-
Enabled?: boolean;
|
|
210
|
-
SubjectKey?: string;
|
|
211
|
-
RolesKey?: string;
|
|
212
|
-
PublicKey?: string;
|
|
209
|
+
Enabled?: boolean | undefined;
|
|
210
|
+
SubjectKey?: string | undefined;
|
|
211
|
+
RolesKey?: string | undefined;
|
|
212
|
+
PublicKey?: string | undefined;
|
|
213
213
|
}
|
|
214
214
|
export interface MasterUserOptions {
|
|
215
|
-
MasterUserARN?: string;
|
|
216
|
-
MasterUserName?: string;
|
|
217
|
-
MasterUserPassword?: string;
|
|
215
|
+
MasterUserARN?: string | undefined;
|
|
216
|
+
MasterUserName?: string | undefined;
|
|
217
|
+
MasterUserPassword?: string | undefined;
|
|
218
218
|
}
|
|
219
219
|
export interface SAMLOptionsInput {
|
|
220
|
-
Enabled?: boolean;
|
|
221
|
-
Idp?: SAMLIdp;
|
|
222
|
-
MasterUserName?: string;
|
|
223
|
-
MasterBackendRole?: string;
|
|
224
|
-
SubjectKey?: string;
|
|
225
|
-
RolesKey?: string;
|
|
226
|
-
SessionTimeoutMinutes?: number;
|
|
220
|
+
Enabled?: boolean | undefined;
|
|
221
|
+
Idp?: SAMLIdp | undefined;
|
|
222
|
+
MasterUserName?: string | undefined;
|
|
223
|
+
MasterBackendRole?: string | undefined;
|
|
224
|
+
SubjectKey?: string | undefined;
|
|
225
|
+
RolesKey?: string | undefined;
|
|
226
|
+
SessionTimeoutMinutes?: number | undefined;
|
|
227
227
|
}
|
|
228
228
|
export interface AdvancedSecurityOptionsInput {
|
|
229
|
-
Enabled?: boolean;
|
|
230
|
-
InternalUserDatabaseEnabled?: boolean;
|
|
231
|
-
MasterUserOptions?: MasterUserOptions;
|
|
232
|
-
SAMLOptions?: SAMLOptionsInput;
|
|
233
|
-
JWTOptions?: JWTOptionsInput;
|
|
234
|
-
AnonymousAuthEnabled?: boolean;
|
|
229
|
+
Enabled?: boolean | undefined;
|
|
230
|
+
InternalUserDatabaseEnabled?: boolean | undefined;
|
|
231
|
+
MasterUserOptions?: MasterUserOptions | undefined;
|
|
232
|
+
SAMLOptions?: SAMLOptionsInput | undefined;
|
|
233
|
+
JWTOptions?: JWTOptionsInput | undefined;
|
|
234
|
+
AnonymousAuthEnabled?: boolean | undefined;
|
|
235
235
|
}
|
|
236
236
|
export interface AdvancedSecurityOptionsStatus {
|
|
237
237
|
Options: AdvancedSecurityOptions | undefined;
|
|
@@ -244,10 +244,12 @@ export declare const NaturalLanguageQueryGenerationDesiredState: {
|
|
|
244
244
|
export type NaturalLanguageQueryGenerationDesiredState =
|
|
245
245
|
(typeof NaturalLanguageQueryGenerationDesiredState)[keyof typeof NaturalLanguageQueryGenerationDesiredState];
|
|
246
246
|
export interface NaturalLanguageQueryGenerationOptionsInput {
|
|
247
|
-
DesiredState?: NaturalLanguageQueryGenerationDesiredState;
|
|
247
|
+
DesiredState?: NaturalLanguageQueryGenerationDesiredState | undefined;
|
|
248
248
|
}
|
|
249
249
|
export interface AIMLOptionsInput {
|
|
250
|
-
NaturalLanguageQueryGenerationOptions?:
|
|
250
|
+
NaturalLanguageQueryGenerationOptions?:
|
|
251
|
+
| NaturalLanguageQueryGenerationOptionsInput
|
|
252
|
+
| undefined;
|
|
251
253
|
}
|
|
252
254
|
export declare const NaturalLanguageQueryGenerationCurrentState: {
|
|
253
255
|
readonly DisableComplete: "DISABLE_COMPLETE";
|
|
@@ -261,19 +263,30 @@ export declare const NaturalLanguageQueryGenerationCurrentState: {
|
|
|
261
263
|
export type NaturalLanguageQueryGenerationCurrentState =
|
|
262
264
|
(typeof NaturalLanguageQueryGenerationCurrentState)[keyof typeof NaturalLanguageQueryGenerationCurrentState];
|
|
263
265
|
export interface NaturalLanguageQueryGenerationOptionsOutput {
|
|
264
|
-
DesiredState?: NaturalLanguageQueryGenerationDesiredState;
|
|
265
|
-
CurrentState?: NaturalLanguageQueryGenerationCurrentState;
|
|
266
|
+
DesiredState?: NaturalLanguageQueryGenerationDesiredState | undefined;
|
|
267
|
+
CurrentState?: NaturalLanguageQueryGenerationCurrentState | undefined;
|
|
266
268
|
}
|
|
267
269
|
export interface AIMLOptionsOutput {
|
|
268
|
-
NaturalLanguageQueryGenerationOptions?:
|
|
270
|
+
NaturalLanguageQueryGenerationOptions?:
|
|
271
|
+
| NaturalLanguageQueryGenerationOptionsOutput
|
|
272
|
+
| undefined;
|
|
269
273
|
}
|
|
270
274
|
export interface AIMLOptionsStatus {
|
|
271
|
-
Options?: AIMLOptionsOutput;
|
|
272
|
-
Status?: OptionStatus;
|
|
275
|
+
Options?: AIMLOptionsOutput | undefined;
|
|
276
|
+
Status?: OptionStatus | undefined;
|
|
277
|
+
}
|
|
278
|
+
export interface KeyStoreAccessOption {
|
|
279
|
+
KeyAccessRoleArn?: string | undefined;
|
|
280
|
+
KeyStoreAccessEnabled: boolean | undefined;
|
|
281
|
+
}
|
|
282
|
+
export interface PackageAssociationConfiguration {
|
|
283
|
+
KeyStoreAccessOption?: KeyStoreAccessOption | undefined;
|
|
273
284
|
}
|
|
274
285
|
export interface AssociatePackageRequest {
|
|
275
286
|
PackageID: string | undefined;
|
|
276
287
|
DomainName: string | undefined;
|
|
288
|
+
PrerequisitePackageIDList?: string[] | undefined;
|
|
289
|
+
AssociationConfiguration?: PackageAssociationConfiguration | undefined;
|
|
277
290
|
}
|
|
278
291
|
export declare const DomainPackageStatus: {
|
|
279
292
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -285,33 +298,49 @@ export declare const DomainPackageStatus: {
|
|
|
285
298
|
export type DomainPackageStatus =
|
|
286
299
|
(typeof DomainPackageStatus)[keyof typeof DomainPackageStatus];
|
|
287
300
|
export interface ErrorDetails {
|
|
288
|
-
ErrorType?: string;
|
|
289
|
-
ErrorMessage?: string;
|
|
301
|
+
ErrorType?: string | undefined;
|
|
302
|
+
ErrorMessage?: string | undefined;
|
|
290
303
|
}
|
|
291
304
|
export declare const PackageType: {
|
|
305
|
+
readonly PACKAGE_CONFIG: "PACKAGE-CONFIG";
|
|
306
|
+
readonly PACKAGE_LICENSE: "PACKAGE-LICENSE";
|
|
292
307
|
readonly TXT_DICTIONARY: "TXT-DICTIONARY";
|
|
293
308
|
readonly ZIP_PLUGIN: "ZIP-PLUGIN";
|
|
294
309
|
};
|
|
295
310
|
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
296
311
|
export interface DomainPackageDetails {
|
|
297
|
-
PackageID?: string;
|
|
298
|
-
PackageName?: string;
|
|
299
|
-
PackageType?: PackageType;
|
|
300
|
-
LastUpdated?: Date;
|
|
301
|
-
DomainName?: string;
|
|
302
|
-
DomainPackageStatus?: DomainPackageStatus;
|
|
303
|
-
PackageVersion?: string;
|
|
304
|
-
|
|
305
|
-
|
|
312
|
+
PackageID?: string | undefined;
|
|
313
|
+
PackageName?: string | undefined;
|
|
314
|
+
PackageType?: PackageType | undefined;
|
|
315
|
+
LastUpdated?: Date | undefined;
|
|
316
|
+
DomainName?: string | undefined;
|
|
317
|
+
DomainPackageStatus?: DomainPackageStatus | undefined;
|
|
318
|
+
PackageVersion?: string | undefined;
|
|
319
|
+
PrerequisitePackageIDList?: string[] | undefined;
|
|
320
|
+
ReferencePath?: string | undefined;
|
|
321
|
+
ErrorDetails?: ErrorDetails | undefined;
|
|
322
|
+
AssociationConfiguration?: PackageAssociationConfiguration | undefined;
|
|
306
323
|
}
|
|
307
324
|
export interface AssociatePackageResponse {
|
|
308
|
-
DomainPackageDetails?: DomainPackageDetails;
|
|
325
|
+
DomainPackageDetails?: DomainPackageDetails | undefined;
|
|
309
326
|
}
|
|
310
327
|
export declare class ConflictException extends __BaseException {
|
|
311
328
|
readonly name: "ConflictException";
|
|
312
329
|
readonly $fault: "client";
|
|
313
330
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
314
331
|
}
|
|
332
|
+
export interface PackageDetailsForAssociation {
|
|
333
|
+
PackageID: string | undefined;
|
|
334
|
+
PrerequisitePackageIDList?: string[] | undefined;
|
|
335
|
+
AssociationConfiguration?: PackageAssociationConfiguration | undefined;
|
|
336
|
+
}
|
|
337
|
+
export interface AssociatePackagesRequest {
|
|
338
|
+
PackageList: PackageDetailsForAssociation[] | undefined;
|
|
339
|
+
DomainName: string | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface AssociatePackagesResponse {
|
|
342
|
+
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
343
|
+
}
|
|
315
344
|
export declare const AWSServicePrincipal: {
|
|
316
345
|
readonly application_opensearchservice_amazonaws_com: "application.opensearchservice.amazonaws.com";
|
|
317
346
|
};
|
|
@@ -319,8 +348,8 @@ export type AWSServicePrincipal =
|
|
|
319
348
|
(typeof AWSServicePrincipal)[keyof typeof AWSServicePrincipal];
|
|
320
349
|
export interface AuthorizeVpcEndpointAccessRequest {
|
|
321
350
|
DomainName: string | undefined;
|
|
322
|
-
Account?: string;
|
|
323
|
-
Service?: AWSServicePrincipal;
|
|
351
|
+
Account?: string | undefined;
|
|
352
|
+
Service?: AWSServicePrincipal | undefined;
|
|
324
353
|
}
|
|
325
354
|
export declare const PrincipalType: {
|
|
326
355
|
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
@@ -328,25 +357,25 @@ export declare const PrincipalType: {
|
|
|
328
357
|
};
|
|
329
358
|
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
330
359
|
export interface AuthorizedPrincipal {
|
|
331
|
-
PrincipalType?: PrincipalType;
|
|
332
|
-
Principal?: string;
|
|
360
|
+
PrincipalType?: PrincipalType | undefined;
|
|
361
|
+
Principal?: string | undefined;
|
|
333
362
|
}
|
|
334
363
|
export interface AuthorizeVpcEndpointAccessResponse {
|
|
335
364
|
AuthorizedPrincipal: AuthorizedPrincipal | undefined;
|
|
336
365
|
}
|
|
337
366
|
export interface CancelDomainConfigChangeRequest {
|
|
338
367
|
DomainName: string | undefined;
|
|
339
|
-
DryRun?: boolean;
|
|
368
|
+
DryRun?: boolean | undefined;
|
|
340
369
|
}
|
|
341
370
|
export interface CancelledChangeProperty {
|
|
342
|
-
PropertyName?: string;
|
|
343
|
-
CancelledValue?: string;
|
|
344
|
-
ActiveValue?: string;
|
|
371
|
+
PropertyName?: string | undefined;
|
|
372
|
+
CancelledValue?: string | undefined;
|
|
373
|
+
ActiveValue?: string | undefined;
|
|
345
374
|
}
|
|
346
375
|
export interface CancelDomainConfigChangeResponse {
|
|
347
|
-
CancelledChangeIds?: string[];
|
|
348
|
-
CancelledChangeProperties?: CancelledChangeProperty[];
|
|
349
|
-
DryRun?: boolean;
|
|
376
|
+
CancelledChangeIds?: string[] | undefined;
|
|
377
|
+
CancelledChangeProperties?: CancelledChangeProperty[] | undefined;
|
|
378
|
+
DryRun?: boolean | undefined;
|
|
350
379
|
}
|
|
351
380
|
export interface CancelServiceSoftwareUpdateRequest {
|
|
352
381
|
DomainName: string | undefined;
|
|
@@ -361,17 +390,17 @@ export declare const DeploymentStatus: {
|
|
|
361
390
|
export type DeploymentStatus =
|
|
362
391
|
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
363
392
|
export interface ServiceSoftwareOptions {
|
|
364
|
-
CurrentVersion?: string;
|
|
365
|
-
NewVersion?: string;
|
|
366
|
-
UpdateAvailable?: boolean;
|
|
367
|
-
Cancellable?: boolean;
|
|
368
|
-
UpdateStatus?: DeploymentStatus;
|
|
369
|
-
Description?: string;
|
|
370
|
-
AutomatedUpdateDate?: Date;
|
|
371
|
-
OptionalDeployment?: boolean;
|
|
393
|
+
CurrentVersion?: string | undefined;
|
|
394
|
+
NewVersion?: string | undefined;
|
|
395
|
+
UpdateAvailable?: boolean | undefined;
|
|
396
|
+
Cancellable?: boolean | undefined;
|
|
397
|
+
UpdateStatus?: DeploymentStatus | undefined;
|
|
398
|
+
Description?: string | undefined;
|
|
399
|
+
AutomatedUpdateDate?: Date | undefined;
|
|
400
|
+
OptionalDeployment?: boolean | undefined;
|
|
372
401
|
}
|
|
373
402
|
export interface CancelServiceSoftwareUpdateResponse {
|
|
374
|
-
ServiceSoftwareOptions?: ServiceSoftwareOptions;
|
|
403
|
+
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
375
404
|
}
|
|
376
405
|
export declare const AppConfigType: {
|
|
377
406
|
readonly OpensearchDashboardAdminGroups: "opensearchDashboards.dashboardAdmin.groups";
|
|
@@ -379,41 +408,41 @@ export declare const AppConfigType: {
|
|
|
379
408
|
};
|
|
380
409
|
export type AppConfigType = (typeof AppConfigType)[keyof typeof AppConfigType];
|
|
381
410
|
export interface AppConfig {
|
|
382
|
-
key?: AppConfigType;
|
|
383
|
-
value?: string;
|
|
411
|
+
key?: AppConfigType | undefined;
|
|
412
|
+
value?: string | undefined;
|
|
384
413
|
}
|
|
385
414
|
export interface DataSource {
|
|
386
|
-
dataSourceArn?: string;
|
|
387
|
-
dataSourceDescription?: string;
|
|
415
|
+
dataSourceArn?: string | undefined;
|
|
416
|
+
dataSourceDescription?: string | undefined;
|
|
388
417
|
}
|
|
389
418
|
export interface IamIdentityCenterOptionsInput {
|
|
390
|
-
enabled?: boolean;
|
|
391
|
-
iamIdentityCenterInstanceArn?: string;
|
|
392
|
-
iamRoleForIdentityCenterApplicationArn?: string;
|
|
419
|
+
enabled?: boolean | undefined;
|
|
420
|
+
iamIdentityCenterInstanceArn?: string | undefined;
|
|
421
|
+
iamRoleForIdentityCenterApplicationArn?: string | undefined;
|
|
393
422
|
}
|
|
394
423
|
export interface CreateApplicationRequest {
|
|
395
|
-
clientToken?: string;
|
|
424
|
+
clientToken?: string | undefined;
|
|
396
425
|
name: string | undefined;
|
|
397
|
-
dataSources?: DataSource[];
|
|
398
|
-
iamIdentityCenterOptions?: IamIdentityCenterOptionsInput;
|
|
399
|
-
appConfigs?: AppConfig[];
|
|
400
|
-
tagList?: Tag[];
|
|
426
|
+
dataSources?: DataSource[] | undefined;
|
|
427
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptionsInput | undefined;
|
|
428
|
+
appConfigs?: AppConfig[] | undefined;
|
|
429
|
+
tagList?: Tag[] | undefined;
|
|
401
430
|
}
|
|
402
431
|
export interface IamIdentityCenterOptions {
|
|
403
|
-
enabled?: boolean;
|
|
404
|
-
iamIdentityCenterInstanceArn?: string;
|
|
405
|
-
iamRoleForIdentityCenterApplicationArn?: string;
|
|
406
|
-
iamIdentityCenterApplicationArn?: string;
|
|
432
|
+
enabled?: boolean | undefined;
|
|
433
|
+
iamIdentityCenterInstanceArn?: string | undefined;
|
|
434
|
+
iamRoleForIdentityCenterApplicationArn?: string | undefined;
|
|
435
|
+
iamIdentityCenterApplicationArn?: string | undefined;
|
|
407
436
|
}
|
|
408
437
|
export interface CreateApplicationResponse {
|
|
409
|
-
id?: string;
|
|
410
|
-
name?: string;
|
|
411
|
-
arn?: string;
|
|
412
|
-
dataSources?: DataSource[];
|
|
413
|
-
iamIdentityCenterOptions?: IamIdentityCenterOptions;
|
|
414
|
-
appConfigs?: AppConfig[];
|
|
415
|
-
tagList?: Tag[];
|
|
416
|
-
createdAt?: Date;
|
|
438
|
+
id?: string | undefined;
|
|
439
|
+
name?: string | undefined;
|
|
440
|
+
arn?: string | undefined;
|
|
441
|
+
dataSources?: DataSource[] | undefined;
|
|
442
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
|
|
443
|
+
appConfigs?: AppConfig[] | undefined;
|
|
444
|
+
tagList?: Tag[] | undefined;
|
|
445
|
+
createdAt?: Date | undefined;
|
|
417
446
|
}
|
|
418
447
|
export declare const AutoTuneDesiredState: {
|
|
419
448
|
readonly DISABLED: "DISABLED";
|
|
@@ -426,18 +455,18 @@ export declare const TimeUnit: {
|
|
|
426
455
|
};
|
|
427
456
|
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
428
457
|
export interface Duration {
|
|
429
|
-
Value?: number;
|
|
430
|
-
Unit?: TimeUnit;
|
|
458
|
+
Value?: number | undefined;
|
|
459
|
+
Unit?: TimeUnit | undefined;
|
|
431
460
|
}
|
|
432
461
|
export interface AutoTuneMaintenanceSchedule {
|
|
433
|
-
StartAt?: Date;
|
|
434
|
-
Duration?: Duration;
|
|
435
|
-
CronExpressionForRecurrence?: string;
|
|
462
|
+
StartAt?: Date | undefined;
|
|
463
|
+
Duration?: Duration | undefined;
|
|
464
|
+
CronExpressionForRecurrence?: string | undefined;
|
|
436
465
|
}
|
|
437
466
|
export interface AutoTuneOptionsInput {
|
|
438
|
-
DesiredState?: AutoTuneDesiredState;
|
|
439
|
-
MaintenanceSchedules?: AutoTuneMaintenanceSchedule[];
|
|
440
|
-
UseOffPeakWindow?: boolean;
|
|
467
|
+
DesiredState?: AutoTuneDesiredState | undefined;
|
|
468
|
+
MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | undefined;
|
|
469
|
+
UseOffPeakWindow?: boolean | undefined;
|
|
441
470
|
}
|
|
442
471
|
export interface ColdStorageOptions {
|
|
443
472
|
Enabled: boolean | undefined;
|
|
@@ -550,9 +579,9 @@ export declare const OpenSearchPartitionInstanceType: {
|
|
|
550
579
|
export type OpenSearchPartitionInstanceType =
|
|
551
580
|
(typeof OpenSearchPartitionInstanceType)[keyof typeof OpenSearchPartitionInstanceType];
|
|
552
581
|
export interface NodeConfig {
|
|
553
|
-
Enabled?: boolean;
|
|
554
|
-
Type?: OpenSearchPartitionInstanceType;
|
|
555
|
-
Count?: number;
|
|
582
|
+
Enabled?: boolean | undefined;
|
|
583
|
+
Type?: OpenSearchPartitionInstanceType | undefined;
|
|
584
|
+
Count?: number | undefined;
|
|
556
585
|
}
|
|
557
586
|
export declare const NodeOptionsNodeType: {
|
|
558
587
|
readonly COORDINATOR: "coordinator";
|
|
@@ -560,8 +589,8 @@ export declare const NodeOptionsNodeType: {
|
|
|
560
589
|
export type NodeOptionsNodeType =
|
|
561
590
|
(typeof NodeOptionsNodeType)[keyof typeof NodeOptionsNodeType];
|
|
562
591
|
export interface NodeOption {
|
|
563
|
-
NodeType?: NodeOptionsNodeType;
|
|
564
|
-
NodeConfig?: NodeConfig;
|
|
592
|
+
NodeType?: NodeOptionsNodeType | undefined;
|
|
593
|
+
NodeConfig?: NodeConfig | undefined;
|
|
565
594
|
}
|
|
566
595
|
export declare const OpenSearchWarmPartitionInstanceType: {
|
|
567
596
|
readonly ultrawarm1_large_search: "ultrawarm1.large.search";
|
|
@@ -571,28 +600,28 @@ export declare const OpenSearchWarmPartitionInstanceType: {
|
|
|
571
600
|
export type OpenSearchWarmPartitionInstanceType =
|
|
572
601
|
(typeof OpenSearchWarmPartitionInstanceType)[keyof typeof OpenSearchWarmPartitionInstanceType];
|
|
573
602
|
export interface ZoneAwarenessConfig {
|
|
574
|
-
AvailabilityZoneCount?: number;
|
|
603
|
+
AvailabilityZoneCount?: number | undefined;
|
|
575
604
|
}
|
|
576
605
|
export interface ClusterConfig {
|
|
577
|
-
InstanceType?: OpenSearchPartitionInstanceType;
|
|
578
|
-
InstanceCount?: number;
|
|
579
|
-
DedicatedMasterEnabled?: boolean;
|
|
580
|
-
ZoneAwarenessEnabled?: boolean;
|
|
581
|
-
ZoneAwarenessConfig?: ZoneAwarenessConfig;
|
|
582
|
-
DedicatedMasterType?: OpenSearchPartitionInstanceType;
|
|
583
|
-
DedicatedMasterCount?: number;
|
|
584
|
-
WarmEnabled?: boolean;
|
|
585
|
-
WarmType?: OpenSearchWarmPartitionInstanceType;
|
|
586
|
-
WarmCount?: number;
|
|
587
|
-
ColdStorageOptions?: ColdStorageOptions;
|
|
588
|
-
MultiAZWithStandbyEnabled?: boolean;
|
|
589
|
-
NodeOptions?: NodeOption[];
|
|
606
|
+
InstanceType?: OpenSearchPartitionInstanceType | undefined;
|
|
607
|
+
InstanceCount?: number | undefined;
|
|
608
|
+
DedicatedMasterEnabled?: boolean | undefined;
|
|
609
|
+
ZoneAwarenessEnabled?: boolean | undefined;
|
|
610
|
+
ZoneAwarenessConfig?: ZoneAwarenessConfig | undefined;
|
|
611
|
+
DedicatedMasterType?: OpenSearchPartitionInstanceType | undefined;
|
|
612
|
+
DedicatedMasterCount?: number | undefined;
|
|
613
|
+
WarmEnabled?: boolean | undefined;
|
|
614
|
+
WarmType?: OpenSearchWarmPartitionInstanceType | undefined;
|
|
615
|
+
WarmCount?: number | undefined;
|
|
616
|
+
ColdStorageOptions?: ColdStorageOptions | undefined;
|
|
617
|
+
MultiAZWithStandbyEnabled?: boolean | undefined;
|
|
618
|
+
NodeOptions?: NodeOption[] | undefined;
|
|
590
619
|
}
|
|
591
620
|
export interface CognitoOptions {
|
|
592
|
-
Enabled?: boolean;
|
|
593
|
-
UserPoolId?: string;
|
|
594
|
-
IdentityPoolId?: string;
|
|
595
|
-
RoleArn?: string;
|
|
621
|
+
Enabled?: boolean | undefined;
|
|
622
|
+
UserPoolId?: string | undefined;
|
|
623
|
+
IdentityPoolId?: string | undefined;
|
|
624
|
+
RoleArn?: string | undefined;
|
|
596
625
|
}
|
|
597
626
|
export declare const TLSSecurityPolicy: {
|
|
598
627
|
readonly POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07";
|
|
@@ -602,11 +631,11 @@ export declare const TLSSecurityPolicy: {
|
|
|
602
631
|
export type TLSSecurityPolicy =
|
|
603
632
|
(typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
|
|
604
633
|
export interface DomainEndpointOptions {
|
|
605
|
-
EnforceHTTPS?: boolean;
|
|
606
|
-
TLSSecurityPolicy?: TLSSecurityPolicy;
|
|
607
|
-
CustomEndpointEnabled?: boolean;
|
|
608
|
-
CustomEndpoint?: string;
|
|
609
|
-
CustomEndpointCertificateArn?: string;
|
|
634
|
+
EnforceHTTPS?: boolean | undefined;
|
|
635
|
+
TLSSecurityPolicy?: TLSSecurityPolicy | undefined;
|
|
636
|
+
CustomEndpointEnabled?: boolean | undefined;
|
|
637
|
+
CustomEndpoint?: string | undefined;
|
|
638
|
+
CustomEndpointCertificateArn?: string | undefined;
|
|
610
639
|
}
|
|
611
640
|
export declare const VolumeType: {
|
|
612
641
|
readonly gp2: "gp2";
|
|
@@ -616,15 +645,15 @@ export declare const VolumeType: {
|
|
|
616
645
|
};
|
|
617
646
|
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
618
647
|
export interface EBSOptions {
|
|
619
|
-
EBSEnabled?: boolean;
|
|
620
|
-
VolumeType?: VolumeType;
|
|
621
|
-
VolumeSize?: number;
|
|
622
|
-
Iops?: number;
|
|
623
|
-
Throughput?: number;
|
|
648
|
+
EBSEnabled?: boolean | undefined;
|
|
649
|
+
VolumeType?: VolumeType | undefined;
|
|
650
|
+
VolumeSize?: number | undefined;
|
|
651
|
+
Iops?: number | undefined;
|
|
652
|
+
Throughput?: number | undefined;
|
|
624
653
|
}
|
|
625
654
|
export interface EncryptionAtRestOptions {
|
|
626
|
-
Enabled?: boolean;
|
|
627
|
-
KmsKeyId?: string;
|
|
655
|
+
Enabled?: boolean | undefined;
|
|
656
|
+
KmsKeyId?: string | undefined;
|
|
628
657
|
}
|
|
629
658
|
export declare const RolesKeyIdCOption: {
|
|
630
659
|
readonly GroupId: "GroupId";
|
|
@@ -640,10 +669,10 @@ export declare const SubjectKeyIdCOption: {
|
|
|
640
669
|
export type SubjectKeyIdCOption =
|
|
641
670
|
(typeof SubjectKeyIdCOption)[keyof typeof SubjectKeyIdCOption];
|
|
642
671
|
export interface IdentityCenterOptionsInput {
|
|
643
|
-
EnabledAPIAccess?: boolean;
|
|
644
|
-
IdentityCenterInstanceARN?: string;
|
|
645
|
-
SubjectKey?: SubjectKeyIdCOption;
|
|
646
|
-
RolesKey?: RolesKeyIdCOption;
|
|
672
|
+
EnabledAPIAccess?: boolean | undefined;
|
|
673
|
+
IdentityCenterInstanceARN?: string | undefined;
|
|
674
|
+
SubjectKey?: SubjectKeyIdCOption | undefined;
|
|
675
|
+
RolesKey?: RolesKeyIdCOption | undefined;
|
|
647
676
|
}
|
|
648
677
|
export declare const IPAddressType: {
|
|
649
678
|
readonly DUALSTACK: "dualstack";
|
|
@@ -658,55 +687,57 @@ export declare const LogType: {
|
|
|
658
687
|
};
|
|
659
688
|
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
660
689
|
export interface LogPublishingOption {
|
|
661
|
-
CloudWatchLogsLogGroupArn?: string;
|
|
662
|
-
Enabled?: boolean;
|
|
690
|
+
CloudWatchLogsLogGroupArn?: string | undefined;
|
|
691
|
+
Enabled?: boolean | undefined;
|
|
663
692
|
}
|
|
664
693
|
export interface NodeToNodeEncryptionOptions {
|
|
665
|
-
Enabled?: boolean;
|
|
694
|
+
Enabled?: boolean | undefined;
|
|
666
695
|
}
|
|
667
696
|
export interface WindowStartTime {
|
|
668
697
|
Hours: number | undefined;
|
|
669
698
|
Minutes: number | undefined;
|
|
670
699
|
}
|
|
671
700
|
export interface OffPeakWindow {
|
|
672
|
-
WindowStartTime?: WindowStartTime;
|
|
701
|
+
WindowStartTime?: WindowStartTime | undefined;
|
|
673
702
|
}
|
|
674
703
|
export interface OffPeakWindowOptions {
|
|
675
|
-
Enabled?: boolean;
|
|
676
|
-
OffPeakWindow?: OffPeakWindow;
|
|
704
|
+
Enabled?: boolean | undefined;
|
|
705
|
+
OffPeakWindow?: OffPeakWindow | undefined;
|
|
677
706
|
}
|
|
678
707
|
export interface SnapshotOptions {
|
|
679
|
-
AutomatedSnapshotStartHour?: number;
|
|
708
|
+
AutomatedSnapshotStartHour?: number | undefined;
|
|
680
709
|
}
|
|
681
710
|
export interface SoftwareUpdateOptions {
|
|
682
|
-
AutoSoftwareUpdateEnabled?: boolean;
|
|
711
|
+
AutoSoftwareUpdateEnabled?: boolean | undefined;
|
|
683
712
|
}
|
|
684
713
|
export interface VPCOptions {
|
|
685
|
-
SubnetIds?: string[];
|
|
686
|
-
SecurityGroupIds?: string[];
|
|
714
|
+
SubnetIds?: string[] | undefined;
|
|
715
|
+
SecurityGroupIds?: string[] | undefined;
|
|
687
716
|
}
|
|
688
717
|
export interface CreateDomainRequest {
|
|
689
718
|
DomainName: string | undefined;
|
|
690
|
-
EngineVersion?: string;
|
|
691
|
-
ClusterConfig?: ClusterConfig;
|
|
692
|
-
EBSOptions?: EBSOptions;
|
|
693
|
-
AccessPolicies?: string;
|
|
694
|
-
IPAddressType?: IPAddressType;
|
|
695
|
-
SnapshotOptions?: SnapshotOptions;
|
|
696
|
-
VPCOptions?: VPCOptions;
|
|
697
|
-
CognitoOptions?: CognitoOptions;
|
|
698
|
-
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
699
|
-
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
700
|
-
AdvancedOptions?: Record<string, string
|
|
701
|
-
LogPublishingOptions?:
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
719
|
+
EngineVersion?: string | undefined;
|
|
720
|
+
ClusterConfig?: ClusterConfig | undefined;
|
|
721
|
+
EBSOptions?: EBSOptions | undefined;
|
|
722
|
+
AccessPolicies?: string | undefined;
|
|
723
|
+
IPAddressType?: IPAddressType | undefined;
|
|
724
|
+
SnapshotOptions?: SnapshotOptions | undefined;
|
|
725
|
+
VPCOptions?: VPCOptions | undefined;
|
|
726
|
+
CognitoOptions?: CognitoOptions | undefined;
|
|
727
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
|
|
728
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
|
|
729
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
730
|
+
LogPublishingOptions?:
|
|
731
|
+
| Partial<Record<LogType, LogPublishingOption>>
|
|
732
|
+
| undefined;
|
|
733
|
+
DomainEndpointOptions?: DomainEndpointOptions | undefined;
|
|
734
|
+
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
|
|
735
|
+
IdentityCenterOptions?: IdentityCenterOptionsInput | undefined;
|
|
736
|
+
TagList?: Tag[] | undefined;
|
|
737
|
+
AutoTuneOptions?: AutoTuneOptionsInput | undefined;
|
|
738
|
+
OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
|
|
739
|
+
SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
|
|
740
|
+
AIMLOptions?: AIMLOptionsInput | undefined;
|
|
710
741
|
}
|
|
711
742
|
export declare const AutoTuneState: {
|
|
712
743
|
readonly DISABLED: "DISABLED";
|
|
@@ -721,9 +752,9 @@ export declare const AutoTuneState: {
|
|
|
721
752
|
};
|
|
722
753
|
export type AutoTuneState = (typeof AutoTuneState)[keyof typeof AutoTuneState];
|
|
723
754
|
export interface AutoTuneOptionsOutput {
|
|
724
|
-
State?: AutoTuneState;
|
|
725
|
-
ErrorMessage?: string;
|
|
726
|
-
UseOffPeakWindow?: boolean;
|
|
755
|
+
State?: AutoTuneState | undefined;
|
|
756
|
+
ErrorMessage?: string | undefined;
|
|
757
|
+
UseOffPeakWindow?: boolean | undefined;
|
|
727
758
|
}
|
|
728
759
|
export declare const ConfigChangeStatus: {
|
|
729
760
|
readonly APPLYING_CHANGES: "ApplyingChanges";
|
|
@@ -743,12 +774,12 @@ export declare const InitiatedBy: {
|
|
|
743
774
|
};
|
|
744
775
|
export type InitiatedBy = (typeof InitiatedBy)[keyof typeof InitiatedBy];
|
|
745
776
|
export interface ChangeProgressDetails {
|
|
746
|
-
ChangeId?: string;
|
|
747
|
-
Message?: string;
|
|
748
|
-
ConfigChangeStatus?: ConfigChangeStatus;
|
|
749
|
-
InitiatedBy?: InitiatedBy;
|
|
750
|
-
StartTime?: Date;
|
|
751
|
-
LastUpdatedTime?: Date;
|
|
777
|
+
ChangeId?: string | undefined;
|
|
778
|
+
Message?: string | undefined;
|
|
779
|
+
ConfigChangeStatus?: ConfigChangeStatus | undefined;
|
|
780
|
+
InitiatedBy?: InitiatedBy | undefined;
|
|
781
|
+
StartTime?: Date | undefined;
|
|
782
|
+
LastUpdatedTime?: Date | undefined;
|
|
752
783
|
}
|
|
753
784
|
export declare const DomainProcessingStatusType: {
|
|
754
785
|
readonly ACTIVE: "Active";
|
|
@@ -762,12 +793,12 @@ export declare const DomainProcessingStatusType: {
|
|
|
762
793
|
export type DomainProcessingStatusType =
|
|
763
794
|
(typeof DomainProcessingStatusType)[keyof typeof DomainProcessingStatusType];
|
|
764
795
|
export interface IdentityCenterOptions {
|
|
765
|
-
EnabledAPIAccess?: boolean;
|
|
766
|
-
IdentityCenterInstanceARN?: string;
|
|
767
|
-
SubjectKey?: SubjectKeyIdCOption;
|
|
768
|
-
RolesKey?: RolesKeyIdCOption;
|
|
769
|
-
IdentityCenterApplicationARN?: string;
|
|
770
|
-
IdentityStoreId?: string;
|
|
796
|
+
EnabledAPIAccess?: boolean | undefined;
|
|
797
|
+
IdentityCenterInstanceARN?: string | undefined;
|
|
798
|
+
SubjectKey?: SubjectKeyIdCOption | undefined;
|
|
799
|
+
RolesKey?: RolesKeyIdCOption | undefined;
|
|
800
|
+
IdentityCenterApplicationARN?: string | undefined;
|
|
801
|
+
IdentityStoreId?: string | undefined;
|
|
771
802
|
}
|
|
772
803
|
export declare const PropertyValueType: {
|
|
773
804
|
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
@@ -776,55 +807,57 @@ export declare const PropertyValueType: {
|
|
|
776
807
|
export type PropertyValueType =
|
|
777
808
|
(typeof PropertyValueType)[keyof typeof PropertyValueType];
|
|
778
809
|
export interface ModifyingProperties {
|
|
779
|
-
Name?: string;
|
|
780
|
-
ActiveValue?: string;
|
|
781
|
-
PendingValue?: string;
|
|
782
|
-
ValueType?: PropertyValueType;
|
|
810
|
+
Name?: string | undefined;
|
|
811
|
+
ActiveValue?: string | undefined;
|
|
812
|
+
PendingValue?: string | undefined;
|
|
813
|
+
ValueType?: PropertyValueType | undefined;
|
|
783
814
|
}
|
|
784
815
|
export interface VPCDerivedInfo {
|
|
785
|
-
VPCId?: string;
|
|
786
|
-
SubnetIds?: string[];
|
|
787
|
-
AvailabilityZones?: string[];
|
|
788
|
-
SecurityGroupIds?: string[];
|
|
816
|
+
VPCId?: string | undefined;
|
|
817
|
+
SubnetIds?: string[] | undefined;
|
|
818
|
+
AvailabilityZones?: string[] | undefined;
|
|
819
|
+
SecurityGroupIds?: string[] | undefined;
|
|
789
820
|
}
|
|
790
821
|
export interface DomainStatus {
|
|
791
822
|
DomainId: string | undefined;
|
|
792
823
|
DomainName: string | undefined;
|
|
793
824
|
ARN: string | undefined;
|
|
794
|
-
Created?: boolean;
|
|
795
|
-
Deleted?: boolean;
|
|
796
|
-
Endpoint?: string;
|
|
797
|
-
EndpointV2?: string;
|
|
798
|
-
Endpoints?: Record<string, string
|
|
799
|
-
DomainEndpointV2HostedZoneId?: string;
|
|
800
|
-
Processing?: boolean;
|
|
801
|
-
UpgradeProcessing?: boolean;
|
|
802
|
-
EngineVersion?: string;
|
|
825
|
+
Created?: boolean | undefined;
|
|
826
|
+
Deleted?: boolean | undefined;
|
|
827
|
+
Endpoint?: string | undefined;
|
|
828
|
+
EndpointV2?: string | undefined;
|
|
829
|
+
Endpoints?: Record<string, string> | undefined;
|
|
830
|
+
DomainEndpointV2HostedZoneId?: string | undefined;
|
|
831
|
+
Processing?: boolean | undefined;
|
|
832
|
+
UpgradeProcessing?: boolean | undefined;
|
|
833
|
+
EngineVersion?: string | undefined;
|
|
803
834
|
ClusterConfig: ClusterConfig | undefined;
|
|
804
|
-
EBSOptions?: EBSOptions;
|
|
805
|
-
AccessPolicies?: string;
|
|
806
|
-
IPAddressType?: IPAddressType;
|
|
807
|
-
SnapshotOptions?: SnapshotOptions;
|
|
808
|
-
VPCOptions?: VPCDerivedInfo;
|
|
809
|
-
CognitoOptions?: CognitoOptions;
|
|
810
|
-
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
811
|
-
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
|
|
812
|
-
AdvancedOptions?: Record<string, string
|
|
813
|
-
LogPublishingOptions?:
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
835
|
+
EBSOptions?: EBSOptions | undefined;
|
|
836
|
+
AccessPolicies?: string | undefined;
|
|
837
|
+
IPAddressType?: IPAddressType | undefined;
|
|
838
|
+
SnapshotOptions?: SnapshotOptions | undefined;
|
|
839
|
+
VPCOptions?: VPCDerivedInfo | undefined;
|
|
840
|
+
CognitoOptions?: CognitoOptions | undefined;
|
|
841
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
|
|
842
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
|
|
843
|
+
AdvancedOptions?: Record<string, string> | undefined;
|
|
844
|
+
LogPublishingOptions?:
|
|
845
|
+
| Partial<Record<LogType, LogPublishingOption>>
|
|
846
|
+
| undefined;
|
|
847
|
+
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
848
|
+
DomainEndpointOptions?: DomainEndpointOptions | undefined;
|
|
849
|
+
AdvancedSecurityOptions?: AdvancedSecurityOptions | undefined;
|
|
850
|
+
IdentityCenterOptions?: IdentityCenterOptions | undefined;
|
|
851
|
+
AutoTuneOptions?: AutoTuneOptionsOutput | undefined;
|
|
852
|
+
ChangeProgressDetails?: ChangeProgressDetails | undefined;
|
|
853
|
+
OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
|
|
854
|
+
SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
|
|
855
|
+
DomainProcessingStatus?: DomainProcessingStatusType | undefined;
|
|
856
|
+
ModifyingProperties?: ModifyingProperties[] | undefined;
|
|
857
|
+
AIMLOptions?: AIMLOptionsOutput | undefined;
|
|
825
858
|
}
|
|
826
859
|
export interface CreateDomainResponse {
|
|
827
|
-
DomainStatus?: DomainStatus;
|
|
860
|
+
DomainStatus?: DomainStatus | undefined;
|
|
828
861
|
}
|
|
829
862
|
export declare class InvalidTypeException extends __BaseException {
|
|
830
863
|
readonly name: "InvalidTypeException";
|
|
@@ -847,18 +880,18 @@ export declare const SkipUnavailableStatus: {
|
|
|
847
880
|
export type SkipUnavailableStatus =
|
|
848
881
|
(typeof SkipUnavailableStatus)[keyof typeof SkipUnavailableStatus];
|
|
849
882
|
export interface CrossClusterSearchConnectionProperties {
|
|
850
|
-
SkipUnavailable?: SkipUnavailableStatus;
|
|
883
|
+
SkipUnavailable?: SkipUnavailableStatus | undefined;
|
|
851
884
|
}
|
|
852
885
|
export interface ConnectionProperties {
|
|
853
|
-
Endpoint?: string;
|
|
854
|
-
CrossClusterSearch?: CrossClusterSearchConnectionProperties;
|
|
886
|
+
Endpoint?: string | undefined;
|
|
887
|
+
CrossClusterSearch?: CrossClusterSearchConnectionProperties | undefined;
|
|
855
888
|
}
|
|
856
889
|
export interface CreateOutboundConnectionRequest {
|
|
857
890
|
LocalDomainInfo: DomainInformationContainer | undefined;
|
|
858
891
|
RemoteDomainInfo: DomainInformationContainer | undefined;
|
|
859
892
|
ConnectionAlias: string | undefined;
|
|
860
|
-
ConnectionMode?: ConnectionMode;
|
|
861
|
-
ConnectionProperties?: ConnectionProperties;
|
|
893
|
+
ConnectionMode?: ConnectionMode | undefined;
|
|
894
|
+
ConnectionProperties?: ConnectionProperties | undefined;
|
|
862
895
|
}
|
|
863
896
|
export declare const OutboundConnectionStatusCode: {
|
|
864
897
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -875,34 +908,58 @@ export declare const OutboundConnectionStatusCode: {
|
|
|
875
908
|
export type OutboundConnectionStatusCode =
|
|
876
909
|
(typeof OutboundConnectionStatusCode)[keyof typeof OutboundConnectionStatusCode];
|
|
877
910
|
export interface OutboundConnectionStatus {
|
|
878
|
-
StatusCode?: OutboundConnectionStatusCode;
|
|
879
|
-
Message?: string;
|
|
911
|
+
StatusCode?: OutboundConnectionStatusCode | undefined;
|
|
912
|
+
Message?: string | undefined;
|
|
880
913
|
}
|
|
881
914
|
export interface CreateOutboundConnectionResponse {
|
|
882
|
-
LocalDomainInfo?: DomainInformationContainer;
|
|
883
|
-
RemoteDomainInfo?: DomainInformationContainer;
|
|
884
|
-
ConnectionAlias?: string;
|
|
885
|
-
ConnectionStatus?: OutboundConnectionStatus;
|
|
886
|
-
ConnectionId?: string;
|
|
887
|
-
ConnectionMode?: ConnectionMode;
|
|
888
|
-
ConnectionProperties?: ConnectionProperties;
|
|
915
|
+
LocalDomainInfo?: DomainInformationContainer | undefined;
|
|
916
|
+
RemoteDomainInfo?: DomainInformationContainer | undefined;
|
|
917
|
+
ConnectionAlias?: string | undefined;
|
|
918
|
+
ConnectionStatus?: OutboundConnectionStatus | undefined;
|
|
919
|
+
ConnectionId?: string | undefined;
|
|
920
|
+
ConnectionMode?: ConnectionMode | undefined;
|
|
921
|
+
ConnectionProperties?: ConnectionProperties | undefined;
|
|
922
|
+
}
|
|
923
|
+
export declare const RequirementLevel: {
|
|
924
|
+
readonly NONE: "NONE";
|
|
925
|
+
readonly OPTIONAL: "OPTIONAL";
|
|
926
|
+
readonly REQUIRED: "REQUIRED";
|
|
927
|
+
};
|
|
928
|
+
export type RequirementLevel =
|
|
929
|
+
(typeof RequirementLevel)[keyof typeof RequirementLevel];
|
|
930
|
+
export interface PackageConfiguration {
|
|
931
|
+
LicenseRequirement: RequirementLevel | undefined;
|
|
932
|
+
LicenseFilepath?: string | undefined;
|
|
933
|
+
ConfigurationRequirement: RequirementLevel | undefined;
|
|
934
|
+
RequiresRestartForConfigurationUpdate?: boolean | undefined;
|
|
935
|
+
}
|
|
936
|
+
export interface PackageEncryptionOptions {
|
|
937
|
+
KmsKeyIdentifier?: string | undefined;
|
|
938
|
+
EncryptionEnabled: boolean | undefined;
|
|
889
939
|
}
|
|
890
940
|
export interface PackageSource {
|
|
891
|
-
S3BucketName?: string;
|
|
892
|
-
S3Key?: string;
|
|
941
|
+
S3BucketName?: string | undefined;
|
|
942
|
+
S3Key?: string | undefined;
|
|
943
|
+
}
|
|
944
|
+
export interface PackageVendingOptions {
|
|
945
|
+
VendingEnabled: boolean | undefined;
|
|
893
946
|
}
|
|
894
947
|
export interface CreatePackageRequest {
|
|
895
948
|
PackageName: string | undefined;
|
|
896
949
|
PackageType: PackageType | undefined;
|
|
897
|
-
PackageDescription?: string;
|
|
950
|
+
PackageDescription?: string | undefined;
|
|
898
951
|
PackageSource: PackageSource | undefined;
|
|
952
|
+
PackageConfiguration?: PackageConfiguration | undefined;
|
|
953
|
+
EngineVersion?: string | undefined;
|
|
954
|
+
PackageVendingOptions?: PackageVendingOptions | undefined;
|
|
955
|
+
PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
|
|
899
956
|
}
|
|
900
957
|
export interface PluginProperties {
|
|
901
|
-
Name?: string;
|
|
902
|
-
Description?: string;
|
|
903
|
-
Version?: string;
|
|
904
|
-
ClassName?: string;
|
|
905
|
-
UncompressedSizeInBytes?: number;
|
|
958
|
+
Name?: string | undefined;
|
|
959
|
+
Description?: string | undefined;
|
|
960
|
+
Version?: string | undefined;
|
|
961
|
+
ClassName?: string | undefined;
|
|
962
|
+
UncompressedSizeInBytes?: number | undefined;
|
|
906
963
|
}
|
|
907
964
|
export declare const PackageStatus: {
|
|
908
965
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -916,25 +973,30 @@ export declare const PackageStatus: {
|
|
|
916
973
|
};
|
|
917
974
|
export type PackageStatus = (typeof PackageStatus)[keyof typeof PackageStatus];
|
|
918
975
|
export interface PackageDetails {
|
|
919
|
-
PackageID?: string;
|
|
920
|
-
PackageName?: string;
|
|
921
|
-
PackageType?: PackageType;
|
|
922
|
-
PackageDescription?: string;
|
|
923
|
-
PackageStatus?: PackageStatus;
|
|
924
|
-
CreatedAt?: Date;
|
|
925
|
-
LastUpdatedAt?: Date;
|
|
926
|
-
AvailablePackageVersion?: string;
|
|
927
|
-
ErrorDetails?: ErrorDetails;
|
|
928
|
-
EngineVersion?: string;
|
|
929
|
-
AvailablePluginProperties?: PluginProperties;
|
|
976
|
+
PackageID?: string | undefined;
|
|
977
|
+
PackageName?: string | undefined;
|
|
978
|
+
PackageType?: PackageType | undefined;
|
|
979
|
+
PackageDescription?: string | undefined;
|
|
980
|
+
PackageStatus?: PackageStatus | undefined;
|
|
981
|
+
CreatedAt?: Date | undefined;
|
|
982
|
+
LastUpdatedAt?: Date | undefined;
|
|
983
|
+
AvailablePackageVersion?: string | undefined;
|
|
984
|
+
ErrorDetails?: ErrorDetails | undefined;
|
|
985
|
+
EngineVersion?: string | undefined;
|
|
986
|
+
AvailablePluginProperties?: PluginProperties | undefined;
|
|
987
|
+
AvailablePackageConfiguration?: PackageConfiguration | undefined;
|
|
988
|
+
AllowListedUserList?: string[] | undefined;
|
|
989
|
+
PackageOwner?: string | undefined;
|
|
990
|
+
PackageVendingOptions?: PackageVendingOptions | undefined;
|
|
991
|
+
PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
|
|
930
992
|
}
|
|
931
993
|
export interface CreatePackageResponse {
|
|
932
|
-
PackageDetails?: PackageDetails;
|
|
994
|
+
PackageDetails?: PackageDetails | undefined;
|
|
933
995
|
}
|
|
934
996
|
export interface CreateVpcEndpointRequest {
|
|
935
997
|
DomainArn: string | undefined;
|
|
936
998
|
VpcOptions: VPCOptions | undefined;
|
|
937
|
-
ClientToken?: string;
|
|
999
|
+
ClientToken?: string | undefined;
|
|
938
1000
|
}
|
|
939
1001
|
export declare const VpcEndpointStatus: {
|
|
940
1002
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -948,12 +1010,12 @@ export declare const VpcEndpointStatus: {
|
|
|
948
1010
|
export type VpcEndpointStatus =
|
|
949
1011
|
(typeof VpcEndpointStatus)[keyof typeof VpcEndpointStatus];
|
|
950
1012
|
export interface VpcEndpoint {
|
|
951
|
-
VpcEndpointId?: string;
|
|
952
|
-
VpcEndpointOwner?: string;
|
|
953
|
-
DomainArn?: string;
|
|
954
|
-
VpcOptions?: VPCDerivedInfo;
|
|
955
|
-
Status?: VpcEndpointStatus;
|
|
956
|
-
Endpoint?: string;
|
|
1013
|
+
VpcEndpointId?: string | undefined;
|
|
1014
|
+
VpcEndpointOwner?: string | undefined;
|
|
1015
|
+
DomainArn?: string | undefined;
|
|
1016
|
+
VpcOptions?: VPCDerivedInfo | undefined;
|
|
1017
|
+
Status?: VpcEndpointStatus | undefined;
|
|
1018
|
+
Endpoint?: string | undefined;
|
|
957
1019
|
}
|
|
958
1020
|
export interface CreateVpcEndpointResponse {
|
|
959
1021
|
VpcEndpoint: VpcEndpoint | undefined;
|
|
@@ -967,49 +1029,49 @@ export interface DeleteDataSourceRequest {
|
|
|
967
1029
|
Name: string | undefined;
|
|
968
1030
|
}
|
|
969
1031
|
export interface DeleteDataSourceResponse {
|
|
970
|
-
Message?: string;
|
|
1032
|
+
Message?: string | undefined;
|
|
971
1033
|
}
|
|
972
1034
|
export interface DeleteDomainRequest {
|
|
973
1035
|
DomainName: string | undefined;
|
|
974
1036
|
}
|
|
975
1037
|
export interface DeleteDomainResponse {
|
|
976
|
-
DomainStatus?: DomainStatus;
|
|
1038
|
+
DomainStatus?: DomainStatus | undefined;
|
|
977
1039
|
}
|
|
978
1040
|
export interface DeleteInboundConnectionRequest {
|
|
979
1041
|
ConnectionId: string | undefined;
|
|
980
1042
|
}
|
|
981
1043
|
export interface DeleteInboundConnectionResponse {
|
|
982
|
-
Connection?: InboundConnection;
|
|
1044
|
+
Connection?: InboundConnection | undefined;
|
|
983
1045
|
}
|
|
984
1046
|
export interface DeleteOutboundConnectionRequest {
|
|
985
1047
|
ConnectionId: string | undefined;
|
|
986
1048
|
}
|
|
987
1049
|
export interface OutboundConnection {
|
|
988
|
-
LocalDomainInfo?: DomainInformationContainer;
|
|
989
|
-
RemoteDomainInfo?: DomainInformationContainer;
|
|
990
|
-
ConnectionId?: string;
|
|
991
|
-
ConnectionAlias?: string;
|
|
992
|
-
ConnectionStatus?: OutboundConnectionStatus;
|
|
993
|
-
ConnectionMode?: ConnectionMode;
|
|
994
|
-
ConnectionProperties?: ConnectionProperties;
|
|
1050
|
+
LocalDomainInfo?: DomainInformationContainer | undefined;
|
|
1051
|
+
RemoteDomainInfo?: DomainInformationContainer | undefined;
|
|
1052
|
+
ConnectionId?: string | undefined;
|
|
1053
|
+
ConnectionAlias?: string | undefined;
|
|
1054
|
+
ConnectionStatus?: OutboundConnectionStatus | undefined;
|
|
1055
|
+
ConnectionMode?: ConnectionMode | undefined;
|
|
1056
|
+
ConnectionProperties?: ConnectionProperties | undefined;
|
|
995
1057
|
}
|
|
996
1058
|
export interface DeleteOutboundConnectionResponse {
|
|
997
|
-
Connection?: OutboundConnection;
|
|
1059
|
+
Connection?: OutboundConnection | undefined;
|
|
998
1060
|
}
|
|
999
1061
|
export interface DeletePackageRequest {
|
|
1000
1062
|
PackageID: string | undefined;
|
|
1001
1063
|
}
|
|
1002
1064
|
export interface DeletePackageResponse {
|
|
1003
|
-
PackageDetails?: PackageDetails;
|
|
1065
|
+
PackageDetails?: PackageDetails | undefined;
|
|
1004
1066
|
}
|
|
1005
1067
|
export interface DeleteVpcEndpointRequest {
|
|
1006
1068
|
VpcEndpointId: string | undefined;
|
|
1007
1069
|
}
|
|
1008
1070
|
export interface VpcEndpointSummary {
|
|
1009
|
-
VpcEndpointId?: string;
|
|
1010
|
-
VpcEndpointOwner?: string;
|
|
1011
|
-
DomainArn?: string;
|
|
1012
|
-
Status?: VpcEndpointStatus;
|
|
1071
|
+
VpcEndpointId?: string | undefined;
|
|
1072
|
+
VpcEndpointOwner?: string | undefined;
|
|
1073
|
+
DomainArn?: string | undefined;
|
|
1074
|
+
Status?: VpcEndpointStatus | undefined;
|
|
1013
1075
|
}
|
|
1014
1076
|
export interface DeleteVpcEndpointResponse {
|
|
1015
1077
|
VpcEndpointSummary: VpcEndpointSummary | undefined;
|
|
@@ -1022,8 +1084,8 @@ export interface DescribeDomainResponse {
|
|
|
1022
1084
|
}
|
|
1023
1085
|
export interface DescribeDomainAutoTunesRequest {
|
|
1024
1086
|
DomainName: string | undefined;
|
|
1025
|
-
MaxResults?: number;
|
|
1026
|
-
NextToken?: string;
|
|
1087
|
+
MaxResults?: number | undefined;
|
|
1088
|
+
NextToken?: string | undefined;
|
|
1027
1089
|
}
|
|
1028
1090
|
export declare const ScheduledAutoTuneActionType: {
|
|
1029
1091
|
readonly JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING";
|
|
@@ -1039,35 +1101,35 @@ export declare const ScheduledAutoTuneSeverityType: {
|
|
|
1039
1101
|
export type ScheduledAutoTuneSeverityType =
|
|
1040
1102
|
(typeof ScheduledAutoTuneSeverityType)[keyof typeof ScheduledAutoTuneSeverityType];
|
|
1041
1103
|
export interface ScheduledAutoTuneDetails {
|
|
1042
|
-
Date?: Date;
|
|
1043
|
-
ActionType?: ScheduledAutoTuneActionType;
|
|
1044
|
-
Action?: string;
|
|
1045
|
-
Severity?: ScheduledAutoTuneSeverityType;
|
|
1104
|
+
Date?: Date | undefined;
|
|
1105
|
+
ActionType?: ScheduledAutoTuneActionType | undefined;
|
|
1106
|
+
Action?: string | undefined;
|
|
1107
|
+
Severity?: ScheduledAutoTuneSeverityType | undefined;
|
|
1046
1108
|
}
|
|
1047
1109
|
export interface AutoTuneDetails {
|
|
1048
|
-
ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails;
|
|
1110
|
+
ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails | undefined;
|
|
1049
1111
|
}
|
|
1050
1112
|
export declare const AutoTuneType: {
|
|
1051
1113
|
readonly SCHEDULED_ACTION: "SCHEDULED_ACTION";
|
|
1052
1114
|
};
|
|
1053
1115
|
export type AutoTuneType = (typeof AutoTuneType)[keyof typeof AutoTuneType];
|
|
1054
1116
|
export interface AutoTune {
|
|
1055
|
-
AutoTuneType?: AutoTuneType;
|
|
1056
|
-
AutoTuneDetails?: AutoTuneDetails;
|
|
1117
|
+
AutoTuneType?: AutoTuneType | undefined;
|
|
1118
|
+
AutoTuneDetails?: AutoTuneDetails | undefined;
|
|
1057
1119
|
}
|
|
1058
1120
|
export interface DescribeDomainAutoTunesResponse {
|
|
1059
|
-
AutoTunes?: AutoTune[];
|
|
1060
|
-
NextToken?: string;
|
|
1121
|
+
AutoTunes?: AutoTune[] | undefined;
|
|
1122
|
+
NextToken?: string | undefined;
|
|
1061
1123
|
}
|
|
1062
1124
|
export interface DescribeDomainChangeProgressRequest {
|
|
1063
1125
|
DomainName: string | undefined;
|
|
1064
|
-
ChangeId?: string;
|
|
1126
|
+
ChangeId?: string | undefined;
|
|
1065
1127
|
}
|
|
1066
1128
|
export interface ChangeProgressStage {
|
|
1067
|
-
Name?: string;
|
|
1068
|
-
Status?: string;
|
|
1069
|
-
Description?: string;
|
|
1070
|
-
LastUpdated?: Date;
|
|
1129
|
+
Name?: string | undefined;
|
|
1130
|
+
Status?: string | undefined;
|
|
1131
|
+
Description?: string | undefined;
|
|
1132
|
+
LastUpdated?: Date | undefined;
|
|
1071
1133
|
}
|
|
1072
1134
|
export declare const OverallChangeStatus: {
|
|
1073
1135
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -1078,19 +1140,19 @@ export declare const OverallChangeStatus: {
|
|
|
1078
1140
|
export type OverallChangeStatus =
|
|
1079
1141
|
(typeof OverallChangeStatus)[keyof typeof OverallChangeStatus];
|
|
1080
1142
|
export interface ChangeProgressStatusDetails {
|
|
1081
|
-
ChangeId?: string;
|
|
1082
|
-
StartTime?: Date;
|
|
1083
|
-
Status?: OverallChangeStatus;
|
|
1084
|
-
PendingProperties?: string[];
|
|
1085
|
-
CompletedProperties?: string[];
|
|
1086
|
-
TotalNumberOfStages?: number;
|
|
1087
|
-
ChangeProgressStages?: ChangeProgressStage[];
|
|
1088
|
-
LastUpdatedTime?: Date;
|
|
1089
|
-
ConfigChangeStatus?: ConfigChangeStatus;
|
|
1090
|
-
InitiatedBy?: InitiatedBy;
|
|
1143
|
+
ChangeId?: string | undefined;
|
|
1144
|
+
StartTime?: Date | undefined;
|
|
1145
|
+
Status?: OverallChangeStatus | undefined;
|
|
1146
|
+
PendingProperties?: string[] | undefined;
|
|
1147
|
+
CompletedProperties?: string[] | undefined;
|
|
1148
|
+
TotalNumberOfStages?: number | undefined;
|
|
1149
|
+
ChangeProgressStages?: ChangeProgressStage[] | undefined;
|
|
1150
|
+
LastUpdatedTime?: Date | undefined;
|
|
1151
|
+
ConfigChangeStatus?: ConfigChangeStatus | undefined;
|
|
1152
|
+
InitiatedBy?: InitiatedBy | undefined;
|
|
1091
1153
|
}
|
|
1092
1154
|
export interface DescribeDomainChangeProgressResponse {
|
|
1093
|
-
ChangeProgressStatus?: ChangeProgressStatusDetails;
|
|
1155
|
+
ChangeProgressStatus?: ChangeProgressStatusDetails | undefined;
|
|
1094
1156
|
}
|
|
1095
1157
|
export interface DescribeDomainConfigRequest {
|
|
1096
1158
|
DomainName: string | undefined;
|
|
@@ -1102,22 +1164,22 @@ export declare const RollbackOnDisable: {
|
|
|
1102
1164
|
export type RollbackOnDisable =
|
|
1103
1165
|
(typeof RollbackOnDisable)[keyof typeof RollbackOnDisable];
|
|
1104
1166
|
export interface AutoTuneOptions {
|
|
1105
|
-
DesiredState?: AutoTuneDesiredState;
|
|
1106
|
-
RollbackOnDisable?: RollbackOnDisable;
|
|
1107
|
-
MaintenanceSchedules?: AutoTuneMaintenanceSchedule[];
|
|
1108
|
-
UseOffPeakWindow?: boolean;
|
|
1167
|
+
DesiredState?: AutoTuneDesiredState | undefined;
|
|
1168
|
+
RollbackOnDisable?: RollbackOnDisable | undefined;
|
|
1169
|
+
MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | undefined;
|
|
1170
|
+
UseOffPeakWindow?: boolean | undefined;
|
|
1109
1171
|
}
|
|
1110
1172
|
export interface AutoTuneStatus {
|
|
1111
1173
|
CreationDate: Date | undefined;
|
|
1112
1174
|
UpdateDate: Date | undefined;
|
|
1113
|
-
UpdateVersion?: number;
|
|
1175
|
+
UpdateVersion?: number | undefined;
|
|
1114
1176
|
State: AutoTuneState | undefined;
|
|
1115
|
-
ErrorMessage?: string;
|
|
1116
|
-
PendingDeletion?: boolean;
|
|
1177
|
+
ErrorMessage?: string | undefined;
|
|
1178
|
+
PendingDeletion?: boolean | undefined;
|
|
1117
1179
|
}
|
|
1118
1180
|
export interface AutoTuneOptionsStatus {
|
|
1119
|
-
Options?: AutoTuneOptions;
|
|
1120
|
-
Status?: AutoTuneStatus;
|
|
1181
|
+
Options?: AutoTuneOptions | undefined;
|
|
1182
|
+
Status?: AutoTuneStatus | undefined;
|
|
1121
1183
|
}
|
|
1122
1184
|
export interface ClusterConfigStatus {
|
|
1123
1185
|
Options: ClusterConfig | undefined;
|
|
@@ -1152,51 +1214,51 @@ export interface IPAddressTypeStatus {
|
|
|
1152
1214
|
Status: OptionStatus | undefined;
|
|
1153
1215
|
}
|
|
1154
1216
|
export interface LogPublishingOptionsStatus {
|
|
1155
|
-
Options?: Partial<Record<LogType, LogPublishingOption
|
|
1156
|
-
Status?: OptionStatus;
|
|
1217
|
+
Options?: Partial<Record<LogType, LogPublishingOption>> | undefined;
|
|
1218
|
+
Status?: OptionStatus | undefined;
|
|
1157
1219
|
}
|
|
1158
1220
|
export interface NodeToNodeEncryptionOptionsStatus {
|
|
1159
1221
|
Options: NodeToNodeEncryptionOptions | undefined;
|
|
1160
1222
|
Status: OptionStatus | undefined;
|
|
1161
1223
|
}
|
|
1162
1224
|
export interface OffPeakWindowOptionsStatus {
|
|
1163
|
-
Options?: OffPeakWindowOptions;
|
|
1164
|
-
Status?: OptionStatus;
|
|
1225
|
+
Options?: OffPeakWindowOptions | undefined;
|
|
1226
|
+
Status?: OptionStatus | undefined;
|
|
1165
1227
|
}
|
|
1166
1228
|
export interface SnapshotOptionsStatus {
|
|
1167
1229
|
Options: SnapshotOptions | undefined;
|
|
1168
1230
|
Status: OptionStatus | undefined;
|
|
1169
1231
|
}
|
|
1170
1232
|
export interface SoftwareUpdateOptionsStatus {
|
|
1171
|
-
Options?: SoftwareUpdateOptions;
|
|
1172
|
-
Status?: OptionStatus;
|
|
1233
|
+
Options?: SoftwareUpdateOptions | undefined;
|
|
1234
|
+
Status?: OptionStatus | undefined;
|
|
1173
1235
|
}
|
|
1174
1236
|
export interface VPCDerivedInfoStatus {
|
|
1175
1237
|
Options: VPCDerivedInfo | undefined;
|
|
1176
1238
|
Status: OptionStatus | undefined;
|
|
1177
1239
|
}
|
|
1178
1240
|
export interface DomainConfig {
|
|
1179
|
-
EngineVersion?: VersionStatus;
|
|
1180
|
-
ClusterConfig?: ClusterConfigStatus;
|
|
1181
|
-
EBSOptions?: EBSOptionsStatus;
|
|
1182
|
-
AccessPolicies?: AccessPoliciesStatus;
|
|
1183
|
-
IPAddressType?: IPAddressTypeStatus;
|
|
1184
|
-
SnapshotOptions?: SnapshotOptionsStatus;
|
|
1185
|
-
VPCOptions?: VPCDerivedInfoStatus;
|
|
1186
|
-
CognitoOptions?: CognitoOptionsStatus;
|
|
1187
|
-
EncryptionAtRestOptions?: EncryptionAtRestOptionsStatus;
|
|
1188
|
-
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptionsStatus;
|
|
1189
|
-
AdvancedOptions?: AdvancedOptionsStatus;
|
|
1190
|
-
LogPublishingOptions?: LogPublishingOptionsStatus;
|
|
1191
|
-
DomainEndpointOptions?: DomainEndpointOptionsStatus;
|
|
1192
|
-
AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus;
|
|
1193
|
-
IdentityCenterOptions?: IdentityCenterOptionsStatus;
|
|
1194
|
-
AutoTuneOptions?: AutoTuneOptionsStatus;
|
|
1195
|
-
ChangeProgressDetails?: ChangeProgressDetails;
|
|
1196
|
-
OffPeakWindowOptions?: OffPeakWindowOptionsStatus;
|
|
1197
|
-
SoftwareUpdateOptions?: SoftwareUpdateOptionsStatus;
|
|
1198
|
-
ModifyingProperties?: ModifyingProperties[];
|
|
1199
|
-
AIMLOptions?: AIMLOptionsStatus;
|
|
1241
|
+
EngineVersion?: VersionStatus | undefined;
|
|
1242
|
+
ClusterConfig?: ClusterConfigStatus | undefined;
|
|
1243
|
+
EBSOptions?: EBSOptionsStatus | undefined;
|
|
1244
|
+
AccessPolicies?: AccessPoliciesStatus | undefined;
|
|
1245
|
+
IPAddressType?: IPAddressTypeStatus | undefined;
|
|
1246
|
+
SnapshotOptions?: SnapshotOptionsStatus | undefined;
|
|
1247
|
+
VPCOptions?: VPCDerivedInfoStatus | undefined;
|
|
1248
|
+
CognitoOptions?: CognitoOptionsStatus | undefined;
|
|
1249
|
+
EncryptionAtRestOptions?: EncryptionAtRestOptionsStatus | undefined;
|
|
1250
|
+
NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptionsStatus | undefined;
|
|
1251
|
+
AdvancedOptions?: AdvancedOptionsStatus | undefined;
|
|
1252
|
+
LogPublishingOptions?: LogPublishingOptionsStatus | undefined;
|
|
1253
|
+
DomainEndpointOptions?: DomainEndpointOptionsStatus | undefined;
|
|
1254
|
+
AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus | undefined;
|
|
1255
|
+
IdentityCenterOptions?: IdentityCenterOptionsStatus | undefined;
|
|
1256
|
+
AutoTuneOptions?: AutoTuneOptionsStatus | undefined;
|
|
1257
|
+
ChangeProgressDetails?: ChangeProgressDetails | undefined;
|
|
1258
|
+
OffPeakWindowOptions?: OffPeakWindowOptionsStatus | undefined;
|
|
1259
|
+
SoftwareUpdateOptions?: SoftwareUpdateOptionsStatus | undefined;
|
|
1260
|
+
ModifyingProperties?: ModifyingProperties[] | undefined;
|
|
1261
|
+
AIMLOptions?: AIMLOptionsStatus | undefined;
|
|
1200
1262
|
}
|
|
1201
1263
|
export interface DescribeDomainConfigResponse {
|
|
1202
1264
|
DomainConfig: DomainConfig | undefined;
|
|
@@ -1224,15 +1286,15 @@ export declare const ZoneStatus: {
|
|
|
1224
1286
|
};
|
|
1225
1287
|
export type ZoneStatus = (typeof ZoneStatus)[keyof typeof ZoneStatus];
|
|
1226
1288
|
export interface AvailabilityZoneInfo {
|
|
1227
|
-
AvailabilityZoneName?: string;
|
|
1228
|
-
ZoneStatus?: ZoneStatus;
|
|
1229
|
-
ConfiguredDataNodeCount?: string;
|
|
1230
|
-
AvailableDataNodeCount?: string;
|
|
1231
|
-
TotalShards?: string;
|
|
1232
|
-
TotalUnAssignedShards?: string;
|
|
1289
|
+
AvailabilityZoneName?: string | undefined;
|
|
1290
|
+
ZoneStatus?: ZoneStatus | undefined;
|
|
1291
|
+
ConfiguredDataNodeCount?: string | undefined;
|
|
1292
|
+
AvailableDataNodeCount?: string | undefined;
|
|
1293
|
+
TotalShards?: string | undefined;
|
|
1294
|
+
TotalUnAssignedShards?: string | undefined;
|
|
1233
1295
|
}
|
|
1234
1296
|
export interface EnvironmentInfo {
|
|
1235
|
-
AvailabilityZoneInformation?: AvailabilityZoneInfo[];
|
|
1297
|
+
AvailabilityZoneInformation?: AvailabilityZoneInfo[] | undefined;
|
|
1236
1298
|
}
|
|
1237
1299
|
export declare const MasterNodeStatus: {
|
|
1238
1300
|
readonly Available: "Available";
|
|
@@ -1241,19 +1303,19 @@ export declare const MasterNodeStatus: {
|
|
|
1241
1303
|
export type MasterNodeStatus =
|
|
1242
1304
|
(typeof MasterNodeStatus)[keyof typeof MasterNodeStatus];
|
|
1243
1305
|
export interface DescribeDomainHealthResponse {
|
|
1244
|
-
DomainState?: DomainState;
|
|
1245
|
-
AvailabilityZoneCount?: string;
|
|
1246
|
-
ActiveAvailabilityZoneCount?: string;
|
|
1247
|
-
StandByAvailabilityZoneCount?: string;
|
|
1248
|
-
DataNodeCount?: string;
|
|
1249
|
-
DedicatedMaster?: boolean;
|
|
1250
|
-
MasterEligibleNodeCount?: string;
|
|
1251
|
-
WarmNodeCount?: string;
|
|
1252
|
-
MasterNode?: MasterNodeStatus;
|
|
1253
|
-
ClusterHealth?: DomainHealth;
|
|
1254
|
-
TotalShards?: string;
|
|
1255
|
-
TotalUnAssignedShards?: string;
|
|
1256
|
-
EnvironmentInformation?: EnvironmentInfo[];
|
|
1306
|
+
DomainState?: DomainState | undefined;
|
|
1307
|
+
AvailabilityZoneCount?: string | undefined;
|
|
1308
|
+
ActiveAvailabilityZoneCount?: string | undefined;
|
|
1309
|
+
StandByAvailabilityZoneCount?: string | undefined;
|
|
1310
|
+
DataNodeCount?: string | undefined;
|
|
1311
|
+
DedicatedMaster?: boolean | undefined;
|
|
1312
|
+
MasterEligibleNodeCount?: string | undefined;
|
|
1313
|
+
WarmNodeCount?: string | undefined;
|
|
1314
|
+
MasterNode?: MasterNodeStatus | undefined;
|
|
1315
|
+
ClusterHealth?: DomainHealth | undefined;
|
|
1316
|
+
TotalShards?: string | undefined;
|
|
1317
|
+
TotalUnAssignedShards?: string | undefined;
|
|
1318
|
+
EnvironmentInformation?: EnvironmentInfo[] | undefined;
|
|
1257
1319
|
}
|
|
1258
1320
|
export interface DescribeDomainNodesRequest {
|
|
1259
1321
|
DomainName: string | undefined;
|
|
@@ -1271,17 +1333,17 @@ export declare const NodeType: {
|
|
|
1271
1333
|
};
|
|
1272
1334
|
export type NodeType = (typeof NodeType)[keyof typeof NodeType];
|
|
1273
1335
|
export interface DomainNodesStatus {
|
|
1274
|
-
NodeId?: string;
|
|
1275
|
-
NodeType?: NodeType;
|
|
1276
|
-
AvailabilityZone?: string;
|
|
1277
|
-
InstanceType?: OpenSearchPartitionInstanceType;
|
|
1278
|
-
NodeStatus?: NodeStatus;
|
|
1279
|
-
StorageType?: string;
|
|
1280
|
-
StorageVolumeType?: VolumeType;
|
|
1281
|
-
StorageSize?: string;
|
|
1336
|
+
NodeId?: string | undefined;
|
|
1337
|
+
NodeType?: NodeType | undefined;
|
|
1338
|
+
AvailabilityZone?: string | undefined;
|
|
1339
|
+
InstanceType?: OpenSearchPartitionInstanceType | undefined;
|
|
1340
|
+
NodeStatus?: NodeStatus | undefined;
|
|
1341
|
+
StorageType?: string | undefined;
|
|
1342
|
+
StorageVolumeType?: VolumeType | undefined;
|
|
1343
|
+
StorageSize?: string | undefined;
|
|
1282
1344
|
}
|
|
1283
1345
|
export interface DescribeDomainNodesResponse {
|
|
1284
|
-
DomainNodesStatusList?: DomainNodesStatus[];
|
|
1346
|
+
DomainNodesStatusList?: DomainNodesStatus[] | undefined;
|
|
1285
1347
|
}
|
|
1286
1348
|
export interface DescribeDomainsRequest {
|
|
1287
1349
|
DomainNames: string[] | undefined;
|
|
@@ -1291,41 +1353,41 @@ export interface DescribeDomainsResponse {
|
|
|
1291
1353
|
}
|
|
1292
1354
|
export interface DescribeDryRunProgressRequest {
|
|
1293
1355
|
DomainName: string | undefined;
|
|
1294
|
-
DryRunId?: string;
|
|
1295
|
-
LoadDryRunConfig?: boolean;
|
|
1356
|
+
DryRunId?: string | undefined;
|
|
1357
|
+
LoadDryRunConfig?: boolean | undefined;
|
|
1296
1358
|
}
|
|
1297
1359
|
export interface ValidationFailure {
|
|
1298
|
-
Code?: string;
|
|
1299
|
-
Message?: string;
|
|
1360
|
+
Code?: string | undefined;
|
|
1361
|
+
Message?: string | undefined;
|
|
1300
1362
|
}
|
|
1301
1363
|
export interface DryRunProgressStatus {
|
|
1302
1364
|
DryRunId: string | undefined;
|
|
1303
1365
|
DryRunStatus: string | undefined;
|
|
1304
1366
|
CreationDate: string | undefined;
|
|
1305
1367
|
UpdateDate: string | undefined;
|
|
1306
|
-
ValidationFailures?: ValidationFailure[];
|
|
1368
|
+
ValidationFailures?: ValidationFailure[] | undefined;
|
|
1307
1369
|
}
|
|
1308
1370
|
export interface DryRunResults {
|
|
1309
|
-
DeploymentType?: string;
|
|
1310
|
-
Message?: string;
|
|
1371
|
+
DeploymentType?: string | undefined;
|
|
1372
|
+
Message?: string | undefined;
|
|
1311
1373
|
}
|
|
1312
1374
|
export interface DescribeDryRunProgressResponse {
|
|
1313
|
-
DryRunProgressStatus?: DryRunProgressStatus;
|
|
1314
|
-
DryRunConfig?: DomainStatus;
|
|
1315
|
-
DryRunResults?: DryRunResults;
|
|
1375
|
+
DryRunProgressStatus?: DryRunProgressStatus | undefined;
|
|
1376
|
+
DryRunConfig?: DomainStatus | undefined;
|
|
1377
|
+
DryRunResults?: DryRunResults | undefined;
|
|
1316
1378
|
}
|
|
1317
1379
|
export interface Filter {
|
|
1318
|
-
Name?: string;
|
|
1319
|
-
Values?: string[];
|
|
1380
|
+
Name?: string | undefined;
|
|
1381
|
+
Values?: string[] | undefined;
|
|
1320
1382
|
}
|
|
1321
1383
|
export interface DescribeInboundConnectionsRequest {
|
|
1322
|
-
Filters?: Filter[];
|
|
1323
|
-
MaxResults?: number;
|
|
1324
|
-
NextToken?: string;
|
|
1384
|
+
Filters?: Filter[] | undefined;
|
|
1385
|
+
MaxResults?: number | undefined;
|
|
1386
|
+
NextToken?: string | undefined;
|
|
1325
1387
|
}
|
|
1326
1388
|
export interface DescribeInboundConnectionsResponse {
|
|
1327
|
-
Connections?: InboundConnection[];
|
|
1328
|
-
NextToken?: string;
|
|
1389
|
+
Connections?: InboundConnection[] | undefined;
|
|
1390
|
+
NextToken?: string | undefined;
|
|
1329
1391
|
}
|
|
1330
1392
|
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
1331
1393
|
readonly name: "InvalidPaginationTokenException";
|
|
@@ -1338,69 +1400,70 @@ export declare class InvalidPaginationTokenException extends __BaseException {
|
|
|
1338
1400
|
);
|
|
1339
1401
|
}
|
|
1340
1402
|
export interface DescribeInstanceTypeLimitsRequest {
|
|
1341
|
-
DomainName?: string;
|
|
1403
|
+
DomainName?: string | undefined;
|
|
1342
1404
|
InstanceType: OpenSearchPartitionInstanceType | undefined;
|
|
1343
1405
|
EngineVersion: string | undefined;
|
|
1344
1406
|
}
|
|
1345
1407
|
export interface InstanceCountLimits {
|
|
1346
|
-
MinimumInstanceCount?: number;
|
|
1347
|
-
MaximumInstanceCount?: number;
|
|
1408
|
+
MinimumInstanceCount?: number | undefined;
|
|
1409
|
+
MaximumInstanceCount?: number | undefined;
|
|
1348
1410
|
}
|
|
1349
1411
|
export interface InstanceLimits {
|
|
1350
|
-
InstanceCountLimits?: InstanceCountLimits;
|
|
1412
|
+
InstanceCountLimits?: InstanceCountLimits | undefined;
|
|
1351
1413
|
}
|
|
1352
1414
|
export interface StorageTypeLimit {
|
|
1353
|
-
LimitName?: string;
|
|
1354
|
-
LimitValues?: string[];
|
|
1415
|
+
LimitName?: string | undefined;
|
|
1416
|
+
LimitValues?: string[] | undefined;
|
|
1355
1417
|
}
|
|
1356
1418
|
export interface StorageType {
|
|
1357
|
-
StorageTypeName?: string;
|
|
1358
|
-
StorageSubTypeName?: string;
|
|
1359
|
-
StorageTypeLimits?: StorageTypeLimit[];
|
|
1419
|
+
StorageTypeName?: string | undefined;
|
|
1420
|
+
StorageSubTypeName?: string | undefined;
|
|
1421
|
+
StorageTypeLimits?: StorageTypeLimit[] | undefined;
|
|
1360
1422
|
}
|
|
1361
1423
|
export interface Limits {
|
|
1362
|
-
StorageTypes?: StorageType[];
|
|
1363
|
-
InstanceLimits?: InstanceLimits;
|
|
1364
|
-
AdditionalLimits?: AdditionalLimit[];
|
|
1424
|
+
StorageTypes?: StorageType[] | undefined;
|
|
1425
|
+
InstanceLimits?: InstanceLimits | undefined;
|
|
1426
|
+
AdditionalLimits?: AdditionalLimit[] | undefined;
|
|
1365
1427
|
}
|
|
1366
1428
|
export interface DescribeInstanceTypeLimitsResponse {
|
|
1367
|
-
LimitsByRole?: Record<string, Limits
|
|
1429
|
+
LimitsByRole?: Record<string, Limits> | undefined;
|
|
1368
1430
|
}
|
|
1369
1431
|
export interface DescribeOutboundConnectionsRequest {
|
|
1370
|
-
Filters?: Filter[];
|
|
1371
|
-
MaxResults?: number;
|
|
1372
|
-
NextToken?: string;
|
|
1432
|
+
Filters?: Filter[] | undefined;
|
|
1433
|
+
MaxResults?: number | undefined;
|
|
1434
|
+
NextToken?: string | undefined;
|
|
1373
1435
|
}
|
|
1374
1436
|
export interface DescribeOutboundConnectionsResponse {
|
|
1375
|
-
Connections?: OutboundConnection[];
|
|
1376
|
-
NextToken?: string;
|
|
1437
|
+
Connections?: OutboundConnection[] | undefined;
|
|
1438
|
+
NextToken?: string | undefined;
|
|
1377
1439
|
}
|
|
1378
1440
|
export declare const DescribePackagesFilterName: {
|
|
1379
1441
|
readonly EngineVersion: "EngineVersion";
|
|
1380
1442
|
readonly PackageID: "PackageID";
|
|
1381
1443
|
readonly PackageName: "PackageName";
|
|
1444
|
+
readonly PackageOwner: "PackageOwner";
|
|
1382
1445
|
readonly PackageStatus: "PackageStatus";
|
|
1383
1446
|
readonly PackageType: "PackageType";
|
|
1384
1447
|
};
|
|
1385
1448
|
export type DescribePackagesFilterName =
|
|
1386
1449
|
(typeof DescribePackagesFilterName)[keyof typeof DescribePackagesFilterName];
|
|
1387
1450
|
export interface DescribePackagesFilter {
|
|
1388
|
-
Name?: DescribePackagesFilterName;
|
|
1389
|
-
Value?: string[];
|
|
1451
|
+
Name?: DescribePackagesFilterName | undefined;
|
|
1452
|
+
Value?: string[] | undefined;
|
|
1390
1453
|
}
|
|
1391
1454
|
export interface DescribePackagesRequest {
|
|
1392
|
-
Filters?: DescribePackagesFilter[];
|
|
1393
|
-
MaxResults?: number;
|
|
1394
|
-
NextToken?: string;
|
|
1455
|
+
Filters?: DescribePackagesFilter[] | undefined;
|
|
1456
|
+
MaxResults?: number | undefined;
|
|
1457
|
+
NextToken?: string | undefined;
|
|
1395
1458
|
}
|
|
1396
1459
|
export interface DescribePackagesResponse {
|
|
1397
|
-
PackageDetailsList?: PackageDetails[];
|
|
1398
|
-
NextToken?: string;
|
|
1460
|
+
PackageDetailsList?: PackageDetails[] | undefined;
|
|
1461
|
+
NextToken?: string | undefined;
|
|
1399
1462
|
}
|
|
1400
1463
|
export interface DescribeReservedInstanceOfferingsRequest {
|
|
1401
|
-
ReservedInstanceOfferingId?: string;
|
|
1402
|
-
MaxResults?: number;
|
|
1403
|
-
NextToken?: string;
|
|
1464
|
+
ReservedInstanceOfferingId?: string | undefined;
|
|
1465
|
+
MaxResults?: number | undefined;
|
|
1466
|
+
NextToken?: string | undefined;
|
|
1404
1467
|
}
|
|
1405
1468
|
export declare const ReservedInstancePaymentOption: {
|
|
1406
1469
|
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
@@ -1410,47 +1473,47 @@ export declare const ReservedInstancePaymentOption: {
|
|
|
1410
1473
|
export type ReservedInstancePaymentOption =
|
|
1411
1474
|
(typeof ReservedInstancePaymentOption)[keyof typeof ReservedInstancePaymentOption];
|
|
1412
1475
|
export interface RecurringCharge {
|
|
1413
|
-
RecurringChargeAmount?: number;
|
|
1414
|
-
RecurringChargeFrequency?: string;
|
|
1476
|
+
RecurringChargeAmount?: number | undefined;
|
|
1477
|
+
RecurringChargeFrequency?: string | undefined;
|
|
1415
1478
|
}
|
|
1416
1479
|
export interface ReservedInstanceOffering {
|
|
1417
|
-
ReservedInstanceOfferingId?: string;
|
|
1418
|
-
InstanceType?: OpenSearchPartitionInstanceType;
|
|
1419
|
-
Duration?: number;
|
|
1420
|
-
FixedPrice?: number;
|
|
1421
|
-
UsagePrice?: number;
|
|
1422
|
-
CurrencyCode?: string;
|
|
1423
|
-
PaymentOption?: ReservedInstancePaymentOption;
|
|
1424
|
-
RecurringCharges?: RecurringCharge[];
|
|
1480
|
+
ReservedInstanceOfferingId?: string | undefined;
|
|
1481
|
+
InstanceType?: OpenSearchPartitionInstanceType | undefined;
|
|
1482
|
+
Duration?: number | undefined;
|
|
1483
|
+
FixedPrice?: number | undefined;
|
|
1484
|
+
UsagePrice?: number | undefined;
|
|
1485
|
+
CurrencyCode?: string | undefined;
|
|
1486
|
+
PaymentOption?: ReservedInstancePaymentOption | undefined;
|
|
1487
|
+
RecurringCharges?: RecurringCharge[] | undefined;
|
|
1425
1488
|
}
|
|
1426
1489
|
export interface DescribeReservedInstanceOfferingsResponse {
|
|
1427
|
-
NextToken?: string;
|
|
1428
|
-
ReservedInstanceOfferings?: ReservedInstanceOffering[];
|
|
1490
|
+
NextToken?: string | undefined;
|
|
1491
|
+
ReservedInstanceOfferings?: ReservedInstanceOffering[] | undefined;
|
|
1429
1492
|
}
|
|
1430
1493
|
export interface DescribeReservedInstancesRequest {
|
|
1431
|
-
ReservedInstanceId?: string;
|
|
1432
|
-
MaxResults?: number;
|
|
1433
|
-
NextToken?: string;
|
|
1494
|
+
ReservedInstanceId?: string | undefined;
|
|
1495
|
+
MaxResults?: number | undefined;
|
|
1496
|
+
NextToken?: string | undefined;
|
|
1434
1497
|
}
|
|
1435
1498
|
export interface ReservedInstance {
|
|
1436
|
-
ReservationName?: string;
|
|
1437
|
-
ReservedInstanceId?: string;
|
|
1438
|
-
BillingSubscriptionId?: number;
|
|
1439
|
-
ReservedInstanceOfferingId?: string;
|
|
1440
|
-
InstanceType?: OpenSearchPartitionInstanceType;
|
|
1441
|
-
StartTime?: Date;
|
|
1442
|
-
Duration?: number;
|
|
1443
|
-
FixedPrice?: number;
|
|
1444
|
-
UsagePrice?: number;
|
|
1445
|
-
CurrencyCode?: string;
|
|
1446
|
-
InstanceCount?: number;
|
|
1447
|
-
State?: string;
|
|
1448
|
-
PaymentOption?: ReservedInstancePaymentOption;
|
|
1449
|
-
RecurringCharges?: RecurringCharge[];
|
|
1499
|
+
ReservationName?: string | undefined;
|
|
1500
|
+
ReservedInstanceId?: string | undefined;
|
|
1501
|
+
BillingSubscriptionId?: number | undefined;
|
|
1502
|
+
ReservedInstanceOfferingId?: string | undefined;
|
|
1503
|
+
InstanceType?: OpenSearchPartitionInstanceType | undefined;
|
|
1504
|
+
StartTime?: Date | undefined;
|
|
1505
|
+
Duration?: number | undefined;
|
|
1506
|
+
FixedPrice?: number | undefined;
|
|
1507
|
+
UsagePrice?: number | undefined;
|
|
1508
|
+
CurrencyCode?: string | undefined;
|
|
1509
|
+
InstanceCount?: number | undefined;
|
|
1510
|
+
State?: string | undefined;
|
|
1511
|
+
PaymentOption?: ReservedInstancePaymentOption | undefined;
|
|
1512
|
+
RecurringCharges?: RecurringCharge[] | undefined;
|
|
1450
1513
|
}
|
|
1451
1514
|
export interface DescribeReservedInstancesResponse {
|
|
1452
|
-
NextToken?: string;
|
|
1453
|
-
ReservedInstances?: ReservedInstance[];
|
|
1515
|
+
NextToken?: string | undefined;
|
|
1516
|
+
ReservedInstances?: ReservedInstance[] | undefined;
|
|
1454
1517
|
}
|
|
1455
1518
|
export interface DescribeVpcEndpointsRequest {
|
|
1456
1519
|
VpcEndpointIds: string[] | undefined;
|
|
@@ -1462,9 +1525,9 @@ export declare const VpcEndpointErrorCode: {
|
|
|
1462
1525
|
export type VpcEndpointErrorCode =
|
|
1463
1526
|
(typeof VpcEndpointErrorCode)[keyof typeof VpcEndpointErrorCode];
|
|
1464
1527
|
export interface VpcEndpointError {
|
|
1465
|
-
VpcEndpointId?: string;
|
|
1466
|
-
ErrorCode?: VpcEndpointErrorCode;
|
|
1467
|
-
ErrorMessage?: string;
|
|
1528
|
+
VpcEndpointId?: string | undefined;
|
|
1529
|
+
ErrorCode?: VpcEndpointErrorCode | undefined;
|
|
1530
|
+
ErrorMessage?: string | undefined;
|
|
1468
1531
|
}
|
|
1469
1532
|
export interface DescribeVpcEndpointsResponse {
|
|
1470
1533
|
VpcEndpoints: VpcEndpoint[] | undefined;
|
|
@@ -1475,7 +1538,14 @@ export interface DissociatePackageRequest {
|
|
|
1475
1538
|
DomainName: string | undefined;
|
|
1476
1539
|
}
|
|
1477
1540
|
export interface DissociatePackageResponse {
|
|
1478
|
-
DomainPackageDetails?: DomainPackageDetails;
|
|
1541
|
+
DomainPackageDetails?: DomainPackageDetails | undefined;
|
|
1542
|
+
}
|
|
1543
|
+
export interface DissociatePackagesRequest {
|
|
1544
|
+
PackageList: string[] | undefined;
|
|
1545
|
+
DomainName: string | undefined;
|
|
1546
|
+
}
|
|
1547
|
+
export interface DissociatePackagesResponse {
|
|
1548
|
+
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
1479
1549
|
}
|
|
1480
1550
|
export interface GetApplicationRequest {
|
|
1481
1551
|
id: string | undefined;
|
|
@@ -1490,26 +1560,26 @@ export declare const ApplicationStatus: {
|
|
|
1490
1560
|
export type ApplicationStatus =
|
|
1491
1561
|
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
1492
1562
|
export interface GetApplicationResponse {
|
|
1493
|
-
id?: string;
|
|
1494
|
-
arn?: string;
|
|
1495
|
-
name?: string;
|
|
1496
|
-
endpoint?: string;
|
|
1497
|
-
status?: ApplicationStatus;
|
|
1498
|
-
iamIdentityCenterOptions?: IamIdentityCenterOptions;
|
|
1499
|
-
dataSources?: DataSource[];
|
|
1500
|
-
appConfigs?: AppConfig[];
|
|
1501
|
-
createdAt?: Date;
|
|
1502
|
-
lastUpdatedAt?: Date;
|
|
1563
|
+
id?: string | undefined;
|
|
1564
|
+
arn?: string | undefined;
|
|
1565
|
+
name?: string | undefined;
|
|
1566
|
+
endpoint?: string | undefined;
|
|
1567
|
+
status?: ApplicationStatus | undefined;
|
|
1568
|
+
iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
|
|
1569
|
+
dataSources?: DataSource[] | undefined;
|
|
1570
|
+
appConfigs?: AppConfig[] | undefined;
|
|
1571
|
+
createdAt?: Date | undefined;
|
|
1572
|
+
lastUpdatedAt?: Date | undefined;
|
|
1503
1573
|
}
|
|
1504
1574
|
export interface GetCompatibleVersionsRequest {
|
|
1505
|
-
DomainName?: string;
|
|
1575
|
+
DomainName?: string | undefined;
|
|
1506
1576
|
}
|
|
1507
1577
|
export interface CompatibleVersionsMap {
|
|
1508
|
-
SourceVersion?: string;
|
|
1509
|
-
TargetVersions?: string[];
|
|
1578
|
+
SourceVersion?: string | undefined;
|
|
1579
|
+
TargetVersions?: string[] | undefined;
|
|
1510
1580
|
}
|
|
1511
1581
|
export interface GetCompatibleVersionsResponse {
|
|
1512
|
-
CompatibleVersions?: CompatibleVersionsMap[];
|
|
1582
|
+
CompatibleVersions?: CompatibleVersionsMap[] | undefined;
|
|
1513
1583
|
}
|
|
1514
1584
|
export interface GetDataSourceRequest {
|
|
1515
1585
|
DomainName: string | undefined;
|
|
@@ -1522,10 +1592,10 @@ export declare const DataSourceStatus: {
|
|
|
1522
1592
|
export type DataSourceStatus =
|
|
1523
1593
|
(typeof DataSourceStatus)[keyof typeof DataSourceStatus];
|
|
1524
1594
|
export interface GetDataSourceResponse {
|
|
1525
|
-
DataSourceType?: DataSourceType;
|
|
1526
|
-
Name?: string;
|
|
1527
|
-
Description?: string;
|
|
1528
|
-
Status?: DataSourceStatus;
|
|
1595
|
+
DataSourceType?: DataSourceType | undefined;
|
|
1596
|
+
Name?: string | undefined;
|
|
1597
|
+
Description?: string | undefined;
|
|
1598
|
+
Status?: DataSourceStatus | undefined;
|
|
1529
1599
|
}
|
|
1530
1600
|
export interface GetDomainMaintenanceStatusRequest {
|
|
1531
1601
|
DomainName: string | undefined;
|
|
@@ -1548,33 +1618,34 @@ export declare const MaintenanceStatus: {
|
|
|
1548
1618
|
export type MaintenanceStatus =
|
|
1549
1619
|
(typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
|
|
1550
1620
|
export interface GetDomainMaintenanceStatusResponse {
|
|
1551
|
-
Status?: MaintenanceStatus;
|
|
1552
|
-
StatusMessage?: string;
|
|
1553
|
-
NodeId?: string;
|
|
1554
|
-
Action?: MaintenanceType;
|
|
1555
|
-
CreatedAt?: Date;
|
|
1556
|
-
UpdatedAt?: Date;
|
|
1621
|
+
Status?: MaintenanceStatus | undefined;
|
|
1622
|
+
StatusMessage?: string | undefined;
|
|
1623
|
+
NodeId?: string | undefined;
|
|
1624
|
+
Action?: MaintenanceType | undefined;
|
|
1625
|
+
CreatedAt?: Date | undefined;
|
|
1626
|
+
UpdatedAt?: Date | undefined;
|
|
1557
1627
|
}
|
|
1558
1628
|
export interface GetPackageVersionHistoryRequest {
|
|
1559
1629
|
PackageID: string | undefined;
|
|
1560
|
-
MaxResults?: number;
|
|
1561
|
-
NextToken?: string;
|
|
1630
|
+
MaxResults?: number | undefined;
|
|
1631
|
+
NextToken?: string | undefined;
|
|
1562
1632
|
}
|
|
1563
1633
|
export interface PackageVersionHistory {
|
|
1564
|
-
PackageVersion?: string;
|
|
1565
|
-
CommitMessage?: string;
|
|
1566
|
-
CreatedAt?: Date;
|
|
1567
|
-
PluginProperties?: PluginProperties;
|
|
1634
|
+
PackageVersion?: string | undefined;
|
|
1635
|
+
CommitMessage?: string | undefined;
|
|
1636
|
+
CreatedAt?: Date | undefined;
|
|
1637
|
+
PluginProperties?: PluginProperties | undefined;
|
|
1638
|
+
PackageConfiguration?: PackageConfiguration | undefined;
|
|
1568
1639
|
}
|
|
1569
1640
|
export interface GetPackageVersionHistoryResponse {
|
|
1570
|
-
PackageID?: string;
|
|
1571
|
-
PackageVersionHistoryList?: PackageVersionHistory[];
|
|
1572
|
-
NextToken?: string;
|
|
1641
|
+
PackageID?: string | undefined;
|
|
1642
|
+
PackageVersionHistoryList?: PackageVersionHistory[] | undefined;
|
|
1643
|
+
NextToken?: string | undefined;
|
|
1573
1644
|
}
|
|
1574
1645
|
export interface GetUpgradeHistoryRequest {
|
|
1575
1646
|
DomainName: string | undefined;
|
|
1576
|
-
MaxResults?: number;
|
|
1577
|
-
NextToken?: string;
|
|
1647
|
+
MaxResults?: number | undefined;
|
|
1648
|
+
NextToken?: string | undefined;
|
|
1578
1649
|
}
|
|
1579
1650
|
export declare const UpgradeStep: {
|
|
1580
1651
|
readonly PRE_UPGRADE_CHECK: "PRE_UPGRADE_CHECK";
|
|
@@ -1590,79 +1661,79 @@ export declare const UpgradeStatus: {
|
|
|
1590
1661
|
};
|
|
1591
1662
|
export type UpgradeStatus = (typeof UpgradeStatus)[keyof typeof UpgradeStatus];
|
|
1592
1663
|
export interface UpgradeStepItem {
|
|
1593
|
-
UpgradeStep?: UpgradeStep;
|
|
1594
|
-
UpgradeStepStatus?: UpgradeStatus;
|
|
1595
|
-
Issues?: string[];
|
|
1596
|
-
ProgressPercent?: number;
|
|
1664
|
+
UpgradeStep?: UpgradeStep | undefined;
|
|
1665
|
+
UpgradeStepStatus?: UpgradeStatus | undefined;
|
|
1666
|
+
Issues?: string[] | undefined;
|
|
1667
|
+
ProgressPercent?: number | undefined;
|
|
1597
1668
|
}
|
|
1598
1669
|
export interface UpgradeHistory {
|
|
1599
|
-
UpgradeName?: string;
|
|
1600
|
-
StartTimestamp?: Date;
|
|
1601
|
-
UpgradeStatus?: UpgradeStatus;
|
|
1602
|
-
StepsList?: UpgradeStepItem[];
|
|
1670
|
+
UpgradeName?: string | undefined;
|
|
1671
|
+
StartTimestamp?: Date | undefined;
|
|
1672
|
+
UpgradeStatus?: UpgradeStatus | undefined;
|
|
1673
|
+
StepsList?: UpgradeStepItem[] | undefined;
|
|
1603
1674
|
}
|
|
1604
1675
|
export interface GetUpgradeHistoryResponse {
|
|
1605
|
-
UpgradeHistories?: UpgradeHistory[];
|
|
1606
|
-
NextToken?: string;
|
|
1676
|
+
UpgradeHistories?: UpgradeHistory[] | undefined;
|
|
1677
|
+
NextToken?: string | undefined;
|
|
1607
1678
|
}
|
|
1608
1679
|
export interface GetUpgradeStatusRequest {
|
|
1609
1680
|
DomainName: string | undefined;
|
|
1610
1681
|
}
|
|
1611
1682
|
export interface GetUpgradeStatusResponse {
|
|
1612
|
-
UpgradeStep?: UpgradeStep;
|
|
1613
|
-
StepStatus?: UpgradeStatus;
|
|
1614
|
-
UpgradeName?: string;
|
|
1683
|
+
UpgradeStep?: UpgradeStep | undefined;
|
|
1684
|
+
StepStatus?: UpgradeStatus | undefined;
|
|
1685
|
+
UpgradeName?: string | undefined;
|
|
1615
1686
|
}
|
|
1616
1687
|
export interface ListApplicationsRequest {
|
|
1617
|
-
nextToken?: string;
|
|
1618
|
-
statuses?: ApplicationStatus[];
|
|
1619
|
-
maxResults?: number;
|
|
1688
|
+
nextToken?: string | undefined;
|
|
1689
|
+
statuses?: ApplicationStatus[] | undefined;
|
|
1690
|
+
maxResults?: number | undefined;
|
|
1620
1691
|
}
|
|
1621
1692
|
export interface ApplicationSummary {
|
|
1622
|
-
id?: string;
|
|
1623
|
-
arn?: string;
|
|
1624
|
-
name?: string;
|
|
1625
|
-
endpoint?: string;
|
|
1626
|
-
status?: ApplicationStatus;
|
|
1627
|
-
createdAt?: Date;
|
|
1628
|
-
lastUpdatedAt?: Date;
|
|
1693
|
+
id?: string | undefined;
|
|
1694
|
+
arn?: string | undefined;
|
|
1695
|
+
name?: string | undefined;
|
|
1696
|
+
endpoint?: string | undefined;
|
|
1697
|
+
status?: ApplicationStatus | undefined;
|
|
1698
|
+
createdAt?: Date | undefined;
|
|
1699
|
+
lastUpdatedAt?: Date | undefined;
|
|
1629
1700
|
}
|
|
1630
1701
|
export interface ListApplicationsResponse {
|
|
1631
|
-
ApplicationSummaries?: ApplicationSummary[];
|
|
1632
|
-
nextToken?: string;
|
|
1702
|
+
ApplicationSummaries?: ApplicationSummary[] | undefined;
|
|
1703
|
+
nextToken?: string | undefined;
|
|
1633
1704
|
}
|
|
1634
1705
|
export interface ListDataSourcesRequest {
|
|
1635
1706
|
DomainName: string | undefined;
|
|
1636
1707
|
}
|
|
1637
1708
|
export interface DataSourceDetails {
|
|
1638
|
-
DataSourceType?: DataSourceType;
|
|
1639
|
-
Name?: string;
|
|
1640
|
-
Description?: string;
|
|
1641
|
-
Status?: DataSourceStatus;
|
|
1709
|
+
DataSourceType?: DataSourceType | undefined;
|
|
1710
|
+
Name?: string | undefined;
|
|
1711
|
+
Description?: string | undefined;
|
|
1712
|
+
Status?: DataSourceStatus | undefined;
|
|
1642
1713
|
}
|
|
1643
1714
|
export interface ListDataSourcesResponse {
|
|
1644
|
-
DataSources?: DataSourceDetails[];
|
|
1715
|
+
DataSources?: DataSourceDetails[] | undefined;
|
|
1645
1716
|
}
|
|
1646
1717
|
export interface ListDomainMaintenancesRequest {
|
|
1647
1718
|
DomainName: string | undefined;
|
|
1648
|
-
Action?: MaintenanceType;
|
|
1649
|
-
Status?: MaintenanceStatus;
|
|
1650
|
-
MaxResults?: number;
|
|
1651
|
-
NextToken?: string;
|
|
1719
|
+
Action?: MaintenanceType | undefined;
|
|
1720
|
+
Status?: MaintenanceStatus | undefined;
|
|
1721
|
+
MaxResults?: number | undefined;
|
|
1722
|
+
NextToken?: string | undefined;
|
|
1652
1723
|
}
|
|
1653
1724
|
export interface DomainMaintenanceDetails {
|
|
1654
|
-
MaintenanceId?: string;
|
|
1655
|
-
DomainName?: string;
|
|
1656
|
-
Action?: MaintenanceType;
|
|
1657
|
-
NodeId?: string;
|
|
1658
|
-
Status?: MaintenanceStatus;
|
|
1659
|
-
StatusMessage?: string;
|
|
1660
|
-
CreatedAt?: Date;
|
|
1661
|
-
UpdatedAt?: Date;
|
|
1725
|
+
MaintenanceId?: string | undefined;
|
|
1726
|
+
DomainName?: string | undefined;
|
|
1727
|
+
Action?: MaintenanceType | undefined;
|
|
1728
|
+
NodeId?: string | undefined;
|
|
1729
|
+
Status?: MaintenanceStatus | undefined;
|
|
1730
|
+
StatusMessage?: string | undefined;
|
|
1731
|
+
CreatedAt?: Date | undefined;
|
|
1732
|
+
UpdatedAt?: Date | undefined;
|
|
1662
1733
|
}
|
|
1663
1734
|
export interface ListDomainMaintenancesResponse {
|
|
1664
|
-
DomainMaintenances?: DomainMaintenanceDetails[];
|
|
1665
|
-
NextToken?: string;
|
|
1735
|
+
DomainMaintenances?: DomainMaintenanceDetails[] | undefined;
|
|
1736
|
+
NextToken?: string | undefined;
|
|
1666
1737
|
}
|
|
1667
1738
|
export declare const EngineType: {
|
|
1668
1739
|
readonly Elasticsearch: "Elasticsearch";
|
|
@@ -1670,59 +1741,59 @@ export declare const EngineType: {
|
|
|
1670
1741
|
};
|
|
1671
1742
|
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
1672
1743
|
export interface ListDomainNamesRequest {
|
|
1673
|
-
EngineType?: EngineType;
|
|
1744
|
+
EngineType?: EngineType | undefined;
|
|
1674
1745
|
}
|
|
1675
1746
|
export interface DomainInfo {
|
|
1676
|
-
DomainName?: string;
|
|
1677
|
-
EngineType?: EngineType;
|
|
1747
|
+
DomainName?: string | undefined;
|
|
1748
|
+
EngineType?: EngineType | undefined;
|
|
1678
1749
|
}
|
|
1679
1750
|
export interface ListDomainNamesResponse {
|
|
1680
|
-
DomainNames?: DomainInfo[];
|
|
1751
|
+
DomainNames?: DomainInfo[] | undefined;
|
|
1681
1752
|
}
|
|
1682
1753
|
export interface ListDomainsForPackageRequest {
|
|
1683
1754
|
PackageID: string | undefined;
|
|
1684
|
-
MaxResults?: number;
|
|
1685
|
-
NextToken?: string;
|
|
1755
|
+
MaxResults?: number | undefined;
|
|
1756
|
+
NextToken?: string | undefined;
|
|
1686
1757
|
}
|
|
1687
1758
|
export interface ListDomainsForPackageResponse {
|
|
1688
|
-
DomainPackageDetailsList?: DomainPackageDetails[];
|
|
1689
|
-
NextToken?: string;
|
|
1759
|
+
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
1760
|
+
NextToken?: string | undefined;
|
|
1690
1761
|
}
|
|
1691
1762
|
export interface ListInstanceTypeDetailsRequest {
|
|
1692
1763
|
EngineVersion: string | undefined;
|
|
1693
|
-
DomainName?: string;
|
|
1694
|
-
MaxResults?: number;
|
|
1695
|
-
NextToken?: string;
|
|
1696
|
-
RetrieveAZs?: boolean;
|
|
1697
|
-
InstanceType?: string;
|
|
1764
|
+
DomainName?: string | undefined;
|
|
1765
|
+
MaxResults?: number | undefined;
|
|
1766
|
+
NextToken?: string | undefined;
|
|
1767
|
+
RetrieveAZs?: boolean | undefined;
|
|
1768
|
+
InstanceType?: string | undefined;
|
|
1698
1769
|
}
|
|
1699
1770
|
export interface InstanceTypeDetails {
|
|
1700
|
-
InstanceType?: OpenSearchPartitionInstanceType;
|
|
1701
|
-
EncryptionEnabled?: boolean;
|
|
1702
|
-
CognitoEnabled?: boolean;
|
|
1703
|
-
AppLogsEnabled?: boolean;
|
|
1704
|
-
AdvancedSecurityEnabled?: boolean;
|
|
1705
|
-
WarmEnabled?: boolean;
|
|
1706
|
-
InstanceRole?: string[];
|
|
1707
|
-
AvailabilityZones?: string[];
|
|
1771
|
+
InstanceType?: OpenSearchPartitionInstanceType | undefined;
|
|
1772
|
+
EncryptionEnabled?: boolean | undefined;
|
|
1773
|
+
CognitoEnabled?: boolean | undefined;
|
|
1774
|
+
AppLogsEnabled?: boolean | undefined;
|
|
1775
|
+
AdvancedSecurityEnabled?: boolean | undefined;
|
|
1776
|
+
WarmEnabled?: boolean | undefined;
|
|
1777
|
+
InstanceRole?: string[] | undefined;
|
|
1778
|
+
AvailabilityZones?: string[] | undefined;
|
|
1708
1779
|
}
|
|
1709
1780
|
export interface ListInstanceTypeDetailsResponse {
|
|
1710
|
-
InstanceTypeDetails?: InstanceTypeDetails[];
|
|
1711
|
-
NextToken?: string;
|
|
1781
|
+
InstanceTypeDetails?: InstanceTypeDetails[] | undefined;
|
|
1782
|
+
NextToken?: string | undefined;
|
|
1712
1783
|
}
|
|
1713
1784
|
export interface ListPackagesForDomainRequest {
|
|
1714
1785
|
DomainName: string | undefined;
|
|
1715
|
-
MaxResults?: number;
|
|
1716
|
-
NextToken?: string;
|
|
1786
|
+
MaxResults?: number | undefined;
|
|
1787
|
+
NextToken?: string | undefined;
|
|
1717
1788
|
}
|
|
1718
1789
|
export interface ListPackagesForDomainResponse {
|
|
1719
|
-
DomainPackageDetailsList?: DomainPackageDetails[];
|
|
1720
|
-
NextToken?: string;
|
|
1790
|
+
DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
|
|
1791
|
+
NextToken?: string | undefined;
|
|
1721
1792
|
}
|
|
1722
1793
|
export interface ListScheduledActionsRequest {
|
|
1723
1794
|
DomainName: string | undefined;
|
|
1724
|
-
MaxResults?: number;
|
|
1725
|
-
NextToken?: string;
|
|
1795
|
+
MaxResults?: number | undefined;
|
|
1796
|
+
NextToken?: string | undefined;
|
|
1726
1797
|
}
|
|
1727
1798
|
export declare const ScheduledBy: {
|
|
1728
1799
|
readonly CUSTOMER: "CUSTOMER";
|
|
@@ -1734,64 +1805,21 @@ export interface ScheduledAction {
|
|
|
1734
1805
|
Type: ActionType | undefined;
|
|
1735
1806
|
Severity: ActionSeverity | undefined;
|
|
1736
1807
|
ScheduledTime: number | undefined;
|
|
1737
|
-
Description?: string;
|
|
1738
|
-
ScheduledBy?: ScheduledBy;
|
|
1739
|
-
Status?: ActionStatus;
|
|
1740
|
-
Mandatory?: boolean;
|
|
1741
|
-
Cancellable?: boolean;
|
|
1808
|
+
Description?: string | undefined;
|
|
1809
|
+
ScheduledBy?: ScheduledBy | undefined;
|
|
1810
|
+
Status?: ActionStatus | undefined;
|
|
1811
|
+
Mandatory?: boolean | undefined;
|
|
1812
|
+
Cancellable?: boolean | undefined;
|
|
1742
1813
|
}
|
|
1743
1814
|
export interface ListScheduledActionsResponse {
|
|
1744
|
-
ScheduledActions?: ScheduledAction[];
|
|
1745
|
-
NextToken?: string;
|
|
1815
|
+
ScheduledActions?: ScheduledAction[] | undefined;
|
|
1816
|
+
NextToken?: string | undefined;
|
|
1746
1817
|
}
|
|
1747
1818
|
export interface ListTagsRequest {
|
|
1748
1819
|
ARN: string | undefined;
|
|
1749
1820
|
}
|
|
1750
1821
|
export interface ListTagsResponse {
|
|
1751
|
-
TagList?: Tag[];
|
|
1752
|
-
}
|
|
1753
|
-
export interface ListVersionsRequest {
|
|
1754
|
-
MaxResults?: number;
|
|
1755
|
-
NextToken?: string;
|
|
1756
|
-
}
|
|
1757
|
-
export interface ListVersionsResponse {
|
|
1758
|
-
Versions?: string[];
|
|
1759
|
-
NextToken?: string;
|
|
1760
|
-
}
|
|
1761
|
-
export interface ListVpcEndpointAccessRequest {
|
|
1762
|
-
DomainName: string | undefined;
|
|
1763
|
-
NextToken?: string;
|
|
1764
|
-
}
|
|
1765
|
-
export interface ListVpcEndpointAccessResponse {
|
|
1766
|
-
AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
|
|
1767
|
-
NextToken: string | undefined;
|
|
1768
|
-
}
|
|
1769
|
-
export interface ListVpcEndpointsRequest {
|
|
1770
|
-
NextToken?: string;
|
|
1771
|
-
}
|
|
1772
|
-
export interface ListVpcEndpointsResponse {
|
|
1773
|
-
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
1774
|
-
NextToken: string | undefined;
|
|
1775
|
-
}
|
|
1776
|
-
export interface ListVpcEndpointsForDomainRequest {
|
|
1777
|
-
DomainName: string | undefined;
|
|
1778
|
-
NextToken?: string;
|
|
1779
|
-
}
|
|
1780
|
-
export interface ListVpcEndpointsForDomainResponse {
|
|
1781
|
-
VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
|
|
1782
|
-
NextToken: string | undefined;
|
|
1783
|
-
}
|
|
1784
|
-
export interface PurchaseReservedInstanceOfferingRequest {
|
|
1785
|
-
ReservedInstanceOfferingId: string | undefined;
|
|
1786
|
-
ReservationName: string | undefined;
|
|
1787
|
-
InstanceCount?: number;
|
|
1788
|
-
}
|
|
1789
|
-
export interface PurchaseReservedInstanceOfferingResponse {
|
|
1790
|
-
ReservedInstanceId?: string;
|
|
1791
|
-
ReservationName?: string;
|
|
1792
|
-
}
|
|
1793
|
-
export interface RejectInboundConnectionRequest {
|
|
1794
|
-
ConnectionId: string | undefined;
|
|
1822
|
+
TagList?: Tag[] | undefined;
|
|
1795
1823
|
}
|
|
1796
1824
|
export declare const MasterUserOptionsFilterSensitiveLog: (
|
|
1797
1825
|
obj: MasterUserOptions
|