@aws-sdk/client-elasticsearch-service 3.300.0 → 3.301.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 +1 -1
- package/dist-types/commands/AddTagsCommand.d.ts +3 -3
- package/dist-types/commands/AssociatePackageCommand.d.ts +1 -1
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/CancelElasticsearchServiceSoftwareUpdateCommand.d.ts +1 -1
- package/dist-types/commands/CreateElasticsearchDomainCommand.d.ts +25 -25
- package/dist-types/commands/CreateOutboundCrossClusterSearchConnectionCommand.d.ts +2 -2
- package/dist-types/commands/CreatePackageCommand.d.ts +2 -2
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +3 -3
- package/dist-types/commands/DeleteElasticsearchDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInboundCrossClusterSearchConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteOutboundCrossClusterSearchConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DeletePackageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainAutoTunesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +1 -1
- package/dist-types/commands/DescribeElasticsearchDomainCommand.d.ts +1 -1
- package/dist-types/commands/DescribeElasticsearchDomainConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeElasticsearchDomainsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeElasticsearchInstanceTypeLimitsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInboundCrossClusterSearchConnectionsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.d.ts +4 -4
- package/dist-types/commands/DescribePackagesCommand.d.ts +4 -4
- package/dist-types/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedElasticsearchInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +2 -2
- package/dist-types/commands/DissociatePackageCommand.d.ts +1 -1
- package/dist-types/commands/GetCompatibleElasticsearchVersionsCommand.d.ts +1 -1
- package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetUpgradeHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetUpgradeStatusCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainNamesCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainsForPackageCommand.d.ts +1 -1
- package/dist-types/commands/ListElasticsearchInstanceTypesCommand.d.ts +1 -1
- package/dist-types/commands/ListElasticsearchVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListPackagesForDomainCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.d.ts +1 -1
- package/dist-types/commands/RejectInboundCrossClusterSearchConnectionCommand.d.ts +1 -1
- package/dist-types/commands/RemoveTagsCommand.d.ts +2 -2
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/StartElasticsearchServiceSoftwareUpdateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateElasticsearchDomainConfigCommand.d.ts +23 -23
- package/dist-types/commands/UpdatePackageCommand.d.ts +2 -2
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +3 -3
- package/dist-types/commands/UpgradeElasticsearchDomainCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // AcceptInboundCrossClusterSearchConnectionRequest
|
|
30
30
|
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new AcceptInboundCrossClusterSearchConnectionCommand(input);
|
|
@@ -27,10 +27,10 @@ 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 = {
|
|
30
|
+
* const input = { // AddTagsRequest
|
|
31
31
|
* ARN: "STRING_VALUE", // required
|
|
32
|
-
* TagList: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* TagList: [ // TagList // required
|
|
33
|
+
* { // Tag
|
|
34
34
|
* Key: "STRING_VALUE", // required
|
|
35
35
|
* Value: "STRING_VALUE", // required
|
|
36
36
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // AssociatePackageRequest
|
|
30
30
|
* PackageID: "STRING_VALUE", // required
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // AuthorizeVpcEndpointAccessRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* Account: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // CancelElasticsearchServiceSoftwareUpdateRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelElasticsearchServiceSoftwareUpdateCommand(input);
|
|
@@ -27,15 +27,15 @@ 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 = {
|
|
30
|
+
* const input = { // CreateElasticsearchDomainRequest
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* ElasticsearchVersion: "STRING_VALUE",
|
|
33
|
-
* ElasticsearchClusterConfig: {
|
|
33
|
+
* ElasticsearchClusterConfig: { // ElasticsearchClusterConfig
|
|
34
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
35
|
* InstanceCount: Number("int"),
|
|
36
36
|
* DedicatedMasterEnabled: true || false,
|
|
37
37
|
* ZoneAwarenessEnabled: true || false,
|
|
38
|
-
* ZoneAwarenessConfig: {
|
|
38
|
+
* ZoneAwarenessConfig: { // ZoneAwarenessConfig
|
|
39
39
|
* AvailabilityZoneCount: Number("int"),
|
|
40
40
|
* },
|
|
41
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",
|
|
@@ -43,11 +43,11 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea
|
|
|
43
43
|
* WarmEnabled: true || false,
|
|
44
44
|
* WarmType: "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch",
|
|
45
45
|
* WarmCount: Number("int"),
|
|
46
|
-
* ColdStorageOptions: {
|
|
46
|
+
* ColdStorageOptions: { // ColdStorageOptions
|
|
47
47
|
* Enabled: true || false, // required
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
|
-
* EBSOptions: {
|
|
50
|
+
* EBSOptions: { // EBSOptions
|
|
51
51
|
* EBSEnabled: true || false,
|
|
52
52
|
* VolumeType: "standard" || "gp2" || "io1" || "gp3",
|
|
53
53
|
* VolumeSize: Number("int"),
|
|
@@ -55,57 +55,57 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea
|
|
|
55
55
|
* Throughput: Number("int"),
|
|
56
56
|
* },
|
|
57
57
|
* AccessPolicies: "STRING_VALUE",
|
|
58
|
-
* SnapshotOptions: {
|
|
58
|
+
* SnapshotOptions: { // SnapshotOptions
|
|
59
59
|
* AutomatedSnapshotStartHour: Number("int"),
|
|
60
60
|
* },
|
|
61
|
-
* VPCOptions: {
|
|
62
|
-
* SubnetIds: [
|
|
61
|
+
* VPCOptions: { // VPCOptions
|
|
62
|
+
* SubnetIds: [ // StringList
|
|
63
63
|
* "STRING_VALUE",
|
|
64
64
|
* ],
|
|
65
65
|
* SecurityGroupIds: [
|
|
66
66
|
* "STRING_VALUE",
|
|
67
67
|
* ],
|
|
68
68
|
* },
|
|
69
|
-
* CognitoOptions: {
|
|
69
|
+
* CognitoOptions: { // CognitoOptions
|
|
70
70
|
* Enabled: true || false,
|
|
71
71
|
* UserPoolId: "STRING_VALUE",
|
|
72
72
|
* IdentityPoolId: "STRING_VALUE",
|
|
73
73
|
* RoleArn: "STRING_VALUE",
|
|
74
74
|
* },
|
|
75
|
-
* EncryptionAtRestOptions: {
|
|
75
|
+
* EncryptionAtRestOptions: { // EncryptionAtRestOptions
|
|
76
76
|
* Enabled: true || false,
|
|
77
77
|
* KmsKeyId: "STRING_VALUE",
|
|
78
78
|
* },
|
|
79
|
-
* NodeToNodeEncryptionOptions: {
|
|
79
|
+
* NodeToNodeEncryptionOptions: { // NodeToNodeEncryptionOptions
|
|
80
80
|
* Enabled: true || false,
|
|
81
81
|
* },
|
|
82
|
-
* AdvancedOptions: {
|
|
82
|
+
* AdvancedOptions: { // AdvancedOptions
|
|
83
83
|
* "<keys>": "STRING_VALUE",
|
|
84
84
|
* },
|
|
85
|
-
* LogPublishingOptions: {
|
|
86
|
-
* "<keys>": {
|
|
85
|
+
* LogPublishingOptions: { // LogPublishingOptions
|
|
86
|
+
* "<keys>": { // LogPublishingOption
|
|
87
87
|
* CloudWatchLogsLogGroupArn: "STRING_VALUE",
|
|
88
88
|
* Enabled: true || false,
|
|
89
89
|
* },
|
|
90
90
|
* },
|
|
91
|
-
* DomainEndpointOptions: {
|
|
91
|
+
* DomainEndpointOptions: { // DomainEndpointOptions
|
|
92
92
|
* EnforceHTTPS: true || false,
|
|
93
93
|
* TLSSecurityPolicy: "Policy-Min-TLS-1-0-2019-07" || "Policy-Min-TLS-1-2-2019-07",
|
|
94
94
|
* CustomEndpointEnabled: true || false,
|
|
95
95
|
* CustomEndpoint: "STRING_VALUE",
|
|
96
96
|
* CustomEndpointCertificateArn: "STRING_VALUE",
|
|
97
97
|
* },
|
|
98
|
-
* AdvancedSecurityOptions: {
|
|
98
|
+
* AdvancedSecurityOptions: { // AdvancedSecurityOptionsInput
|
|
99
99
|
* Enabled: true || false,
|
|
100
100
|
* InternalUserDatabaseEnabled: true || false,
|
|
101
|
-
* MasterUserOptions: {
|
|
101
|
+
* MasterUserOptions: { // MasterUserOptions
|
|
102
102
|
* MasterUserARN: "STRING_VALUE",
|
|
103
103
|
* MasterUserName: "STRING_VALUE",
|
|
104
104
|
* MasterUserPassword: "STRING_VALUE",
|
|
105
105
|
* },
|
|
106
|
-
* SAMLOptions: {
|
|
106
|
+
* SAMLOptions: { // SAMLOptionsInput
|
|
107
107
|
* Enabled: true || false,
|
|
108
|
-
* Idp: {
|
|
108
|
+
* Idp: { // SAMLIdp
|
|
109
109
|
* MetadataContent: "STRING_VALUE", // required
|
|
110
110
|
* EntityId: "STRING_VALUE", // required
|
|
111
111
|
* },
|
|
@@ -117,12 +117,12 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea
|
|
|
117
117
|
* },
|
|
118
118
|
* AnonymousAuthEnabled: true || false,
|
|
119
119
|
* },
|
|
120
|
-
* AutoTuneOptions: {
|
|
120
|
+
* AutoTuneOptions: { // AutoTuneOptionsInput
|
|
121
121
|
* DesiredState: "ENABLED" || "DISABLED",
|
|
122
|
-
* MaintenanceSchedules: [
|
|
123
|
-
* {
|
|
122
|
+
* MaintenanceSchedules: [ // AutoTuneMaintenanceScheduleList
|
|
123
|
+
* { // AutoTuneMaintenanceSchedule
|
|
124
124
|
* StartAt: new Date("TIMESTAMP"),
|
|
125
|
-
* Duration: {
|
|
125
|
+
* Duration: { // Duration
|
|
126
126
|
* Value: Number("long"),
|
|
127
127
|
* Unit: "HOURS",
|
|
128
128
|
* },
|
|
@@ -130,8 +130,8 @@ export interface CreateElasticsearchDomainCommandOutput extends CreateElasticsea
|
|
|
130
130
|
* },
|
|
131
131
|
* ],
|
|
132
132
|
* },
|
|
133
|
-
* TagList: [
|
|
134
|
-
* {
|
|
133
|
+
* TagList: [ // TagList
|
|
134
|
+
* { // Tag
|
|
135
135
|
* Key: "STRING_VALUE", // required
|
|
136
136
|
* Value: "STRING_VALUE", // required
|
|
137
137
|
* },
|
|
@@ -26,8 +26,8 @@ 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: {
|
|
29
|
+
* const input = { // CreateOutboundCrossClusterSearchConnectionRequest
|
|
30
|
+
* SourceDomainInfo: { // DomainInformation
|
|
31
31
|
* OwnerId: "STRING_VALUE",
|
|
32
32
|
* DomainName: "STRING_VALUE", // required
|
|
33
33
|
* Region: "STRING_VALUE",
|
|
@@ -26,11 +26,11 @@ 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 = {
|
|
29
|
+
* const input = { // CreatePackageRequest
|
|
30
30
|
* PackageName: "STRING_VALUE", // required
|
|
31
31
|
* PackageType: "TXT-DICTIONARY", // required
|
|
32
32
|
* PackageDescription: "STRING_VALUE",
|
|
33
|
-
* PackageSource: {
|
|
33
|
+
* PackageSource: { // PackageSource
|
|
34
34
|
* S3BucketName: "STRING_VALUE",
|
|
35
35
|
* S3Key: "STRING_VALUE",
|
|
36
36
|
* },
|
|
@@ -26,10 +26,10 @@ 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 = {
|
|
29
|
+
* const input = { // CreateVpcEndpointRequest
|
|
30
30
|
* DomainArn: "STRING_VALUE", // required
|
|
31
|
-
* VpcOptions: {
|
|
32
|
-
* SubnetIds: [
|
|
31
|
+
* VpcOptions: { // VPCOptions
|
|
32
|
+
* SubnetIds: [ // StringList
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* SecurityGroupIds: [
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteElasticsearchDomainRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteElasticsearchDomainCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteInboundCrossClusterSearchConnectionRequest
|
|
30
30
|
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteInboundCrossClusterSearchConnectionCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteOutboundCrossClusterSearchConnectionRequest
|
|
30
30
|
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteOutboundCrossClusterSearchConnectionCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeletePackageRequest
|
|
30
30
|
* PackageID: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeletePackageCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteVpcEndpointRequest
|
|
30
30
|
* VpcEndpointId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteVpcEndpointCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeDomainAutoTunesRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DescribeDomainChangeProgressRequest
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* ChangeId: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeElasticsearchDomainRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeElasticsearchDomainCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeElasticsearchDomainConfigRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeElasticsearchDomainConfigCommand(input);
|
|
@@ -26,8 +26,8 @@ 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
|
|
29
|
+
* const input = { // DescribeElasticsearchDomainsRequest
|
|
30
|
+
* DomainNames: [ // DomainNameList // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -33,7 +33,7 @@ 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 = {
|
|
36
|
+
* const input = { // DescribeElasticsearchInstanceTypeLimitsRequest
|
|
37
37
|
* DomainName: "STRING_VALUE",
|
|
38
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
39
|
* ElasticsearchVersion: "STRING_VALUE", // required
|
|
@@ -26,11 +26,11 @@ 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
|
-
* {
|
|
29
|
+
* const input = { // DescribeInboundCrossClusterSearchConnectionsRequest
|
|
30
|
+
* Filters: [ // FilterList
|
|
31
|
+
* { // Filter
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
|
-
* Values: [
|
|
33
|
+
* Values: [ // ValueStringList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* },
|
|
@@ -26,11 +26,11 @@ 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
|
-
* {
|
|
29
|
+
* const input = { // DescribeOutboundCrossClusterSearchConnectionsRequest
|
|
30
|
+
* Filters: [ // FilterList
|
|
31
|
+
* { // Filter
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
|
-
* Values: [
|
|
33
|
+
* Values: [ // ValueStringList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* },
|
|
@@ -26,11 +26,11 @@ 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
|
-
* {
|
|
29
|
+
* const input = { // DescribePackagesRequest
|
|
30
|
+
* Filters: [ // DescribePackagesFilterList
|
|
31
|
+
* { // DescribePackagesFilter
|
|
32
32
|
* Name: "PackageID" || "PackageName" || "PackageStatus",
|
|
33
|
-
* Value: [
|
|
33
|
+
* Value: [ // DescribePackagesFilterValues
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeReservedElasticsearchInstanceOfferingsRequest
|
|
30
30
|
* ReservedElasticsearchInstanceOfferingId: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeReservedElasticsearchInstancesRequest
|
|
30
30
|
* ReservedElasticsearchInstanceId: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,8 +26,8 @@ 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
|
|
29
|
+
* const input = { // DescribeVpcEndpointsRequest
|
|
30
|
+
* VpcEndpointIds: [ // VpcEndpointIdList // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DissociatePackageRequest
|
|
30
30
|
* PackageID: "STRING_VALUE", // required
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -33,7 +33,7 @@ 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 = {
|
|
36
|
+
* const input = { // GetCompatibleElasticsearchVersionsRequest
|
|
37
37
|
* DomainName: "STRING_VALUE",
|
|
38
38
|
* };
|
|
39
39
|
* const command = new GetCompatibleElasticsearchVersionsCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetPackageVersionHistoryRequest
|
|
30
30
|
* PackageID: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetUpgradeHistoryRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetUpgradeStatusRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetUpgradeStatusCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListDomainNamesRequest
|
|
30
30
|
* EngineType: "OpenSearch" || "Elasticsearch",
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListDomainNamesCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListDomainsForPackageRequest
|
|
30
30
|
* PackageID: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListElasticsearchInstanceTypesRequest
|
|
30
30
|
* ElasticsearchVersion: "STRING_VALUE", // required
|
|
31
31
|
* DomainName: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListElasticsearchVersionsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListPackagesForDomainRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsRequest
|
|
30
30
|
* ARN: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // ListVpcEndpointAccessRequest
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListVpcEndpointsRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListVpcEndpointsCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListVpcEndpointsForDomainRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // PurchaseReservedElasticsearchInstanceOfferingRequest
|
|
30
30
|
* ReservedElasticsearchInstanceOfferingId: "STRING_VALUE", // required
|
|
31
31
|
* ReservationName: "STRING_VALUE", // required
|
|
32
32
|
* InstanceCount: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // RejectInboundCrossClusterSearchConnectionRequest
|
|
30
30
|
* CrossClusterSearchConnectionId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new RejectInboundCrossClusterSearchConnectionCommand(input);
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // RemoveTagsRequest
|
|
30
30
|
* ARN: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // StringList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // RevokeVpcEndpointAccessRequest
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* Account: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StartElasticsearchServiceSoftwareUpdateRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartElasticsearchServiceSoftwareUpdateCommand(input);
|
|
@@ -26,14 +26,14 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateElasticsearchDomainConfigRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
|
-
* ElasticsearchClusterConfig: {
|
|
31
|
+
* ElasticsearchClusterConfig: { // ElasticsearchClusterConfig
|
|
32
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
33
|
* InstanceCount: Number("int"),
|
|
34
34
|
* DedicatedMasterEnabled: true || false,
|
|
35
35
|
* ZoneAwarenessEnabled: true || false,
|
|
36
|
-
* ZoneAwarenessConfig: {
|
|
36
|
+
* ZoneAwarenessConfig: { // ZoneAwarenessConfig
|
|
37
37
|
* AvailabilityZoneCount: Number("int"),
|
|
38
38
|
* },
|
|
39
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",
|
|
@@ -41,62 +41,62 @@ export interface UpdateElasticsearchDomainConfigCommandOutput extends UpdateElas
|
|
|
41
41
|
* WarmEnabled: true || false,
|
|
42
42
|
* WarmType: "ultrawarm1.medium.elasticsearch" || "ultrawarm1.large.elasticsearch",
|
|
43
43
|
* WarmCount: Number("int"),
|
|
44
|
-
* ColdStorageOptions: {
|
|
44
|
+
* ColdStorageOptions: { // ColdStorageOptions
|
|
45
45
|
* Enabled: true || false, // required
|
|
46
46
|
* },
|
|
47
47
|
* },
|
|
48
|
-
* EBSOptions: {
|
|
48
|
+
* EBSOptions: { // EBSOptions
|
|
49
49
|
* EBSEnabled: true || false,
|
|
50
50
|
* VolumeType: "standard" || "gp2" || "io1" || "gp3",
|
|
51
51
|
* VolumeSize: Number("int"),
|
|
52
52
|
* Iops: Number("int"),
|
|
53
53
|
* Throughput: Number("int"),
|
|
54
54
|
* },
|
|
55
|
-
* SnapshotOptions: {
|
|
55
|
+
* SnapshotOptions: { // SnapshotOptions
|
|
56
56
|
* AutomatedSnapshotStartHour: Number("int"),
|
|
57
57
|
* },
|
|
58
|
-
* VPCOptions: {
|
|
59
|
-
* SubnetIds: [
|
|
58
|
+
* VPCOptions: { // VPCOptions
|
|
59
|
+
* SubnetIds: [ // StringList
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* SecurityGroupIds: [
|
|
63
63
|
* "STRING_VALUE",
|
|
64
64
|
* ],
|
|
65
65
|
* },
|
|
66
|
-
* CognitoOptions: {
|
|
66
|
+
* CognitoOptions: { // CognitoOptions
|
|
67
67
|
* Enabled: true || false,
|
|
68
68
|
* UserPoolId: "STRING_VALUE",
|
|
69
69
|
* IdentityPoolId: "STRING_VALUE",
|
|
70
70
|
* RoleArn: "STRING_VALUE",
|
|
71
71
|
* },
|
|
72
|
-
* AdvancedOptions: {
|
|
72
|
+
* AdvancedOptions: { // AdvancedOptions
|
|
73
73
|
* "<keys>": "STRING_VALUE",
|
|
74
74
|
* },
|
|
75
75
|
* AccessPolicies: "STRING_VALUE",
|
|
76
|
-
* LogPublishingOptions: {
|
|
77
|
-
* "<keys>": {
|
|
76
|
+
* LogPublishingOptions: { // LogPublishingOptions
|
|
77
|
+
* "<keys>": { // LogPublishingOption
|
|
78
78
|
* CloudWatchLogsLogGroupArn: "STRING_VALUE",
|
|
79
79
|
* Enabled: true || false,
|
|
80
80
|
* },
|
|
81
81
|
* },
|
|
82
|
-
* DomainEndpointOptions: {
|
|
82
|
+
* DomainEndpointOptions: { // DomainEndpointOptions
|
|
83
83
|
* EnforceHTTPS: true || false,
|
|
84
84
|
* TLSSecurityPolicy: "Policy-Min-TLS-1-0-2019-07" || "Policy-Min-TLS-1-2-2019-07",
|
|
85
85
|
* CustomEndpointEnabled: true || false,
|
|
86
86
|
* CustomEndpoint: "STRING_VALUE",
|
|
87
87
|
* CustomEndpointCertificateArn: "STRING_VALUE",
|
|
88
88
|
* },
|
|
89
|
-
* AdvancedSecurityOptions: {
|
|
89
|
+
* AdvancedSecurityOptions: { // AdvancedSecurityOptionsInput
|
|
90
90
|
* Enabled: true || false,
|
|
91
91
|
* InternalUserDatabaseEnabled: true || false,
|
|
92
|
-
* MasterUserOptions: {
|
|
92
|
+
* MasterUserOptions: { // MasterUserOptions
|
|
93
93
|
* MasterUserARN: "STRING_VALUE",
|
|
94
94
|
* MasterUserName: "STRING_VALUE",
|
|
95
95
|
* MasterUserPassword: "STRING_VALUE",
|
|
96
96
|
* },
|
|
97
|
-
* SAMLOptions: {
|
|
97
|
+
* SAMLOptions: { // SAMLOptionsInput
|
|
98
98
|
* Enabled: true || false,
|
|
99
|
-
* Idp: {
|
|
99
|
+
* Idp: { // SAMLIdp
|
|
100
100
|
* MetadataContent: "STRING_VALUE", // required
|
|
101
101
|
* EntityId: "STRING_VALUE", // required
|
|
102
102
|
* },
|
|
@@ -108,20 +108,20 @@ export interface UpdateElasticsearchDomainConfigCommandOutput extends UpdateElas
|
|
|
108
108
|
* },
|
|
109
109
|
* AnonymousAuthEnabled: true || false,
|
|
110
110
|
* },
|
|
111
|
-
* NodeToNodeEncryptionOptions: {
|
|
111
|
+
* NodeToNodeEncryptionOptions: { // NodeToNodeEncryptionOptions
|
|
112
112
|
* Enabled: true || false,
|
|
113
113
|
* },
|
|
114
|
-
* EncryptionAtRestOptions: {
|
|
114
|
+
* EncryptionAtRestOptions: { // EncryptionAtRestOptions
|
|
115
115
|
* Enabled: true || false,
|
|
116
116
|
* KmsKeyId: "STRING_VALUE",
|
|
117
117
|
* },
|
|
118
|
-
* AutoTuneOptions: {
|
|
118
|
+
* AutoTuneOptions: { // AutoTuneOptions
|
|
119
119
|
* DesiredState: "ENABLED" || "DISABLED",
|
|
120
120
|
* RollbackOnDisable: "NO_ROLLBACK" || "DEFAULT_ROLLBACK",
|
|
121
|
-
* MaintenanceSchedules: [
|
|
122
|
-
* {
|
|
121
|
+
* MaintenanceSchedules: [ // AutoTuneMaintenanceScheduleList
|
|
122
|
+
* { // AutoTuneMaintenanceSchedule
|
|
123
123
|
* StartAt: new Date("TIMESTAMP"),
|
|
124
|
-
* Duration: {
|
|
124
|
+
* Duration: { // Duration
|
|
125
125
|
* Value: Number("long"),
|
|
126
126
|
* Unit: "HOURS",
|
|
127
127
|
* },
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UpdatePackageRequest
|
|
30
30
|
* PackageID: "STRING_VALUE", // required
|
|
31
|
-
* PackageSource: {
|
|
31
|
+
* PackageSource: { // PackageSource
|
|
32
32
|
* S3BucketName: "STRING_VALUE",
|
|
33
33
|
* S3Key: "STRING_VALUE",
|
|
34
34
|
* },
|
|
@@ -26,10 +26,10 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateVpcEndpointRequest
|
|
30
30
|
* VpcEndpointId: "STRING_VALUE", // required
|
|
31
|
-
* VpcOptions: {
|
|
32
|
-
* SubnetIds: [
|
|
31
|
+
* VpcOptions: { // VPCOptions
|
|
32
|
+
* SubnetIds: [ // StringList
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* SecurityGroupIds: [
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpgradeElasticsearchDomainRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* TargetVersion: "STRING_VALUE", // required
|
|
32
32
|
* PerformCheckOnly: true || false,
|
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.301.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.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",
|