aws-sdk 2.1400.0 → 2.1402.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 +16 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +19 -0
- package/apis/ec2-2016-11-15.min.json +1389 -1370
- package/apis/elasticmapreduce-2009-03-31.min.json +56 -3
- package/apis/elasticmapreduce-2009-03-31.paginators.json +4 -0
- package/apis/inspector2-2020-06-08.min.json +529 -150
- package/apis/mediaconvert-2017-08-29.min.json +103 -93
- package/apis/mq-2017-11-27.min.json +132 -32
- package/apis/redshift-2012-12-01.min.json +232 -125
- package/apis/redshift-2012-12-01.paginators.json +6 -0
- package/apis/sagemaker-2017-07-24.min.json +995 -973
- package/apis/transfer-2018-11-05.min.json +44 -31
- package/clients/appflow.d.ts +32 -0
- package/clients/configservice.d.ts +1 -1
- package/clients/dynamodb.d.ts +2 -2
- package/clients/ec2.d.ts +32 -20
- package/clients/emr.d.ts +77 -1
- package/clients/inspector2.d.ts +417 -9
- package/clients/mediaconvert.d.ts +11 -2
- package/clients/mq.d.ts +136 -30
- package/clients/redshift.d.ts +189 -11
- package/clients/sagemaker.d.ts +45 -13
- package/clients/transfer.d.ts +13 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +1690 -1501
- package/dist/aws-sdk.min.js +74 -74
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/emr.d.ts
CHANGED
@@ -284,6 +284,14 @@ declare class EMR extends Service {
|
|
284
284
|
* Returns a list of all Amazon EMR Studios associated with the Amazon Web Services account. The list includes details such as ID, Studio Access URL, and creation time for each Studio.
|
285
285
|
*/
|
286
286
|
listStudios(callback?: (err: AWSError, data: EMR.Types.ListStudiosOutput) => void): Request<EMR.Types.ListStudiosOutput, AWSError>;
|
287
|
+
/**
|
288
|
+
* A list of the instance types that Amazon EMR supports. You can filter the list by Amazon Web Services Region and Amazon EMR release.
|
289
|
+
*/
|
290
|
+
listSupportedInstanceTypes(params: EMR.Types.ListSupportedInstanceTypesInput, callback?: (err: AWSError, data: EMR.Types.ListSupportedInstanceTypesOutput) => void): Request<EMR.Types.ListSupportedInstanceTypesOutput, AWSError>;
|
291
|
+
/**
|
292
|
+
* A list of the instance types that Amazon EMR supports. You can filter the list by Amazon Web Services Region and Amazon EMR release.
|
293
|
+
*/
|
294
|
+
listSupportedInstanceTypes(callback?: (err: AWSError, data: EMR.Types.ListSupportedInstanceTypesOutput) => void): Request<EMR.Types.ListSupportedInstanceTypesOutput, AWSError>;
|
287
295
|
/**
|
288
296
|
* Modifies the number of steps that can be executed concurrently for the cluster specified using ClusterID.
|
289
297
|
*/
|
@@ -1398,6 +1406,7 @@ declare namespace EMR {
|
|
1398
1406
|
*/
|
1399
1407
|
LogFile?: String;
|
1400
1408
|
}
|
1409
|
+
export type Float = number;
|
1401
1410
|
export interface GetAutoTerminationPolicyInput {
|
1402
1411
|
/**
|
1403
1412
|
* Specifies the ID of the Amazon EMR cluster for which the auto-termination policy will be fetched.
|
@@ -2623,6 +2632,26 @@ declare namespace EMR {
|
|
2623
2632
|
*/
|
2624
2633
|
Marker?: Marker;
|
2625
2634
|
}
|
2635
|
+
export interface ListSupportedInstanceTypesInput {
|
2636
|
+
/**
|
2637
|
+
* The Amazon EMR release label determines the versions of open-source application packages that Amazon EMR has installed on the cluster. Release labels are in the format emr-x.x.x, where x.x.x is an Amazon EMR release number such as emr-6.10.0. For more information about Amazon EMR releases and their included application versions and features, see the Amazon EMR Release Guide .
|
2638
|
+
*/
|
2639
|
+
ReleaseLabel: String;
|
2640
|
+
/**
|
2641
|
+
* The pagination token that marks the next set of results to retrieve.
|
2642
|
+
*/
|
2643
|
+
Marker?: String;
|
2644
|
+
}
|
2645
|
+
export interface ListSupportedInstanceTypesOutput {
|
2646
|
+
/**
|
2647
|
+
* The list of instance types that the release specified in ListSupportedInstanceTypesInput$ReleaseLabel supports, filtered by Amazon Web Services Region.
|
2648
|
+
*/
|
2649
|
+
SupportedInstanceTypes?: SupportedInstanceTypesList;
|
2650
|
+
/**
|
2651
|
+
* The pagination token that marks the next set of results to retrieve.
|
2652
|
+
*/
|
2653
|
+
Marker?: String;
|
2654
|
+
}
|
2626
2655
|
export type Long = number;
|
2627
2656
|
export interface ManagedScalingPolicy {
|
2628
2657
|
/**
|
@@ -3341,7 +3370,7 @@ declare namespace EMR {
|
|
3341
3370
|
*/
|
3342
3371
|
BlockDurationMinutes?: WholeNumber;
|
3343
3372
|
/**
|
3344
|
-
*
|
3373
|
+
* Specifies the strategy to use in launching Spot Instance fleets. Currently, the only option is capacity-optimized (the default), which launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.
|
3345
3374
|
*/
|
3346
3375
|
AllocationStrategy?: SpotProvisioningAllocationStrategy;
|
3347
3376
|
}
|
@@ -3666,6 +3695,53 @@ declare namespace EMR {
|
|
3666
3695
|
}
|
3667
3696
|
export type StudioSummaryList = StudioSummary[];
|
3668
3697
|
export type SubnetIdList = String[];
|
3698
|
+
export interface SupportedInstanceType {
|
3699
|
+
/**
|
3700
|
+
* The Amazon EC2 instance type, for example m5.xlarge, of the SupportedInstanceType.
|
3701
|
+
*/
|
3702
|
+
Type?: String;
|
3703
|
+
/**
|
3704
|
+
* The amount of memory that is available to Amazon EMR from the SupportedInstanceType. The kernel and hypervisor software consume some memory, so this value might be lower than the overall memory for the instance type.
|
3705
|
+
*/
|
3706
|
+
MemoryGB?: Float;
|
3707
|
+
/**
|
3708
|
+
* StorageGB represents the storage capacity of the SupportedInstanceType. This value is 0 for Amazon EBS-only instance types.
|
3709
|
+
*/
|
3710
|
+
StorageGB?: Integer;
|
3711
|
+
/**
|
3712
|
+
* The number of vCPUs available for the SupportedInstanceType.
|
3713
|
+
*/
|
3714
|
+
VCPU?: Integer;
|
3715
|
+
/**
|
3716
|
+
* Indicates whether the SupportedInstanceType only supports 64-bit architecture.
|
3717
|
+
*/
|
3718
|
+
Is64BitsOnly?: Boolean;
|
3719
|
+
/**
|
3720
|
+
* The Amazon EC2 family and generation for the SupportedInstanceType.
|
3721
|
+
*/
|
3722
|
+
InstanceFamilyId?: String;
|
3723
|
+
/**
|
3724
|
+
* Indicates whether the SupportedInstanceType supports Amazon EBS optimization.
|
3725
|
+
*/
|
3726
|
+
EbsOptimizedAvailable?: Boolean;
|
3727
|
+
/**
|
3728
|
+
* Indicates whether the SupportedInstanceType uses Amazon EBS optimization by default.
|
3729
|
+
*/
|
3730
|
+
EbsOptimizedByDefault?: Boolean;
|
3731
|
+
/**
|
3732
|
+
* Number of disks for the SupportedInstanceType. This value is 0 for Amazon EBS-only instance types.
|
3733
|
+
*/
|
3734
|
+
NumberOfDisks?: Integer;
|
3735
|
+
/**
|
3736
|
+
* Indicates whether the SupportedInstanceType only supports Amazon EBS.
|
3737
|
+
*/
|
3738
|
+
EbsStorageOnly?: Boolean;
|
3739
|
+
/**
|
3740
|
+
* The CPU architecture, for example X86_64 or AARCH64.
|
3741
|
+
*/
|
3742
|
+
Architecture?: String;
|
3743
|
+
}
|
3744
|
+
export type SupportedInstanceTypesList = SupportedInstanceType[];
|
3669
3745
|
export interface SupportedProductConfig {
|
3670
3746
|
/**
|
3671
3747
|
* The name of the product configuration.
|