@aws-sdk/client-elasticsearch-service 3.321.1 → 3.326.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.
Files changed (51) hide show
  1. package/dist-types/commands/AcceptInboundCrossClusterSearchConnectionCommand.d.ts +22 -0
  2. package/dist-types/commands/AddTagsCommand.d.ts +4 -0
  3. package/dist-types/commands/AssociatePackageCommand.d.ts +19 -0
  4. package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +9 -0
  5. package/dist-types/commands/CancelElasticsearchServiceSoftwareUpdateCommand.d.ts +15 -0
  6. package/dist-types/commands/CreateElasticsearchDomainCommand.d.ts +122 -0
  7. package/dist-types/commands/CreateOutboundCrossClusterSearchConnectionCommand.d.ts +21 -0
  8. package/dist-types/commands/CreatePackageCommand.d.ts +19 -0
  9. package/dist-types/commands/CreateVpcEndpointCommand.d.ts +24 -0
  10. package/dist-types/commands/DeleteElasticsearchDomainCommand.d.ts +122 -0
  11. package/dist-types/commands/DeleteElasticsearchServiceRoleCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteInboundCrossClusterSearchConnectionCommand.d.ts +22 -0
  13. package/dist-types/commands/DeleteOutboundCrossClusterSearchConnectionCommand.d.ts +23 -0
  14. package/dist-types/commands/DeletePackageCommand.d.ts +19 -0
  15. package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +11 -0
  16. package/dist-types/commands/DescribeDomainAutoTunesCommand.d.ts +19 -0
  17. package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +25 -0
  18. package/dist-types/commands/DescribeElasticsearchDomainCommand.d.ts +122 -0
  19. package/dist-types/commands/DescribeElasticsearchDomainConfigCommand.d.ts +190 -0
  20. package/dist-types/commands/DescribeElasticsearchDomainsCommand.d.ts +124 -0
  21. package/dist-types/commands/DescribeElasticsearchInstanceTypeLimitsCommand.d.ts +37 -0
  22. package/dist-types/commands/DescribeInboundCrossClusterSearchConnectionsCommand.d.ts +25 -0
  23. package/dist-types/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.d.ts +26 -0
  24. package/dist-types/commands/DescribePackagesCommand.d.ts +22 -0
  25. package/dist-types/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.d.ts +23 -0
  26. package/dist-types/commands/DescribeReservedElasticsearchInstancesCommand.d.ts +28 -0
  27. package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +33 -0
  28. package/dist-types/commands/DissociatePackageCommand.d.ts +19 -0
  29. package/dist-types/commands/GetCompatibleElasticsearchVersionsCommand.d.ts +13 -0
  30. package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +14 -0
  31. package/dist-types/commands/GetUpgradeHistoryCommand.d.ts +23 -0
  32. package/dist-types/commands/GetUpgradeStatusCommand.d.ts +8 -0
  33. package/dist-types/commands/ListDomainNamesCommand.d.ts +11 -0
  34. package/dist-types/commands/ListDomainsForPackageCommand.d.ts +22 -0
  35. package/dist-types/commands/ListElasticsearchInstanceTypesCommand.d.ts +9 -0
  36. package/dist-types/commands/ListElasticsearchVersionsCommand.d.ts +9 -0
  37. package/dist-types/commands/ListPackagesForDomainCommand.d.ts +22 -0
  38. package/dist-types/commands/ListTagsCommand.d.ts +11 -0
  39. package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +12 -0
  40. package/dist-types/commands/ListVpcEndpointsCommand.d.ts +14 -0
  41. package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +14 -0
  42. package/dist-types/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.d.ts +7 -0
  43. package/dist-types/commands/RejectInboundCrossClusterSearchConnectionCommand.d.ts +22 -0
  44. package/dist-types/commands/RemoveTagsCommand.d.ts +4 -0
  45. package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +4 -0
  46. package/dist-types/commands/StartElasticsearchServiceSoftwareUpdateCommand.d.ts +15 -0
  47. package/dist-types/commands/UpdateElasticsearchDomainConfigCommand.d.ts +194 -0
  48. package/dist-types/commands/UpdatePackageCommand.d.ts +19 -0
  49. package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +24 -0
  50. package/dist-types/commands/UpgradeElasticsearchDomainCommand.d.ts +12 -0
  51. package/package.json +16 -16
@@ -31,6 +31,26 @@ export interface AcceptInboundCrossClusterSearchConnectionCommandOutput extends
31
31
  * };
32
32
  * const command = new AcceptInboundCrossClusterSearchConnectionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // AcceptInboundCrossClusterSearchConnectionResponse
35
+ * // CrossClusterSearchConnection: { // InboundCrossClusterSearchConnection
36
+ * // SourceDomainInfo: { // DomainInformation
37
+ * // OwnerId: "STRING_VALUE",
38
+ * // DomainName: "STRING_VALUE", // required
39
+ * // Region: "STRING_VALUE",
40
+ * // },
41
+ * // DestinationDomainInfo: {
42
+ * // OwnerId: "STRING_VALUE",
43
+ * // DomainName: "STRING_VALUE", // required
44
+ * // Region: "STRING_VALUE",
45
+ * // },
46
+ * // CrossClusterSearchConnectionId: "STRING_VALUE",
47
+ * // ConnectionStatus: { // InboundCrossClusterSearchConnectionStatus
48
+ * // StatusCode: "PENDING_ACCEPTANCE" || "APPROVED" || "REJECTING" || "REJECTED" || "DELETING" || "DELETED",
49
+ * // Message: "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // };
53
+ *
34
54
  * ```
35
55
  *
36
56
  * @param AcceptInboundCrossClusterSearchConnectionCommandInput - {@link AcceptInboundCrossClusterSearchConnectionCommandInput}
@@ -48,6 +68,8 @@ export interface AcceptInboundCrossClusterSearchConnectionCommandOutput extends
48
68
  * @throws {@link ResourceNotFoundException} (client fault)
49
69
  * <p>An exception for accessing or deleting a resource that does not exist. Gives http status code of 400.</p>
50
70
  *
71
+ * @throws {@link ElasticsearchServiceServiceException}
72
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
51
73
  *
52
74
  */
53
75
  export declare class AcceptInboundCrossClusterSearchConnectionCommand extends $Command<AcceptInboundCrossClusterSearchConnectionCommandInput, AcceptInboundCrossClusterSearchConnectionCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -38,6 +38,8 @@ export interface AddTagsCommandOutput extends __MetadataBearer {
38
38
  * };
39
39
  * const command = new AddTagsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // {};
42
+ *
41
43
  * ```
