@aws-sdk/client-elasticsearch-service 3.298.0 → 3.300.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/dist-types/commands/AcceptInboundCrossClusterSearchConnectionCommand.d.ts +3 -0
- package/dist-types/commands/AddTagsCommand.d.ts +9 -0
- package/dist-types/commands/AssociatePackageCommand.d.ts +4 -0
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +4 -0
- package/dist-types/commands/CancelElasticsearchServiceSoftwareUpdateCommand.d.ts +3 -0
- package/dist-types/commands/CreateElasticsearchDomainCommand.d.ts +110 -0
- package/dist-types/commands/CreateOutboundCrossClusterSearchConnectionCommand.d.ts +13 -0
- package/dist-types/commands/CreatePackageCommand.d.ts +9 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +12 -0
- package/dist-types/commands/DeleteElasticsearchDomainCommand.d.ts +3 -0
- package/dist-types/commands/DeleteElasticsearchServiceRoleCommand.d.ts +1 -0
- package/dist-types/commands/DeleteInboundCrossClusterSearchConnectionCommand.d.ts +3 -0
- package/dist-types/commands/DeleteOutboundCrossClusterSearchConnectionCommand.d.ts +3 -0
- package/dist-types/commands/DeletePackageCommand.d.ts +3 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDomainAutoTunesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +4 -0
- package/dist-types/commands/DescribeElasticsearchDomainCommand.d.ts +3 -0
- package/dist-types/commands/DescribeElasticsearchDomainConfigCommand.d.ts +3 -0
- package/dist-types/commands/DescribeElasticsearchDomainsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeElasticsearchInstanceTypeLimitsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeInboundCrossClusterSearchConnectionsCommand.d.ts +12 -0
- package/dist-types/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.d.ts +12 -0
- package/dist-types/commands/DescribePackagesCommand.d.ts +12 -0
- package/dist-types/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeReservedElasticsearchInstancesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +5 -0
- package/dist-types/commands/DissociatePackageCommand.d.ts +4 -0
- package/dist-types/commands/GetCompatibleElasticsearchVersionsCommand.d.ts +3 -0
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +5 -0
- package/dist-types/commands/GetUpgradeHistoryCommand.d.ts +5 -0
- package/dist-types/commands/GetUpgradeStatusCommand.d.ts +3 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +3 -0
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +5 -0
- package/dist-types/commands/ListElasticsearchInstanceTypesCommand.d.ts +6 -0
- package/dist-types/commands/ListElasticsearchVersionsCommand.d.ts +4 -0
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +5 -0
- package/dist-types/commands/ListTagsCommand.d.ts +3 -0
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +4 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +3 -0
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +4 -0
- package/dist-types/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.d.ts +5 -0
- package/dist-types/commands/RejectInboundCrossClusterSearchConnectionCommand.d.ts +3 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +6 -0
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +4 -0
- package/dist-types/commands/StartElasticsearchServiceSoftwareUpdateCommand.d.ts +3 -0
- package/dist-types/commands/UpdateElasticsearchDomainConfigCommand.d.ts +105 -0
- package/dist-types/commands/UpdatePackageCommand.d.ts +9 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +11 -0
- package/dist-types/commands/UpgradeElasticsearchDomainCommand.d.ts +5 -0
- package/package.json +12 -12
|
@@ -26,6 +26,9 @@ export interface AcceptInboundCrossClusterSearchConnectionCommandOutput extends
|
|
|
26
26
|
* import { ElasticsearchServiceClient, AcceptInboundCrossClusterSearchConnectionCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, AcceptInboundCrossClusterSearchConnectionCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new AcceptInboundCrossClusterSearchConnectionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface AddTagsCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { ElasticsearchServiceClient, AddTagsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
28
28
|
* // const { ElasticsearchServiceClient, AddTagsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
29
29
|
* const client = new ElasticsearchServiceClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ARN: "STRING_VALUE", // required
|
|
32
|
+
* TagList: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* Key: "STRING_VALUE", // required
|
|
35
|
+
* Value: "STRING_VALUE", // required
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
30
39
|
* const command = new AddTagsCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface AssociatePackageCommandOutput extends AssociatePackageResponse,
|
|
|
26
26
|
* import { ElasticsearchServiceClient, AssociatePackageCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, AssociatePackageCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PackageID: "STRING_VALUE", // required
|
|
31
|
+
* DomainName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new AssociatePackageCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface AuthorizeVpcEndpointAccessCommandOutput extends AuthorizeVpcEnd
|
|
|
26
26
|
* import { ElasticsearchServiceClient, AuthorizeVpcEndpointAccessCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, AuthorizeVpcEndpointAccessCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* Account: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new AuthorizeVpcEndpointAccessCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface CancelElasticsearchServiceSoftwareUpdateCommandOutput extends C
|
|
|
26
26
|
* import { ElasticsearchServiceClient, CancelElasticsearchServiceSoftwareUpdateCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, CancelElasticsearchServiceSoftwareUpdateCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new CancelElasticsearchServiceSoftwareUpdateCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,116 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea
|
|
|
27
27
|
* import { ElasticsearchServiceClient, CreateElasticsearchDomainCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
28
28
|
* // const { ElasticsearchServiceClient, CreateElasticsearchDomainCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
29
29
|
* const client = new ElasticsearchServiceClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* DomainName: "STRING_VALUE", // required
|
|
32
|
+
* ElasticsearchVersion: "STRING_VALUE",
|
|
33
|
+
* ElasticsearchClusterConfig: {
|
|
34
|
+
* 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",
|
|
35
|
+
* InstanceCount: Number("int"),
|
|
36
|
+
* DedicatedMasterEnabled: true || false,
|
|
37
|
+
* ZoneAwarenessEnabled: true || false,
|
|
38
|
+
* ZoneAwarenessConfig: {
|
|
39
|
+
* AvailabilityZoneCount: Number("int"),
|
|
40
|
+
* },
|
|
41
|
+
* 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",
|
|
42
|
+
* DedicatedMasterCount: Number("int"),
|
|
43
|
+
* WarmEnabled: true || false,
|
|
44
|
+
* WarmType: "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch",
|
|
45
|
+
* WarmCount: Number("int"),
|
|
46
|
+
* ColdStorageOptions: {
|
|
47
|
+
* Enabled: true || false, // required
|
|
48
|
+
* },
|
|
49
|
+
* },
|
|
50
|
+
* EBSOptions: {
|
|
51
|
+
* EBSEnabled: true || false,
|
|
52
|
+
* VolumeType: "standard" || "gp2" || "io1" || "gp3",
|
|
53
|
+
* VolumeSize: Number("int"),
|
|
54
|
+
* Iops: Number("int"),
|
|
55
|
+
* Throughput: Number("int"),
|
|
56
|
+
* },
|
|
57
|
+
* AccessPolicies: "STRING_VALUE",
|
|
58
|
+
* SnapshotOptions: {
|
|
59
|
+
* AutomatedSnapshotStartHour: Number("int"),
|
|
60
|
+
* },
|
|
61
|
+
* VPCOptions: {
|
|
62
|
+
* SubnetIds: [
|
|
63
|
+
* "STRING_VALUE",
|
|
64
|
+
* ],
|
|
65
|
+
* SecurityGroupIds: [
|
|
66
|
+
* "STRING_VALUE",
|
|
67
|
+
* ],
|
|
68
|
+
* },
|
|
69
|
+
* CognitoOptions: {
|
|
70
|
+
* Enabled: true || false,
|
|
71
|
+
* UserPoolId: "STRING_VALUE",
|
|
72
|
+
* IdentityPoolId: "STRING_VALUE",
|
|
73
|
+
* RoleArn: "STRING_VALUE",
|
|
74
|
+
* },
|
|
75
|
+
* EncryptionAtRestOptions: {
|
|
76
|
+
* Enabled: true || false,
|
|
77
|
+
* KmsKeyId: "STRING_VALUE",
|
|
78
|
+
* },
|
|
79
|
+
* NodeToNodeEncryptionOptions: {
|
|
80
|
+
* Enabled: true || false,
|
|
81
|
+
* },
|
|
82
|
+
* AdvancedOptions: {
|
|
83
|
+
* "<keys>": "STRING_VALUE",
|
|
84
|
+
* },
|
|
85
|
+
* LogPublishingOptions: {
|
|
86
|
+
* "<keys>": {
|
|
87
|
+
* CloudWatchLogsLogGroupArn: "STRING_VALUE",
|
|
88
|
+
* Enabled: true || false,
|
|
89
|
+
* },
|
|
90
|
+
* },
|
|
91
|
+
* DomainEndpointOptions: {
|
|
92
|
+
* EnforceHTTPS: true || false,
|
|
93
|
+
* TLSSecurityPolicy: "Policy-Min-TLS-1-0-2019-07" || "Policy-Min-TLS-1-2-2019-07",
|
|
94
|
+
* CustomEndpointEnabled: true || false,
|
|
95
|
+
* CustomEndpoint: "STRING_VALUE",
|
|
96
|
+
* CustomEndpointCertificateArn: "STRING_VALUE",
|
|
97
|
+
* },
|
|
98
|
+
* AdvancedSecurityOptions: {
|
|
99
|
+
* Enabled: true || false,
|
|
100
|
+
* InternalUserDatabaseEnabled: true || false,
|
|
101
|
+
* MasterUserOptions: {
|
|
102
|
+
* MasterUserARN: "STRING_VALUE",
|
|
103
|
+
* MasterUserName: "STRING_VALUE",
|
|
104
|
+
* MasterUserPassword: "STRING_VALUE",
|
|
105
|
+
* },
|
|
106
|
+
* SAMLOptions: {
|
|
107
|
+
* Enabled: true || false,
|
|
108
|
+
* Idp: {
|
|
109
|
+
* MetadataContent: "STRING_VALUE", // required
|
|
110
|
+
* EntityId: "STRING_VALUE", // required
|
|
111
|
+
* },
|
|
112
|
+
* MasterUserName: "STRING_VALUE",
|
|
113
|
+
* MasterBackendRole: "STRING_VALUE",
|
|
114
|
+
* SubjectKey: "STRING_VALUE",
|
|
115
|
+
* RolesKey: "STRING_VALUE",
|
|
116
|
+
* SessionTimeoutMinutes: Number("int"),
|
|
117
|
+
* },
|
|
118
|
+
* AnonymousAuthEnabled: true || false,
|
|
119
|
+
* },
|
|
120
|
+
* AutoTuneOptions: {
|
|
121
|
+
* DesiredState: "ENABLED" || "DISABLED",
|
|
122
|
+
* MaintenanceSchedules: [
|
|
123
|
+
* {
|
|
124
|
+
* StartAt: new Date("TIMESTAMP"),
|
|
125
|
+
* Duration: {
|
|
126
|
+
* Value: Number("long"),
|
|
127
|
+
* Unit: "HOURS",
|
|
128
|
+
* },
|
|
129
|
+
* CronExpressionForRecurrence: "STRING_VALUE",
|
|
130
|
+
* },
|
|
131
|
+
* ],
|
|
132
|
+
* },
|
|
133
|
+
* TagList: [
|
|
134
|
+
* {
|
|
135
|
+
* Key: "STRING_VALUE", // required
|
|
136
|
+
* Value: "STRING_VALUE", // required
|
|
137
|
+
* },
|
|
138
|
+
* ],
|
|
139
|
+
* };
|
|
30
140
|
* const command = new CreateElasticsearchDomainCommand(input);
|
|
31
141
|
* const response = await client.send(command);
|
|
32
142
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface CreateOutboundCrossClusterSearchConnectionCommandOutput extends
|
|
|
26
26
|
* import { ElasticsearchServiceClient, CreateOutboundCrossClusterSearchConnectionCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, CreateOutboundCrossClusterSearchConnectionCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* SourceDomainInfo: {
|
|
31
|
+
* OwnerId: "STRING_VALUE",
|
|
32
|
+
* DomainName: "STRING_VALUE", // required
|
|
33
|
+
* Region: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* DestinationDomainInfo: {
|
|
36
|
+
* OwnerId: "STRING_VALUE",
|
|
37
|
+
* DomainName: "STRING_VALUE", // required
|
|
38
|
+
* Region: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* ConnectionAlias: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
29
42
|
* const command = new CreateOutboundCrossClusterSearchConnectionCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface CreatePackageCommandOutput extends CreatePackageResponse, __Met
|
|
|
26
26
|
* import { ElasticsearchServiceClient, CreatePackageCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, CreatePackageCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PackageName: "STRING_VALUE", // required
|
|
31
|
+
* PackageType: "TXT-DICTIONARY", // required
|
|
32
|
+
* PackageDescription: "STRING_VALUE",
|
|
33
|
+
* PackageSource: {
|
|
34
|
+
* S3BucketName: "STRING_VALUE",
|
|
35
|
+
* S3Key: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* };
|
|
29
38
|
* const command = new CreatePackageCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons
|
|
|
26
26
|
* import { ElasticsearchServiceClient, CreateVpcEndpointCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, CreateVpcEndpointCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainArn: "STRING_VALUE", // required
|
|
31
|
+
* VpcOptions: {
|
|
32
|
+
* SubnetIds: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* SecurityGroupIds: [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ClientToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new CreateVpcEndpointCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteElasticsearchDomainCommandOutput extends DeleteElasticsea
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DeleteElasticsearchDomainCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DeleteElasticsearchDomainCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteElasticsearchDomainCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -25,6 +25,7 @@ export interface DeleteElasticsearchServiceRoleCommandOutput extends __MetadataB
|
|
|
25
25
|
* import { ElasticsearchServiceClient, DeleteElasticsearchServiceRoleCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
26
26
|
* // const { ElasticsearchServiceClient, DeleteElasticsearchServiceRoleCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
27
27
|
* const client = new ElasticsearchServiceClient(config);
|
|
28
|
+
* const input = {};
|
|
28
29
|
* const command = new DeleteElasticsearchServiceRoleCommand(input);
|
|
29
30
|
* const response = await client.send(command);
|
|
30
31
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteInboundCrossClusterSearchConnectionCommandOutput extends
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DeleteInboundCrossClusterSearchConnectionCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DeleteInboundCrossClusterSearchConnectionCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteInboundCrossClusterSearchConnectionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteOutboundCrossClusterSearchConnectionCommandOutput extends
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DeleteOutboundCrossClusterSearchConnectionCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DeleteOutboundCrossClusterSearchConnectionCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteOutboundCrossClusterSearchConnectionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeletePackageCommandOutput extends DeletePackageResponse, __Met
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DeletePackageCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DeletePackageCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PackageID: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeletePackageCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteVpcEndpointCommandOutput extends DeleteVpcEndpointRespons
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DeleteVpcEndpointCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DeleteVpcEndpointCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* VpcEndpointId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteVpcEndpointCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeDomainAutoTunesCommandOutput extends DescribeDomainAuto
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeDomainAutoTunesCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeDomainAutoTunesCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeDomainAutoTunesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DescribeDomainChangeProgressCommandOutput extends DescribeDomai
|
|
|
27
27
|
* import { ElasticsearchServiceClient, DescribeDomainChangeProgressCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
28
28
|
* // const { ElasticsearchServiceClient, DescribeDomainChangeProgressCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
29
29
|
* const client = new ElasticsearchServiceClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* DomainName: "STRING_VALUE", // required
|
|
32
|
+
* ChangeId: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DescribeDomainChangeProgressCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeElasticsearchDomainCommandOutput extends DescribeElasti
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeElasticsearchDomainCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeElasticsearchDomainCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeElasticsearchDomainCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeElasticsearchDomainConfigCommandOutput extends Describe
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeElasticsearchDomainConfigCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeElasticsearchDomainConfigCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeElasticsearchDomainConfigCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeElasticsearchDomainsCommandOutput extends DescribeElast
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeElasticsearchDomainsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeElasticsearchDomainsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainNames: [ // required
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeElasticsearchDomainsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -33,6 +33,11 @@ export interface DescribeElasticsearchInstanceTypeLimitsCommandOutput extends De
|
|
|
33
33
|
* import { ElasticsearchServiceClient, DescribeElasticsearchInstanceTypeLimitsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
34
34
|
* // const { ElasticsearchServiceClient, DescribeElasticsearchInstanceTypeLimitsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
35
35
|
* const client = new ElasticsearchServiceClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* DomainName: "STRING_VALUE",
|
|
38
|
+
* 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", // required
|
|
39
|
+
* ElasticsearchVersion: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
36
41
|
* const command = new DescribeElasticsearchInstanceTypeLimitsCommand(input);
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface DescribeInboundCrossClusterSearchConnectionsCommandOutput exten
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeInboundCrossClusterSearchConnectionsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeInboundCrossClusterSearchConnectionsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Filters: [
|
|
31
|
+
* {
|
|
32
|
+
* Name: "STRING_VALUE",
|
|
33
|
+
* Values: [
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new DescribeInboundCrossClusterSearchConnectionsCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface DescribeOutboundCrossClusterSearchConnectionsCommandOutput exte
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeOutboundCrossClusterSearchConnectionsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeOutboundCrossClusterSearchConnectionsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Filters: [
|
|
31
|
+
* {
|
|
32
|
+
* Name: "STRING_VALUE",
|
|
33
|
+
* Values: [
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new DescribeOutboundCrossClusterSearchConnectionsCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface DescribePackagesCommandOutput extends DescribePackagesResponse,
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribePackagesCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribePackagesCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Filters: [
|
|
31
|
+
* {
|
|
32
|
+
* Name: "PackageID" || "PackageName" || "PackageStatus",
|
|
33
|
+
* Value: [
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new DescribePackagesCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeReservedElasticsearchInstanceOfferingsCommandOutput ext
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeReservedElasticsearchInstanceOfferingsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeReservedElasticsearchInstanceOfferingsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ReservedElasticsearchInstanceOfferingId: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeReservedElasticsearchInstanceOfferingsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeReservedElasticsearchInstancesCommandOutput extends Des
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeReservedElasticsearchInstancesCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeReservedElasticsearchInstancesCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ReservedElasticsearchInstanceId: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeReservedElasticsearchInstancesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeVpcEndpointsCommandOutput extends DescribeVpcEndpointsR
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DescribeVpcEndpointsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DescribeVpcEndpointsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* VpcEndpointIds: [ // required
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeVpcEndpointsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DissociatePackageCommandOutput extends DissociatePackageRespons
|
|
|
26
26
|
* import { ElasticsearchServiceClient, DissociatePackageCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, DissociatePackageCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PackageID: "STRING_VALUE", // required
|
|
31
|
+
* DomainName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DissociatePackageCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -33,6 +33,9 @@ export interface GetCompatibleElasticsearchVersionsCommandOutput extends GetComp
|
|
|
33
33
|
* import { ElasticsearchServiceClient, GetCompatibleElasticsearchVersionsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
34
34
|
* // const { ElasticsearchServiceClient, GetCompatibleElasticsearchVersionsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
35
35
|
* const client = new ElasticsearchServiceClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* DomainName: "STRING_VALUE",
|
|
38
|
+
* };
|
|
36
39
|
* const command = new GetCompatibleElasticsearchVersionsCommand(input);
|
|
37
40
|
* const response = await client.send(command);
|
|
38
41
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetPackageVersionHistoryCommandOutput extends GetPackageVersion
|
|
|
26
26
|
* import { ElasticsearchServiceClient, GetPackageVersionHistoryCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, GetPackageVersionHistoryCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PackageID: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetPackageVersionHistoryCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetUpgradeHistoryCommandOutput extends GetUpgradeHistoryRespons
|
|
|
26
26
|
* import { ElasticsearchServiceClient, GetUpgradeHistoryCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, GetUpgradeHistoryCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetUpgradeHistoryCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetUpgradeStatusCommandOutput extends GetUpgradeStatusResponse,
|
|
|
26
26
|
* import { ElasticsearchServiceClient, GetUpgradeStatusCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, GetUpgradeStatusCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetUpgradeStatusCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListDomainNamesCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListDomainNamesCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EngineType: "OpenSearch" || "Elasticsearch",
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListDomainNamesCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListDomainsForPackageCommandOutput extends ListDomainsForPackag
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListDomainsForPackageCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListDomainsForPackageCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PackageID: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListDomainsForPackageCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListElasticsearchInstanceTypesCommandOutput extends ListElastic
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListElasticsearchInstanceTypesCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListElasticsearchInstanceTypesCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ElasticsearchVersion: "STRING_VALUE", // required
|
|
31
|
+
* DomainName: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListElasticsearchInstanceTypesCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListElasticsearchVersionsCommandOutput extends ListElasticsearc
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListElasticsearchVersionsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListElasticsearchVersionsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListElasticsearchVersionsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListPackagesForDomainCommandOutput extends ListPackagesForDomai
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListPackagesForDomainCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListPackagesForDomainCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListPackagesForDomainCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListTagsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListTagsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ARN: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface ListVpcEndpointAccessCommandOutput extends ListVpcEndpointAcces
|
|
|
27
27
|
* import { ElasticsearchServiceClient, ListVpcEndpointAccessCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
28
28
|
* // const { ElasticsearchServiceClient, ListVpcEndpointAccessCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
29
29
|
* const client = new ElasticsearchServiceClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* DomainName: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ListVpcEndpointAccessCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse,
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListVpcEndpointsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListVpcEndpointsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListVpcEndpointsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListVpcEndpointsForDomainCommandOutput extends ListVpcEndpoints
|
|
|
26
26
|
* import { ElasticsearchServiceClient, ListVpcEndpointsForDomainCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, ListVpcEndpointsForDomainCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListVpcEndpointsForDomainCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface PurchaseReservedElasticsearchInstanceOfferingCommandOutput exte
|
|
|
26
26
|
* import { ElasticsearchServiceClient, PurchaseReservedElasticsearchInstanceOfferingCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, PurchaseReservedElasticsearchInstanceOfferingCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ReservedElasticsearchInstanceOfferingId: "STRING_VALUE", // required
|
|
31
|
+
* ReservationName: "STRING_VALUE", // required
|
|
32
|
+
* InstanceCount: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new PurchaseReservedElasticsearchInstanceOfferingCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface RejectInboundCrossClusterSearchConnectionCommandOutput extends
|
|
|
26
26
|
* import { ElasticsearchServiceClient, RejectInboundCrossClusterSearchConnectionCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, RejectInboundCrossClusterSearchConnectionCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new RejectInboundCrossClusterSearchConnectionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface RemoveTagsCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { ElasticsearchServiceClient, RemoveTagsCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, RemoveTagsCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ARN: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new RemoveTagsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface RevokeVpcEndpointAccessCommandOutput extends RevokeVpcEndpointA
|
|
|
27
27
|
* import { ElasticsearchServiceClient, RevokeVpcEndpointAccessCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
28
28
|
* // const { ElasticsearchServiceClient, RevokeVpcEndpointAccessCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
29
29
|
* const client = new ElasticsearchServiceClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* DomainName: "STRING_VALUE", // required
|
|
32
|
+
* Account: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new RevokeVpcEndpointAccessCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface StartElasticsearchServiceSoftwareUpdateCommandOutput extends St
|
|
|
26
26
|
* import { ElasticsearchServiceClient, StartElasticsearchServiceSoftwareUpdateCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, StartElasticsearchServiceSoftwareUpdateCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new StartElasticsearchServiceSoftwareUpdateCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,111 @@ export interface UpdateElasticsearchDomainConfigCommandOutput extends UpdateElas
|
|
|
26
26
|
* import { ElasticsearchServiceClient, UpdateElasticsearchDomainConfigCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, UpdateElasticsearchDomainConfigCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* ElasticsearchClusterConfig: {
|
|
32
|
+
* 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",
|
|
33
|
+
* InstanceCount: Number("int"),
|
|
34
|
+
* DedicatedMasterEnabled: true || false,
|
|
35
|
+
* ZoneAwarenessEnabled: true || false,
|
|
36
|
+
* ZoneAwarenessConfig: {
|
|
37
|
+
* AvailabilityZoneCount: Number("int"),
|
|
38
|
+
* },
|
|
39
|
+
* 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",
|
|
40
|
+
* DedicatedMasterCount: Number("int"),
|
|
41
|
+
* WarmEnabled: true || false,
|
|
42
|
+
* WarmType: "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch",
|
|
43
|
+
* WarmCount: Number("int"),
|
|
44
|
+
* ColdStorageOptions: {
|
|
45
|
+
* Enabled: true || false, // required
|
|
46
|
+
* },
|
|
47
|
+
* },
|
|
48
|
+
* EBSOptions: {
|
|
49
|
+
* EBSEnabled: true || false,
|
|
50
|
+
* VolumeType: "standard" || "gp2" || "io1" || "gp3",
|
|
51
|
+
* VolumeSize: Number("int"),
|
|
52
|
+
* Iops: Number("int"),
|
|
53
|
+
* Throughput: Number("int"),
|
|
54
|
+
* },
|
|
55
|
+
* SnapshotOptions: {
|
|
56
|
+
* AutomatedSnapshotStartHour: Number("int"),
|
|
57
|
+
* },
|
|
58
|
+
* VPCOptions: {
|
|
59
|
+
* SubnetIds: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* SecurityGroupIds: [
|
|
63
|
+
* "STRING_VALUE",
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* CognitoOptions: {
|
|
67
|
+
* Enabled: true || false,
|
|
68
|
+
* UserPoolId: "STRING_VALUE",
|
|
69
|
+
* IdentityPoolId: "STRING_VALUE",
|
|
70
|
+
* RoleArn: "STRING_VALUE",
|
|
71
|
+
* },
|
|
72
|
+
* AdvancedOptions: {
|
|
73
|
+
* "<keys>": "STRING_VALUE",
|
|
74
|
+
* },
|
|
75
|
+
* AccessPolicies: "STRING_VALUE",
|
|
76
|
+
* LogPublishingOptions: {
|
|
77
|
+
* "<keys>": {
|
|
78
|
+
* CloudWatchLogsLogGroupArn: "STRING_VALUE",
|
|
79
|
+
* Enabled: true || false,
|
|
80
|
+
* },
|
|
81
|
+
* },
|
|
82
|
+
* DomainEndpointOptions: {
|
|
83
|
+
* EnforceHTTPS: true || false,
|
|
84
|
+
* TLSSecurityPolicy: "Policy-Min-TLS-1-0-2019-07" || "Policy-Min-TLS-1-2-2019-07",
|
|
85
|
+
* CustomEndpointEnabled: true || false,
|
|
86
|
+
* CustomEndpoint: "STRING_VALUE",
|
|
87
|
+
* CustomEndpointCertificateArn: "STRING_VALUE",
|
|
88
|
+
* },
|
|
89
|
+
* AdvancedSecurityOptions: {
|
|
90
|
+
* Enabled: true || false,
|
|
91
|
+
* InternalUserDatabaseEnabled: true || false,
|
|
92
|
+
* MasterUserOptions: {
|
|
93
|
+
* MasterUserARN: "STRING_VALUE",
|
|
94
|
+
* MasterUserName: "STRING_VALUE",
|
|
95
|
+
* MasterUserPassword: "STRING_VALUE",
|
|
96
|
+
* },
|
|
97
|
+
* SAMLOptions: {
|
|
98
|
+
* Enabled: true || false,
|
|
99
|
+
* Idp: {
|
|
100
|
+
* MetadataContent: "STRING_VALUE", // required
|
|
101
|
+
* EntityId: "STRING_VALUE", // required
|
|
102
|
+
* },
|
|
103
|
+
* MasterUserName: "STRING_VALUE",
|
|
104
|
+
* MasterBackendRole: "STRING_VALUE",
|
|
105
|
+
* SubjectKey: "STRING_VALUE",
|
|
106
|
+
* RolesKey: "STRING_VALUE",
|
|
107
|
+
* SessionTimeoutMinutes: Number("int"),
|
|
108
|
+
* },
|
|
109
|
+
* AnonymousAuthEnabled: true || false,
|
|
110
|
+
* },
|
|
111
|
+
* NodeToNodeEncryptionOptions: {
|
|
112
|
+
* Enabled: true || false,
|
|
113
|
+
* },
|
|
114
|
+
* EncryptionAtRestOptions: {
|
|
115
|
+
* Enabled: true || false,
|
|
116
|
+
* KmsKeyId: "STRING_VALUE",
|
|
117
|
+
* },
|
|
118
|
+
* AutoTuneOptions: {
|
|
119
|
+
* DesiredState: "ENABLED" || "DISABLED",
|
|
120
|
+
* RollbackOnDisable: "NO_ROLLBACK" || "DEFAULT_ROLLBACK",
|
|
121
|
+
* MaintenanceSchedules: [
|
|
122
|
+
* {
|
|
123
|
+
* StartAt: new Date("TIMESTAMP"),
|
|
124
|
+
* Duration: {
|
|
125
|
+
* Value: Number("long"),
|
|
126
|
+
* Unit: "HOURS",
|
|
127
|
+
* },
|
|
128
|
+
* CronExpressionForRecurrence: "STRING_VALUE",
|
|
129
|
+
* },
|
|
130
|
+
* ],
|
|
131
|
+
* },
|
|
132
|
+
* DryRun: true || false,
|
|
133
|
+
* };
|
|
29
134
|
* const command = new UpdateElasticsearchDomainConfigCommand(input);
|
|
30
135
|
* const response = await client.send(command);
|
|
31
136
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface UpdatePackageCommandOutput extends UpdatePackageResponse, __Met
|
|
|
26
26
|
* import { ElasticsearchServiceClient, UpdatePackageCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, UpdatePackageCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PackageID: "STRING_VALUE", // required
|
|
31
|
+
* PackageSource: {
|
|
32
|
+
* S3BucketName: "STRING_VALUE",
|
|
33
|
+
* S3Key: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* PackageDescription: "STRING_VALUE",
|
|
36
|
+
* CommitMessage: "STRING_VALUE",
|
|
37
|
+
* };
|
|
29
38
|
* const command = new UpdatePackageCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface UpdateVpcEndpointCommandOutput extends UpdateVpcEndpointRespons
|
|
|
26
26
|
* import { ElasticsearchServiceClient, UpdateVpcEndpointCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, UpdateVpcEndpointCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* VpcEndpointId: "STRING_VALUE", // required
|
|
31
|
+
* VpcOptions: {
|
|
32
|
+
* SubnetIds: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* SecurityGroupIds: [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
29
40
|
* const command = new UpdateVpcEndpointCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface UpgradeElasticsearchDomainCommandOutput extends UpgradeElastics
|
|
|
26
26
|
* import { ElasticsearchServiceClient, UpgradeElasticsearchDomainCommand } from "@aws-sdk/client-elasticsearch-service"; // ES Modules import
|
|
27
27
|
* // const { ElasticsearchServiceClient, UpgradeElasticsearchDomainCommand } = require("@aws-sdk/client-elasticsearch-service"); // CommonJS import
|
|
28
28
|
* const client = new ElasticsearchServiceClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DomainName: "STRING_VALUE", // required
|
|
31
|
+
* TargetVersion: "STRING_VALUE", // required
|
|
32
|
+
* PerformCheckOnly: true || false,
|
|
33
|
+
* };
|
|
29
34
|
* const command = new UpgradeElasticsearchDomainCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticsearch-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticsearch Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,23 +21,23 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|