aws-sdk 2.925.0 → 2.929.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +30 -1
  2. package/README.md +1 -1
  3. package/apis/appmesh-2019-01-25.min.json +322 -189
  4. package/apis/chime-2018-05-01.min.json +2 -1
  5. package/apis/cognito-idp-2016-04-18.min.json +41 -5
  6. package/apis/connect-2017-08-08.min.json +229 -124
  7. package/apis/connect-2017-08-08.paginators.json +6 -0
  8. package/apis/ec2-2016-11-15.min.json +728 -669
  9. package/apis/greengrassv2-2020-11-30.min.json +166 -28
  10. package/apis/greengrassv2-2020-11-30.paginators.json +6 -0
  11. package/apis/iotanalytics-2017-11-27.min.json +68 -27
  12. package/apis/managedblockchain-2018-09-24.min.json +35 -32
  13. package/apis/mediaconnect-2018-11-14.min.json +49 -27
  14. package/apis/medialive-2017-10-14.min.json +172 -163
  15. package/apis/models.lex.v2-2020-08-07.min.json +60 -37
  16. package/apis/ram-2018-01-04.min.json +22 -11
  17. package/apis/ram-2018-01-04.paginators.json +15 -0
  18. package/apis/redshift-data-2019-12-20.min.json +26 -3
  19. package/apis/runtime.lex.v2-2020-08-07.min.json +49 -35
  20. package/apis/sagemaker-2017-07-24.min.json +479 -459
  21. package/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +97 -6
  22. package/clients/appflow.d.ts +8 -2
  23. package/clients/appmesh.d.ts +216 -15
  24. package/clients/chime.d.ts +13 -9
  25. package/clients/cognitoidentityserviceprovider.d.ts +40 -4
  26. package/clients/connect.d.ts +184 -94
  27. package/clients/ec2.d.ts +81 -12
  28. package/clients/greengrassv2.d.ts +138 -2
  29. package/clients/iotanalytics.d.ts +51 -4
  30. package/clients/lexmodelsv2.d.ts +30 -4
  31. package/clients/lexruntimev2.d.ts +46 -36
  32. package/clients/lookoutmetrics.d.ts +4 -4
  33. package/clients/managedblockchain.d.ts +17 -5
  34. package/clients/mediaconnect.d.ts +23 -0
  35. package/clients/medialive.d.ts +18 -1
  36. package/clients/ram.d.ts +28 -8
  37. package/clients/redshiftdata.d.ts +25 -0
  38. package/clients/sagemaker.d.ts +42 -0
  39. package/clients/sagemakerfeaturestoreruntime.d.ts +80 -0
  40. package/dist/aws-sdk-core-react-native.js +1 -1
  41. package/dist/aws-sdk-react-native.js +20 -20
  42. package/dist/aws-sdk.js +1124 -863
  43. package/dist/aws-sdk.min.js +71 -71
  44. package/lib/core.js +1 -1
  45. package/package.json +1 -1