42
44
  *
43
45
  * @param AddTagsCommandInput - {@link AddTagsCommandInput}
@@ -58,6 +60,8 @@ export interface AddTagsCommandOutput extends __MetadataBearer {
58
60
  * @throws {@link ValidationException} (client fault)
59
61
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
60
62
  *
63
+ * @throws {@link ElasticsearchServiceServiceException}
64
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
61
65
  *
62
66
  */
63
67
  export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -32,6 +32,23 @@ export interface AssociatePackageCommandOutput extends AssociatePackageResponse,
32
32
  * };
33
33
  * const command = new AssociatePackageCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // AssociatePackageResponse
36
+ * // DomainPackageDetails: { // DomainPackageDetails
37
+ * // PackageID: "STRING_VALUE",
38
+ * // PackageName: "STRING_VALUE",
39
+ * // PackageType: "TXT-DICTIONARY",
40
+ * // LastUpdated: new Date("TIMESTAMP"),
41
+ * // DomainName: "STRING_VALUE",
42
+ * // DomainPackageStatus: "ASSOCIATING" || "ASSOCIATION_FAILED" || "ACTIVE" || "DISSOCIATING" || "DISSOCIATION_FAILED",
43
+ * // PackageVersion: "STRING_VALUE",
44
+ * // ReferencePath: "STRING_VALUE",
45
+ * // ErrorDetails: { // ErrorDetails
46
+ * // ErrorType: "STRING_VALUE",
47
+ * // ErrorMessage: "STRING_VALUE",
48
+ * // },
49
+ * // },
50
+ * // };
51
+ *
35
52
  * ```
36
53
  *
37
54
  * @param AssociatePackageCommandInput - {@link AssociatePackageCommandInput}
@@ -58,6 +75,8 @@ export interface AssociatePackageCommandOutput extends AssociatePackageResponse,
58
75
  * @throws {@link ValidationException} (client fault)
59
76
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
60
77
  *
78
+ * @throws {@link ElasticsearchServiceServiceException}
79
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
61
80
  *
62
81
  */
63
82
  export declare class AssociatePackageCommand extends $Command<AssociatePackageCommandInput, AssociatePackageCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -32,6 +32,13 @@ export interface AuthorizeVpcEndpointAccessCommandOutput extends AuthorizeVpcEnd
32
32
  * };
33
33
  * const command = new AuthorizeVpcEndpointAccessCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // AuthorizeVpcEndpointAccessResponse
36
+ * // AuthorizedPrincipal: { // AuthorizedPrincipal
37
+ * // PrincipalType: "AWS_ACCOUNT" || "AWS_SERVICE",
38
+ * // Principal: "STRING_VALUE",
39
+ * // },
40
+ * // };
41
+ *
35
42
  * ```
36
43
  *
37
44
  * @param AuthorizeVpcEndpointAccessCommandInput - {@link AuthorizeVpcEndpointAccessCommandInput}
@@ -58,6 +65,8 @@ export interface AuthorizeVpcEndpointAccessCommandOutput extends AuthorizeVpcEnd
58
65
  * @throws {@link ValidationException} (client fault)
59
66
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
60
67
  *
68
+ * @throws {@link ElasticsearchServiceServiceException}
69
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
61
70
  *
62
71
  */
63
72
  export declare class AuthorizeVpcEndpointAccessCommand extends $Command<AuthorizeVpcEndpointAccessCommandInput, AuthorizeVpcEndpointAccessCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -31,6 +31,19 @@ export interface CancelElasticsearchServiceSoftwareUpdateCommandOutput extends C
31
31
  * };
32
32
  * const command = new CancelElasticsearchServiceSoftwareUpdateCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // CancelElasticsearchServiceSoftwareUpdateResponse
