cdk-docker-image-deployment 0.0.30 → 0.0.32

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 (34) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +13 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/accessanalyzer-2019-11-01.min.json +339 -339
  8. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.examples.json +5 -0
  9. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +1536 -0
  10. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.paginators.json +50 -0
  11. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +318 -303
  12. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  13. package/node_modules/aws-sdk/apis/snowball-2016-06-30.paginators.json +24 -0
  14. package/node_modules/aws-sdk/apis/workmail-2017-10-01.min.json +309 -72
  15. package/node_modules/aws-sdk/apis/workmail-2017-10-01.paginators.json +5 -0
  16. package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +297 -297
  17. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  18. package/node_modules/aws-sdk/clients/all.js +2 -1
  19. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  20. package/node_modules/aws-sdk/clients/connectcases.d.ts +1466 -0
  21. package/node_modules/aws-sdk/clients/connectcases.js +18 -0
  22. package/node_modules/aws-sdk/clients/ec2.d.ts +23 -2
  23. package/node_modules/aws-sdk/clients/ecs.d.ts +4 -4
  24. package/node_modules/aws-sdk/clients/s3control.d.ts +2 -2
  25. package/node_modules/aws-sdk/clients/snowball.d.ts +13 -13
  26. package/node_modules/aws-sdk/clients/workmail.d.ts +436 -103
  27. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  28. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +46 -9
  29. package/node_modules/aws-sdk/dist/aws-sdk.js +324 -306
  30. package/node_modules/aws-sdk/dist/aws-sdk.min.js +64 -64
  31. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  32. package/node_modules/aws-sdk/lib/core.js +1 -1
  33. package/node_modules/aws-sdk/package.json +1 -1
  34. package/package.json +4 -4
@@ -0,0 +1,18 @@
1
+ require('../lib/node_loader');
2
+ var AWS = require('../lib/core');
3
+ var Service = AWS.Service;
4
+ var apiLoader = AWS.apiLoader;
5
+
6
+ apiLoader.services['connectcases'] = {};
7
+ AWS.ConnectCases = Service.defineService('connectcases', ['2022-10-03']);
8
+ Object.defineProperty(apiLoader.services['connectcases'], '2022-10-03', {
9
+ get: function get() {
10
+ var model = require('../apis/connectcases-2022-10-03.min.json');
11
+ model.paginators = require('../apis/connectcases-2022-10-03.paginators.json').pagination;
12
+ return model;
13
+ },
14
+ enumerable: true,
15
+ configurable: true
16
+ });
17
+
18
+ module.exports = AWS.ConnectCases;
@@ -15715,6 +15715,10 @@ declare namespace EC2 {
15715
15715
  * Indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not.
15716
15716
  */
15717
15717
  EnableDnsSupport?: AttributeBooleanValue;
15718
+ /**
15719
+ * Indicates whether Network Address Usage metrics are enabled for your VPC.
15720
+ */
15721
+ EnableNetworkAddressUsageMetrics?: AttributeBooleanValue;
15718
15722
  }
15719
15723
  export type DescribeVpcClassicLinkDnsSupportMaxResults = number;
15720
15724
  export type DescribeVpcClassicLinkDnsSupportNextToken = string;
@@ -20110,6 +20114,10 @@ declare namespace EC2 {
20110
20114
  * 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.
20111
20115
  */
20112
20116
  DeprecationTime?: String;
20117
+ /**
20118
+ * If v2.0, it indicates that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon Elastic Compute Cloud User Guide.
20119
+ */
20120
+ ImdsSupport?: ImdsSupportValues;
20113
20121
  }