package/clients/ec2.d.ts CHANGED
@@ -525,11 +525,11 @@ declare class EC2 extends Service {
525
525
  */
526
526
  createManagedPrefixList(callback?: (err: AWSError, data: EC2.Types.CreateManagedPrefixListResult) => void): Request<EC2.Types.CreateManagedPrefixListResult, AWSError>;
527
527
  /**
528
- * Creates a NAT gateway in the specified public subnet. This action creates a network interface in the specified subnet with a private IP address from the IP address range of the subnet. Internet-bound traffic from a private subnet can be routed to the NAT gateway, therefore enabling instances in the private subnet to connect to the internet. For more information, see NAT Gateways in the Amazon Virtual Private Cloud User Guide.
528
+ * Creates a NAT gateway in the specified subnet. This action creates a network interface in the specified subnet with a private IP address from the IP address range of the subnet. You can create either a public NAT gateway or a private NAT gateway. With a public NAT gateway, internet-bound traffic from a private subnet can be routed to the NAT gateway, so that instances in a private subnet can connect to the internet. With a private NAT gateway, private communication is routed across VPCs and on-premises networks through a transit gateway or virtual private gateway. Common use cases include running large workloads behind a small pool of allowlisted IPv4 addresses, preserving private IPv4 addresses, and communicating between overlapping networks. For more information, see NAT Gateways in the Amazon Virtual Private Cloud User Guide.
529
529
  */
530
530
  createNatGateway(params: EC2.Types.CreateNatGatewayRequest, callback?: (err: AWSError, data: EC2.Types.CreateNatGatewayResult) => void): Request<EC2.Types.CreateNatGatewayResult, AWSError>;
531
531
  /**
532
- * Creates a NAT gateway in the specified public subnet. This action creates a network interface in the specified subnet with a private IP address from the IP address range of the subnet. Internet-bound traffic from a private subnet can be routed to the NAT gateway, therefore enabling instances in the private subnet to connect to the internet. For more information, see NAT Gateways in the Amazon Virtual Private Cloud User Guide.
532
+ * Creates a NAT gateway in the specified subnet. This action creates a network interface in the specified subnet with a private IP address from the IP address range of the subnet. You can create either a public NAT gateway or a private NAT gateway. With a public NAT gateway, internet-bound traffic from a private subnet can be routed to the NAT gateway, so that instances in a private subnet can connect to the internet. With a private NAT gateway, private communication is routed across VPCs and on-premises networks through a transit gateway or virtual private gateway. Common use cases include running large workloads behind a small pool of allowlisted IPv4 addresses, preserving private IPv4 addresses, and communicating between overlapping networks. For more information, see NAT Gateways in the Amazon Virtual Private Cloud User Guide.
533
533
  */
534
534
  createNatGateway(callback?: (err: AWSError, data: EC2.Types.CreateNatGatewayResult) => void): Request<EC2.Types.CreateNatGatewayResult, AWSError>;
535
535
  /**
@@ -981,11 +981,11 @@ declare class EC2 extends Service {
981
981
  */
982
982
  deleteManagedPrefixList(callback?: (err: AWSError, data: EC2.Types.DeleteManagedPrefixListResult) => void): Request<EC2.Types.DeleteManagedPrefixListResult, AWSError>;
983
983
  /**
984
- * Deletes the specified NAT gateway. Deleting a NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.
984
+ * Deletes the specified NAT gateway. Deleting a public NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.
985
985
  */
986
986
  deleteNatGateway(params: EC2.Types.DeleteNatGatewayRequest, callback?: (err: AWSError, data: EC2.Types.DeleteNatGatewayResult) => void): Request<EC2.Types.DeleteNatGatewayResult, AWSError>;
987
987
  /**
988
- * Deletes the specified NAT gateway. Deleting a NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.
988
+ * Deletes the specified NAT gateway. Deleting a public NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.
989
989
  */
990
990
  deleteNatGateway(callback?: (err: AWSError, data: EC2.Types.DeleteNatGatewayResult) => void): Request<EC2.Types.DeleteNatGatewayResult, AWSError>;
991
991
  /**
@@ -1621,11 +1621,11 @@ declare class EC2 extends Service {
1621
1621
  */
1622
1622
  describeImageAttribute(callback?: (err: AWSError, data: EC2.Types.ImageAttribute) => void): Request<EC2.Types.ImageAttribute, AWSError>;
1623
1623
  /**
1624
- * Describes the specified images (AMIs, AKIs, and ARIs) available to you or all of the images available to you. The images available to you include public images, private images that you own, and private images owned by other AWS accounts for which you have explicit launch permissions. Recently deregistered images appear in the returned results for a short interval and then return empty results. After all instances that reference a deregistered AMI are terminated, specifying the ID of the image results in an error indicating that the AMI ID cannot be found.
1624
+ * Describes the specified images (AMIs, AKIs, and ARIs) available to you or all of the images available to you. The images available to you include public images, private images that you own, and private images owned by other AWS accounts for which you have explicit launch permissions. Recently deregistered images appear in the returned results for a short interval and then return empty results. After all instances that reference a deregistered AMI are terminated, specifying the ID of the image will eventually return an error indicating that the AMI ID cannot be found.
1625
1625
  */
1626
1626
  describeImages(params: EC2.Types.DescribeImagesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeImagesResult) => void): Request<EC2.Types.DescribeImagesResult, AWSError>;
1627
1627
  /**
1628
- * Describes the specified images (AMIs, AKIs, and ARIs) available to you or all of the images available to you. The images available to you include public images, private images that you own, and private images owned by other AWS accounts for which you have explicit launch permissions. Recently deregistered images appear in the returned results for a short interval and then return empty results. After all instances that reference a deregistered AMI are terminated, specifying the ID of the image results in an error indicating that the AMI ID cannot be found.
1628
+ * Describes the specified images (AMIs, AKIs, and ARIs) available to you or all of the images available to you. The images available to you include public images, private images that you own, and private images owned by other AWS accounts for which you have explicit launch permissions. Recently deregistered images appear in the returned results for a short interval and then return empty results. After all instances that reference a deregistered AMI are terminated, specifying the ID of the image will eventually return an error indicating that the AMI ID cannot be found.
1629
1629
  */
1630
1630
  describeImages(callback?: (err: AWSError, data: EC2.Types.DescribeImagesResult) => void): Request<EC2.Types.DescribeImagesResult, AWSError>;
1631
1631
  /**
@@ -2356,6 +2356,14 @@ declare class EC2 extends Service {
2356
2356
  * Disables fast snapshot restores for the specified snapshots in the specified Availability Zones.
2357
2357
  */