35
+ * // ServiceSoftwareOptions: { // ServiceSoftwareOptions
36
+ * // CurrentVersion: "STRING_VALUE",
37
+ * // NewVersion: "STRING_VALUE",
38
+ * // UpdateAvailable: true || false,
39
+ * // Cancellable: true || false,
40
+ * // UpdateStatus: "PENDING_UPDATE" || "IN_PROGRESS" || "COMPLETED" || "NOT_ELIGIBLE" || "ELIGIBLE",
41
+ * // Description: "STRING_VALUE",
42
+ * // AutomatedUpdateDate: new Date("TIMESTAMP"),
43
+ * // OptionalDeployment: true || false,
44
+ * // },
45
+ * // };
46
+ *
34
47
  * ```
35
48
  *
36
49
  * @param CancelElasticsearchServiceSoftwareUpdateCommandInput - {@link CancelElasticsearchServiceSoftwareUpdateCommandInput}
@@ -51,6 +64,8 @@ export interface CancelElasticsearchServiceSoftwareUpdateCommandOutput extends C
51
64
  * @throws {@link ValidationException} (client fault)
52
65
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
53
66
  *
67
+ * @throws {@link ElasticsearchServiceServiceException}
68
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
54
69
  *
55
70
  */
56
71
  export declare class CancelElasticsearchServiceSoftwareUpdateCommand extends $Command<CancelElasticsearchServiceSoftwareUpdateCommandInput, CancelElasticsearchServiceSoftwareUpdateCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -139,6 +139,126 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea
139
139
  * };
140
140
  * const command = new CreateElasticsearchDomainCommand(input);
141
141
  * const response = await client.send(command);
142
+ * // { // CreateElasticsearchDomainResponse
143
+ * // DomainStatus: { // ElasticsearchDomainStatus
144
+ * // DomainId: "STRING_VALUE", // required
145
+ * // DomainName: "STRING_VALUE", // required
146
+ * // ARN: "STRING_VALUE", // required
147
+ * // Created: true || false,
148
+ * // Deleted: true || false,
149
+ * // Endpoint: "STRING_VALUE",
150
+ * // Endpoints: { // EndpointsMap
151
+ * // "<keys>": "STRING_VALUE",
152
+ * // },
153
+ * // Processing: true || false,
154
+ * // UpgradeProcessing: true || false,
155
+ * // ElasticsearchVersion: "STRING_VALUE",
156
+ * // ElasticsearchClusterConfig: { // ElasticsearchClusterConfig
157
+ * // InstanceType: "m3.medium.elasticsearch" || "m3.large.elasticsearch" || "m3.xlarge.elasticsearch" || "m3.2xlarge.elasticsearch" || "m4.large.elasticsearch" || "m4.xlarge.elasticsearch" || "m4.2xlarge.elasticsearch" || "m4.4xlarge.elasticsearch" || "m4.10xlarge.elasticsearch" || "m5.large.elasticsearch" || "m5.xlarge.elasticsearch" || "m5.2xlarge.elasticsearch" || "m5.4xlarge.elasticsearch" || "m5.12xlarge.elasticsearch" || "r5.large.elasticsearch" || "r5.xlarge.elasticsearch" || "r5.2xlarge.elasticsearch" || "r5.4xlarge.elasticsearch" || "r5.12xlarge.elasticsearch" || "c5.large.elasticsearch" || "c5.xlarge.elasticsearch" || "c5.2xlarge.elasticsearch" || "c5.4xlarge.elasticsearch" || "c5.9xlarge.elasticsearch" || "c5.18xlarge.elasticsearch" || "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch" || "t2.micro.elasticsearch" || "t2.small.elasticsearch" || "t2.medium.elasticsearch" || "r3.large.elasticsearch" || "r3.xlarge.elasticsearch" || "r3.2xlarge.elasticsearch" || "r3.4xlarge.elasticsearch" || "r3.8xlarge.elasticsearch" || "i2.xlarge.elasticsearch" || "i2.2xlarge.elasticsearch" || "d2.xlarge.elasticsearch" || "d2.2xlarge.elasticsearch" || "d2.4xlarge.elasticsearch" || "d2.8xlarge.elasticsearch" || "c4.large.elasticsearch" || "c4.xlarge.elasticsearch" || "c4.2xlarge.elasticsearch" || "c4.4xlarge.elasticsearch" || "c4.8xlarge.elasticsearch" || "r4.large.elasticsearch" || "r4.xlarge.elasticsearch" || "r4.2xlarge.elasticsearch" || "r4.4xlarge.elasticsearch" || "r4.8xlarge.elasticsearch" || "r4.16xlarge.elasticsearch" || "i3.large.elasticsearch" || "i3.xlarge.elasticsearch" || "i3.2xlarge.elasticsearch" || "i3.4xlarge.elasticsearch" || "i3.8xlarge.elasticsearch" || "i3.16xlarge.elasticsearch",
158
+ * // InstanceCount: Number("int"),
159
+ * // DedicatedMasterEnabled: true || false,
160
+ * // ZoneAwarenessEnabled: true || false,
161
+ * // ZoneAwarenessConfig: { // ZoneAwarenessConfig
162
+ * // AvailabilityZoneCount: Number("int"),
163
+ * // },
164
+ * // DedicatedMasterType: "m3.medium.elasticsearch" || "m3.large.elasticsearch" || "m3.xlarge.elasticsearch" || "m3.2xlarge.elasticsearch" || "m4.large.elasticsearch" || "m4.xlarge.elasticsearch" || "m4.2xlarge.elasticsearch" || "m4.4xlarge.elasticsearch" || "m4.10xlarge.elasticsearch" || "m5.large.elasticsearch" || "m5.xlarge.elasticsearch" || "m5.2xlarge.elasticsearch" || "m5.4xlarge.elasticsearch" || "m5.12xlarge.elasticsearch" || "r5.large.elasticsearch" || "r5.xlarge.elasticsearch" || "r5.2xlarge.elasticsearch" || "r5.4xlarge.elasticsearch" || "r5.12xlarge.elasticsearch" || "c5.large.elasticsearch" || "c5.xlarge.elasticsearch" || "c5.2xlarge.elasticsearch" || "c5.4xlarge.elasticsearch" || "c5.9xlarge.elasticsearch" || "c5.18xlarge.elasticsearch" || "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch" || "t2.micro.elasticsearch" || "t2.small.elasticsearch" || "t2.medium.elasticsearch" || "r3.large.elasticsearch" || "r3.xlarge.elasticsearch" || "r3.2xlarge.elasticsearch" || "r3.4xlarge.elasticsearch" || "r3.8xlarge.elasticsearch" || "i2.xlarge.elasticsearch" || "i2.2xlarge.elasticsearch" || "d2.xlarge.elasticsearch" || "d2.2xlarge.elasticsearch" || "d2.4xlarge.elasticsearch" || "d2.8xlarge.elasticsearch" || "c4.large.elasticsearch" || "c4.xlarge.elasticsearch" || "c4.2xlarge.elasticsearch" || "c4.4xlarge.elasticsearch" || "c4.8xlarge.elasticsearch" || "r4.large.elasticsearch" || "r4.xlarge.elasticsearch" || "r4.2xlarge.elasticsearch" || "r4.4xlarge.elasticsearch" || "r4.8xlarge.elasticsearch" || "r4.16xlarge.elasticsearch" || "i3.large.elasticsearch" || "i3.xlarge.elasticsearch" || "i3.2xlarge.elasticsearch" || "i3.4xlarge.elasticsearch" || "i3.8xlarge.elasticsearch" || "i3.16xlarge.elasticsearch",
165
+ * // DedicatedMasterCount: Number("int"),
166
+ * // WarmEnabled: true || false,
167
+ * // WarmType: "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch",
168
+ * // WarmCount: Number("int"),
169
+ * // ColdStorageOptions: { // ColdStorageOptions
170
+ * // Enabled: true || false, // required
171
+ * // },
172
+ * // },
173
+ * // EBSOptions: { // EBSOptions
174
+ * // EBSEnabled: true || false,
175
+ * // VolumeType: "standard" || "gp2" || "io1" || "gp3",
176
+ * // VolumeSize: Number("int"),
177
+ * // Iops: Number("int"),
178
+ * // Throughput: Number("int"),
179
+ * // },
180
+ * // AccessPolicies: "STRING_VALUE",
181
+ * // SnapshotOptions: { // SnapshotOptions
182
+ * // AutomatedSnapshotStartHour: Number("int"),
183
+ * // },
184
+ * // VPCOptions: { // VPCDerivedInfo
185
+ * // VPCId: "STRING_VALUE",
186
+ * // SubnetIds: [ // StringList
187
+ * // "STRING_VALUE",
188
+ * // ],
189
+ * // AvailabilityZones: [
190
+ * // "STRING_VALUE",
191
+ * // ],
192
+ * // SecurityGroupIds: [
193
+ * // "STRING_VALUE",
194
+ * // ],
195
+ * // },
196
+ * // CognitoOptions: { // CognitoOptions
197
+ * // Enabled: true || false,
198
+ * // UserPoolId: "STRING_VALUE",
199
+ * // IdentityPoolId: "STRING_VALUE",
200
+ * // RoleArn: "STRING_VALUE",
201
+ * // },
202
+ * // EncryptionAtRestOptions: { // EncryptionAtRestOptions
203
+ * // Enabled: true || false,
204
+ * // KmsKeyId: "STRING_VALUE",
205
+ * // },
206
+ * // NodeToNodeEncryptionOptions: { // NodeToNodeEncryptionOptions
207
+ * // Enabled: true || false,
208
+ * // },
209
+ * // AdvancedOptions: { // AdvancedOptions
210
+ * // "<keys>": "STRING_VALUE",
211
+ * // },
212
+ * // LogPublishingOptions: { // LogPublishingOptions
213
+ * // "<keys>": { // LogPublishingOption
214
+ * // CloudWatchLogsLogGroupArn: "STRING_VALUE",
215
+ * // Enabled: true || false,
216
+ * // },
217
+ * // },
218
+ * // ServiceSoftwareOptions: { // ServiceSoftwareOptions
219
+ * // CurrentVersion: "STRING_VALUE",
220
+ * // NewVersion: "STRING_VALUE",
221
+ * // UpdateAvailable: true || false,
222
+ * // Cancellable: true || false,
223
+ * // UpdateStatus: "PENDING_UPDATE" || "IN_PROGRESS" || "COMPLETED" || "NOT_ELIGIBLE" || "ELIGIBLE",
224
+ * // Description: "STRING_VALUE",
225
+ * // AutomatedUpdateDate: new Date("TIMESTAMP"),
226
+ * // OptionalDeployment: true || false,
227
+ * // },
228
+ * // DomainEndpointOptions: { // DomainEndpointOptions
229
+ * // EnforceHTTPS: true || false,
230
+ * // TLSSecurityPolicy: "Policy-Min-TLS-1-0-2019-07" || "Policy-Min-TLS-1-2-2019-07",
231
+ * // CustomEndpointEnabled: true || false,
232
+ * // CustomEndpoint: "STRING_VALUE",
233
+ * // CustomEndpointCertificateArn: "STRING_VALUE",
234
+ * // },
235
+ * // AdvancedSecurityOptions: { // AdvancedSecurityOptions
236
+ * // Enabled: true || false,
237
+ * // InternalUserDatabaseEnabled: true || false,
238
+ * // SAMLOptions: { // SAMLOptionsOutput
239
+ * // Enabled: true || false,
240
+ * // Idp: { // SAMLIdp
241
+ * // MetadataContent: "STRING_VALUE", // required
242
+ * // EntityId: "STRING_VALUE", // required
243
+ * // },
244
+ * // SubjectKey: "STRING_VALUE",
245
+ * // RolesKey: "STRING_VALUE",
246
+ * // SessionTimeoutMinutes: Number("int"),
247
+ * // },
248
+ * // AnonymousAuthDisableDate: new Date("TIMESTAMP"),
249
+ * // AnonymousAuthEnabled: true || false,
250
+ * // },
251
+ * // AutoTuneOptions: { // AutoTuneOptionsOutput
252
+ * // State: "ENABLED" || "DISABLED" || "ENABLE_IN_PROGRESS" || "DISABLE_IN_PROGRESS" || "DISABLED_AND_ROLLBACK_SCHEDULED" || "DISABLED_AND_ROLLBACK_IN_PROGRESS" || "DISABLED_AND_ROLLBACK_COMPLETE" || "DISABLED_AND_ROLLBACK_ERROR" || "ERROR",
253
+ * // ErrorMessage: "STRING_VALUE",
254
+ * // },
255
+ * // ChangeProgressDetails: { // ChangeProgressDetails
256
+ * // ChangeId: "STRING_VALUE",
257
+ * // Message: "STRING_VALUE",
258
+ * // },
259
+ * // },
260
+ * // };
261
+ *
142
262
  * ```