20114
20122
  export interface ImageAttribute {
20115
20123
  /**
@@ -20160,8 +20168,12 @@ declare namespace EC2 {
20160
20168
  * The date and time, in ISO 8601 date-time format, when the AMI was last used to launch an EC2 instance. When the AMI is used to launch an instance, there is a 24-hour delay before that usage is reported. lastLaunchedTime data is available starting April 2017.
20161
20169
  */
20162
20170
  LastLaunchedTime?: AttributeValue;
20171
+ /**
20172
+ * If v2.0, it indicates that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon Elastic Compute Cloud User Guide.
20173
+ */
20174
+ ImdsSupport?: AttributeValue;
20163
20175
  }
20164
- export type ImageAttributeName = "description"|"kernel"|"ramdisk"|"launchPermission"|"productCodes"|"blockDeviceMapping"|"sriovNetSupport"|"bootMode"|"tpmSupport"|"uefiData"|"lastLaunchedTime"|string;
20176
+ export type ImageAttributeName = "description"|"kernel"|"ramdisk"|"launchPermission"|"productCodes"|"blockDeviceMapping"|"sriovNetSupport"|"bootMode"|"tpmSupport"|"uefiData"|"lastLaunchedTime"|"imdsSupport"|string;
20165
20177
  export interface ImageDiskContainer {
20166
20178
  /**
20167
20179
  * The description of the disk image.
@@ -20218,6 +20230,7 @@ declare namespace EC2 {
20218
20230
  export type ImageRecycleBinInfoList = ImageRecycleBinInfo[];
20219
20231
  export type ImageState = "pending"|"available"|"invalid"|"deregistered"|"transient"|"failed"|"error"|string;
20220
20232
  export type ImageTypeValues = "machine"|"kernel"|"ramdisk"|string;
20233
+ export type ImdsSupportValues = "v2.0"|string;
20221
20234
  export interface ImportClientVpnClientCertificateRevocationListRequest {
20222
20235
  /**
20223
20236
  * The ID of the Client VPN endpoint to which the client certificate revocation list applies.
@@ -25536,6 +25549,10 @@ declare namespace EC2 {
25536
25549
  * The ID of the VPC.
25537
25550
  */
25538
25551
  VpcId: VpcId;
25552
+ /**
25553
+ * Indicates whether Network Address Usage metrics are enabled for your VPC.
25554
+ */
25555
+ EnableNetworkAddressUsageMetrics?: AttributeBooleanValue;
25539
25556
  }
25540
25557
  export interface ModifyVpcEndpointConnectionNotificationRequest {
25541
25558
  /**
@@ -27875,6 +27892,10 @@ declare namespace EC2 {
27875
27892
  * Base64 representation of the non-volatile UEFI variable store. To retrieve the UEFI data, use the GetInstanceUefiData command. You can inspect and modify the UEFI data by using the python-uefivars tool on GitHub. For more information, see UEFI Secure Boot in the Amazon Elastic Compute Cloud User Guide.
27876
27893
  */
27877
27894
  UefiData?: StringType;
27895
+ /**
27896
+ * Set to v2.0 to indicate that IMDSv2 is specified in the AMI. Instances launched from this AMI will have HttpTokens automatically set to required so that, by default, the instance requires that IMDSv2 is used when requesting instance metadata. In addition, HttpPutResponseHopLimit is set to 2. For more information, see Configure the AMI in the Amazon Elastic Compute Cloud User Guide. If you set the value to v2.0, make sure that your AMI software can support IMDSv2.
27897
+ */
27898
+ ImdsSupport?: ImdsSupportValues;
27878
27899
  }