2358
2358
  disableFastSnapshotRestores(callback?: (err: AWSError, data: EC2.Types.DisableFastSnapshotRestoresResult) => void): Request<EC2.Types.DisableFastSnapshotRestoresResult, AWSError>;
2359
+ /**
2360
+ * Cancels the deprecation of the specified AMI. For more information, see Deprecate an AMI in the Amazon Elastic Compute Cloud User Guide.
2361
+ */
2362
+ disableImageDeprecation(params: EC2.Types.DisableImageDeprecationRequest, callback?: (err: AWSError, data: EC2.Types.DisableImageDeprecationResult) => void): Request<EC2.Types.DisableImageDeprecationResult, AWSError>;
2363
+ /**
2364
+ * Cancels the deprecation of the specified AMI. For more information, see Deprecate an AMI in the Amazon Elastic Compute Cloud User Guide.
2365
+ */
2366
+ disableImageDeprecation(callback?: (err: AWSError, data: EC2.Types.DisableImageDeprecationResult) => void): Request<EC2.Types.DisableImageDeprecationResult, AWSError>;
2359
2367
  /**
2360
2368
  * Disables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.
2361
2369
  */
@@ -2484,6 +2492,14 @@ declare class EC2 extends Service {
2484
2492
  * Enables fast snapshot restores for the specified snapshots in the specified Availability Zones. You get the full benefit of fast snapshot restores after they enter the enabled state. To get the current state of fast snapshot restores, use DescribeFastSnapshotRestores. To disable fast snapshot restores, use DisableFastSnapshotRestores. For more information, see Amazon EBS fast snapshot restore in the Amazon Elastic Compute Cloud User Guide.
2485
2493
  */
2486
2494
  enableFastSnapshotRestores(callback?: (err: AWSError, data: EC2.Types.EnableFastSnapshotRestoresResult) => void): Request<EC2.Types.EnableFastSnapshotRestoresResult, AWSError>;
2495
+ /**
2496
+ * Enables deprecation of the specified AMI at the specified date and time. For more information, see Deprecate an AMI in the Amazon Elastic Compute Cloud User Guide.
2497
+ */
2498
+ enableImageDeprecation(params: EC2.Types.EnableImageDeprecationRequest, callback?: (err: AWSError, data: EC2.Types.EnableImageDeprecationResult) => void): Request<EC2.Types.EnableImageDeprecationResult, AWSError>;
2499
+ /**
2500
+ * Enables deprecation of the specified AMI at the specified date and time. For more information, see Deprecate an AMI in the Amazon Elastic Compute Cloud User Guide.
2501
+ */
2502
+ enableImageDeprecation(callback?: (err: AWSError, data: EC2.Types.EnableImageDeprecationResult) => void): Request<EC2.Types.EnableImageDeprecationResult, AWSError>;
2487
2503
  /**
2488
2504
  * Enables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.
2489
2505
  */
@@ -6162,6 +6178,7 @@ declare namespace EC2 {
6162
6178
  export type ConnectionNotificationSet = ConnectionNotification[];
6163
6179
  export type ConnectionNotificationState = "Enabled"|"Disabled"|string;
6164
6180
  export type ConnectionNotificationType = "Topic"|string;
6181
+ export type ConnectivityType = "private"|"public"|string;
6165
6182
  export type ContainerFormat = "ova"|string;
6166
6183
  export type ConversionIdStringList = ConversionTaskId[];
6167
6184
  export interface ConversionTask {
@@ -7132,6 +7149,10 @@ declare namespace EC2 {
7132
7149
  PrefixList?: ManagedPrefixList;
7133
7150
  }
7134
7151
  export interface CreateNatGatewayRequest {
7152
+ /**
7153
+ * [Public NAT gateways only] The allocation ID of an Elastic IP address to associate with the NAT gateway. You cannot specify an Elastic IP address with a private NAT gateway. If the Elastic IP address is associated with another resource, you must first disassociate it.
7154
+ */
7155
+ AllocationId?: AllocationId;
7135
7156
  /**
7136
7157
  * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency. Constraint: Maximum 64 ASCII characters.
7137
7158
  */
@@ -7149,9 +7170,9 @@ declare namespace EC2 {
7149
7170
  */
7150
7171
  TagSpecifications?: TagSpecificationList;
7151
7172
  /**
7152
- * The allocation ID of an Elastic IP address to associate with the NAT gateway. If the Elastic IP address is associated with another resource, you must first disassociate it.
7173
+ * Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.
7153
7174
  */
7154
- AllocationId: AllocationId;
7175
+ ConnectivityType?: ConnectivityType;
7155
7176
  }
7156
7177
  export interface CreateNatGatewayResult {
7157
7178
  /**
@@ -10763,6 +10784,10 @@ declare namespace EC2 {
10763
10784
  * Scopes the results to images with the specified owners. You can specify a combination of AWS account IDs, self, amazon, and aws-marketplace. If you omit this parameter, the results include all images for which you have launch permissions, regardless of ownership.
10764
10785
  */
10765
10786
  Owners?: OwnerStringList;
10787
+ /**
10788
+ * If true, all deprecated AMIs are included in the response. If false, no deprecated AMIs are included in the response. If no value is specified, the default value is false. If you are the AMI owner, all deprecated AMIs appear in the response regardless of the value (true or false) that you set for this parameter.
10789
+ */
10790
+ IncludeDeprecated?: Boolean;
10766
10791
  /**
10767
10792
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
10768
10793
  */
@@ -13668,6 +13693,22 @@ declare namespace EC2 {
13668
13693
  */
13669
13694
  Unsuccessful?: DisableFastSnapshotRestoreErrorSet;
13670
13695
  }
13696
+ export interface DisableImageDeprecationRequest {
13697
+ /**
13698
+ * The ID of the AMI.
13699
+ */
13700
+ ImageId: ImageId;
13701
+ /**
13702
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
13703
+ */
13704
+ DryRun?: Boolean;
13705
+ }
13706
+ export interface DisableImageDeprecationResult {
13707
+ /**
13708
+ * Returns true if the request succeeds; otherwise, it returns an error.
13709
+ */
13710
+ Return?: Boolean;
13711
+ }
13671
13712
  export interface DisableSerialConsoleAccessRequest {
13672
13713
  /**
13673
13714
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
@@ -14363,6 +14404,26 @@ declare namespace EC2 {
14363
14404
  */
14364
14405
  Unsuccessful?: EnableFastSnapshotRestoreErrorSet;
14365
14406
  }
14407
+ export interface EnableImageDeprecationRequest {
14408
+ /**
14409
+ * The ID of the AMI.
14410
+ */
14411
+ ImageId: ImageId;
14412
+ /**
14413
+ * The date and time to deprecate the AMI, in UTC, in the following format: YYYY-MM-DDTHH:MM:SSZ. If you specify a value for seconds, Amazon EC2 rounds the seconds to the nearest minute. You can’t specify a date in the past. The upper limit for DeprecateAt is 10 years from now.
14414
+ */
14415
+ DeprecateAt: MillisecondDateTime;
14416
+ /**
14417
+ * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
14418
+ */
14419
+ DryRun?: Boolean;
14420
+ }
14421
+ export interface EnableImageDeprecationResult {
14422
+ /**
14423
+ * Returns true if the request succeeds; otherwise, it returns an error.
14424
+ */
14425
+ Return?: Boolean;
14426
+ }
14366
14427
  export interface EnableSerialConsoleAccessRequest {
14367
14428
  /**
14368
14429
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
@@ -16527,6 +16588,10 @@ declare namespace EC2 {
16527
16588
  * The boot mode of the image. For more information, see Boot modes in the Amazon Elastic Compute Cloud User Guide.
16528
16589
  */
16529
16590
  BootMode?: BootModeValues;
16591
+ /**
16592
+ * The date and time to deprecate the AMI, in UTC, in the following format: YYYY-MM-DDTHH:MM:SSZ. If you specified a value for seconds, Amazon EC2 rounds the seconds to the nearest minute.
16593
+ */
16594
+ DeprecationTime?: String;
16530
16595
  }
16531
16596
  export interface ImageAttribute {
16532
16597
  /**
@@ -17908,7 +17973,7 @@ declare namespace EC2 {
17908
17973
  */
17909
17974
  IncludeAllTagsOfInstance?: Boolean;
17910
17975
  }
17911
- export type InstanceType = "t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"cr1.8xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r6g.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6gd.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"hi1.4xlarge"|"hs1.8xlarge"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6gd.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"cc1.4xlarge"|"cc2.8xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"cg1.4xlarge"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"mac1.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|string;
17976
+ export type InstanceType = "t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"cr1.8xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r6g.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6gd.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"hi1.4xlarge"|"hs1.8xlarge"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6gd.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"cc1.4xlarge"|"cc2.8xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"cg1.4xlarge"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"mac1.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|string;
17912
17977
  export type InstanceTypeHypervisor = "nitro"|"xen"|string;
17913
17978
  export interface InstanceTypeInfo {
17914
17979
  /**
@@ -20858,10 +20923,14 @@ declare namespace EC2 {
20858
20923
  * The tags for the NAT gateway.
20859
20924
  */
20860
20925
  Tags?: TagList;
20926
+ /**
20927
+ * Indicates whether the NAT gateway supports public or private connectivity.
20928
+ */
20929
+ ConnectivityType?: ConnectivityType;
20861
20930
  }
20862
20931
  export interface NatGatewayAddress {
20863
20932
  /**
20864
- * The allocation ID of the Elastic IP address that's associated with the NAT gateway.
20933
+ * [Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway.
20865
20934
  */
20866
20935
  AllocationId?: String;
20867
20936
  /**
@@ -20869,11 +20938,11 @@ declare namespace EC2 {
20869
20938
  */
20870
20939
  NetworkInterfaceId?: String;
20871
20940
  /**
20872
- * The private IP address associated with the Elastic IP address.
20941
+ * The private IP address associated with the NAT gateway.
20873
20942
  */
20874
20943
  PrivateIp?: String;
20875
20944
  /**
20876
- * The Elastic IP address associated with the NAT gateway.
20945
+ * [Public NAT gateway only] The Elastic IP address associated with the NAT gateway.
20877
20946
  */
20878
20947
  PublicIp?: String;
20879
20948
  }
@@ -11,6 +11,22 @@ declare class GreengrassV2 extends Service {
11
11
  */
12
12
  constructor(options?: GreengrassV2.Types.ClientConfiguration)
13
13
  config: Config & GreengrassV2.Types.ClientConfiguration;
14
+ /**
15
+ * Associate a list of client devices with a core device. Use this API operation to specify which client devices can discover a core device through cloud discovery. With cloud discovery, client devices connect to AWS IoT Greengrass to retrieve associated core devices' connectivity information and certificates. For more information, see Configure cloud discovery in the AWS IoT Greengrass V2 Developer Guide. Client devices are local IoT devices that connect to and communicate with an AWS IoT Greengrass core device over MQTT. You can connect client devices to a core device to sync MQTT messages and data to AWS IoT Core and interact with client devices in AWS IoT Greengrass components. For more information, see Interact with local IoT devices in the AWS IoT Greengrass V2 Developer Guide.
16
+ */
17
+ batchAssociateClientDeviceWithCoreDevice(params: GreengrassV2.Types.BatchAssociateClientDeviceWithCoreDeviceRequest, callback?: (err: AWSError, data: GreengrassV2.Types.BatchAssociateClientDeviceWithCoreDeviceResponse) => void): Request<GreengrassV2.Types.BatchAssociateClientDeviceWithCoreDeviceResponse, AWSError>;
18
+ /**
19
+ * Associate a list of client devices with a core device. Use this API operation to specify which client devices can discover a core device through cloud discovery. With cloud discovery, client devices connect to AWS IoT Greengrass to retrieve associated core devices' connectivity information and certificates. For more information, see Configure cloud discovery in the AWS IoT Greengrass V2 Developer Guide. Client devices are local IoT devices that connect to and communicate with an AWS IoT Greengrass core device over MQTT. You can connect client devices to a core device to sync MQTT messages and data to AWS IoT Core and interact with client devices in AWS IoT Greengrass components. For more information, see Interact with local IoT devices in the AWS IoT Greengrass V2 Developer Guide.
20
+ */
21
+ batchAssociateClientDeviceWithCoreDevice(callback?: (err: AWSError, data: GreengrassV2.Types.BatchAssociateClientDeviceWithCoreDeviceResponse) => void): Request<GreengrassV2.Types.BatchAssociateClientDeviceWithCoreDeviceResponse, AWSError>;
22
+ /**
23
+ * Disassociate a list of client devices from a core device. After you disassociate a client device from a core device, the client device won't be able to use cloud discovery to retrieve the core device's connectivity information and certificates.
24
+ */
25
+ batchDisassociateClientDeviceFromCoreDevice(params: GreengrassV2.Types.BatchDisassociateClientDeviceFromCoreDeviceRequest, callback?: (err: AWSError, data: GreengrassV2.Types.BatchDisassociateClientDeviceFromCoreDeviceResponse) => void): Request<GreengrassV2.Types.BatchDisassociateClientDeviceFromCoreDeviceResponse, AWSError>;
26
+ /**
27
+ * Disassociate a list of client devices from a core device. After you disassociate a client device from a core device, the client device won't be able to use cloud discovery to retrieve the core device's connectivity information and certificates.
28
+ */
29
+ batchDisassociateClientDeviceFromCoreDevice(callback?: (err: AWSError, data: GreengrassV2.Types.BatchDisassociateClientDeviceFromCoreDeviceResponse) => void): Request<GreengrassV2.Types.BatchDisassociateClientDeviceFromCoreDeviceResponse, AWSError>;
14
30
  /**
15
31
  * Cancels a deployment. This operation cancels the deployment for devices that haven't yet received it. If a device already received the deployment, this operation doesn't change anything for that device.
16
32
  */
@@ -92,11 +108,19 @@ declare class GreengrassV2 extends Service {
92
108
  */
93
109
  getDeployment(callback?: (err: AWSError, data: GreengrassV2.Types.GetDeploymentResponse) => void): Request<GreengrassV2.Types.GetDeploymentResponse, AWSError>;
94
110
  /**
95
- * Retrieves a paginated list of all versions for a component.
111
+ * Retrieves a paginated list of client devices that are associated with a core device.
112
+ */
113
+ listClientDevicesAssociatedWithCoreDevice(params: GreengrassV2.Types.ListClientDevicesAssociatedWithCoreDeviceRequest, callback?: (err: AWSError, data: GreengrassV2.Types.ListClientDevicesAssociatedWithCoreDeviceResponse) => void): Request<GreengrassV2.Types.ListClientDevicesAssociatedWithCoreDeviceResponse, AWSError>;
114
+ /**
115
+ * Retrieves a paginated list of client devices that are associated with a core device.
116
+ */
117
+ listClientDevicesAssociatedWithCoreDevice(callback?: (err: AWSError, data: GreengrassV2.Types.ListClientDevicesAssociatedWithCoreDeviceResponse) => void): Request<GreengrassV2.Types.ListClientDevicesAssociatedWithCoreDeviceResponse, AWSError>;
118
+ /**
119
+ * Retrieves a paginated list of all versions for a component. Greater versions are listed first.
96
120
  */
97
121
  listComponentVersions(params: GreengrassV2.Types.ListComponentVersionsRequest, callback?: (err: AWSError, data: GreengrassV2.Types.ListComponentVersionsResponse) => void): Request<GreengrassV2.Types.ListComponentVersionsResponse, AWSError>;
98
122
  /**
99
- * Retrieves a paginated list of all versions for a component.
123
+ * Retrieves a paginated list of all versions for a component. Greater versions are listed first.
100
124
  */
101
125
  listComponentVersions(callback?: (err: AWSError, data: GreengrassV2.Types.ListComponentVersionsResponse) => void): Request<GreengrassV2.Types.ListComponentVersionsResponse, AWSError>;
102
126
  /**
@@ -173,6 +197,71 @@ declare class GreengrassV2 extends Service {
173
197
  untagResource(callback?: (err: AWSError, data: GreengrassV2.Types.UntagResourceResponse) => void): Request<GreengrassV2.Types.UntagResourceResponse, AWSError>;
174
198
  }
175
199
  declare namespace GreengrassV2 {
200
+ export interface AssociateClientDeviceWithCoreDeviceEntry {
201
+ /**
202
+ * The name of the AWS IoT thing that represents the client device to associate.
203
+ */
204
+ thingName: IoTThingName;
205
+ }
206
+ export type AssociateClientDeviceWithCoreDeviceEntryList = AssociateClientDeviceWithCoreDeviceEntry[];
207
+ export interface AssociateClientDeviceWithCoreDeviceErrorEntry {
208
+ /**
209
+ * The name of the AWS IoT thing whose associate request failed.
210
+ */
211
+ thingName?: IoTThingName;
212
+ /**
213
+ * The error code for the request.
214
+ */
215
+ code?: NonEmptyString;
216
+ /**
217
+ * A message that provides additional information about the error.
218
+ */
219
+ message?: NonEmptyString;
220
+ }
221
+ export type AssociateClientDeviceWithCoreDeviceErrorList = AssociateClientDeviceWithCoreDeviceErrorEntry[];
222
+ export interface AssociatedClientDevice {
223
+ /**
224
+ * The name of the AWS IoT thing that represents the associated client device.
225
+ */
226
+ thingName?: IoTThingName;
227
+ /**
228
+ * The time that the client device was associated, expressed in ISO 8601 format.
229
+ */
230
+ associationTimestamp?: Timestamp;
231
+ }
232
+ export type AssociatedClientDeviceList = AssociatedClientDevice[];
233
+ export interface BatchAssociateClientDeviceWithCoreDeviceRequest {
234
+ /**
235
+ * The list of client devices to associate.
236
+ */
237
+ entries?: AssociateClientDeviceWithCoreDeviceEntryList;
238
+ /**
239
+ * The name of the core device. This is also the name of the AWS IoT thing.
240
+ */
241
+ coreDeviceThingName: IoTThingName;
242
+ }
243
+ export interface BatchAssociateClientDeviceWithCoreDeviceResponse {
244
+ /**
245
+ * The list of any errors for the entries in the request. Each error entry contains the name of the AWS IoT thing that failed to associate.
246
+ */
247
+ errorEntries?: AssociateClientDeviceWithCoreDeviceErrorList;
248
+ }
249
+ export interface BatchDisassociateClientDeviceFromCoreDeviceRequest {
250
+ /**
251
+ * The list of client devices to disassociate.
252
+ */
253
+ entries?: DisassociateClientDeviceFromCoreDeviceEntryList;
254
+ /**
255
+ * The name of the core device. This is also the name of the AWS IoT thing.
256
+ */
257
+ coreDeviceThingName: IoTThingName;
258
+ }
259
+ export interface BatchDisassociateClientDeviceFromCoreDeviceResponse {
260
+ /**
261
+ * The list of errors (if any) for the entries in the request. Each error entry contains the name of the AWS IoT thing that failed to disassociate.
262
+ */
263
+ errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorList;
264
+ }
176
265
  export interface CancelDeploymentRequest {
177
266
  /**
178
267
  * The ID of the deployment.
@@ -569,6 +658,28 @@ declare namespace GreengrassV2 {
569
658
  }
570
659
  export type Description = string;
571
660
  export type DescriptionString = string;
661
+ export interface DisassociateClientDeviceFromCoreDeviceEntry {
662
+ /**
663
+ * The name of the AWS IoT thing that represents the client device to disassociate.
664
+ */
665
+ thingName: IoTThingName;
666
+ }
667
+ export type DisassociateClientDeviceFromCoreDeviceEntryList = DisassociateClientDeviceFromCoreDeviceEntry[];
668
+ export interface DisassociateClientDeviceFromCoreDeviceErrorEntry {
669
+ /**
670
+ * The name of the AWS IoT thing whose disassociate request failed.
671
+ */
672
+ thingName?: IoTThingName;
673
+ /**
674
+ * The error code for the request.
675
+ */
676
+ code?: NonEmptyString;
677
+ /**
678
+ * A message that provides additional information about the error.
679
+ */
680
+ message?: NonEmptyString;
681
+ }
682
+ export type DisassociateClientDeviceFromCoreDeviceErrorList = DisassociateClientDeviceFromCoreDeviceErrorEntry[];
572
683
  export interface EffectiveDeployment {
573
684
  /**
574
685
  * The ID of the deployment.
@@ -852,6 +963,7 @@ declare namespace GreengrassV2 {
852
963
  */
853
964
  inProgressTimeoutInMinutes?: IoTJobInProgressTimeoutInMinutes;
854
965
  }
966
+ export type IoTThingName = string;
855
967
  export type IsLatestForTarget = boolean;
856
968
  export type IsRoot = boolean;
857
969
  export interface LambdaContainerParams {
@@ -1008,6 +1120,30 @@ declare namespace GreengrassV2 {
1008
1120
  addGroupOwner?: OptionalBoolean;
1009
1121
  }
1010
1122
  export type LifecycleStateDetails = string;
1123
+ export interface ListClientDevicesAssociatedWithCoreDeviceRequest {
1124
+ /**
1125
+ * The name of the core device. This is also the name of the AWS IoT thing.
1126
+ */
1127
+ coreDeviceThingName: IoTThingName;
1128
+ /**
1129
+ * The maximum number of results to be returned per paginated request.
1130
+ */
1131
+ maxResults?: DefaultMaxResults;
1132
+ /**
1133
+ * The token to be used for the next set of paginated results.
1134
+ */
1135
+ nextToken?: NextTokenString;
1136
+ }
1137
+ export interface ListClientDevicesAssociatedWithCoreDeviceResponse {
1138
+ /**
1139
+ * A list that describes the client devices that are associated with the core device.
1140
+ */
1141
+ associatedClientDevices?: AssociatedClientDeviceList;
1142
+ /**
1143
+ * The token for the next set of results, or null if there are no additional results.
1144
+ */
1145
+ nextToken?: NextTokenString;
1146
+ }
1011
1147
  export interface ListComponentVersionsRequest {
1012
1148
  /**
1013
1149
  * The ARN of the component version.
@@ -52,11 +52,11 @@ declare class IoTAnalytics extends Service {
52
52
  */
53
53
  createDatasetContent(callback?: (err: AWSError, data: IoTAnalytics.Types.CreateDatasetContentResponse) => void): Request<IoTAnalytics.Types.CreateDatasetContentResponse, AWSError>;
54
54
  /**
55
- * Creates a data store, which is a repository for messages.
55
+ * Creates a data store, which is a repository for messages. Only data stores that are used to save pipeline data can be configured with ParquetConfiguration.
56
56
  */
57
57
  createDatastore(params: IoTAnalytics.Types.CreateDatastoreRequest, callback?: (err: AWSError, data: IoTAnalytics.Types.CreateDatastoreResponse) => void): Request<IoTAnalytics.Types.CreateDatastoreResponse, AWSError>;
58
58
  /**
59
- * Creates a data store, which is a repository for messages.
59
+ * Creates a data store, which is a repository for messages. Only data stores that are used to save pipeline data can be configured with ParquetConfiguration.
60
60
  */
61
61
  createDatastore(callback?: (err: AWSError, data: IoTAnalytics.Types.CreateDatastoreResponse) => void): Request<IoTAnalytics.Types.CreateDatastoreResponse, AWSError>;
62
62
  /**
@@ -400,7 +400,7 @@ declare namespace IoTAnalytics {
400
400
  export type ChannelArn = string;
401
401
  export interface ChannelMessages {
402
402
  /**
403
- * Specifies one or more keys that identify the Amazon Simple Storage Service (Amazon S3) objects that save your channel messages.
403
+ * Specifies one or more keys that identify the Amazon Simple Storage Service (Amazon S3) objects that save your channel messages. You must use the full path for the key. Example path: channel/mychannel/__dt=2020-02-29 00:00:00/1582940490000_1582940520000_123456789012_mychannel_0_2118.0.json.gz
404
404
  */
405
405
  s3Paths?: S3PathChannelMessages;
406
406
  }
@@ -608,6 +608,10 @@ declare namespace IoTAnalytics {
608
608
  * Contains the configuration information of file formats. AWS IoT Analytics data stores support JSON and Parquet. The default file format is JSON. You can specify only one format. You can't change the file format after you create the data store.
609
609
  */
610
610
  fileFormatConfiguration?: FileFormatConfiguration;
611
+ /**
612
+ * Contains information about the partitions in a data store.
613
+ */
614
+ datastorePartitions?: DatastorePartitions;
611
615
  }
612
616
  export interface CreateDatastoreResponse {
613
617
  /**
@@ -928,6 +932,10 @@ declare namespace IoTAnalytics {
928
932
  * Contains the configuration information of file formats. AWS IoT Analytics data stores support JSON and Parquet. The default file format is JSON. You can specify only one format. You can't change the file format after you create the data store.
929
933
  */
930
934
  fileFormatConfiguration?: FileFormatConfiguration;
935
+ /**
936
+ * Contains information about the partitions in a data store.
937
+ */
938
+ datastorePartitions?: DatastorePartitions;
931
939
  }
932
940
  export interface DatastoreActivity {
933
941
  /**
@@ -941,6 +949,22 @@ declare namespace IoTAnalytics {
941
949
  }
942
950
  export type DatastoreArn = string;
943
951
  export type DatastoreName = string;
952
+ export interface DatastorePartition {
953
+ /**
954
+ * A partition defined by an attributeName.
955
+ */
956
+ attributePartition?: Partition;
957
+ /**
958
+ * A partition defined by an attributeName and a timestamp format.
959
+ */
960
+ timestampPartition?: TimestampPartition;
961
+ }
962
+ export interface DatastorePartitions {
963
+ /**
964
+ * A list of partitions in a data store.
965
+ */
966
+ partitions?: Partitions;
967
+ }
944
968
  export interface DatastoreStatistics {
945
969
  /**
946
970
  * The estimated size of the data store.
@@ -998,6 +1022,10 @@ declare namespace IoTAnalytics {
998
1022
  * The file format of the data in the data store.
999
1023
  */
1000
1024
  fileFormatType?: FileFormatType;
1025
+ /**
1026
+ * Contains information about the partitions in a data store.
1027
+ */
1028
+ datastorePartitions?: DatastorePartitions;
1001
1029
  }
1002
1030
  export interface DeleteChannelRequest {
1003
1031
  /**
@@ -1486,6 +1514,14 @@ declare namespace IoTAnalytics {
1486
1514
  */
1487
1515
  schemaDefinition?: SchemaDefinition;
1488
1516
  }
1517
+ export interface Partition {
1518
+ /**
1519
+ * The attribute name of the partition.
1520
+ */
1521
+ attributeName: PartitionAttributeName;
1522
+ }
1523
+ export type PartitionAttributeName = string;
1524
+ export type Partitions = DatastorePartition[];
1489
1525
  export interface Pipeline {
1490
1526
  /**
1491
1527
  * The name of the pipeline.
@@ -1719,7 +1755,7 @@ declare namespace IoTAnalytics {
1719
1755
  export type ScheduleExpression = string;
1720
1756
  export interface SchemaDefinition {
1721
1757
  /**
1722
- * Specifies one or more columns that store your data. Each schema can have up to 100 columns. Each column can have up to 100 nested types
1758
+ * Specifies one or more columns that store your data. Each schema can have up to 100 columns. Each column can have up to 100 nested types.
1723
1759
  */
1724
1760
  columns?: Columns;
1725
1761
  }
@@ -1812,6 +1848,17 @@ declare namespace IoTAnalytics {
1812
1848
  export type TagValue = string;
1813
1849
  export type TimeExpression = string;
1814
1850
  export type Timestamp = Date;
1851
+ export type TimestampFormat = string;
1852
+ export interface TimestampPartition {
1853
+ /**
1854
+ * The attribute name of the partition defined by a timestamp.
1855
+ */
1856
+ attributeName: PartitionAttributeName;
1857
+ /**
1858
+ * The timestamp format of a partition defined by a timestamp.
1859
+ */
1860
+ timestampFormat?: TimestampFormat;
1861
+ }
1815
1862
  export interface TriggeringDataset {
1816
1863
  /**
1817
1864
  * The name of the dataset whose content generation triggers the new dataset content generation.