143
263
  *
144
264
  * @param CreateElasticsearchDomainCommandInput - {@link CreateElasticsearchDomainCommandInput}
@@ -168,6 +288,8 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea
168
288
  * @throws {@link ValidationException} (client fault)
169
289
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
170
290
  *
291
+ * @throws {@link ElasticsearchServiceServiceException}
292
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
171
293
  *
172
294
  */
173
295
  export declare class CreateElasticsearchDomainCommand extends $Command<CreateElasticsearchDomainCommandInput, CreateElasticsearchDomainCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -41,6 +41,25 @@ export interface CreateOutboundCrossClusterSearchConnectionCommandOutput extends
41
41
  * };
42
42
  * const command = new CreateOutboundCrossClusterSearchConnectionCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // CreateOutboundCrossClusterSearchConnectionResponse
45
+ * // SourceDomainInfo: { // DomainInformation
46
+ * // OwnerId: "STRING_VALUE",
47
+ * // DomainName: "STRING_VALUE", // required
48
+ * // Region: "STRING_VALUE",
49
+ * // },
50
+ * // DestinationDomainInfo: {
51
+ * // OwnerId: "STRING_VALUE",
52
+ * // DomainName: "STRING_VALUE", // required
53
+ * // Region: "STRING_VALUE",
54
+ * // },
55
+ * // ConnectionAlias: "STRING_VALUE",
56
+ * // ConnectionStatus: { // OutboundCrossClusterSearchConnectionStatus
57
+ * // StatusCode: "PENDING_ACCEPTANCE" || "VALIDATING" || "VALIDATION_FAILED" || "PROVISIONING" || "ACTIVE" || "REJECTED" || "DELETING" || "DELETED",
58
+ * // Message: "STRING_VALUE",
59
+ * // },
60
+ * // CrossClusterSearchConnectionId: "STRING_VALUE",
61
+ * // };
62
+ *
44
63
  * ```
45
64
  *
46
65
  * @param CreateOutboundCrossClusterSearchConnectionCommandInput - {@link CreateOutboundCrossClusterSearchConnectionCommandInput}
@@ -61,6 +80,8 @@ export interface CreateOutboundCrossClusterSearchConnectionCommandOutput extends
61
80
  * @throws {@link ResourceAlreadyExistsException} (client fault)
62
81
  * <p>An exception for creating a resource that already exists. Gives http status code of 400.</p>
63
82
  *
83
+ * @throws {@link ElasticsearchServiceServiceException}
84
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
64
85
  *
65
86
  */
66
87
  export declare class CreateOutboundCrossClusterSearchConnectionCommand extends $Command<CreateOutboundCrossClusterSearchConnectionCommandInput, CreateOutboundCrossClusterSearchConnectionCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -37,6 +37,23 @@ export interface CreatePackageCommandOutput extends CreatePackageResponse, __Met
37
37
  * };
38
38
  * const command = new CreatePackageCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // CreatePackageResponse
41
+ * // PackageDetails: { // PackageDetails
42
+ * // PackageID: "STRING_VALUE",
43
+ * // PackageName: "STRING_VALUE",
44
+ * // PackageType: "TXT-DICTIONARY",
45
+ * // PackageDescription: "STRING_VALUE",
46
+ * // PackageStatus: "COPYING" || "COPY_FAILED" || "VALIDATING" || "VALIDATION_FAILED" || "AVAILABLE" || "DELETING" || "DELETED" || "DELETE_FAILED",
47
+ * // CreatedAt: new Date("TIMESTAMP"),
48
+ * // LastUpdatedAt: new Date("TIMESTAMP"),
49
+ * // AvailablePackageVersion: "STRING_VALUE",
50
+ * // ErrorDetails: { // ErrorDetails
51
+ * // ErrorType: "STRING_VALUE",
52
+ * // ErrorMessage: "STRING_VALUE",
53
+ * // },
54
+ * // },
55
+ * // };
56
+ *
40
57
  * ```