27879
27900
  export interface RegisterImageResult {
27880
27901
  /**
@@ -34214,7 +34235,7 @@ declare namespace EC2 {
34214
34235
  VpcId?: String;
34215
34236
  }
34216
34237
  export type VpcAttachmentList = VpcAttachment[];
34217
- export type VpcAttributeName = "enableDnsSupport"|"enableDnsHostnames"|string;
34238
+ export type VpcAttributeName = "enableDnsSupport"|"enableDnsHostnames"|"enableNetworkAddressUsageMetrics"|string;
34218
34239
  export type VpcCidrAssociationId = string;
34219
34240
  export interface VpcCidrBlockAssociation {
34220
34241
  /**
@@ -2567,7 +2567,7 @@ declare namespace ECS {
2567
2567
  */
2568
2568
  containerPort?: BoxedInteger;
2569
2569
  /**
2570
- * The port number on the container instance to reserve for your container. If you use containers in a task with the awsvpc or host network mode, the hostPort can either be left blank or set to the same value as the containerPort. If you use containers in a task with the bridge network mode, you can specify a non-reserved host port for your container port mapping, or you can omit the hostPort (or set it to 0) while specifying a containerPort and your container automatically receives a port in the ephemeral port range for your container instance operating system and Docker version. The default ephemeral port range for Docker version 1.6.0 and later is listed on the instance under /proc/sys/net/ipv4/ip_local_port_range. If this kernel parameter is unavailable, the default ephemeral port range from 49153 through 65535 is used. Do not attempt to specify a host port in the ephemeral port range as these are reserved for automatic assignment. In general, ports below 32768 are outside of the ephemeral port range. The default ephemeral port range from 49153 through 65535 is always used for Docker versions before 1.6.0. The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376, and the Amazon ECS container agent ports 51678-51680. Any host port that was previously specified in a running task is also reserved while the task is running. That is, after a task stops, the host port is released. The current reserved ports are displayed in the remainingResources of DescribeContainerInstances output. A container instance can have up to 100 reserved ports at a time. This number includes the default reserved ports. Automatically assigned ports aren't included in the 100 reserved ports quota.
2570
+ * The port number on the container instance to reserve for your container. If you use containers in a task with the awsvpc or host network mode, the hostPort can either be left blank or set to the same value as the containerPort. If you use containers in a task with the bridge network mode, you can specify a non-reserved host port for your container port mapping, or you can omit the hostPort (or set it to 0) while specifying a containerPort and your container automatically receives a port in the ephemeral port range for your container instance operating system and Docker version. The default ephemeral port range for Docker version 1.6.0 and later is listed on the instance under /proc/sys/net/ipv4/ip_local_port_range. If this kernel parameter is unavailable, the default ephemeral port range from 49153 through 65535 is used. Do not attempt to specify a host port in the ephemeral port range as these are reserved for automatic assignment. In general, ports below 32768 are outside of the ephemeral port range. The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376, and the Amazon ECS container agent ports 51678-51680. Any host port that was previously specified in a running task is also reserved while the task is running. That is, after a task stops, the host port is released. The current reserved ports are displayed in the remainingResources of DescribeContainerInstances output. A container instance can have up to 100 reserved ports at a time. This number includes the default reserved ports. Automatically assigned ports aren't included in the 100 reserved ports quota.
2571
2571
  */
2572
2572
  hostPort?: BoxedInteger;
2573
2573
  /**
@@ -2595,7 +2595,7 @@ declare namespace ECS {
2595
2595
  export type ProxyConfigurationType = "APPMESH"|string;
2596
2596
  export interface PutAccountSettingDefaultRequest {
2597
2597
  /**
2598
- * The resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the ENI limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for CloudWatch Container Insights for your clusters is affected.
2598
+ * The resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the ENI limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for CloudWatch Container Insights for your clusters is affected. Fargate is transitioning from task count-based quotas to vCPU-based quotas. You can set the name to fargateVCPULimit to opt in or opt out of the vCPU-based quotas. For information about the opt in timeline, see Fargate vCPU-based quotas timeline in the Amazon ECS Developer Guide.
2599
2599
  */
2600
2600
  name: SettingName;
2601
2601
  /**
@@ -2771,7 +2771,7 @@ declare namespace ECS {
2771
2771
  */
2772
2772
  inferenceAccelerators?: InferenceAccelerators;
2773
2773
  /**
2774
- * The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see Fargate task storage in the Amazon ECS User Guide for Fargate. This parameter is only supported for tasks hosted on Fargate using the following platform versions: Linux platform version 1.4.0 or later. Windows platform version 1.0.0 or later.
2774
+ * The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see Fargate task storage in the Amazon ECS User Guide for Fargate. This parameter is only supported for tasks hosted on Fargate using the following platform versions: Linux platform version 1.4.0 or later.
2775
2775
  */
2776
2776
  ephemeralStorage?: EphemeralStorage;
2777
2777
  /**
@@ -3547,7 +3547,7 @@ declare namespace ECS {
3547
3547
  */
3548
3548
  revision?: Integer;
3549
3549
  /**
3550
- * The list of data volume definitions for the task. For more information, see Using data volumes in tasks in the Amazon Elastic Container Service Developer Guide. The host and sourcePath parameters aren't supported for tasks run on Fargate.
3550
+ * The list of data volume definitions for the task. For more information, see Using data volumes in tasks in the Amazon Elastic Container Service Developer Guide. The host and sourcePath parameters aren't supported for tasks run on Fargate.
3551
3551
  */
3552
3552
  volumes?: VolumeList;
3553
3553
  /**
@@ -2049,7 +2049,7 @@ declare namespace S3Control {
2049
2049
  export type ObjectLambdaAccessPointArn = string;
2050
2050
  export type ObjectLambdaAccessPointList = ObjectLambdaAccessPoint[];
2051
2051
  export type ObjectLambdaAccessPointName = string;
2052
- export type ObjectLambdaAllowedFeature = "GetObject-Range"|"GetObject-PartNumber"|string;
2052
+ export type ObjectLambdaAllowedFeature = "GetObject-Range"|"GetObject-PartNumber"|"HeadObject-Range"|"HeadObject-PartNumber"|string;
2053
2053
  export type ObjectLambdaAllowedFeaturesList = ObjectLambdaAllowedFeature[];
2054
2054
  export interface ObjectLambdaConfiguration {
2055
2055
  /**
@@ -2087,7 +2087,7 @@ declare namespace S3Control {
2087
2087
  */
2088
2088
  ContentTransformation: ObjectLambdaContentTransformation;
2089
2089
  }
