aws-sdk 2.977.0 → 2.981.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 +20 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +27 -1
- package/apis/ec2-2016-11-15.min.json +736 -728
- package/apis/elasticmapreduce-2009-03-31.min.json +84 -21
- package/apis/firehose-2015-08-04.min.json +104 -79
- package/apis/iot-2015-05-28.min.json +481 -232
- package/apis/iot-2015-05-28.paginators.json +12 -0
- package/apis/kms-2014-11-01.examples.json +100 -94
- package/apis/kms-2014-11-01.min.json +54 -34
- package/apis/mediatailor-2018-04-23.min.json +144 -116
- package/apis/s3-2006-03-01.examples.json +162 -162
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +68 -0
- package/clients/cloudformation.d.ts +116 -80
- package/clients/cloudtrail.d.ts +72 -72
- package/clients/codebuild.d.ts +3 -3
- package/clients/computeoptimizer.d.ts +1 -1
- package/clients/configservice.d.ts +323 -323
- package/clients/ec2.d.ts +30 -13
- package/clients/emr.d.ts +78 -15
- package/clients/firehose.d.ts +39 -10
- package/clients/iot.d.ts +829 -506
- package/clients/kms.d.ts +293 -280
- package/clients/mediatailor.d.ts +45 -8
- package/clients/memorydb.d.ts +2 -2
- package/clients/polly.d.ts +2 -2
- package/clients/s3.d.ts +6 -6
- package/clients/servicecatalogappregistry.d.ts +81 -3
- package/clients/sqs.d.ts +4 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -16
- package/dist/aws-sdk.js +1501 -1098
- package/dist/aws-sdk.min.js +85 -85
- package/dist/xml2js.js +2 -3
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/ec2.d.ts
CHANGED
|
@@ -8757,10 +8757,6 @@ declare namespace EC2 {
|
|
|
8757
8757
|
VpcPeeringConnection?: VpcPeeringConnection;
|
|
8758
8758
|
}
|
|
8759
8759
|
export interface CreateVpcRequest {
|
|
8760
|
-
/**
|
|
8761
|
-
* The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.
|
|
8762
|
-
*/
|
|
8763
|
-
CidrBlock: String;
|
|
8764
8760
|
/**
|
|
8765
8761
|
* Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block.
|
|
8766
8762
|
*/
|
|
@@ -8789,6 +8785,10 @@ declare namespace EC2 {
|
|
|
8789
8785
|
* The tags to assign to the VPC.
|
|
8790
8786
|
*/
|
|
8791
8787
|
TagSpecifications?: TagSpecificationList;
|
|
8788
|
+
/**
|
|
8789
|
+
* The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.
|
|
8790
|
+
*/
|
|
8791
|
+
CidrBlock: String;
|
|
8792
8792
|
}
|
|
8793
8793
|
export interface CreateVpcResult {
|
|
8794
8794
|
/**
|
|
@@ -17287,6 +17287,10 @@ declare namespace EC2 {
|
|
|
17287
17287
|
* The usage operation value. For more information, see AMI billing information fields in the Amazon Elastic Compute Cloud User Guide.
|
|
17288
17288
|
*/
|
|
17289
17289
|
UsageOperation?: String;
|
|
17290
|
+
/**
|
|
17291
|
+
* The boot mode of the virtual machine.
|
|
17292
|
+
*/
|
|
17293
|
+
BootMode?: BootModeValues;
|
|
17290
17294
|
}
|
|
17291
17295
|
export interface ImportImageResult {
|
|
17292
17296
|
/**
|
|
@@ -17419,6 +17423,10 @@ declare namespace EC2 {
|
|
|
17419
17423
|
* The usage operation value.
|
|
17420
17424
|
*/
|
|
17421
17425
|
UsageOperation?: String;
|
|
17426
|
+
/**
|
|
17427
|
+
* The boot mode of the virtual machine.
|
|
17428
|
+
*/
|
|
17429
|
+
BootMode?: BootModeValues;
|
|
17422
17430
|
}
|
|
17423
17431
|
export type ImportImageTaskId = string;
|
|
17424
17432
|
export type ImportImageTaskList = ImportImageTask[];
|
|
@@ -19450,6 +19458,10 @@ declare namespace EC2 {
|
|
|
19450
19458
|
* This parameter enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled. If you specify a value of disabled, you will not be able to access your instance metadata.
|
|
19451
19459
|
*/
|
|
19452
19460
|
HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState;
|
|
19461
|
+
/**
|
|
19462
|
+
* Enables or disables the IPv6 endpoint for the instance metadata service. Default: disabled
|
|
19463
|
+
*/
|
|
19464
|
+
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6;
|
|
19453
19465
|
}
|
|
19454
19466
|
export interface LaunchTemplateInstanceMetadataOptionsRequest {
|
|
19455
19467
|
/**
|
|
@@ -19464,8 +19476,13 @@ declare namespace EC2 {
|
|
|
19464
19476
|
* This parameter enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled. If you specify a value of disabled, you will not be able to access your instance metadata.
|
|
19465
19477
|
*/
|
|
19466
19478
|
HttpEndpoint?: LaunchTemplateInstanceMetadataEndpointState;
|
|
19479
|
+
/**
|
|
19480
|
+
* Enables or disables the IPv6 endpoint for the instance metadata service. Default: disabled
|
|
19481
|
+
*/
|
|
19482
|
+
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6;
|
|
19467
19483
|
}
|
|
19468
19484
|
export type LaunchTemplateInstanceMetadataOptionsState = "pending"|"applied"|string;
|
|
19485
|
+
export type LaunchTemplateInstanceMetadataProtocolIpv6 = "disabled"|"enabled"|string;
|
|
19469
19486
|
export interface LaunchTemplateInstanceNetworkInterfaceSpecification {
|
|
19470
19487
|
/**
|
|
19471
19488
|
* Indicates whether to associate a Carrier IP address with eth0 for a new network interface. Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.
|
|
@@ -19528,19 +19545,19 @@ declare namespace EC2 {
|
|
|
19528
19545
|
*/
|
|
19529
19546
|
NetworkCardIndex?: Integer;
|
|
19530
19547
|
/**
|
|
19531
|
-
* One or more IPv4
|
|
19548
|
+
* One or more IPv4 prefixes assigned to the network interface.
|
|
19532
19549
|
*/
|
|
19533
19550
|
Ipv4Prefixes?: Ipv4PrefixListResponse;
|
|
19534
19551
|
/**
|
|
19535
|
-
* The number of IPv4
|
|
19552
|
+
* The number of IPv4 prefixes that Amazon Web Services automatically assigned to the network interface.
|
|
19536
19553
|
*/
|
|
19537
19554
|
Ipv4PrefixCount?: Integer;
|
|
19538
19555
|
/**
|
|
19539
|
-
* One or more IPv6
|
|
19556
|
+
* One or more IPv6 prefixes assigned to the network interface.
|
|
19540
19557
|
*/
|
|
19541
19558
|
Ipv6Prefixes?: Ipv6PrefixListResponse;
|
|
19542
19559
|
/**
|
|
19543
|
-
* The number of IPv6
|
|
19560
|
+
* The number of IPv6 prefixes that Amazon Web Services automatically assigned to the network interface.
|
|
19544
19561
|
*/
|
|
19545
19562
|
Ipv6PrefixCount?: Integer;
|
|
19546
19563
|
}
|
|
@@ -19607,19 +19624,19 @@ declare namespace EC2 {
|
|
|
19607
19624
|
*/
|
|
19608
19625
|
NetworkCardIndex?: Integer;
|
|
19609
19626
|
/**
|
|
19610
|
-
* One or more IPv4
|
|
19627
|
+
* One or more IPv4 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.
|
|
19611
19628
|
*/
|
|
19612
19629
|
Ipv4Prefixes?: Ipv4PrefixList;
|
|
19613
19630
|
/**
|
|
19614
|
-
* The number of IPv4
|
|
19631
|
+
* The number of IPv4 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.
|
|
19615
19632
|
*/
|
|
19616
19633
|
Ipv4PrefixCount?: Integer;
|
|
19617
19634
|
/**
|
|
19618
|
-
* One or more IPv6
|
|
19635
|
+
* One or more IPv6 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.
|
|
19619
19636
|
*/
|
|
19620
19637
|
Ipv6Prefixes?: Ipv6PrefixList;
|
|
19621
19638
|
/**
|
|
19622
|
-
* The number of IPv6
|
|
19639
|
+
* The number of IPv6 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.
|
|
19623
19640
|
*/
|
|
19624
19641
|
Ipv6PrefixCount?: Integer;
|
|
19625
19642
|
}
|
|
@@ -23777,7 +23794,7 @@ declare namespace EC2 {
|
|
|
23777
23794
|
*/
|
|
23778
23795
|
InstanceInitiatedShutdownBehavior?: ShutdownBehavior;
|
|
23779
23796
|
/**
|
|
23780
|
-
* The
|
|
23797
|
+
* The user data to make available to the instance. You must provide base64-encoded text. User data is limited to 16 KB. For more information, see Running Commands on Your Linux Instance at Launch (Linux) or Adding User Data (Windows). If you are creating the launch template for use with Batch, the user data must be provided in the MIME multi-part archive format. For more information, see Amazon EC2 user data in launch templates in the Batch User Guide.
|
|
23781
23798
|
*/
|
|
23782
23799
|
UserData?: String;
|
|
23783
23800
|
/**
|
package/clients/emr.d.ts
CHANGED
|
@@ -157,11 +157,19 @@ declare class EMR extends Service {
|
|
|
157
157
|
*/
|
|
158
158
|
describeStudio(callback?: (err: AWSError, data: EMR.Types.DescribeStudioOutput) => void): Request<EMR.Types.DescribeStudioOutput, AWSError>;
|
|
159
159
|
/**
|
|
160
|
-
* Returns the
|
|
160
|
+
* Returns the auto-termination policy for an Amazon EMR cluster.
|
|
161
|
+
*/
|
|
162
|
+
getAutoTerminationPolicy(params: EMR.Types.GetAutoTerminationPolicyInput, callback?: (err: AWSError, data: EMR.Types.GetAutoTerminationPolicyOutput) => void): Request<EMR.Types.GetAutoTerminationPolicyOutput, AWSError>;
|
|
163
|
+
/**
|
|
164
|
+
* Returns the auto-termination policy for an Amazon EMR cluster.
|
|
165
|
+
*/
|
|
166
|
+
getAutoTerminationPolicy(callback?: (err: AWSError, data: EMR.Types.GetAutoTerminationPolicyOutput) => void): Request<EMR.Types.GetAutoTerminationPolicyOutput, AWSError>;
|
|
167
|
+
/**
|
|
168
|
+
* Returns the Amazon EMR block public access configuration for your Amazon Web Services account in the current Region. For more information see Configure Block Public Access for Amazon EMR in the Amazon EMR Management Guide.
|
|
161
169
|
*/
|
|
162
170
|
getBlockPublicAccessConfiguration(params: EMR.Types.GetBlockPublicAccessConfigurationInput, callback?: (err: AWSError, data: EMR.Types.GetBlockPublicAccessConfigurationOutput) => void): Request<EMR.Types.GetBlockPublicAccessConfigurationOutput, AWSError>;
|
|
163
171
|
/**
|
|
164
|
-
* Returns the Amazon EMR block public access configuration for your account in the current Region. For more information see Configure Block Public Access for Amazon EMR in the Amazon EMR Management Guide.
|
|
172
|
+
* Returns the Amazon EMR block public access configuration for your Amazon Web Services account in the current Region. For more information see Configure Block Public Access for Amazon EMR in the Amazon EMR Management Guide.
|
|
165
173
|
*/
|
|
166
174
|
getBlockPublicAccessConfiguration(callback?: (err: AWSError, data: EMR.Types.GetBlockPublicAccessConfigurationOutput) => void): Request<EMR.Types.GetBlockPublicAccessConfigurationOutput, AWSError>;
|
|
167
175
|
/**
|
|
@@ -189,11 +197,11 @@ declare class EMR extends Service {
|
|
|
189
197
|
*/
|
|
190
198
|
listBootstrapActions(callback?: (err: AWSError, data: EMR.Types.ListBootstrapActionsOutput) => void): Request<EMR.Types.ListBootstrapActionsOutput, AWSError>;
|
|
191
199
|
/**
|
|
192
|
-
* Provides the status of all clusters visible to this account. Allows you to filter the list of clusters based on certain criteria; for example, filtering by cluster creation date and time or by status. This call returns a maximum of 50 clusters in unsorted order per call, but returns a marker to track the paging of the cluster list across multiple ListClusters calls.
|
|
200
|
+
* Provides the status of all clusters visible to this Amazon Web Services account. Allows you to filter the list of clusters based on certain criteria; for example, filtering by cluster creation date and time or by status. This call returns a maximum of 50 clusters in unsorted order per call, but returns a marker to track the paging of the cluster list across multiple ListClusters calls.
|
|
193
201
|
*/
|
|
194
202
|
listClusters(params: EMR.Types.ListClustersInput, callback?: (err: AWSError, data: EMR.Types.ListClustersOutput) => void): Request<EMR.Types.ListClustersOutput, AWSError>;
|
|
195
203
|
/**
|
|
196
|
-
* Provides the status of all clusters visible to this account. Allows you to filter the list of clusters based on certain criteria; for example, filtering by cluster creation date and time or by status. This call returns a maximum of 50 clusters in unsorted order per call, but returns a marker to track the paging of the cluster list across multiple ListClusters calls.
|
|
204
|
+
* Provides the status of all clusters visible to this Amazon Web Services account. Allows you to filter the list of clusters based on certain criteria; for example, filtering by cluster creation date and time or by status. This call returns a maximum of 50 clusters in unsorted order per call, but returns a marker to track the paging of the cluster list across multiple ListClusters calls.
|
|
197
205
|
*/
|
|
198
206
|
listClusters(callback?: (err: AWSError, data: EMR.Types.ListClustersOutput) => void): Request<EMR.Types.ListClustersOutput, AWSError>;
|
|
199
207
|
/**
|
|
@@ -261,11 +269,11 @@ declare class EMR extends Service {
|
|
|
261
269
|
*/
|
|
262
270
|
listStudioSessionMappings(callback?: (err: AWSError, data: EMR.Types.ListStudioSessionMappingsOutput) => void): Request<EMR.Types.ListStudioSessionMappingsOutput, AWSError>;
|
|
263
271
|
/**
|
|
264
|
-
* Returns a list of all Amazon EMR Studios associated with the account. The list includes details such as ID, Studio Access URL, and creation time for each Studio.
|
|
272
|
+
* 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.
|
|
265
273
|
*/
|
|
266
274
|
listStudios(params: EMR.Types.ListStudiosInput, callback?: (err: AWSError, data: EMR.Types.ListStudiosOutput) => void): Request<EMR.Types.ListStudiosOutput, AWSError>;
|
|
267
275
|
/**
|
|
268
|
-
* Returns a list of all Amazon EMR Studios associated with the account. The list includes details such as ID, Studio Access URL, and creation time for each Studio.
|
|
276
|
+
* 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.
|
|
269
277
|
*/
|
|
270
278
|
listStudios(callback?: (err: AWSError, data: EMR.Types.ListStudiosOutput) => void): Request<EMR.Types.ListStudiosOutput, AWSError>;
|
|
271
279
|
/**
|
|
@@ -301,11 +309,19 @@ declare class EMR extends Service {
|
|
|
301
309
|
*/
|
|
302
310
|
putAutoScalingPolicy(callback?: (err: AWSError, data: EMR.Types.PutAutoScalingPolicyOutput) => void): Request<EMR.Types.PutAutoScalingPolicyOutput, AWSError>;
|
|
303
311
|
/**
|
|
304
|
-
* Creates or updates an Amazon EMR
|
|
312
|
+
* Creates or updates an auto-termination policy for an Amazon EMR cluster. An auto-termination policy defines the amount of idle time in seconds after which a cluster automatically terminates. For alternative cluster termination options, see Control cluster termination.
|
|
313
|
+
*/
|
|
314
|
+
putAutoTerminationPolicy(params: EMR.Types.PutAutoTerminationPolicyInput, callback?: (err: AWSError, data: EMR.Types.PutAutoTerminationPolicyOutput) => void): Request<EMR.Types.PutAutoTerminationPolicyOutput, AWSError>;
|
|
315
|
+
/**
|
|
316
|
+
* Creates or updates an auto-termination policy for an Amazon EMR cluster. An auto-termination policy defines the amount of idle time in seconds after which a cluster automatically terminates. For alternative cluster termination options, see Control cluster termination.
|
|
317
|
+
*/
|
|
318
|
+
putAutoTerminationPolicy(callback?: (err: AWSError, data: EMR.Types.PutAutoTerminationPolicyOutput) => void): Request<EMR.Types.PutAutoTerminationPolicyOutput, AWSError>;
|
|
319
|
+
/**
|
|
320
|
+
* Creates or updates an Amazon EMR block public access configuration for your Amazon Web Services account in the current Region. For more information see Configure Block Public Access for Amazon EMR in the Amazon EMR Management Guide.
|
|
305
321
|
*/
|
|
306
322
|
putBlockPublicAccessConfiguration(params: EMR.Types.PutBlockPublicAccessConfigurationInput, callback?: (err: AWSError, data: EMR.Types.PutBlockPublicAccessConfigurationOutput) => void): Request<EMR.Types.PutBlockPublicAccessConfigurationOutput, AWSError>;
|
|
307
323
|
/**
|
|
308
|
-
* Creates or updates an Amazon EMR block public access configuration for your account in the current Region. For more information see Configure Block Public Access for Amazon EMR in the Amazon EMR Management Guide.
|
|
324
|
+
* Creates or updates an Amazon EMR block public access configuration for your Amazon Web Services account in the current Region. For more information see Configure Block Public Access for Amazon EMR in the Amazon EMR Management Guide.
|
|
309
325
|
*/
|
|
310
326
|
putBlockPublicAccessConfiguration(callback?: (err: AWSError, data: EMR.Types.PutBlockPublicAccessConfigurationOutput) => void): Request<EMR.Types.PutBlockPublicAccessConfigurationOutput, AWSError>;
|
|
311
327
|
/**
|
|
@@ -324,6 +340,14 @@ declare class EMR extends Service {
|
|
|
324
340
|
* Removes an automatic scaling policy from a specified instance group within an EMR cluster.
|
|
325
341
|
*/
|
|
326
342
|
removeAutoScalingPolicy(callback?: (err: AWSError, data: EMR.Types.RemoveAutoScalingPolicyOutput) => void): Request<EMR.Types.RemoveAutoScalingPolicyOutput, AWSError>;
|
|
343
|
+
/**
|
|
344
|
+
* Removes an auto-termination policy from an Amazon EMR cluster.
|
|
345
|
+
*/
|
|
346
|
+
removeAutoTerminationPolicy(params: EMR.Types.RemoveAutoTerminationPolicyInput, callback?: (err: AWSError, data: EMR.Types.RemoveAutoTerminationPolicyOutput) => void): Request<EMR.Types.RemoveAutoTerminationPolicyOutput, AWSError>;
|
|
347
|
+
/**
|
|
348
|
+
* Removes an auto-termination policy from an Amazon EMR cluster.
|
|
349
|
+
*/
|
|
350
|
+
removeAutoTerminationPolicy(callback?: (err: AWSError, data: EMR.Types.RemoveAutoTerminationPolicyOutput) => void): Request<EMR.Types.RemoveAutoTerminationPolicyOutput, AWSError>;
|
|
327
351
|
/**
|
|
328
352
|
* Removes a managed scaling policy from a specified EMR cluster.
|
|
329
353
|
*/
|
|
@@ -357,11 +381,11 @@ declare class EMR extends Service {
|
|
|
357
381
|
*/
|
|
358
382
|
setTerminationProtection(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
359
383
|
/**
|
|
360
|
-
* Sets the Cluster$VisibleToAllUsers value for an EMR cluster. When true, IAM principals in the account can perform EMR cluster actions that their IAM policies allow. When false, only the IAM principal that created the cluster and the account root user can perform EMR actions on the cluster, regardless of IAM permissions policies attached to other IAM principals. This action works on running clusters. When you create a cluster, use the RunJobFlowInput$VisibleToAllUsers parameter. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
384
|
+
* Sets the Cluster$VisibleToAllUsers value for an EMR cluster. When true, IAM principals in the Amazon Web Services account can perform EMR cluster actions that their IAM policies allow. When false, only the IAM principal that created the cluster and the Amazon Web Services account root user can perform EMR actions on the cluster, regardless of IAM permissions policies attached to other IAM principals. This action works on running clusters. When you create a cluster, use the RunJobFlowInput$VisibleToAllUsers parameter. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
361
385
|
*/
|
|
362
386
|
setVisibleToAllUsers(params: EMR.Types.SetVisibleToAllUsersInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
363
387
|
/**
|
|
364
|
-
* Sets the Cluster$VisibleToAllUsers value for an EMR cluster. When true, IAM principals in the account can perform EMR cluster actions that their IAM policies allow. When false, only the IAM principal that created the cluster and the account root user can perform EMR actions on the cluster, regardless of IAM permissions policies attached to other IAM principals. This action works on running clusters. When you create a cluster, use the RunJobFlowInput$VisibleToAllUsers parameter. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
388
|
+
* Sets the Cluster$VisibleToAllUsers value for an EMR cluster. When true, IAM principals in the Amazon Web Services account can perform EMR cluster actions that their IAM policies allow. When false, only the IAM principal that created the cluster and the Amazon Web Services account root user can perform EMR actions on the cluster, regardless of IAM permissions policies attached to other IAM principals. This action works on running clusters. When you create a cluster, use the RunJobFlowInput$VisibleToAllUsers parameter. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
365
389
|
*/
|
|
366
390
|
setVisibleToAllUsers(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
367
391
|
/**
|
|
@@ -575,6 +599,12 @@ declare namespace EMR {
|
|
|
575
599
|
*/
|
|
576
600
|
StateChangeReason?: AutoScalingPolicyStateChangeReason;
|
|
577
601
|
}
|
|
602
|
+
export interface AutoTerminationPolicy {
|
|
603
|
+
/**
|
|
604
|
+
* Specifies the amount of idle time in seconds after which the cluster automatically terminates. You can specify a minimum of 60 seconds and a maximum of 604800 seconds (seven days).
|
|
605
|
+
*/
|
|
606
|
+
IdleTimeout?: Long;
|
|
607
|
+
}
|
|
578
608
|
export interface BlockPublicAccessConfiguration {
|
|
579
609
|
/**
|
|
580
610
|
* Indicates whether Amazon EMR block public access is enabled (true) or disabled (false). By default, the value is false for accounts that have created EMR clusters before July 2019. For accounts created after this, the default is true.
|
|
@@ -739,7 +769,7 @@ declare namespace EMR {
|
|
|
739
769
|
*/
|
|
740
770
|
TerminationProtected?: Boolean;
|
|
741
771
|
/**
|
|
742
|
-
* Indicates whether the cluster is visible to IAM principals in the account associated with the cluster. When true, IAM principals in the account can perform EMR cluster actions on the cluster that their IAM policies allow. When false, only the IAM principal that created the cluster and the account root user can perform EMR actions, regardless of IAM permissions policies attached to other IAM principals. The default value is true if a value is not provided when creating a cluster using the EMR API RunJobFlow command, the CLI create-cluster command, or the Management Console. IAM principals that are allowed to perform actions on the cluster can use the SetVisibleToAllUsers action to change the value on a running cluster. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
772
|
+
* Indicates whether the cluster is visible to IAM principals in the Amazon Web Services account associated with the cluster. When true, IAM principals in the Amazon Web Services account can perform EMR cluster actions on the cluster that their IAM policies allow. When false, only the IAM principal that created the cluster and the Amazon Web Services account root user can perform EMR actions, regardless of IAM permissions policies attached to other IAM principals. The default value is true if a value is not provided when creating a cluster using the EMR API RunJobFlow command, the CLI create-cluster command, or the Amazon Web Services Management Console. IAM principals that are allowed to perform actions on the cluster can use the SetVisibleToAllUsers action to change the value on a running cluster. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
743
773
|
*/
|
|
744
774
|
VisibleToAllUsers?: Boolean;
|
|
745
775
|
/**
|
|
@@ -1309,6 +1339,18 @@ declare namespace EMR {
|
|
|
1309
1339
|
*/
|
|
1310
1340
|
LogFile?: String;
|
|
1311
1341
|
}
|
|
1342
|
+
export interface GetAutoTerminationPolicyInput {
|
|
1343
|
+
/**
|
|
1344
|
+
* Specifies the ID of the Amazon EMR cluster for which the auto-termination policy will be fetched.
|
|
1345
|
+
*/
|
|
1346
|
+
ClusterId: ClusterId;
|
|
1347
|
+
}
|
|
1348
|
+
export interface GetAutoTerminationPolicyOutput {
|
|
1349
|
+
/**
|
|
1350
|
+
* Specifies the auto-termination policy that is attached to an Amazon EMR cluster.
|
|
1351
|
+
*/
|
|
1352
|
+
AutoTerminationPolicy?: AutoTerminationPolicy;
|
|
1353
|
+
}
|
|
1312
1354
|
export interface GetBlockPublicAccessConfigurationInput {
|
|
1313
1355
|
}
|
|
1314
1356
|
export interface GetBlockPublicAccessConfigurationOutput {
|
|
@@ -1997,7 +2039,7 @@ declare namespace EMR {
|
|
|
1997
2039
|
*/
|
|
1998
2040
|
SupportedProducts?: SupportedProductsList;
|
|
1999
2041
|
/**
|
|
2000
|
-
* Indicates whether the cluster is visible to IAM principals in the account associated with the cluster. When true, IAM principals in the account can perform EMR cluster actions that their IAM policies allow. When false, only the IAM principal that created the cluster and the account root user can perform EMR actions, regardless of IAM permissions policies attached to other IAM principals. The default value is true if a value is not provided when creating a cluster using the EMR API RunJobFlow command, the CLI create-cluster command, or the Management Console. IAM principals that are authorized to perform actions on the cluster can use the SetVisibleToAllUsers action to change the value on a running cluster. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
2042
|
+
* Indicates whether the cluster is visible to IAM principals in the Amazon Web Services account associated with the cluster. When true, IAM principals in the Amazon Web Services account can perform EMR cluster actions that their IAM policies allow. When false, only the IAM principal that created the cluster and the Amazon Web Services account root user can perform EMR actions, regardless of IAM permissions policies attached to other IAM principals. The default value is true if a value is not provided when creating a cluster using the EMR API RunJobFlow command, the CLI create-cluster command, or the Amazon Web Services Management Console. IAM principals that are authorized to perform actions on the cluster can use the SetVisibleToAllUsers action to change the value on a running cluster. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
2001
2043
|
*/
|
|
2002
2044
|
VisibleToAllUsers?: Boolean;
|
|
2003
2045
|
/**
|
|
@@ -2369,7 +2411,7 @@ declare namespace EMR {
|
|
|
2369
2411
|
*/
|
|
2370
2412
|
Filters?: ReleaseLabelFilter;
|
|
2371
2413
|
/**
|
|
2372
|
-
* Specifies the next page of results. If NextToken is not specified, which is usually the case for the first request of ListReleaseLabels, the first page of results are determined by other filtering parameters or by the latest version. The ListReleaseLabels request fails if the identity (account ID) and all filtering parameters are different from the original request, or if the NextToken is expired or tampered with.
|
|
2414
|
+
* Specifies the next page of results. If NextToken is not specified, which is usually the case for the first request of ListReleaseLabels, the first page of results are determined by other filtering parameters or by the latest version. The ListReleaseLabels request fails if the identity (Amazon Web Services account ID) and all filtering parameters are different from the original request, or if the NextToken is expired or tampered with.
|
|
2373
2415
|
*/
|
|
2374
2416
|
NextToken?: String;
|
|
2375
2417
|
/**
|
|
@@ -2706,6 +2748,18 @@ declare namespace EMR {
|
|
|
2706
2748
|
*/
|
|
2707
2749
|
ClusterArn?: ArnType;
|
|
2708
2750
|
}
|
|
2751
|
+
export interface PutAutoTerminationPolicyInput {
|
|
2752
|
+
/**
|
|
2753
|
+
* Specifies the ID of the Amazon EMR cluster to which the auto-termination policy will be attached.
|
|
2754
|
+
*/
|
|
2755
|
+
ClusterId: ClusterId;
|
|
2756
|
+
/**
|
|
2757
|
+
* Specifies the auto-termination policy to attach to the cluster.
|
|
2758
|
+
*/
|
|
2759
|
+
AutoTerminationPolicy?: AutoTerminationPolicy;
|
|
2760
|
+
}
|
|
2761
|
+
export interface PutAutoTerminationPolicyOutput {
|
|
2762
|
+
}
|
|
2709
2763
|
export interface PutBlockPublicAccessConfigurationInput {
|
|
2710
2764
|
/**
|
|
2711
2765
|
* A configuration for Amazon EMR block public access. The configuration applies to all clusters created in your account for the current Region. The configuration specifies whether block public access is enabled. If block public access is enabled, security groups associated with the cluster cannot have rules that allow inbound traffic from 0.0.0.0/0 or ::/0 on a port, unless the port is specified as an exception using PermittedPublicSecurityGroupRuleRanges in the BlockPublicAccessConfiguration. By default, Port 22 (SSH) is an exception, and public access is allowed on this port. You can change this by updating BlockPublicSecurityGroupRules to remove the exception. For accounts that created clusters in a Region before November 25, 2019, block public access is disabled by default in that Region. To use this feature, you must manually enable and configure it. For accounts that did not create an EMR cluster in a Region before this date, block public access is enabled by default in that Region.
|
|
@@ -2748,6 +2802,14 @@ declare namespace EMR {
|
|
|
2748
2802
|
}
|
|
2749
2803
|
export interface RemoveAutoScalingPolicyOutput {
|
|
2750
2804
|
}
|
|
2805
|
+
export interface RemoveAutoTerminationPolicyInput {
|
|
2806
|
+
/**
|
|
2807
|
+
* Specifies the ID of the Amazon EMR cluster from which the auto-termination policy will be removed.
|
|
2808
|
+
*/
|
|
2809
|
+
ClusterId: ClusterId;
|
|
2810
|
+
}
|
|
2811
|
+
export interface RemoveAutoTerminationPolicyOutput {
|
|
2812
|
+
}
|
|
2751
2813
|
export interface RemoveManagedScalingPolicyInput {
|
|
2752
2814
|
/**
|
|
2753
2815
|
* Specifies the ID of the cluster from which the managed scaling policy will be removed.
|
|
@@ -2824,7 +2886,7 @@ declare namespace EMR {
|
|
|
2824
2886
|
*/
|
|
2825
2887
|
Configurations?: ConfigurationList;
|
|
2826
2888
|
/**
|
|
2827
|
-
* Set this value to true so that IAM principals in the account associated with the cluster can perform EMR actions on the cluster that their IAM policies allow. This value defaults to true for clusters created using the EMR API or the CLI create-cluster command. When set to false, only the IAM principal that created the cluster and the account root user can perform EMR actions for the cluster, regardless of the IAM permissions policies attached to other IAM principals. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
2889
|
+
* Set this value to true so that IAM principals in the Amazon Web Services account associated with the cluster can perform EMR actions on the cluster that their IAM policies allow. This value defaults to true for clusters created using the EMR API or the CLI create-cluster command. When set to false, only the IAM principal that created the cluster and the Amazon Web Services account root user can perform EMR actions for the cluster, regardless of the IAM permissions policies attached to other IAM principals. For more information, see Understanding the EMR Cluster VisibleToAllUsers Setting in the Amazon EMRManagement Guide.
|
|
2828
2890
|
*/
|
|
2829
2891
|
VisibleToAllUsers?: Boolean;
|
|
2830
2892
|
/**
|
|
@@ -2879,6 +2941,7 @@ declare namespace EMR {
|
|
|
2879
2941
|
* The specified placement group configuration for an Amazon EMR cluster.
|
|
2880
2942
|
*/
|
|
2881
2943
|
PlacementGroupConfigs?: PlacementGroupConfigList;
|
|
2944
|
+
AutoTerminationPolicy?: AutoTerminationPolicy;
|
|
2882
2945
|
}
|
|
2883
2946
|
export interface RunJobFlowOutput {
|
|
2884
2947
|
/**
|
|
@@ -3031,7 +3094,7 @@ declare namespace EMR {
|
|
|
3031
3094
|
*/
|
|
3032
3095
|
JobFlowIds: XmlStringList;
|
|
3033
3096
|
/**
|
|
3034
|
-
* A value of true indicates that an IAM principal in the account can perform EMR actions on the cluster that the IAM policies attached to the principal allow. A value of false indicates that only the IAM principal that created the cluster and the Amazon Web Services root user can perform EMR actions on the cluster.
|
|
3097
|
+
* A value of true indicates that an IAM principal in the Amazon Web Services account can perform EMR actions on the cluster that the IAM policies attached to the principal allow. A value of false indicates that only the IAM principal that created the cluster and the Amazon Web Services root user can perform EMR actions on the cluster.
|
|
3035
3098
|
*/
|
|
3036
3099
|
VisibleToAllUsers: Boolean;
|
|
3037
3100
|
}
|
package/clients/firehose.d.ts
CHANGED
|
@@ -52,19 +52,19 @@ declare class Firehose extends Service {
|
|
|
52
52
|
*/
|
|
53
53
|
listTagsForDeliveryStream(callback?: (err: AWSError, data: Firehose.Types.ListTagsForDeliveryStreamOutput) => void): Request<Firehose.Types.ListTagsForDeliveryStreamOutput, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To write multiple data records into a delivery stream, use PutRecordBatch. Applications using these operations are referred to as producers. By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use PutRecord and PutRecordBatch, the limits are an aggregate across these two operations for each delivery stream. For more information about limits and how to request an increase, see Amazon Kinesis Data Firehose Limits. You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000
|
|
55
|
+
* Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To write multiple data records into a delivery stream, use PutRecordBatch. Applications using these operations are referred to as producers. By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use PutRecord and PutRecordBatch, the limits are an aggregate across these two operations for each delivery stream. For more information about limits and how to request an increase, see Amazon Kinesis Data Firehose Limits. You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000 KiB in size, and any kind of data. For example, it can be a segment from a log file, geographic location data, website clickstream data, and so on. Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (\n) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination. The PutRecord operation returns a RecordId, which is a unique string assigned to each record. Producer applications can use this ID for purposes such as auditability and investigation. If the PutRecord operation throws a ServiceUnavailableException, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream. Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it tries to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available. Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.
|
|
56
56
|
*/
|
|
57
57
|
putRecord(params: Firehose.Types.PutRecordInput, callback?: (err: AWSError, data: Firehose.Types.PutRecordOutput) => void): Request<Firehose.Types.PutRecordOutput, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To write multiple data records into a delivery stream, use PutRecordBatch. Applications using these operations are referred to as producers. By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use PutRecord and PutRecordBatch, the limits are an aggregate across these two operations for each delivery stream. For more information about limits and how to request an increase, see Amazon Kinesis Data Firehose Limits. You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000
|
|
59
|
+
* Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To write multiple data records into a delivery stream, use PutRecordBatch. Applications using these operations are referred to as producers. By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use PutRecord and PutRecordBatch, the limits are an aggregate across these two operations for each delivery stream. For more information about limits and how to request an increase, see Amazon Kinesis Data Firehose Limits. You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000 KiB in size, and any kind of data. For example, it can be a segment from a log file, geographic location data, website clickstream data, and so on. Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (\n) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination. The PutRecord operation returns a RecordId, which is a unique string assigned to each record. Producer applications can use this ID for purposes such as auditability and investigation. If the PutRecord operation throws a ServiceUnavailableException, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream. Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it tries to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available. Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.
|
|
60
60
|
*/
|
|
61
61
|
putRecord(callback?: (err: AWSError, data: Firehose.Types.PutRecordOutput) => void): Request<Firehose.Types.PutRecordOutput, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Writes multiple data records into a delivery stream in a single call, which can achieve higher throughput per producer than when writing single records. To write single data records into a delivery stream, use PutRecord. Applications using these operations are referred to as producers. For information about service quota, see Amazon Kinesis Data Firehose Quota. Each PutRecordBatch request supports up to 500 records. Each record in the request can be as large as 1,000 KB (before
|
|
63
|
+
* Writes multiple data records into a delivery stream in a single call, which can achieve higher throughput per producer than when writing single records. To write single data records into a delivery stream, use PutRecord. Applications using these operations are referred to as producers. For information about service quota, see Amazon Kinesis Data Firehose Quota. Each PutRecordBatch request supports up to 500 records. Each record in the request can be as large as 1,000 KB (before base64 encoding), up to a limit of 4 MB for the entire request. These limits cannot be changed. You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000 KB in size, and any kind of data. For example, it could be a segment from a log file, geographic location data, website clickstream data, and so on. Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (\n) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination. The PutRecordBatch response includes a count of failed records, FailedPutCount, and an array of responses, RequestResponses. Even if the PutRecordBatch call succeeds, the value of FailedPutCount may be greater than 0, indicating that there are records for which the operation didn't succeed. Each entry in the RequestResponses array provides additional information about the processed record. It directly correlates with a record in the request array using the same ordering, from the top to the bottom. The response array always includes the same number of records as the request array. RequestResponses includes both successfully and unsuccessfully processed records. Kinesis Data Firehose tries to process all records in each PutRecordBatch request. A single record failure does not stop the processing of subsequent records. A successfully processed record includes a RecordId value, which is unique for the record. An unsuccessfully processed record includes ErrorCode and ErrorMessage values. ErrorCode reflects the type of error, and is one of the following values: ServiceUnavailableException or InternalFailure. ErrorMessage provides more detailed information about the error. If there is an internal server error or a timeout, the write might have completed or it might have failed. If FailedPutCount is greater than 0, retry the request, resending only those records that might have failed processing. This minimizes the possible duplicate records and also reduces the total bytes sent (and corresponding charges). We recommend that you handle any duplicates at the destination. If PutRecordBatch throws ServiceUnavailableException, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream. Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it attempts to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available. Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.
|
|
64
64
|
*/
|
|
65
65
|
putRecordBatch(params: Firehose.Types.PutRecordBatchInput, callback?: (err: AWSError, data: Firehose.Types.PutRecordBatchOutput) => void): Request<Firehose.Types.PutRecordBatchOutput, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Writes multiple data records into a delivery stream in a single call, which can achieve higher throughput per producer than when writing single records. To write single data records into a delivery stream, use PutRecord. Applications using these operations are referred to as producers. For information about service quota, see Amazon Kinesis Data Firehose Quota. Each PutRecordBatch request supports up to 500 records. Each record in the request can be as large as 1,000 KB (before
|
|
67
|
+
* Writes multiple data records into a delivery stream in a single call, which can achieve higher throughput per producer than when writing single records. To write single data records into a delivery stream, use PutRecord. Applications using these operations are referred to as producers. For information about service quota, see Amazon Kinesis Data Firehose Quota. Each PutRecordBatch request supports up to 500 records. Each record in the request can be as large as 1,000 KB (before base64 encoding), up to a limit of 4 MB for the entire request. These limits cannot be changed. You must specify the name of the delivery stream and the data record when using PutRecord. The data record consists of a data blob that can be up to 1,000 KB in size, and any kind of data. For example, it could be a segment from a log file, geographic location data, website clickstream data, and so on. Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (\n) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination. The PutRecordBatch response includes a count of failed records, FailedPutCount, and an array of responses, RequestResponses. Even if the PutRecordBatch call succeeds, the value of FailedPutCount may be greater than 0, indicating that there are records for which the operation didn't succeed. Each entry in the RequestResponses array provides additional information about the processed record. It directly correlates with a record in the request array using the same ordering, from the top to the bottom. The response array always includes the same number of records as the request array. RequestResponses includes both successfully and unsuccessfully processed records. Kinesis Data Firehose tries to process all records in each PutRecordBatch request. A single record failure does not stop the processing of subsequent records. A successfully processed record includes a RecordId value, which is unique for the record. An unsuccessfully processed record includes ErrorCode and ErrorMessage values. ErrorCode reflects the type of error, and is one of the following values: ServiceUnavailableException or InternalFailure. ErrorMessage provides more detailed information about the error. If there is an internal server error or a timeout, the write might have completed or it might have failed. If FailedPutCount is greater than 0, retry the request, resending only those records that might have failed processing. This minimizes the possible duplicate records and also reduces the total bytes sent (and corresponding charges). We recommend that you handle any duplicates at the destination. If PutRecordBatch throws ServiceUnavailableException, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream. Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it attempts to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available. Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.
|
|
68
68
|
*/
|
|
69
69
|
putRecordBatch(callback?: (err: AWSError, data: Firehose.Types.PutRecordBatchOutput) => void): Request<Firehose.Types.PutRecordBatchOutput, AWSError>;
|
|
70
70
|
/**
|
|
@@ -391,6 +391,16 @@ declare namespace Firehose {
|
|
|
391
391
|
}
|
|
392
392
|
export type DestinationDescriptionList = DestinationDescription[];
|
|
393
393
|
export type DestinationId = string;
|
|
394
|
+
export interface DynamicPartitioningConfiguration {
|
|
395
|
+
/**
|
|
396
|
+
* The retry behavior in case Kinesis Data Firehose is unable to deliver data to an Amazon S3 prefix.
|
|
397
|
+
*/
|
|
398
|
+
RetryOptions?: RetryOptions;
|
|
399
|
+
/**
|
|
400
|
+
* Specifies that the dynamic partitioning is enabled for this Kinesis Data Firehose delivery stream.
|
|
401
|
+
*/
|
|
402
|
+
Enabled?: BooleanObject;
|
|
403
|
+
}
|
|
394
404
|
export interface ElasticsearchBufferingHints {
|
|
395
405
|
/**
|
|
396
406
|
* Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).
|
|
@@ -632,6 +642,10 @@ declare namespace Firehose {
|
|
|
632
642
|
* The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3.
|
|
633
643
|
*/
|
|
634
644
|
DataFormatConversionConfiguration?: DataFormatConversionConfiguration;
|
|
645
|
+
/**
|
|
646
|
+
* The configuration of the dynamic partitioning mechanism that creates smaller data sets from the streaming data by partitioning it based on partition keys. Currently, dynamic partitioning is only supported for Amazon S3 destinations. For more information, see https://docs.aws.amazon.com/firehose/latest/dev/dynamic-partitioning.html
|
|
647
|
+
*/
|
|
648
|
+
DynamicPartitioningConfiguration?: DynamicPartitioningConfiguration;
|
|
635
649
|
}
|
|
636
650
|
export interface ExtendedS3DestinationDescription {
|
|
637
651
|
/**
|
|
@@ -682,6 +696,10 @@ declare namespace Firehose {
|
|
|
682
696
|
* The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3.
|
|
683
697
|
*/
|
|
684
698
|
DataFormatConversionConfiguration?: DataFormatConversionConfiguration;
|
|
699
|
+
/**
|
|
700
|
+
* The configuration of the dynamic partitioning mechanism that creates smaller data sets from the streaming data by partitioning it based on partition keys. Currently, dynamic partitioning is only supported for Amazon S3 destinations. For more information, see https://docs.aws.amazon.com/firehose/latest/dev/dynamic-partitioning.html
|
|
701
|
+
*/
|
|
702
|
+
DynamicPartitioningConfiguration?: DynamicPartitioningConfiguration;
|
|
685
703
|
}
|
|
686
704
|
export interface ExtendedS3DestinationUpdate {
|
|
687
705
|
/**
|
|
@@ -732,6 +750,10 @@ declare namespace Firehose {
|
|
|
732
750
|
* The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3.
|
|
733
751
|
*/
|
|
734
752
|
DataFormatConversionConfiguration?: DataFormatConversionConfiguration;
|
|
753
|
+
/**
|
|
754
|
+
* The configuration of the dynamic partitioning mechanism that creates smaller data sets from the streaming data by partitioning it based on partition keys. Currently, dynamic partitioning is only supported for Amazon S3 destinations. For more information, see https://docs.aws.amazon.com/firehose/latest/dev/dynamic-partitioning.html
|
|
755
|
+
*/
|
|
756
|
+
DynamicPartitioningConfiguration?: DynamicPartitioningConfiguration;
|
|
735
757
|
}
|
|
736
758
|
export interface FailureDescription {
|
|
737
759
|
/**
|
|
@@ -781,7 +803,7 @@ declare namespace Firehose {
|
|
|
781
803
|
export type HttpEndpointCommonAttributesList = HttpEndpointCommonAttribute[];
|
|
782
804
|
export interface HttpEndpointConfiguration {
|
|
783
805
|
/**
|
|
784
|
-
* The URL of the HTTP endpoint selected as the destination.
|
|
806
|
+
* The URL of the HTTP endpoint selected as the destination. If you choose an HTTP endpoint as your destination, review and follow the instructions in the Appendix - HTTP Endpoint Delivery Request and Response Specifications.
|
|
785
807
|
*/
|
|
786
808
|
Url: HttpEndpointUrl;
|
|
787
809
|
/**
|
|
@@ -1137,9 +1159,9 @@ declare namespace Firehose {
|
|
|
1137
1159
|
ParameterValue: ProcessorParameterValue;
|
|
1138
1160
|
}
|
|
1139
1161
|
export type ProcessorParameterList = ProcessorParameter[];
|
|
1140
|
-
export type ProcessorParameterName = "LambdaArn"|"NumberOfRetries"|"RoleArn"|"BufferSizeInMBs"|"BufferIntervalInSeconds"|string;
|
|
1162
|
+
export type ProcessorParameterName = "LambdaArn"|"NumberOfRetries"|"MetadataExtractionQuery"|"JsonParsingEngine"|"RoleArn"|"BufferSizeInMBs"|"BufferIntervalInSeconds"|"SubRecordType"|"Delimiter"|string;
|
|
1141
1163
|
export type ProcessorParameterValue = string;
|
|
1142
|
-
export type ProcessorType = "Lambda"|string;
|
|
1164
|
+
export type ProcessorType = "RecordDeAggregation"|"Lambda"|"MetadataExtraction"|"AppendDelimiterToRecord"|string;
|
|
1143
1165
|
export type Proportion = number;
|
|
1144
1166
|
export interface PutRecordBatchInput {
|
|
1145
1167
|
/**
|
|
@@ -1350,6 +1372,13 @@ declare namespace Firehose {
|
|
|
1350
1372
|
DurationInSeconds?: RedshiftRetryDurationInSeconds;
|
|
1351
1373
|
}
|
|
1352
1374
|
export type RedshiftS3BackupMode = "Disabled"|"Enabled"|string;
|
|
1375
|
+
export type RetryDurationInSeconds = number;
|
|
1376
|
+
export interface RetryOptions {
|
|
1377
|
+
/**
|
|
1378
|
+
* The period of time during which Kinesis Data Firehose retries to deliver data to the specified Amazon S3 prefix.
|
|
1379
|
+
*/
|
|
1380
|
+
DurationInSeconds?: RetryDurationInSeconds;
|
|
1381
|
+
}
|
|
1353
1382
|
export type RoleARN = string;
|
|
1354
1383
|
export type S3BackupMode = "Disabled"|"Enabled"|string;
|
|
1355
1384
|
export interface S3DestinationConfiguration {
|
|
@@ -1456,7 +1485,7 @@ declare namespace Firehose {
|
|
|
1456
1485
|
}
|
|
1457
1486
|
export interface SchemaConfiguration {
|
|
1458
1487
|
/**
|
|
1459
|
-
* The role that Kinesis Data Firehose can use to access AWS Glue. This role must be in the same account you use for Kinesis Data Firehose. Cross-account roles aren't allowed.
|
|
1488
|
+
* The role that Kinesis Data Firehose can use to access AWS Glue. This role must be in the same account you use for Kinesis Data Firehose. Cross-account roles aren't allowed. If the SchemaConfiguration request parameter is used as part of invoking the CreateDeliveryStream API, then the RoleARN property is required and its value must be specified.
|
|
1460
1489
|
*/
|
|
1461
1490
|
RoleARN?: NonEmptyStringWithoutWhitespace;
|
|
1462
1491
|
/**
|
|
@@ -1464,11 +1493,11 @@ declare namespace Firehose {
|
|
|
1464
1493
|
*/
|
|
1465
1494
|
CatalogId?: NonEmptyStringWithoutWhitespace;
|
|
1466
1495
|
/**
|
|
1467
|
-
* Specifies the name of the AWS Glue database that contains the schema for the output data.
|
|
1496
|
+
* Specifies the name of the AWS Glue database that contains the schema for the output data. If the SchemaConfiguration request parameter is used as part of invoking the CreateDeliveryStream API, then the DatabaseName property is required and its value must be specified.
|
|
1468
1497
|
*/
|
|
1469
1498
|
DatabaseName?: NonEmptyStringWithoutWhitespace;
|
|
1470
1499
|
/**
|
|
1471
|
-
* Specifies the AWS Glue table that contains the column information that constitutes your data schema.
|
|
1500
|
+
* Specifies the AWS Glue table that contains the column information that constitutes your data schema. If the SchemaConfiguration request parameter is used as part of invoking the CreateDeliveryStream API, then the TableName property is required and its value must be specified.
|
|
1472
1501
|
*/
|
|
1473
1502
|
TableName?: NonEmptyStringWithoutWhitespace;
|
|
1474
1503
|
/**
|