41
58
  *
42
59
  * @param CreatePackageCommandInput - {@link CreatePackageCommandInput}
@@ -66,6 +83,8 @@ export interface CreatePackageCommandOutput extends CreatePackageResponse, __Met
66
83
  * @throws {@link ValidationException} (client fault)
67
84
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
68
85
  *
86
+ * @throws {@link ElasticsearchServiceServiceException}
87
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
69
88
  *
70
89
  */
71
90
  export declare class CreatePackageCommand extends $Command<CreatePackageCommandInput, CreatePackageCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -40,6 +40,28 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons
40
40
  * };
41
41
  * const command = new CreateVpcEndpointCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // CreateVpcEndpointResponse
44
+ * // VpcEndpoint: { // VpcEndpoint
45
+ * // VpcEndpointId: "STRING_VALUE",
46
+ * // VpcEndpointOwner: "STRING_VALUE",
47
+ * // DomainArn: "STRING_VALUE",
48
+ * // VpcOptions: { // VPCDerivedInfo
49
+ * // VPCId: "STRING_VALUE",
50
+ * // SubnetIds: [ // StringList
51
+ * // "STRING_VALUE",
52
+ * // ],
53
+ * // AvailabilityZones: [
54
+ * // "STRING_VALUE",
55
+ * // ],
56
+ * // SecurityGroupIds: [
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // },
60
+ * // Status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "UPDATING" || "UPDATE_FAILED" || "DELETING" || "DELETE_FAILED",
61
+ * // Endpoint: "STRING_VALUE",
62
+ * // },
63
+ * // };
64
+ *
43
65
  * ```
44
66
  *
45
67
  * @param CreateVpcEndpointCommandInput - {@link CreateVpcEndpointCommandInput}
@@ -66,6 +88,8 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons
66
88
  * @throws {@link ValidationException} (client fault)
67
89
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
68
90
  *
91
+ * @throws {@link ElasticsearchServiceServiceException}
92
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
69
93
  *
70
94
  */
71
95
  export declare class CreateVpcEndpointCommand extends $Command<CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -31,6 +31,126 @@ export interface DeleteElasticsearchDomainCommandOutput extends DeleteElasticsea
31
31
  * };
32
32
  * const command = new DeleteElasticsearchDomainCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteElasticsearchDomainResponse
35
+ * // DomainStatus: { // ElasticsearchDomainStatus
36
+ * // DomainId: "STRING_VALUE", // required
37
+ * // DomainName: "STRING_VALUE", // required
38
+ * // ARN: "STRING_VALUE", // required
39
+ * // Created: true || false,
40
+ * // Deleted: true || false,
41
+ * // Endpoint: "STRING_VALUE",
42
+ * // Endpoints: { // EndpointsMap
43
+ * // "<keys>": "STRING_VALUE",
44
+ * // },
45
+ * // Processing: true || false,
46
+ * // UpgradeProcessing: true || false,
47
+ * // ElasticsearchVersion: "STRING_VALUE",
48
+ * // ElasticsearchClusterConfig: { // ElasticsearchClusterConfig
49
+ * // InstanceType: "m3.medium.elasticsearch" || "m3.large.elasticsearch" || "m3.xlarge.elasticsearch" || "m3.2xlarge.elasticsearch" || "m4.large.elasticsearch" || "m4.xlarge.elasticsearch" || "m4.2xlarge.elasticsearch" || "m4.4xlarge.elasticsearch" || "m4.10xlarge.elasticsearch" || "m5.large.elasticsearch" || "m5.xlarge.elasticsearch" || "m5.2xlarge.elasticsearch" || "m5.4xlarge.elasticsearch" || "m5.12xlarge.elasticsearch" || "r5.large.elasticsearch" || "r5.xlarge.elasticsearch" || "r5.2xlarge.elasticsearch" || "r5.4xlarge.elasticsearch" || "r5.12xlarge.elasticsearch" || "c5.large.elasticsearch" || "c5.xlarge.elasticsearch" || "c5.2xlarge.elasticsearch" || "c5.4xlarge.elasticsearch" || "c5.9xlarge.elasticsearch" || "c5.18xlarge.elasticsearch" || "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch" || "t2.micro.elasticsearch" || "t2.small.elasticsearch" || "t2.medium.elasticsearch" || "r3.large.elasticsearch" || "r3.xlarge.elasticsearch" || "r3.2xlarge.elasticsearch" || "r3.4xlarge.elasticsearch" || "r3.8xlarge.elasticsearch" || "i2.xlarge.elasticsearch" || "i2.2xlarge.elasticsearch" || "d2.xlarge.elasticsearch" || "d2.2xlarge.elasticsearch" || "d2.4xlarge.elasticsearch" || "d2.8xlarge.elasticsearch" || "c4.large.elasticsearch" || "c4.xlarge.elasticsearch" || "c4.2xlarge.elasticsearch" || "c4.4xlarge.elasticsearch" || "c4.8xlarge.elasticsearch" || "r4.large.elasticsearch" || "r4.xlarge.elasticsearch" || "r4.2xlarge.elasticsearch" || "r4.4xlarge.elasticsearch" || "r4.8xlarge.elasticsearch" || "r4.16xlarge.elasticsearch" || "i3.large.elasticsearch" || "i3.xlarge.elasticsearch" || "i3.2xlarge.elasticsearch" || "i3.4xlarge.elasticsearch" || "i3.8xlarge.elasticsearch" || "i3.16xlarge.elasticsearch",
50
+ * // InstanceCount: Number("int"),
51
+ * // DedicatedMasterEnabled: true || false,
52
+ * // ZoneAwarenessEnabled: true || false,
53
+ * // ZoneAwarenessConfig: { // ZoneAwarenessConfig
54
+ * // AvailabilityZoneCount: Number("int"),
55
+ * // },
56
+ * // DedicatedMasterType: "m3.medium.elasticsearch" || "m3.large.elasticsearch" || "m3.xlarge.elasticsearch" || "m3.2xlarge.elasticsearch" || "m4.large.elasticsearch" || "m4.xlarge.elasticsearch" || "m4.2xlarge.elasticsearch" || "m4.4xlarge.elasticsearch" || "m4.10xlarge.elasticsearch" || "m5.large.elasticsearch" || "m5.xlarge.elasticsearch" || "m5.2xlarge.elasticsearch" || "m5.4xlarge.elasticsearch" || "m5.12xlarge.elasticsearch" || "r5.large.elasticsearch" || "r5.xlarge.elasticsearch" || "r5.2xlarge.elasticsearch" || "r5.4xlarge.elasticsearch" || "r5.12xlarge.elasticsearch" || "c5.large.elasticsearch" || "c5.xlarge.elasticsearch" || "c5.2xlarge.elasticsearch" || "c5.4xlarge.elasticsearch" || "c5.9xlarge.elasticsearch" || "c5.18xlarge.elasticsearch" || "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch" || "t2.micro.elasticsearch" || "t2.small.elasticsearch" || "t2.medium.elasticsearch" || "r3.large.elasticsearch" || "r3.xlarge.elasticsearch" || "r3.2xlarge.elasticsearch" || "r3.4xlarge.elasticsearch" || "r3.8xlarge.elasticsearch" || "i2.xlarge.elasticsearch" || "i2.2xlarge.elasticsearch" || "d2.xlarge.elasticsearch" || "d2.2xlarge.elasticsearch" || "d2.4xlarge.elasticsearch" || "d2.8xlarge.elasticsearch" || "c4.large.elasticsearch" || "c4.xlarge.elasticsearch" || "c4.2xlarge.elasticsearch" || "c4.4xlarge.elasticsearch" || "c4.8xlarge.elasticsearch" || "r4.large.elasticsearch" || "r4.xlarge.elasticsearch" || "r4.2xlarge.elasticsearch" || "r4.4xlarge.elasticsearch" || "r4.8xlarge.elasticsearch" || "r4.16xlarge.elasticsearch" || "i3.large.elasticsearch" || "i3.xlarge.elasticsearch" || "i3.2xlarge.elasticsearch" || "i3.4xlarge.elasticsearch" || "i3.8xlarge.elasticsearch" || "i3.16xlarge.elasticsearch",
57
+ * // DedicatedMasterCount: Number("int"),
58
+ * // WarmEnabled: true || false,
59
+ * // WarmType: "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch",
60
+ * // WarmCount: Number("int"),
61
+ * // ColdStorageOptions: { // ColdStorageOptions
62
+ * // Enabled: true || false, // required
63
+ * // },
64
+ * // },
65
+ * // EBSOptions: { // EBSOptions
66
+ * // EBSEnabled: true || false,
67
+ * // VolumeType: "standard" || "gp2" || "io1" || "gp3",
68
+ * // VolumeSize: Number("int"),
69
+ * // Iops: Number("int"),
70
+ * // Throughput: Number("int"),
71
+ * // },
72
+ * // AccessPolicies: "STRING_VALUE",
73
+ * // SnapshotOptions: { // SnapshotOptions
74
+ * // AutomatedSnapshotStartHour: Number("int"),
75
+ * // },
76
+ * // VPCOptions: { // VPCDerivedInfo
77
+ * // VPCId: "STRING_VALUE",
78
+ * // SubnetIds: [ // StringList
79
+ * // "STRING_VALUE",
80
+ * // ],
81
+ * // AvailabilityZones: [
82
+ * // "STRING_VALUE",
83
+ * // ],
84
+ * // SecurityGroupIds: [
85
+ * // "STRING_VALUE",
86
+ * // ],
87
+ * // },
88
+ * // CognitoOptions: { // CognitoOptions
89
+ * // Enabled: true || false,
90
+ * // UserPoolId: "STRING_VALUE",
91
+ * // IdentityPoolId: "STRING_VALUE",
92
+ * // RoleArn: "STRING_VALUE",
93
+ * // },
94
+ * // EncryptionAtRestOptions: { // EncryptionAtRestOptions
95
+ * // Enabled: true || false,
96
+ * // KmsKeyId: "STRING_VALUE",
97
+ * // },
98
+ * // NodeToNodeEncryptionOptions: { // NodeToNodeEncryptionOptions
99
+ * // Enabled: true || false,
100
+ * // },
101
+ * // AdvancedOptions: { // AdvancedOptions
102
+ * // "<keys>": "STRING_VALUE",
103
+ * // },
104
+ * // LogPublishingOptions: { // LogPublishingOptions
105
+ * // "<keys>": { // LogPublishingOption
106
+ * // CloudWatchLogsLogGroupArn: "STRING_VALUE",
107
+ * // Enabled: true || false,
108
+ * // },
109
+ * // },
110
+ * // ServiceSoftwareOptions: { // ServiceSoftwareOptions
111
+ * // CurrentVersion: "STRING_VALUE",
112
+ * // NewVersion: "STRING_VALUE",
113
+ * // UpdateAvailable: true || false,
114
+ * // Cancellable: true || false,
115
+ * // UpdateStatus: "PENDING_UPDATE" || "IN_PROGRESS" || "COMPLETED" || "NOT_ELIGIBLE" || "ELIGIBLE",
116
+ * // Description: "STRING_VALUE",
117
+ * // AutomatedUpdateDate: new Date("TIMESTAMP"),
118
+ * // OptionalDeployment: true || false,
119
+ * // },
120
+ * // DomainEndpointOptions: { // DomainEndpointOptions
121
+ * // EnforceHTTPS: true || false,
122
+ * // TLSSecurityPolicy: "Policy-Min-TLS-1-0-2019-07" || "Policy-Min-TLS-1-2-2019-07",
123
+ * // CustomEndpointEnabled: true || false,
124
+ * // CustomEndpoint: "STRING_VALUE",
125
+ * // CustomEndpointCertificateArn: "STRING_VALUE",
126
+ * // },
127
+ * // AdvancedSecurityOptions: { // AdvancedSecurityOptions
128
+ * // Enabled: true || false,
129
+ * // InternalUserDatabaseEnabled: true || false,
130
+ * // SAMLOptions: { // SAMLOptionsOutput
131
+ * // Enabled: true || false,
132
+ * // Idp: { // SAMLIdp
133
+ * // MetadataContent: "STRING_VALUE", // required
134
+ * // EntityId: "STRING_VALUE", // required
135
+ * // },
136
+ * // SubjectKey: "STRING_VALUE",
137
+ * // RolesKey: "STRING_VALUE",
138
+ * // SessionTimeoutMinutes: Number("int"),
139
+ * // },
140
+ * // AnonymousAuthDisableDate: new Date("TIMESTAMP"),
141
+ * // AnonymousAuthEnabled: true || false,
142
+ * // },
143
+ * // AutoTuneOptions: { // AutoTuneOptionsOutput
144
+ * // State: "ENABLED" || "DISABLED" || "ENABLE_IN_PROGRESS" || "DISABLE_IN_PROGRESS" || "DISABLED_AND_ROLLBACK_SCHEDULED" || "DISABLED_AND_ROLLBACK_IN_PROGRESS" || "DISABLED_AND_ROLLBACK_COMPLETE" || "DISABLED_AND_ROLLBACK_ERROR" || "ERROR",
145
+ * // ErrorMessage: "STRING_VALUE",
146
+ * // },
147
+ * // ChangeProgressDetails: { // ChangeProgressDetails
148
+ * // ChangeId: "STRING_VALUE",
149
+ * // Message: "STRING_VALUE",
150
+ * // },
151
+ * // },
152
+ * // };
153
+ *
34
154
  * ```