2090
- export type ObjectLambdaTransformationConfigurationAction = "GetObject"|string;
2090
+ export type ObjectLambdaTransformationConfigurationAction = "GetObject"|"HeadObject"|"ListObjects"|"ListObjectsV2"|string;
2091
2091
  export type ObjectLambdaTransformationConfigurationActionsList = ObjectLambdaTransformationConfigurationAction[];
2092
2092
  export type ObjectLambdaTransformationConfigurationsList = ObjectLambdaTransformationConfiguration[];
2093
2093
  export type ObjectLockEnabledForBucket = boolean;
@@ -44,11 +44,11 @@ declare class Snowball extends Service {
44
44
  */
45
45
  createCluster(callback?: (err: AWSError, data: Snowball.Types.CreateClusterResult) => void): Request<Snowball.Types.CreateClusterResult, AWSError>;
46
46
  /**
47
- * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family Devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
47
+ * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: V3_5C Capacity: T32 Description: Snowball Edge Compute Optimized without GPU Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
48
48
  */
49
49
  createJob(params: Snowball.Types.CreateJobRequest, callback?: (err: AWSError, data: Snowball.Types.CreateJobResult) => void): Request<Snowball.Types.CreateJobResult, AWSError>;
50
50
  /**
51
- * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family Devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
51
+ * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: V3_5C Capacity: T32 Description: Snowball Edge Compute Optimized without GPU Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
52
52
  */
53
53
  createJob(callback?: (err: AWSError, data: Snowball.Types.CreateJobResult) => void): Request<Snowball.Types.CreateJobResult, AWSError>;
54
54
  /**
@@ -108,19 +108,19 @@ declare class Snowball extends Service {
108
108
  */
109
109
  describeReturnShippingLabel(callback?: (err: AWSError, data: Snowball.Types.DescribeReturnShippingLabelResult) => void): Request<Snowball.Types.DescribeReturnShippingLabelResult, AWSError>;
110
110
  /**
111
- * Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60 minutes have passed, you'll have to make another call to the GetJobManifest action. The manifest is an encrypted file that you can download after your job enters the WithCustomer status. The manifest is decrypted by using the UnlockCode code value, when you pass both values to the Snow device through the Snowball client when the client is started for the first time. As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job. The credentials of a given job, including its manifest file and unlock code, expire 360 days after the job is created.
111
+ * Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60 minutes have passed, you'll have to make another call to the GetJobManifest action. The manifest is an encrypted file that you can download after your job enters the WithCustomer status. This is the only valid status for calling this API as the manifest and UnlockCode code value are used for securing your device and should only be used when you have the device. The manifest is decrypted by using the UnlockCode code value, when you pass both values to the Snow device through the Snowball client when the client is started for the first time. As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job. The credentials of a given job, including its manifest file and unlock code, expire 360 days after the job is created.
112
112
  */
113
113
  getJobManifest(params: Snowball.Types.GetJobManifestRequest, callback?: (err: AWSError, data: Snowball.Types.GetJobManifestResult) => void): Request<Snowball.Types.GetJobManifestResult, AWSError>;
114
114
  /**
115
- * Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60 minutes have passed, you'll have to make another call to the GetJobManifest action. The manifest is an encrypted file that you can download after your job enters the WithCustomer status. The manifest is decrypted by using the UnlockCode code value, when you pass both values to the Snow device through the Snowball client when the client is started for the first time. As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job. The credentials of a given job, including its manifest file and unlock code, expire 360 days after the job is created.
115
+ * Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60 minutes have passed, you'll have to make another call to the GetJobManifest action. The manifest is an encrypted file that you can download after your job enters the WithCustomer status. This is the only valid status for calling this API as the manifest and UnlockCode code value are used for securing your device and should only be used when you have the device. The manifest is decrypted by using the UnlockCode code value, when you pass both values to the Snow device through the Snowball client when the client is started for the first time. As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job. The credentials of a given job, including its manifest file and unlock code, expire 360 days after the job is created.
116
116
  */
117
117
  getJobManifest(callback?: (err: AWSError, data: Snowball.Types.GetJobManifestResult) => void): Request<Snowball.Types.GetJobManifestResult, AWSError>;
118
118
  /**
119
- * Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 360 days after the associated job has been created. The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed along with the manifest to the Snow device through the Snowball client when the client is started for the first time. As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job.
119
+ * Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 360 days after the associated job has been created. The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed along with the manifest to the Snow device through the Snowball client when the client is started for the first time. The only valid status for calling this API is WithCustomer as the manifest and Unlock code values are used for securing your device and should only be used when you have the device. As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job.
120
120
  */
121
121
  getJobUnlockCode(params: Snowball.Types.GetJobUnlockCodeRequest, callback?: (err: AWSError, data: Snowball.Types.GetJobUnlockCodeResult) => void): Request<Snowball.Types.GetJobUnlockCodeResult, AWSError>;
122
122
  /**
123
- * Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 360 days after the associated job has been created. The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed along with the manifest to the Snow device through the Snowball client when the client is started for the first time. As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job.
123
+ * Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 360 days after the associated job has been created. The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed along with the manifest to the Snow device through the Snowball client when the client is started for the first time. The only valid status for calling this API is WithCustomer as the manifest and Unlock code values are used for securing your device and should only be used when you have the device. As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snow device associated with that job.
124
124
  */
125
125
  getJobUnlockCode(callback?: (err: AWSError, data: Snowball.Types.GetJobUnlockCodeResult) => void): Request<Snowball.Types.GetJobUnlockCodeResult, AWSError>;
126
126
  /**
@@ -427,7 +427,7 @@ declare namespace Snowball {
427
427
  */
428
428
  RoleARN: RoleARN;
429
429
  /**
430
- * The type of Snow Family Devices to use for this cluster. For cluster jobs, Amazon Web Services Snow Family currently supports only the EDGE device type. For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.
430
+ * The type of Snow Family devices to use for this cluster. For cluster jobs, Amazon Web Services Snow Family currently supports only the EDGE device type. For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.
431
431
  */
432
432
  SnowballType: SnowballType;
433
433
  /**
@@ -503,7 +503,7 @@ declare namespace Snowball {
503
503
  */
504
504
  ClusterId?: ClusterId;
505
505
  /**
506
- * The type of Snow Family Devices to use for this job. For cluster jobs, Amazon Web Services Snow Family currently supports only the EDGE device type. The type of Amazon Web Services Snow device to use for this job. Currently, the only supported device type for cluster jobs is EDGE. For more information, see Snowball Edge Device Options in the Snowball Edge Developer Guide. For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.
506
+ * The type of Snow Family devices to use for this job. For cluster jobs, Amazon Web Services Snow Family currently supports only the EDGE device type. The type of Amazon Web Services Snow device to use for this job. Currently, the only supported device type for cluster jobs is EDGE. For more information, see Snowball Edge Device Options in the Snowball Edge Developer Guide. For more information, see "https://docs.aws.amazon.com/snowball/latest/snowcone-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide or "https://docs.aws.amazon.com/snowball/latest/developer-guide/snow-device-types.html" (Snow Family Devices and Capacity) in the Snowcone User Guide.
507
507
  */
508
508
  SnowballType?: SnowballType;
509
509
  /**
@@ -539,11 +539,11 @@ declare namespace Snowball {
539
539
  */
540
540
  LongTermPricingType: LongTermPricingType;
541
541
  /**
542
- * Specifies whether the current long-term pricing type for the device should be renewed.
542
+ * snowballty Specifies whether the current long-term pricing type for the device should be renewed.
543
543
  */
544
544
  IsLongTermPricingAutoRenew?: JavaBoolean;
545
545
  /**
546
- * The type of Snow Family Devices to use for the long-term pricing job.
546
+ * The type of Snow Family devices to use for the long-term pricing job.
547
547
  */
548
548
  SnowballType?: SnowballType;
549
549
  }
