aws-sdk 2.849.0 → 2.853.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/CHANGELOG.md +27 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +123 -66
- package/apis/autoscaling-2011-01-01.min.json +20 -15
- package/apis/databrew-2017-07-25.min.json +87 -77
- package/apis/detective-2018-10-26.min.json +26 -19
- package/apis/ecr-public-2020-10-30.min.json +82 -11
- package/apis/eks-2017-11-01.min.json +154 -122
- package/apis/elasticmapreduce-2009-03-31.min.json +19 -1
- package/apis/es-2015-01-01.min.json +192 -57
- package/apis/es-2015-01-01.paginators.json +5 -0
- package/apis/glue-2017-03-31.min.json +72 -69
- package/apis/imagebuilder-2019-12-02.min.json +96 -56
- package/apis/imagebuilder-2019-12-02.paginators.json +6 -0
- package/apis/iotevents-2018-07-27.min.json +102 -3
- package/apis/mediapackage-vod-2018-11-07.min.json +153 -76
- package/apis/pinpoint-2016-12-01.min.json +9 -3
- package/apis/redshift-data-2019-12-20.min.json +5 -1
- package/apis/s3-2006-03-01.examples.json +109 -109
- package/apis/s3-2006-03-01.min.json +8 -0
- package/clients/appflow.d.ts +33 -1
- package/clients/autoscaling.d.ts +16 -2
- package/clients/computeoptimizer.d.ts +5 -5
- package/clients/databrew.d.ts +26 -0
- package/clients/detective.d.ts +20 -11
- package/clients/ecrpublic.d.ts +78 -0
- package/clients/eks.d.ts +29 -4
- package/clients/emr.d.ts +80 -50
- package/clients/es.d.ts +186 -0
- package/clients/glue.d.ts +6 -4
- package/clients/imagebuilder.d.ts +63 -2
- package/clients/iotevents.d.ts +130 -28
- package/clients/lightsail.d.ts +2 -2
- package/clients/mediapackagevod.d.ts +43 -0
- package/clients/pinpoint.d.ts +24 -0
- package/clients/quicksight.d.ts +5 -5
- package/clients/redshiftdata.d.ts +16 -4
- package/clients/s3.d.ts +40 -38
- package/clients/s3control.d.ts +4 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +35 -21
- package/dist/aws-sdk.js +67 -22
- package/dist/aws-sdk.min.js +82 -82
- package/lib/core.js +1 -1
- package/lib/services/s3.js +13 -1
- package/lib/services/s3util.js +4 -2
- package/package.json +1 -1
- package/scripts/region-checker/allowlist.js +6 -6
package/clients/emr.d.ts
CHANGED
|
@@ -61,19 +61,19 @@ declare class EMR extends Service {
|
|
|
61
61
|
*/
|
|
62
62
|
createSecurityConfiguration(callback?: (err: AWSError, data: EMR.Types.CreateSecurityConfigurationOutput) => void): Request<EMR.Types.CreateSecurityConfigurationOutput, AWSError>;
|
|
63
63
|
/**
|
|
64
|
-
*
|
|
64
|
+
* Creates a new Amazon EMR Studio.
|
|
65
65
|
*/
|
|
66
66
|
createStudio(params: EMR.Types.CreateStudioInput, callback?: (err: AWSError, data: EMR.Types.CreateStudioOutput) => void): Request<EMR.Types.CreateStudioOutput, AWSError>;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* Creates a new Amazon EMR Studio.
|
|
69
69
|
*/
|
|
70
70
|
createStudio(callback?: (err: AWSError, data: EMR.Types.CreateStudioOutput) => void): Request<EMR.Types.CreateStudioOutput, AWSError>;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Maps a user or group to the Amazon EMR Studio specified by StudioId, and applies a session policy to refine Studio permissions for that user or group.
|
|
73
73
|
*/
|
|
74
74
|
createStudioSessionMapping(params: EMR.Types.CreateStudioSessionMappingInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* Maps a user or group to the Amazon EMR Studio specified by StudioId, and applies a session policy to refine Studio permissions for that user or group.
|
|
77
77
|
*/
|
|
78
78
|
createStudioSessionMapping(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
79
79
|
/**
|
|
@@ -85,19 +85,19 @@ declare class EMR extends Service {
|
|
|
85
85
|
*/
|
|
86
86
|
deleteSecurityConfiguration(callback?: (err: AWSError, data: EMR.Types.DeleteSecurityConfigurationOutput) => void): Request<EMR.Types.DeleteSecurityConfigurationOutput, AWSError>;
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
88
|
+
* Removes an Amazon EMR Studio from the Studio metadata store.
|
|
89
89
|
*/
|
|
90
90
|
deleteStudio(params: EMR.Types.DeleteStudioInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* Removes an Amazon EMR Studio from the Studio metadata store.
|
|
93
93
|
*/
|
|
94
94
|
deleteStudio(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Removes a user or group from an Amazon EMR Studio.
|
|
97
97
|
*/
|
|
98
98
|
deleteStudioSessionMapping(params: EMR.Types.DeleteStudioSessionMappingInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Removes a user or group from an Amazon EMR Studio.
|
|
101
101
|
*/
|
|
102
102
|
deleteStudioSessionMapping(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
103
103
|
/**
|
|
@@ -141,11 +141,11 @@ declare class EMR extends Service {
|
|
|
141
141
|
*/
|
|
142
142
|
describeStep(callback?: (err: AWSError, data: EMR.Types.DescribeStepOutput) => void): Request<EMR.Types.DescribeStepOutput, AWSError>;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio access URL, and so on.
|
|
145
145
|
*/
|
|
146
146
|
describeStudio(params: EMR.Types.DescribeStudioInput, callback?: (err: AWSError, data: EMR.Types.DescribeStudioOutput) => void): Request<EMR.Types.DescribeStudioOutput, AWSError>;
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
148
|
+
* Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio access URL, and so on.
|
|
149
149
|
*/
|
|
150
150
|
describeStudio(callback?: (err: AWSError, data: EMR.Types.DescribeStudioOutput) => void): Request<EMR.Types.DescribeStudioOutput, AWSError>;
|
|
151
151
|
/**
|
|
@@ -165,11 +165,11 @@ declare class EMR extends Service {
|
|
|
165
165
|
*/
|
|
166
166
|
getManagedScalingPolicy(callback?: (err: AWSError, data: EMR.Types.GetManagedScalingPolicyOutput) => void): Request<EMR.Types.GetManagedScalingPolicyOutput, AWSError>;
|
|
167
167
|
/**
|
|
168
|
-
*
|
|
168
|
+
* Fetches mapping details for the specified Amazon EMR Studio and identity (user or group).
|
|
169
169
|
*/
|
|
170
170
|
getStudioSessionMapping(params: EMR.Types.GetStudioSessionMappingInput, callback?: (err: AWSError, data: EMR.Types.GetStudioSessionMappingOutput) => void): Request<EMR.Types.GetStudioSessionMappingOutput, AWSError>;
|
|
171
171
|
/**
|
|
172
|
-
*
|
|
172
|
+
* Fetches mapping details for the specified Amazon EMR Studio and identity (user or group).
|
|
173
173
|
*/
|
|
174
174
|
getStudioSessionMapping(callback?: (err: AWSError, data: EMR.Types.GetStudioSessionMappingOutput) => void): Request<EMR.Types.GetStudioSessionMappingOutput, AWSError>;
|
|
175
175
|
/**
|
|
@@ -229,27 +229,27 @@ declare class EMR extends Service {
|
|
|
229
229
|
*/
|
|
230
230
|
listSecurityConfigurations(callback?: (err: AWSError, data: EMR.Types.ListSecurityConfigurationsOutput) => void): Request<EMR.Types.ListSecurityConfigurationsOutput, AWSError>;
|
|
231
231
|
/**
|
|
232
|
-
* Provides a list of steps for the cluster in reverse order unless you specify stepIds with the request of filter by StepStates. You can specify a maximum of
|
|
232
|
+
* Provides a list of steps for the cluster in reverse order unless you specify stepIds with the request of filter by StepStates. You can specify a maximum of 10 stepIDs.
|
|
233
233
|
*/
|
|
234
234
|
listSteps(params: EMR.Types.ListStepsInput, callback?: (err: AWSError, data: EMR.Types.ListStepsOutput) => void): Request<EMR.Types.ListStepsOutput, AWSError>;
|
|
235
235
|
/**
|
|
236
|
-
* Provides a list of steps for the cluster in reverse order unless you specify stepIds with the request of filter by StepStates. You can specify a maximum of
|
|
236
|
+
* Provides a list of steps for the cluster in reverse order unless you specify stepIds with the request of filter by StepStates. You can specify a maximum of 10 stepIDs.
|
|
237
237
|
*/
|
|
238
238
|
listSteps(callback?: (err: AWSError, data: EMR.Types.ListStepsOutput) => void): Request<EMR.Types.ListStepsOutput, AWSError>;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* Returns a list of all user or group session mappings for the Amazon EMR Studio specified by StudioId.
|
|
241
241
|
*/
|
|
242
242
|
listStudioSessionMappings(params: EMR.Types.ListStudioSessionMappingsInput, callback?: (err: AWSError, data: EMR.Types.ListStudioSessionMappingsOutput) => void): Request<EMR.Types.ListStudioSessionMappingsOutput, AWSError>;
|
|
243
243
|
/**
|
|
244
|
-
*
|
|
244
|
+
* Returns a list of all user or group session mappings for the Amazon EMR Studio specified by StudioId.
|
|
245
245
|
*/
|
|
246
246
|
listStudioSessionMappings(callback?: (err: AWSError, data: EMR.Types.ListStudioSessionMappingsOutput) => void): Request<EMR.Types.ListStudioSessionMappingsOutput, AWSError>;
|
|
247
247
|
/**
|
|
248
|
-
*
|
|
248
|
+
* Returns a list of all Amazon EMR Studios associated with the AWS account. The list includes details such as ID, Studio Access URL, and creation time for each Studio.
|
|
249
249
|
*/
|
|
250
250
|
listStudios(params: EMR.Types.ListStudiosInput, callback?: (err: AWSError, data: EMR.Types.ListStudiosOutput) => void): Request<EMR.Types.ListStudiosOutput, AWSError>;
|
|
251
251
|
/**
|
|
252
|
-
*
|
|
252
|
+
* Returns a list of all Amazon EMR Studios associated with the AWS account. The list includes details such as ID, Studio Access URL, and creation time for each Studio.
|
|
253
253
|
*/
|
|
254
254
|
listStudios(callback?: (err: AWSError, data: EMR.Types.ListStudiosOutput) => void): Request<EMR.Types.ListStudiosOutput, AWSError>;
|
|
255
255
|
/**
|
|
@@ -373,11 +373,19 @@ declare class EMR extends Service {
|
|
|
373
373
|
*/
|
|
374
374
|
terminateJobFlows(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
375
375
|
/**
|
|
376
|
-
*
|
|
376
|
+
* Updates an Amazon EMR Studio configuration, including attributes such as name, description, and subnets.
|
|
377
|
+
*/
|
|
378
|
+
updateStudio(params: EMR.Types.UpdateStudioInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
379
|
+
/**
|
|
380
|
+
* Updates an Amazon EMR Studio configuration, including attributes such as name, description, and subnets.
|
|
381
|
+
*/
|
|
382
|
+
updateStudio(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
383
|
+
/**
|
|
384
|
+
* Updates the session policy attached to the user or group for the specified Amazon EMR Studio.
|
|
377
385
|
*/
|
|
378
386
|
updateStudioSessionMapping(params: EMR.Types.UpdateStudioSessionMappingInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
379
387
|
/**
|
|
380
|
-
*
|
|
388
|
+
* Updates the session policy attached to the user or group for the specified Amazon EMR Studio.
|
|
381
389
|
*/
|
|
382
390
|
updateStudioSessionMapping(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
383
391
|
/**
|
|
@@ -936,7 +944,7 @@ declare namespace EMR {
|
|
|
936
944
|
*/
|
|
937
945
|
Name: XmlStringMaxLen256;
|
|
938
946
|
/**
|
|
939
|
-
* A detailed description of the Studio.
|
|
947
|
+
* A detailed description of the Amazon EMR Studio.
|
|
940
948
|
*/
|
|
941
949
|
Description?: XmlStringMaxLen256;
|
|
942
950
|
/**
|
|
@@ -948,7 +956,7 @@ declare namespace EMR {
|
|
|
948
956
|
*/
|
|
949
957
|
VpcId: XmlStringMaxLen256;
|
|
950
958
|
/**
|
|
951
|
-
* A list of subnet IDs to associate with the Studio. The subnets must belong to the VPC specified by VpcId. Studio users can create a Workspace in any of the specified subnets.
|
|
959
|
+
* A list of subnet IDs to associate with the Amazon EMR Studio. A Studio can have a maximum of 5 subnets. The subnets must belong to the VPC specified by VpcId. Studio users can create a Workspace in any of the specified subnets.
|
|
952
960
|
*/
|
|
953
961
|
SubnetIds: SubnetIdList;
|
|
954
962
|
/**
|
|
@@ -956,7 +964,7 @@ declare namespace EMR {
|
|
|
956
964
|
*/
|
|
957
965
|
ServiceRole: XmlString;
|
|
958
966
|
/**
|
|
959
|
-
* The IAM user role that will be assumed by users and groups logged in to
|
|
967
|
+
* The IAM user role that will be assumed by users and groups logged in to an Amazon EMR Studio. The permissions attached to this IAM role can be scoped down for each user or group using session policies.
|
|
960
968
|
*/
|
|
961
969
|
UserRole: XmlString;
|
|
962
970
|
/**
|
|
@@ -968,11 +976,11 @@ declare namespace EMR {
|
|
|
968
976
|
*/
|
|
969
977
|
EngineSecurityGroupId: XmlStringMaxLen256;
|
|
970
978
|
/**
|
|
971
|
-
* The default Amazon S3 location to back up EMR Studio Workspaces and notebook files. A Studio user can select an alternative Amazon S3 location when creating a Workspace.
|
|
979
|
+
* The default Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files. A Studio user can select an alternative Amazon S3 location when creating a Workspace.
|
|
972
980
|
*/
|
|
973
|
-
DefaultS3Location
|
|
981
|
+
DefaultS3Location: XmlString;
|
|
974
982
|
/**
|
|
975
|
-
* A list of tags to associate with the Studio. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.
|
|
983
|
+
* A list of tags to associate with the Amazon EMR Studio. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.
|
|
976
984
|
*/
|
|
977
985
|
Tags?: TagList;
|
|
978
986
|
}
|
|
@@ -1000,7 +1008,7 @@ declare namespace EMR {
|
|
|
1000
1008
|
*/
|
|
1001
1009
|
IdentityName?: XmlStringMaxLen256;
|
|
1002
1010
|
/**
|
|
1003
|
-
* Specifies whether the identity to map to the Studio is a user or a group.
|
|
1011
|
+
* Specifies whether the identity to map to the Amazon EMR Studio is a user or a group.
|
|
1004
1012
|
*/
|
|
1005
1013
|
IdentityType: IdentityType;
|
|
1006
1014
|
/**
|
|
@@ -1033,11 +1041,11 @@ declare namespace EMR {
|
|
|
1033
1041
|
*/
|
|
1034
1042
|
IdentityId?: XmlStringMaxLen256;
|
|
1035
1043
|
/**
|
|
1036
|
-
* The name of the user name or group to remove from the Studio. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.
|
|
1044
|
+
* The name of the user name or group to remove from the Amazon EMR Studio. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.
|
|
1037
1045
|
*/
|
|
1038
1046
|
IdentityName?: XmlStringMaxLen256;
|
|
1039
1047
|
/**
|
|
1040
|
-
* Specifies whether the identity to delete from the Studio is a user or a group.
|
|
1048
|
+
* Specifies whether the identity to delete from the Amazon EMR Studio is a user or a group.
|
|
1041
1049
|
*/
|
|
1042
1050
|
IdentityType: IdentityType;
|
|
1043
1051
|
}
|
|
@@ -1307,7 +1315,7 @@ declare namespace EMR {
|
|
|
1307
1315
|
}
|
|
1308
1316
|
export interface HadoopJarStepConfig {
|
|
1309
1317
|
/**
|
|
1310
|
-
* A list of Java properties that are set when the step runs. You can use these properties to pass key
|
|
1318
|
+
* A list of Java properties that are set when the step runs. You can use these properties to pass key-value pairs to your main function.
|
|
1311
1319
|
*/
|
|
1312
1320
|
Properties?: KeyValueList;
|
|
1313
1321
|
/**
|
|
@@ -1415,7 +1423,7 @@ declare namespace EMR {
|
|
|
1415
1423
|
*/
|
|
1416
1424
|
TargetOnDemandCapacity?: WholeNumber;
|
|
1417
1425
|
/**
|
|
1418
|
-
* The target capacity of Spot units for the instance fleet, which determines how many Spot
|
|
1426
|
+
* The target capacity of Spot units for the instance fleet, which determines how many Spot Instances to provision. When the instance fleet launches, Amazon EMR tries to provision Spot Instances as specified by InstanceTypeConfig. Each instance configuration has a specified WeightedCapacity. When a Spot instance is provisioned, the WeightedCapacity units count toward the target capacity. Amazon EMR provisions instances until the target capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EMR can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the target capacity is exceeded by 3 units. You can use InstanceFleet$ProvisionedSpotCapacity to determine the Spot capacity units that have been provisioned for the instance fleet. If not specified or set to 0, only On-Demand Instances are provisioned for the instance fleet. At least one of TargetSpotCapacity and TargetOnDemandCapacity should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified, and its value must be 1.
|
|
1419
1427
|
*/
|
|
1420
1428
|
TargetSpotCapacity?: WholeNumber;
|
|
1421
1429
|
/**
|
|
@@ -1441,7 +1449,7 @@ declare namespace EMR {
|
|
|
1441
1449
|
*/
|
|
1442
1450
|
Name?: XmlStringMaxLen256;
|
|
1443
1451
|
/**
|
|
1444
|
-
* The node type that the instance fleet hosts. Valid values are MASTER,CORE,and TASK.
|
|
1452
|
+
* The node type that the instance fleet hosts. Valid values are MASTER, CORE, and TASK.
|
|
1445
1453
|
*/
|
|
1446
1454
|
InstanceFleetType: InstanceFleetType;
|
|
1447
1455
|
/**
|
|
@@ -1613,7 +1621,7 @@ declare namespace EMR {
|
|
|
1613
1621
|
*/
|
|
1614
1622
|
InstanceRole: InstanceRoleType;
|
|
1615
1623
|
/**
|
|
1616
|
-
* The bid price for each EC2 Spot Instance
|
|
1624
|
+
* The bid price for each EC2 Spot Instance as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.
|
|
1617
1625
|
*/
|
|
1618
1626
|
BidPrice?: XmlStringMaxLen256;
|
|
1619
1627
|
/**
|
|
@@ -1656,7 +1664,7 @@ declare namespace EMR {
|
|
|
1656
1664
|
*/
|
|
1657
1665
|
InstanceRole: InstanceRoleType;
|
|
1658
1666
|
/**
|
|
1659
|
-
* The bid price for each EC2 Spot Instance
|
|
1667
|
+
* The bid price for each EC2 Spot Instance as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.
|
|
1660
1668
|
*/
|
|
1661
1669
|
BidPrice?: XmlStringMaxLen256;
|
|
1662
1670
|
/**
|
|
@@ -2351,7 +2359,7 @@ declare namespace EMR {
|
|
|
2351
2359
|
}
|
|
2352
2360
|
export interface ListStudioSessionMappingsOutput {
|
|
2353
2361
|
/**
|
|
2354
|
-
* A list of session mapping summary objects. Each object includes session mapping details such as creation time, identity type (user or group), and Studio ID.
|
|
2362
|
+
* A list of session mapping summary objects. Each object includes session mapping details such as creation time, identity type (user or group), and Amazon EMR Studio ID.
|
|
2355
2363
|
*/
|
|
2356
2364
|
SessionMappings?: SessionMappingSummaryList;
|
|
2357
2365
|
/**
|
|
@@ -2585,7 +2593,7 @@ declare namespace EMR {
|
|
|
2585
2593
|
*/
|
|
2586
2594
|
AutoScalingPolicy?: AutoScalingPolicyDescription;
|
|
2587
2595
|
/**
|
|
2588
|
-
* The Amazon Resource Name of the cluster.
|
|
2596
|
+
* The Amazon Resource Name (ARN) of the cluster.
|
|
2589
2597
|
*/
|
|
2590
2598
|
ClusterArn?: ArnType;
|
|
2591
2599
|
}
|
|
@@ -2685,7 +2693,7 @@ declare namespace EMR {
|
|
|
2685
2693
|
*/
|
|
2686
2694
|
SupportedProducts?: SupportedProductsList;
|
|
2687
2695
|
/**
|
|
2688
|
-
* For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and later, use Applications. A list of strings that indicates third-party software to use with the job flow that accepts a user argument list. EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action arguments. For more information, see "Launch a Job Flow on the MapR Distribution for Hadoop" in the Amazon EMR Developer Guide. Supported values are: "mapr-m3" - launch the cluster using MapR M3 Edition. "mapr-m5" - launch the cluster using MapR M5 Edition. "mapr" with the user arguments specifying "--edition,m3" or "--edition,m5" - launch the job flow using MapR M3 or M5 Edition respectively. "mapr-m7" - launch the cluster using MapR M7 Edition. "hunk" - launch the cluster with the Hunk Big Data
|
|
2696
|
+
* For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and later, use Applications. A list of strings that indicates third-party software to use with the job flow that accepts a user argument list. EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action arguments. For more information, see "Launch a Job Flow on the MapR Distribution for Hadoop" in the Amazon EMR Developer Guide. Supported values are: "mapr-m3" - launch the cluster using MapR M3 Edition. "mapr-m5" - launch the cluster using MapR M5 Edition. "mapr" with the user arguments specifying "--edition,m3" or "--edition,m5" - launch the job flow using MapR M3 or M5 Edition respectively. "mapr-m7" - launch the cluster using MapR M7 Edition. "hunk" - launch the cluster with the Hunk Big Data Analytics Platform. "hue"- launch the cluster with Hue installed. "spark" - launch the cluster with Apache Spark installed. "ganglia" - launch the cluster with the Ganglia Monitoring System installed.
|
|
2689
2697
|
*/
|
|
2690
2698
|
NewSupportedProducts?: NewSupportedProductsList;
|
|
2691
2699
|
/**
|
|
@@ -2755,11 +2763,11 @@ declare namespace EMR {
|
|
|
2755
2763
|
}
|
|
2756
2764
|
export interface RunJobFlowOutput {
|
|
2757
2765
|
/**
|
|
2758
|
-
*
|
|
2766
|
+
* A unique identifier for the job flow.
|
|
2759
2767
|
*/
|
|
2760
2768
|
JobFlowId?: XmlStringMaxLen256;
|
|
2761
2769
|
/**
|
|
2762
|
-
* The Amazon Resource Name of the cluster.
|
|
2770
|
+
* The Amazon Resource Name (ARN) of the cluster.
|
|
2763
2771
|
*/
|
|
2764
2772
|
ClusterArn?: ArnType;
|
|
2765
2773
|
}
|
|
@@ -2845,7 +2853,7 @@ declare namespace EMR {
|
|
|
2845
2853
|
*/
|
|
2846
2854
|
IdentityName?: XmlStringMaxLen256;
|
|
2847
2855
|
/**
|
|
2848
|
-
* Specifies whether the identity mapped to the Studio is a user or a group.
|
|
2856
|
+
* Specifies whether the identity mapped to the Amazon EMR Studio is a user or a group.
|
|
2849
2857
|
*/
|
|
2850
2858
|
IdentityType?: IdentityType;
|
|
2851
2859
|
/**
|
|
@@ -2875,7 +2883,7 @@ declare namespace EMR {
|
|
|
2875
2883
|
*/
|
|
2876
2884
|
IdentityName?: XmlStringMaxLen256;
|
|
2877
2885
|
/**
|
|
2878
|
-
* Specifies whether the identity mapped to the Studio is a user or a group.
|
|
2886
|
+
* Specifies whether the identity mapped to the Amazon EMR Studio is a user or a group.
|
|
2879
2887
|
*/
|
|
2880
2888
|
IdentityType?: IdentityType;
|
|
2881
2889
|
/**
|
|
@@ -2943,7 +2951,7 @@ declare namespace EMR {
|
|
|
2943
2951
|
*/
|
|
2944
2952
|
TimeoutAction: SpotProvisioningTimeoutAction;
|
|
2945
2953
|
/**
|
|
2946
|
-
* The defined duration for Spot Instances (also known as Spot blocks) in minutes. When specified, the Spot Instance does not terminate before the defined duration expires, and defined duration pricing for Spot
|
|
2954
|
+
* The defined duration for Spot Instances (also known as Spot blocks) in minutes. When specified, the Spot Instance does not terminate before the defined duration expires, and defined duration pricing for Spot Instances applies. Valid values are 60, 120, 180, 240, 300, or 360. The duration period starts as soon as a Spot Instance receives its instance ID. At the end of the duration, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates.
|
|
2947
2955
|
*/
|
|
2948
2956
|
BlockDurationMinutes?: WholeNumber;
|
|
2949
2957
|
/**
|
|
@@ -3146,27 +3154,27 @@ declare namespace EMR {
|
|
|
3146
3154
|
export type StringMap = {[key: string]: String};
|
|
3147
3155
|
export interface Studio {
|
|
3148
3156
|
/**
|
|
3149
|
-
* The ID of the EMR Studio.
|
|
3157
|
+
* The ID of the Amazon EMR Studio.
|
|
3150
3158
|
*/
|
|
3151
3159
|
StudioId?: XmlStringMaxLen256;
|
|
3152
3160
|
/**
|
|
3153
|
-
* The Amazon Resource Name (ARN) of the EMR Studio.
|
|
3161
|
+
* The Amazon Resource Name (ARN) of the Amazon EMR Studio.
|
|
3154
3162
|
*/
|
|
3155
3163
|
StudioArn?: XmlStringMaxLen256;
|
|
3156
3164
|
/**
|
|
3157
|
-
* The name of the EMR Studio.
|
|
3165
|
+
* The name of the Amazon EMR Studio.
|
|
3158
3166
|
*/
|
|
3159
3167
|
Name?: XmlStringMaxLen256;
|
|
3160
3168
|
/**
|
|
3161
|
-
* The detailed description of the EMR Studio.
|
|
3169
|
+
* The detailed description of the Amazon EMR Studio.
|
|
3162
3170
|
*/
|
|
3163
3171
|
Description?: XmlStringMaxLen256;
|
|
3164
3172
|
/**
|
|
3165
|
-
* Specifies whether the Studio authenticates users using single sign-on (SSO) or IAM.
|
|
3173
|
+
* Specifies whether the Amazon EMR Studio authenticates users using single sign-on (SSO) or IAM.
|
|
3166
3174
|
*/
|
|
3167
3175
|
AuthMode?: AuthMode;
|
|
3168
3176
|
/**
|
|
3169
|
-
* The ID of the VPC associated with the EMR Studio.
|
|
3177
|
+
* The ID of the VPC associated with the Amazon EMR Studio.
|
|
3170
3178
|
*/
|
|
3171
3179
|
VpcId?: XmlStringMaxLen256;
|
|
3172
3180
|
/**
|
|
@@ -3220,7 +3228,7 @@ declare namespace EMR {
|
|
|
3220
3228
|
*/
|
|
3221
3229
|
VpcId?: XmlStringMaxLen256;
|
|
3222
3230
|
/**
|
|
3223
|
-
* The detailed description of the EMR Studio.
|
|
3231
|
+
* The detailed description of the Amazon EMR Studio.
|
|
3224
3232
|
*/
|
|
3225
3233
|
Description?: XmlStringMaxLen256;
|
|
3226
3234
|
/**
|
|
@@ -3263,9 +3271,31 @@ declare namespace EMR {
|
|
|
3263
3271
|
JobFlowIds: XmlStringList;
|
|
3264
3272
|
}
|
|
3265
3273
|
export type Unit = "NONE"|"SECONDS"|"MICRO_SECONDS"|"MILLI_SECONDS"|"BYTES"|"KILO_BYTES"|"MEGA_BYTES"|"GIGA_BYTES"|"TERA_BYTES"|"BITS"|"KILO_BITS"|"MEGA_BITS"|"GIGA_BITS"|"TERA_BITS"|"PERCENT"|"COUNT"|"BYTES_PER_SECOND"|"KILO_BYTES_PER_SECOND"|"MEGA_BYTES_PER_SECOND"|"GIGA_BYTES_PER_SECOND"|"TERA_BYTES_PER_SECOND"|"BITS_PER_SECOND"|"KILO_BITS_PER_SECOND"|"MEGA_BITS_PER_SECOND"|"GIGA_BITS_PER_SECOND"|"TERA_BITS_PER_SECOND"|"COUNT_PER_SECOND"|string;
|
|
3274
|
+
export interface UpdateStudioInput {
|
|
3275
|
+
/**
|
|
3276
|
+
* The ID of the Amazon EMR Studio to update.
|
|
3277
|
+
*/
|
|
3278
|
+
StudioId: XmlStringMaxLen256;
|
|
3279
|
+
/**
|
|
3280
|
+
* A descriptive name for the Amazon EMR Studio.
|
|
3281
|
+
*/
|
|
3282
|
+
Name?: XmlStringMaxLen256;
|
|
3283
|
+
/**
|
|
3284
|
+
* A detailed description to assign to the Amazon EMR Studio.
|
|
3285
|
+
*/
|
|
3286
|
+
Description?: XmlStringMaxLen256;
|
|
3287
|
+
/**
|
|
3288
|
+
* A list of subnet IDs to associate with the Amazon EMR Studio. The list can include new subnet IDs, but must also include all of the subnet IDs previously associated with the Studio. The list order does not matter. A Studio can have a maximum of 5 subnets. The subnets must belong to the same VPC as the Studio.
|
|
3289
|
+
*/
|
|
3290
|
+
SubnetIds?: SubnetIdList;
|
|
3291
|
+
/**
|
|
3292
|
+
* A default Amazon S3 location to back up Workspaces and notebook files for the Amazon EMR Studio. A Studio user can select an alternative Amazon S3 location when creating a Workspace.
|
|
3293
|
+
*/
|
|
3294
|
+
DefaultS3Location?: XmlString;
|
|
3295
|
+
}
|
|
3266
3296
|
export interface UpdateStudioSessionMappingInput {
|
|
3267
3297
|
/**
|
|
3268
|
-
* The ID of the EMR Studio.
|
|
3298
|
+
* The ID of the Amazon EMR Studio.
|
|
3269
3299
|
*/
|
|
3270
3300
|
StudioId: XmlStringMaxLen256;
|
|
3271
3301
|
/**
|
package/clients/es.d.ts
CHANGED
|
@@ -103,6 +103,14 @@ declare class ES extends Service {
|
|
|
103
103
|
* Delete the package.
|
|
104
104
|
*/
|
|
105
105
|
deletePackage(callback?: (err: AWSError, data: ES.Types.DeletePackageResponse) => void): Request<ES.Types.DeletePackageResponse, AWSError>;
|
|
106
|
+
/**
|
|
107
|
+
* Provides scheduled Auto-Tune action details for the Elasticsearch domain, such as Auto-Tune action type, description, severity, and scheduled date.
|
|
108
|
+
*/
|
|
109
|
+
describeDomainAutoTunes(params: ES.Types.DescribeDomainAutoTunesRequest, callback?: (err: AWSError, data: ES.Types.DescribeDomainAutoTunesResponse) => void): Request<ES.Types.DescribeDomainAutoTunesResponse, AWSError>;
|
|
110
|
+
/**
|
|
111
|
+
* Provides scheduled Auto-Tune action details for the Elasticsearch domain, such as Auto-Tune action type, description, severity, and scheduled date.
|
|
112
|
+
*/
|
|
113
|
+
describeDomainAutoTunes(callback?: (err: AWSError, data: ES.Types.DescribeDomainAutoTunesResponse) => void): Request<ES.Types.DescribeDomainAutoTunesResponse, AWSError>;
|
|
106
114
|
/**
|
|
107
115
|
* Returns domain configuration information about the specified Elasticsearch domain, including the domain ID, domain endpoint, and domain ARN.
|
|
108
116
|
*/
|
|
@@ -430,6 +438,109 @@ declare namespace ES {
|
|
|
430
438
|
*/
|
|
431
439
|
DomainPackageDetails?: DomainPackageDetails;
|
|
432
440
|
}
|
|
441
|
+
export interface AutoTune {
|
|
442
|
+
/**
|
|
443
|
+
* Specifies Auto-Tune type. Valid value is SCHEDULED_ACTION.
|
|
444
|
+
*/
|
|
445
|
+
AutoTuneType?: AutoTuneType;
|
|
446
|
+
/**
|
|
447
|
+
* Specifies details of the Auto-Tune action. See the Developer Guide for more information.
|
|
448
|
+
*/
|
|
449
|
+
AutoTuneDetails?: AutoTuneDetails;
|
|
450
|
+
}
|
|
451
|
+
export type AutoTuneDate = Date;
|
|
452
|
+
export type AutoTuneDesiredState = "ENABLED"|"DISABLED"|string;
|
|
453
|
+
export interface AutoTuneDetails {
|
|
454
|
+
ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails;
|
|
455
|
+
}
|
|
456
|
+
export type AutoTuneList = AutoTune[];
|
|
457
|
+
export interface AutoTuneMaintenanceSchedule {
|
|
458
|
+
/**
|
|
459
|
+
* Specifies timestamp at which Auto-Tune maintenance schedule start.
|
|
460
|
+
*/
|
|
461
|
+
StartAt?: StartAt;
|
|
462
|
+
/**
|
|
463
|
+
* Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.
|
|
464
|
+
*/
|
|
465
|
+
Duration?: Duration;
|
|
466
|
+
/**
|
|
467
|
+
* Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.
|
|
468
|
+
*/
|
|
469
|
+
CronExpressionForRecurrence?: String;
|
|
470
|
+
}
|
|
471
|
+
export type AutoTuneMaintenanceScheduleList = AutoTuneMaintenanceSchedule[];
|
|
472
|
+
export interface AutoTuneOptions {
|
|
473
|
+
/**
|
|
474
|
+
* Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.
|
|
475
|
+
*/
|
|
476
|
+
DesiredState?: AutoTuneDesiredState;
|
|
477
|
+
/**
|
|
478
|
+
* Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.
|
|
479
|
+
*/
|
|
480
|
+
RollbackOnDisable?: RollbackOnDisable;
|
|
481
|
+
/**
|
|
482
|
+
* Specifies list of maitenance schedules. See the Developer Guide for more information.
|
|
483
|
+
*/
|
|
484
|
+
MaintenanceSchedules?: AutoTuneMaintenanceScheduleList;
|
|
485
|
+
}
|
|
486
|
+
export interface AutoTuneOptionsInput {
|
|
487
|
+
/**
|
|
488
|
+
* Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.
|
|
489
|
+
*/
|
|
490
|
+
DesiredState?: AutoTuneDesiredState;
|
|
491
|
+
/**
|
|
492
|
+
* Specifies list of maitenance schedules. See the Developer Guide for more information.
|
|
493
|
+
*/
|
|
494
|
+
MaintenanceSchedules?: AutoTuneMaintenanceScheduleList;
|
|
495
|
+
}
|
|
496
|
+
export interface AutoTuneOptionsOutput {
|
|
497
|
+
/**
|
|
498
|
+
* Specifies the AutoTuneState for the Elasticsearch domain.
|
|
499
|
+
*/
|
|
500
|
+
State?: AutoTuneState;
|
|
501
|
+
/**
|
|
502
|
+
* Specifies the error message while enabling or disabling the Auto-Tune.
|
|
503
|
+
*/
|
|
504
|
+
ErrorMessage?: String;
|
|
505
|
+
}
|
|
506
|
+
export interface AutoTuneOptionsStatus {
|
|
507
|
+
/**
|
|
508
|
+
* Specifies Auto-Tune options for the specified Elasticsearch domain.
|
|
509
|
+
*/
|
|
510
|
+
Options?: AutoTuneOptions;
|
|
511
|
+
/**
|
|
512
|
+
* Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.
|
|
513
|
+
*/
|
|
514
|
+
Status?: AutoTuneStatus;
|
|
515
|
+
}
|
|
516
|
+
export type AutoTuneState = "ENABLED"|"DISABLED"|"ENABLE_IN_PROGRESS"|"DISABLE_IN_PROGRESS"|"DISABLED_AND_ROLLBACK_SCHEDULED"|"DISABLED_AND_ROLLBACK_IN_PROGRESS"|"DISABLED_AND_ROLLBACK_COMPLETE"|"DISABLED_AND_ROLLBACK_ERROR"|"ERROR"|string;
|
|
517
|
+
export interface AutoTuneStatus {
|
|
518
|
+
/**
|
|
519
|
+
* Timestamp which tells Auto-Tune options creation date .
|
|
520
|
+
*/
|
|
521
|
+
CreationDate: UpdateTimestamp;
|
|
522
|
+
/**
|
|
523
|
+
* Timestamp which tells Auto-Tune options last updated time.
|
|
524
|
+
*/
|
|
525
|
+
UpdateDate: UpdateTimestamp;
|
|
526
|
+
/**
|
|
527
|
+
* Specifies the Auto-Tune options latest version.
|
|
528
|
+
*/
|
|
529
|
+
UpdateVersion?: UIntValue;
|
|
530
|
+
/**
|
|
531
|
+
* Specifies the AutoTuneState for the Elasticsearch domain.
|
|
532
|
+
*/
|
|
533
|
+
State: AutoTuneState;
|
|
534
|
+
/**
|
|
535
|
+
* Specifies the error message while enabling or disabling the Auto-Tune options.
|
|
536
|
+
*/
|
|
537
|
+
ErrorMessage?: String;
|
|
538
|
+
/**
|
|
539
|
+
* Indicates whether the Elasticsearch domain is being deleted.
|
|
540
|
+
*/
|
|
541
|
+
PendingDeletion?: Boolean;
|
|
542
|
+
}
|
|
543
|
+
export type AutoTuneType = "SCHEDULED_ACTION"|string;
|
|
433
544
|
export type BackendRole = string;
|
|
434
545
|
export type Boolean = boolean;
|
|
435
546
|
export interface CancelElasticsearchServiceSoftwareUpdateRequest {
|
|
@@ -540,6 +651,10 @@ declare namespace ES {
|
|
|
540
651
|
* Specifies advanced security options.
|
|
541
652
|
*/
|
|
542
653
|
AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
|
|
654
|
+
/**
|
|
655
|
+
* Specifies Auto-Tune options.
|
|
656
|
+
*/
|
|
657
|
+
AutoTuneOptions?: AutoTuneOptionsInput;
|
|
543
658
|
}
|
|
544
659
|
export interface CreateElasticsearchDomainResponse {
|
|
545
660
|
/**
|
|
@@ -660,6 +775,30 @@ declare namespace ES {
|
|
|
660
775
|
}
|
|
661
776
|
export type DeploymentCloseDateTimeStamp = Date;
|
|
662
777
|
export type DeploymentStatus = "PENDING_UPDATE"|"IN_PROGRESS"|"COMPLETED"|"NOT_ELIGIBLE"|"ELIGIBLE"|string;
|
|
778
|
+
export interface DescribeDomainAutoTunesRequest {
|
|
779
|
+
/**
|
|
780
|
+
* Specifies the domain name for which you want Auto-Tune action details.
|
|
781
|
+
*/
|
|
782
|
+
DomainName: DomainName;
|
|
783
|
+
/**
|
|
784
|
+
* Set this value to limit the number of results returned. If not specified, defaults to 100.
|
|
785
|
+
*/
|
|
786
|
+
MaxResults?: MaxResults;
|
|
787
|
+
/**
|
|
788
|
+
* NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
|
|
789
|
+
*/
|
|
790
|
+
NextToken?: NextToken;
|
|
791
|
+
}
|
|
792
|
+
export interface DescribeDomainAutoTunesResponse {
|
|
793
|
+
/**
|
|
794
|
+
* Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.
|
|
795
|
+
*/
|
|
796
|
+
AutoTunes?: AutoTuneList;
|
|
797
|
+
/**
|
|
798
|
+
* Specifies an identifier to allow retrieval of paginated results.
|
|
799
|
+
*/
|
|
800
|
+
NextToken?: NextToken;
|
|
801
|
+
}
|
|
663
802
|
export interface DescribeElasticsearchDomainConfigRequest {
|
|
664
803
|
/**
|
|
665
804
|
* The Elasticsearch domain that you want to get information about.
|
|
@@ -946,6 +1085,17 @@ declare namespace ES {
|
|
|
946
1085
|
export type DomainPackageDetailsList = DomainPackageDetails[];
|
|
947
1086
|
export type DomainPackageStatus = "ASSOCIATING"|"ASSOCIATION_FAILED"|"ACTIVE"|"DISSOCIATING"|"DISSOCIATION_FAILED"|string;
|
|
948
1087
|
export type Double = number;
|
|
1088
|
+
export interface Duration {
|
|
1089
|
+
/**
|
|
1090
|
+
* Integer to specify the value of a maintenance schedule duration. See the Developer Guide for more information.
|
|
1091
|
+
*/
|
|
1092
|
+
Value?: DurationValue;
|
|
1093
|
+
/**
|
|
1094
|
+
* Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the Developer Guide for more information.
|
|
1095
|
+
*/
|
|
1096
|
+
Unit?: TimeUnit;
|
|
1097
|
+
}
|
|
1098
|
+
export type DurationValue = number;
|
|
949
1099
|
export interface EBSOptions {
|
|
950
1100
|
/**
|
|
951
1101
|
* Specifies whether EBS-based storage is enabled.
|
|
@@ -1081,6 +1231,10 @@ declare namespace ES {
|
|
|
1081
1231
|
* Specifies AdvancedSecurityOptions for the domain.
|
|
1082
1232
|
*/
|
|
1083
1233
|
AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus;
|
|
1234
|
+
/**
|
|
1235
|
+
* Specifies AutoTuneOptions for the domain.
|
|
1236
|
+
*/
|
|
1237
|
+
AutoTuneOptions?: AutoTuneOptionsStatus;
|
|
1084
1238
|
}
|
|
1085
1239
|
export interface ElasticsearchDomainStatus {
|
|
1086
1240
|
/**
|
|
@@ -1172,6 +1326,10 @@ declare namespace ES {
|
|
|
1172
1326
|
* The current status of the Elasticsearch domain's advanced security options.
|
|
1173
1327
|
*/
|
|
1174
1328
|
AdvancedSecurityOptions?: AdvancedSecurityOptions;
|
|
1329
|
+
/**
|
|
1330
|
+
* The current status of the Elasticsearch domain's Auto-Tune options.
|
|
1331
|
+
*/
|
|
1332
|
+
AutoTuneOptions?: AutoTuneOptionsOutput;
|
|
1175
1333
|
}
|
|
1176
1334
|
export type ElasticsearchDomainStatusList = ElasticsearchDomainStatus[];
|
|
1177
1335
|
export type ElasticsearchInstanceTypeList = ESPartitionInstanceType[];
|
|
@@ -1782,6 +1940,7 @@ declare namespace ES {
|
|
|
1782
1940
|
export type ReservedElasticsearchInstanceOfferingList = ReservedElasticsearchInstanceOffering[];
|
|
1783
1941
|
export type ReservedElasticsearchInstancePaymentOption = "ALL_UPFRONT"|"PARTIAL_UPFRONT"|"NO_UPFRONT"|string;
|
|
1784
1942
|
export type RoleArn = string;
|
|
1943
|
+
export type RollbackOnDisable = "NO_ROLLBACK"|"DEFAULT_ROLLBACK"|string;
|
|
1785
1944
|
export type S3BucketName = string;
|
|
1786
1945
|
export type S3Key = string;
|
|
1787
1946
|
export type SAMLEntityId = string;
|
|
@@ -1848,6 +2007,27 @@ declare namespace ES {
|
|
|
1848
2007
|
*/
|
|
1849
2008
|
SessionTimeoutMinutes?: IntegerClass;
|
|
1850
2009
|
}
|
|
2010
|
+
export type ScheduledAutoTuneActionType = "JVM_HEAP_SIZE_TUNING"|"JVM_YOUNG_GEN_TUNING"|string;
|
|
2011
|
+
export type ScheduledAutoTuneDescription = string;
|
|
2012
|
+
export interface ScheduledAutoTuneDetails {
|
|
2013
|
+
/**
|
|
2014
|
+
* Specifies timestamp for the Auto-Tune action scheduled for the domain.
|
|
2015
|
+
*/
|
|
2016
|
+
Date?: AutoTuneDate;
|
|
2017
|
+
/**
|
|
2018
|
+
* Specifies Auto-Tune action type. Valid values are JVM_HEAP_SIZE_TUNING and JVM_YOUNG_GEN_TUNING.
|
|
2019
|
+
*/
|
|
2020
|
+
ActionType?: ScheduledAutoTuneActionType;
|
|
2021
|
+
/**
|
|
2022
|
+
* Specifies Auto-Tune action description.
|
|
2023
|
+
*/
|
|
2024
|
+
Action?: ScheduledAutoTuneDescription;
|
|
2025
|
+
/**
|
|
2026
|
+
* Specifies Auto-Tune action severity. Valid values are LOW, MEDIUM and HIGH.
|
|
2027
|
+
*/
|
|
2028
|
+
Severity?: ScheduledAutoTuneSeverityType;
|
|
2029
|
+
}
|
|
2030
|
+
export type ScheduledAutoTuneSeverityType = "LOW"|"MEDIUM"|"HIGH"|string;
|
|
1851
2031
|
export interface ServiceSoftwareOptions {
|
|
1852
2032
|
/**
|
|
1853
2033
|
* The current service software version that is present on the domain.
|
|
@@ -1899,6 +2079,7 @@ declare namespace ES {
|
|
|
1899
2079
|
*/
|
|
1900
2080
|
Status: OptionStatus;
|
|
1901
2081
|
}
|
|
2082
|
+
export type StartAt = Date;
|
|
1902
2083
|
export interface StartElasticsearchServiceSoftwareUpdateRequest {
|
|
1903
2084
|
/**
|
|
1904
2085
|
* The name of the domain that you want to update to the latest service software.
|
|
@@ -1950,6 +2131,7 @@ declare namespace ES {
|
|
|
1950
2131
|
export type TagKey = string;
|
|
1951
2132
|
export type TagList = Tag[];
|
|
1952
2133
|
export type TagValue = string;
|
|
2134
|
+
export type TimeUnit = "HOURS"|string;
|
|
1953
2135
|
export type UIntValue = number;
|
|
1954
2136
|
export interface UpdateElasticsearchDomainConfigRequest {
|
|
1955
2137
|
/**
|
|
@@ -2004,6 +2186,10 @@ declare namespace ES {
|
|
|
2004
2186
|
* Specifies the Encryption At Rest Options.
|
|
2005
2187
|
*/
|
|
2006
2188
|
EncryptionAtRestOptions?: EncryptionAtRestOptions;
|
|
2189
|
+
/**
|
|
2190
|
+
* Specifies Auto-Tune options.
|
|
2191
|
+
*/
|
|
2192
|
+
AutoTuneOptions?: AutoTuneOptions;
|
|
2007
2193
|
}
|
|
2008
2194
|
export interface UpdateElasticsearchDomainConfigResponse {
|
|
2009
2195
|
/**
|