35
155
  *
36
156
  * @param DeleteElasticsearchDomainCommandInput - {@link DeleteElasticsearchDomainCommandInput}
@@ -51,6 +171,8 @@ export interface DeleteElasticsearchDomainCommandOutput extends DeleteElasticsea
51
171
  * @throws {@link ValidationException} (client fault)
52
172
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
53
173
  *
174
+ * @throws {@link ElasticsearchServiceServiceException}
175
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
54
176
  *
55
177
  */
56
178
  export declare class DeleteElasticsearchDomainCommand extends $Command<DeleteElasticsearchDomainCommandInput, DeleteElasticsearchDomainCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -28,6 +28,8 @@ export interface DeleteElasticsearchServiceRoleCommandOutput extends __MetadataB
28
28
  * const input = {};
29
29
  * const command = new DeleteElasticsearchServiceRoleCommand(input);
30
30
  * const response = await client.send(command);
31
+ * // {};
32
+ *
31
33
  * ```
32
34
  *
33
35
  * @param DeleteElasticsearchServiceRoleCommandInput - {@link DeleteElasticsearchServiceRoleCommandInput}
@@ -45,6 +47,8 @@ export interface DeleteElasticsearchServiceRoleCommandOutput extends __MetadataB
45
47
  * @throws {@link ValidationException} (client fault)
46
48
  * <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
47
49
  *
50
+ * @throws {@link ElasticsearchServiceServiceException}
51
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
48
52
  *
49
53
  */
50
54
  export declare class DeleteElasticsearchServiceRoleCommand extends $Command<DeleteElasticsearchServiceRoleCommandInput, DeleteElasticsearchServiceRoleCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -31,6 +31,26 @@ export interface DeleteInboundCrossClusterSearchConnectionCommandOutput extends
31
31
  * };
32
32
  * const command = new DeleteInboundCrossClusterSearchConnectionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteInboundCrossClusterSearchConnectionResponse
35
+ * // CrossClusterSearchConnection: { // InboundCrossClusterSearchConnection
36
+ * // SourceDomainInfo: { // DomainInformation
37
+ * // OwnerId: "STRING_VALUE",
38
+ * // DomainName: "STRING_VALUE", // required
39
+ * // Region: "STRING_VALUE",
40
+ * // },
41
+ * // DestinationDomainInfo: {
42
+ * // OwnerId: "STRING_VALUE",
43
+ * // DomainName: "STRING_VALUE", // required
44
+ * // Region: "STRING_VALUE",
45
+ * // },
46
+ * // CrossClusterSearchConnectionId: "STRING_VALUE",
47
+ * // ConnectionStatus: { // InboundCrossClusterSearchConnectionStatus
48
+ * // StatusCode: "PENDING_ACCEPTANCE" || "APPROVED" || "REJECTING" || "REJECTED" || "DELETING" || "DELETED",
49
+ * // Message: "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // };
53
+ *
34
54
  * ```