@@ -1065,7 +1065,7 @@ declare namespace Snowball {
1065
1065
  */
1066
1066
  LongTermPricingStatus?: String;
1067
1067
  /**
1068
- * The type of Snow Family Devices associated with this long-term pricing job.
1068
+ * The type of Snow Family devices associated with this long-term pricing job.
1069
1069
  */
1070
1070
  SnowballType?: SnowballType;
1071
1071
  /**
@@ -1153,8 +1153,8 @@ declare namespace Snowball {
1153
1153
  }
1154
1154
  export type ShippingLabelStatus = "InProgress"|"TimedOut"|"Succeeded"|"Failed"|string;
1155
1155
  export type ShippingOption = "SECOND_DAY"|"NEXT_DAY"|"EXPRESS"|"STANDARD"|string;
1156
- export type SnowballCapacity = "T50"|"T80"|"T100"|"T42"|"T98"|"T8"|"T14"|"NoPreference"|string;
1157
- export type SnowballType = "STANDARD"|"EDGE"|"EDGE_C"|"EDGE_CG"|"EDGE_S"|"SNC1_HDD"|"SNC1_SSD"|string;
1156
+ export type SnowballCapacity = "T50"|"T80"|"T100"|"T42"|"T98"|"T8"|"T14"|"NoPreference"|"T32"|string;
1157
+ export type SnowballType = "STANDARD"|"EDGE"|"EDGE_C"|"EDGE_CG"|"EDGE_S"|"SNC1_HDD"|"SNC1_SSD"|"V3_5C"|string;
1158
1158
  export interface SnowconeDeviceConfiguration {
1159
1159
  /**
1160
1160
  * Configures the wireless connection for the Snowcone device.