35
55
  *
36
56
  * @param DeleteInboundCrossClusterSearchConnectionCommandInput - {@link DeleteInboundCrossClusterSearchConnectionCommandInput}
@@ -45,6 +65,8 @@ export interface DeleteInboundCrossClusterSearchConnectionCommandOutput extends
45
65
  * @throws {@link ResourceNotFoundException} (client fault)
46
66
  * <p>An exception for accessing or deleting a resource that does not exist. Gives http status code of 400.</p>
47
67
  *
68
+ * @throws {@link ElasticsearchServiceServiceException}
69
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
48
70
  *
49
71
  */
50
72
  export declare class DeleteInboundCrossClusterSearchConnectionCommand extends $Command<DeleteInboundCrossClusterSearchConnectionCommandInput, DeleteInboundCrossClusterSearchConnectionCommandOutput, ElasticsearchServiceClientResolvedConfig> {
@@ -31,6 +31,27 @@ export interface DeleteOutboundCrossClusterSearchConnectionCommandOutput extends
31
31
  * };
32
32
  * const command = new DeleteOutboundCrossClusterSearchConnectionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteOutboundCrossClusterSearchConnectionResponse
35
+ * // CrossClusterSearchConnection: { // OutboundCrossClusterSearchConnection
36
+ * // SourceDomainInfo: { // DomainInformation
37
+ * // OwnerId: "STRING_VALUE",
38
+ * // DomainName: "STRING_VALUE", // required
39
+ * // Region: "STRING_VALUE",
40
+ * // },
41
+ * // DestinationDomainInfo: {
42
+ * // OwnerId: "STRING_VALUE",
43
+ * // DomainName: "STRING_VALUE", // required
44
+ * // Region: "STRING_VALUE",
45
+ * // },
46
+ * // CrossClusterSearchConnectionId: "STRING_VALUE",
47
+ * // ConnectionAlias: "STRING_VALUE",
48
+ * // ConnectionStatus: { // OutboundCrossClusterSearchConnectionStatus
49
+ * // StatusCode: "PENDING_ACCEPTANCE" || "VALIDATING" || "VALIDATION_FAILED" || "PROVISIONING" || "ACTIVE" || "REJECTED" || "DELETING" || "DELETED",
50
+ * // Message: "STRING_VALUE",
51
+ * // },
52
+ * // },
53
+ * // };
54
+ *
34
55
  * ```
35
56
  *
36
57
  * @param DeleteOutboundCrossClusterSearchConnectionCommandInput - {@link DeleteOutboundCrossClusterSearchConnectionCommandInput}
@@ -45,6 +66,8 @@ export interface DeleteOutboundCrossClusterSearchConnectionCommandOutput extends
45
66
  * @throws {@link ResourceNotFoundException} (client fault)
46
67
  * <p>An exception for accessing or deleting a resource that does not exist. Gives http status code of 400.</p>
47
68
  *
69
+ * @throws {@link ElasticsearchServiceServiceException}
70
+ * <p>Base exception class for all service exceptions from ElasticsearchService service.</p>
48
71
  *
49
72
  */
50
73
  export declare class DeleteOutboundCrossClusterSearchConnectionCommand extends $Command<DeleteOutboundCrossClusterSearchConnectionCommandInput, DeleteOutboundCrossClusterSearchConnectionCommandOutput, ElasticsearchServiceClientResolvedConfig> {