cdk-lambda-subminute 2.0.265 → 2.0.266
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.examples.json +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +57 -57
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +68 -1
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +31 -18
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +134 -82
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +14 -8
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +102 -96
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +36 -36
- package/node_modules/aws-sdk/apis/machinelearning-2014-12-12.min.json +8 -2
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +43 -7
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +194 -161
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +740 -728
- package/node_modules/aws-sdk/apis/textract-2018-06-27.min.json +483 -76
- package/node_modules/aws-sdk/apis/textract-2018-06-27.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +4 -3
- package/node_modules/aws-sdk/clients/configservice.d.ts +15 -15
- package/node_modules/aws-sdk/clients/controltower.d.ts +104 -15
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +6 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +62 -6
- package/node_modules/aws-sdk/clients/elbv2.d.ts +7 -7
- package/node_modules/aws-sdk/clients/glue.d.ts +5 -5
- package/node_modules/aws-sdk/clients/inspector2.d.ts +25 -25
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +25 -0
- package/node_modules/aws-sdk/clients/lambda.d.ts +9 -0
- package/node_modules/aws-sdk/clients/pricing.d.ts +8 -8
- package/node_modules/aws-sdk/clients/rds.d.ts +48 -0
- package/node_modules/aws-sdk/clients/rekognition.d.ts +141 -72
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +26 -6
- package/node_modules/aws-sdk/clients/textract.d.ts +534 -2
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +1 -1
- package/node_modules/aws-sdk/clients/workspaces.d.ts +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +592 -444
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +99 -99
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/function-bind/.eslintrc +11 -5
- package/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/node_modules/function-bind/.nycrc +13 -0
- package/node_modules/function-bind/CHANGELOG.md +136 -0
- package/node_modules/function-bind/README.md +25 -27
- package/node_modules/function-bind/implementation.js +44 -12
- package/node_modules/function-bind/package.json +38 -14
- package/package.json +3 -3
- package/node_modules/function-bind/.editorconfig +0 -20
- package/node_modules/function-bind/.jscs.json +0 -176
- package/node_modules/function-bind/.npmignore +0 -22
- package/node_modules/function-bind/.travis.yml +0 -168
@@ -2996,6 +2996,14 @@ declare class EC2 extends Service {
|
|
2996
2996
|
* Disables fast snapshot restores for the specified snapshots in the specified Availability Zones.
|
2997
2997
|
*/
|
2998
2998
|
disableFastSnapshotRestores(callback?: (err: AWSError, data: EC2.Types.DisableFastSnapshotRestoresResult) => void): Request<EC2.Types.DisableFastSnapshotRestoresResult, AWSError>;
|
2999
|
+
/**
|
3000
|
+
* Sets the AMI state to disabled and removes all launch permissions from the AMI. A disabled AMI can't be used for instance launches. A disabled AMI can't be shared. If a public or shared AMI was previously shared, it is made private. If an AMI was shared with an Amazon Web Services account, organization, or Organizational Unit, they lose access to the disabled AMI. A disabled AMI does not appear in DescribeImages API calls by default. Only the AMI owner can disable an AMI. You can re-enable a disabled AMI using EnableImage. For more information, see Disable an AMI in the Amazon EC2 User Guide.
|
3001
|
+
*/
|
3002
|
+
disableImage(params: EC2.Types.DisableImageRequest, callback?: (err: AWSError, data: EC2.Types.DisableImageResult) => void): Request<EC2.Types.DisableImageResult, AWSError>;
|
3003
|
+
/**
|
3004
|
+
* Sets the AMI state to disabled and removes all launch permissions from the AMI. A disabled AMI can't be used for instance launches. A disabled AMI can't be shared. If a public or shared AMI was previously shared, it is made private. If an AMI was shared with an Amazon Web Services account, organization, or Organizational Unit, they lose access to the disabled AMI. A disabled AMI does not appear in DescribeImages API calls by default. Only the AMI owner can disable an AMI. You can re-enable a disabled AMI using EnableImage. For more information, see Disable an AMI in the Amazon EC2 User Guide.
|
3005
|
+
*/
|
3006
|
+
disableImage(callback?: (err: AWSError, data: EC2.Types.DisableImageResult) => void): Request<EC2.Types.DisableImageResult, AWSError>;
|
2999
3007
|
/**
|
3000
3008
|
* Disables block public access for AMIs at the account level in the specified Amazon Web Services Region. This removes the block public access restriction from your account. With the restriction removed, you can publicly share your AMIs in the specified Amazon Web Services Region. The API can take up to 10 minutes to configure this setting. During this time, if you run GetImageBlockPublicAccessState, the response will be block-new-sharing. When the API has completed the configuration, the response will be unblocked. For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.
|
3001
3009
|
*/
|
@@ -3212,6 +3220,14 @@ declare class EC2 extends Service {
|
|
3212
3220
|
* 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.
|
3213
3221
|
*/
|
3214
3222
|
enableFastSnapshotRestores(callback?: (err: AWSError, data: EC2.Types.EnableFastSnapshotRestoresResult) => void): Request<EC2.Types.EnableFastSnapshotRestoresResult, AWSError>;
|
3223
|
+
/**
|
3224
|
+
* Re-enables a disabled AMI. The re-enabled AMI is marked as available and can be used for instance launches, appears in describe operations, and can be shared. Amazon Web Services accounts, organizations, and Organizational Units that lost access to the AMI when it was disabled do not regain access automatically. Once the AMI is available, it can be shared with them again. Only the AMI owner can re-enable a disabled AMI. For more information, see Disable an AMI in the Amazon EC2 User Guide.
|
3225
|
+
*/
|
3226
|
+
enableImage(params: EC2.Types.EnableImageRequest, callback?: (err: AWSError, data: EC2.Types.EnableImageResult) => void): Request<EC2.Types.EnableImageResult, AWSError>;
|
3227
|
+
/**
|
3228
|
+
* Re-enables a disabled AMI. The re-enabled AMI is marked as available and can be used for instance launches, appears in describe operations, and can be shared. Amazon Web Services accounts, organizations, and Organizational Units that lost access to the AMI when it was disabled do not regain access automatically. Once the AMI is available, it can be shared with them again. Only the AMI owner can re-enable a disabled AMI. For more information, see Disable an AMI in the Amazon EC2 User Guide.
|
3229
|
+
*/
|
3230
|
+
enableImage(callback?: (err: AWSError, data: EC2.Types.EnableImageResult) => void): Request<EC2.Types.EnableImageResult, AWSError>;
|
3215
3231
|
/**
|
3216
3232
|
* Enables block public access for AMIs at the account level in the specified Amazon Web Services Region. This prevents the public sharing of your AMIs. However, if you already have public AMIs, they will remain publicly available. The API can take up to 10 minutes to configure this setting. During this time, if you run GetImageBlockPublicAccessState, the response will be unblocked. When the API has completed the configuration, the response will be block-new-sharing. For more information, see Block public access to your AMIs in the Amazon EC2 User Guide.
|
3217
3233
|
*/
|
@@ -7504,7 +7520,7 @@ declare namespace EC2 {
|
|
7504
7520
|
export type CapacityReservationGroupSet = CapacityReservationGroup[];
|
7505
7521
|
export type CapacityReservationId = string;
|
7506
7522
|
export type CapacityReservationIdSet = CapacityReservationId[];
|
7507
|
-
export type CapacityReservationInstancePlatform = "Linux/UNIX"|"Red Hat Enterprise Linux"|"SUSE Linux"|"Windows"|"Windows with SQL Server"|"Windows with SQL Server Enterprise"|"Windows with SQL Server Standard"|"Windows with SQL Server Web"|"Linux with SQL Server Standard"|"Linux with SQL Server Web"|"Linux with SQL Server Enterprise"|"RHEL with SQL Server Standard"|"RHEL with SQL Server Enterprise"|"RHEL with SQL Server Web"|"RHEL with HA"|"RHEL with HA and SQL Server Standard"|"RHEL with HA and SQL Server Enterprise"|string;
|
7523
|
+
export type CapacityReservationInstancePlatform = "Linux/UNIX"|"Red Hat Enterprise Linux"|"SUSE Linux"|"Windows"|"Windows with SQL Server"|"Windows with SQL Server Enterprise"|"Windows with SQL Server Standard"|"Windows with SQL Server Web"|"Linux with SQL Server Standard"|"Linux with SQL Server Web"|"Linux with SQL Server Enterprise"|"RHEL with SQL Server Standard"|"RHEL with SQL Server Enterprise"|"RHEL with SQL Server Web"|"RHEL with HA"|"RHEL with HA and SQL Server Standard"|"RHEL with HA and SQL Server Enterprise"|"Ubuntu Pro"|string;
|
7508
7524
|
export interface CapacityReservationOptions {
|
7509
7525
|
/**
|
7510
7526
|
* Indicates whether to use unused Capacity Reservations for fulfilling On-Demand capacity. If you specify use-capacity-reservations-first, the fleet uses unused Capacity Reservations to fulfill On-Demand capacity up to the target On-Demand capacity. If multiple instance pools have unused Capacity Reservations, the On-Demand allocation strategy (lowest-price or prioritized) is applied. If the number of unused Capacity Reservations is less than the On-Demand target capacity, the remaining On-Demand target capacity is launched according to the On-Demand allocation strategy (lowest-price or prioritized). If you do not specify a value, the fleet fulfils the On-Demand capacity according to the chosen On-Demand allocation strategy.
|
@@ -14372,7 +14388,7 @@ declare namespace EC2 {
|
|
14372
14388
|
*/
|
14373
14389
|
ExecutableUsers?: ExecutableByStringList;
|
14374
14390
|
/**
|
14375
|
-
* The filters. architecture - The image architecture (i386 | x86_64 | arm64 | x86_64_mac | arm64_mac). block-device-mapping.delete-on-termination - A Boolean value that indicates whether the Amazon EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.snapshot-id - The ID of the snapshot used for the Amazon EBS volume. block-device-mapping.volume-size - The volume size of the Amazon EBS volume, in GiB. block-device-mapping.volume-type - The volume type of the Amazon EBS volume (io1 | io2 | gp2 | gp3 | sc1 | st1 | standard). block-device-mapping.encrypted - A Boolean that indicates whether the Amazon EBS volume is encrypted. creation-date - The time when the image was created, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day. description - The description of the image (provided during image creation). ena-support - A Boolean that indicates whether enhanced networking with ENA is enabled. hypervisor - The hypervisor type (ovm | xen). image-id - The ID of the image. image-type - The image type (machine | kernel | ramdisk). is-public - A Boolean that indicates whether the image is public. kernel-id - The kernel ID. manifest-location - The location of the image manifest. name - The name of the AMI (provided during image creation). owner-alias - The owner alias (amazon | aws-marketplace). The valid aliases are defined in an Amazon-maintained list. This is not the Amazon Web Services account alias that can be set using the IAM console. We recommend that you use the Owner request parameter instead of this filter. owner-id - The Amazon Web Services account ID of the owner. We recommend that you use the Owner request parameter instead of this filter. platform - The platform. The only supported value is windows. product-code - The product code. product-code.type - The type of the product code (marketplace). ramdisk-id - The RAM disk ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). state - The state of the image (available | pending | failed). state-reason-code - The reason code for the state change. state-reason-message - The message for the state change. sriov-net-support - A value of simple indicates that enhanced networking with the Intel 82599 VF interface is enabled. tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value. virtualization-type - The virtualization type (paravirtual | hvm).
|
14391
|
+
* The filters. architecture - The image architecture (i386 | x86_64 | arm64 | x86_64_mac | arm64_mac). block-device-mapping.delete-on-termination - A Boolean value that indicates whether the Amazon EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.snapshot-id - The ID of the snapshot used for the Amazon EBS volume. block-device-mapping.volume-size - The volume size of the Amazon EBS volume, in GiB. block-device-mapping.volume-type - The volume type of the Amazon EBS volume (io1 | io2 | gp2 | gp3 | sc1 | st1 | standard). block-device-mapping.encrypted - A Boolean that indicates whether the Amazon EBS volume is encrypted. creation-date - The time when the image was created, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day. description - The description of the image (provided during image creation). ena-support - A Boolean that indicates whether enhanced networking with ENA is enabled. hypervisor - The hypervisor type (ovm | xen). image-id - The ID of the image. image-type - The image type (machine | kernel | ramdisk). is-public - A Boolean that indicates whether the image is public. kernel-id - The kernel ID. manifest-location - The location of the image manifest. name - The name of the AMI (provided during image creation). owner-alias - The owner alias (amazon | aws-marketplace). The valid aliases are defined in an Amazon-maintained list. This is not the Amazon Web Services account alias that can be set using the IAM console. We recommend that you use the Owner request parameter instead of this filter. owner-id - The Amazon Web Services account ID of the owner. We recommend that you use the Owner request parameter instead of this filter. platform - The platform. The only supported value is windows. product-code - The product code. product-code.type - The type of the product code (marketplace). ramdisk-id - The RAM disk ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). source-instance-id - The ID of the instance that the AMI was created from if the AMI was created using CreateImage. This filter is applicable only if the AMI was created using CreateImage. state - The state of the image (available | pending | failed). state-reason-code - The reason code for the state change. state-reason-message - The message for the state change. sriov-net-support - A value of simple indicates that enhanced networking with the Intel 82599 VF interface is enabled. tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value. virtualization-type - The virtualization type (paravirtual | hvm).
|
14376
14392
|
*/
|
14377
14393
|
Filters?: FilterList;
|
14378
14394
|
/**
|
@@ -14387,6 +14403,10 @@ declare namespace EC2 {
|
|
14387
14403
|
* Specifies whether to include deprecated AMIs. Default: No deprecated AMIs are included in the response. If you are the AMI owner, all deprecated AMIs appear in the response regardless of what you specify for this parameter.
|
14388
14404
|
*/
|
14389
14405
|
IncludeDeprecated?: Boolean;
|
14406
|
+
/**
|
14407
|
+
* Specifies whether to include disabled AMIs. Default: No disabled AMIs are included in the response.
|
14408
|
+
*/
|
14409
|
+
IncludeDisabled?: Boolean;
|
14390
14410
|
/**
|
14391
14411
|
* 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.
|
14392
14412
|
*/
|
@@ -16497,7 +16517,7 @@ declare namespace EC2 {
|
|
16497
16517
|
*/
|
16498
16518
|
DryRun?: Boolean;
|
16499
16519
|
/**
|
16500
|
-
* The filters. task-state - Returns tasks in a certain state (InProgress | Completed | Failed) bucket - Returns task information for tasks that targeted a specific bucket. For the filter value, specify the bucket name.
|
16520
|
+
* The filters. task-state - Returns tasks in a certain state (InProgress | Completed | Failed) bucket - Returns task information for tasks that targeted a specific bucket. For the filter value, specify the bucket name. When you specify the ImageIds parameter, any filters that you specify are ignored. To use the filters, you must remove the ImageIds parameter.
|
16501
16521
|
*/
|
16502
16522
|
Filters?: FilterList;
|
16503
16523
|
/**
|
@@ -16505,7 +16525,7 @@ declare namespace EC2 {
|
|
16505
16525
|
*/
|
16506
16526
|
NextToken?: String;
|
16507
16527
|
/**
|
16508
|
-
* The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination. You cannot specify this parameter and the
|
16528
|
+
* The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination. You cannot specify this parameter and the ImageIds parameter in the same call.
|
16509
16529
|
*/
|
16510
16530
|
MaxResults?: DescribeStoreImageTasksRequestMaxResults;
|
16511
16531
|
}
|
@@ -18140,6 +18160,22 @@ declare namespace EC2 {
|
|
18140
18160
|
*/
|
18141
18161
|
Return?: Boolean;
|
18142
18162
|
}
|
18163
|
+
export interface DisableImageRequest {
|
18164
|
+
/**
|
18165
|
+
* The ID of the AMI.
|
18166
|
+
*/
|
18167
|
+
ImageId: ImageId;
|
18168
|
+
/**
|
18169
|
+
* 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.
|
18170
|
+
*/
|
18171
|
+
DryRun?: Boolean;
|
18172
|
+
}
|
18173
|
+
export interface DisableImageResult {
|
18174
|
+
/**
|
18175
|
+
* Returns true if the request succeeds; otherwise, it returns an error.
|
18176
|
+
*/
|
18177
|
+
Return?: Boolean;
|
18178
|
+
}
|
18143
18179
|
export interface DisableIpamOrganizationAdminAccountRequest {
|
18144
18180
|
/**
|
18145
18181
|
* A check for 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.
|
@@ -19217,6 +19253,22 @@ declare namespace EC2 {
|
|
19217
19253
|
*/
|
19218
19254
|
Return?: Boolean;
|
19219
19255
|
}
|
19256
|
+
export interface EnableImageRequest {
|
19257
|
+
/**
|
19258
|
+
* The ID of the AMI.
|
19259
|
+
*/
|
19260
|
+
ImageId: ImageId;
|
19261
|
+
/**
|
19262
|
+
* 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.
|
19263
|
+
*/
|
19264
|
+
DryRun?: Boolean;
|
19265
|
+
}
|
19266
|
+
export interface EnableImageResult {
|
19267
|
+
/**
|
19268
|
+
* Returns true if the request succeeds; otherwise, it returns an error.
|
19269
|
+
*/
|
19270
|
+
Return?: Boolean;
|
19271
|
+
}
|
19220
19272
|
export interface EnableIpamOrganizationAdminAccountRequest {
|
19221
19273
|
/**
|
19222
19274
|
* A check for 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.
|
@@ -22318,7 +22370,7 @@ declare namespace EC2 {
|
|
22318
22370
|
*/
|
22319
22371
|
EnaSupport?: Boolean;
|
22320
22372
|
/**
|
22321
|
-
* The hypervisor type of the image.
|
22373
|
+
* The hypervisor type of the image. Only xen is supported. ovm is not supported.
|
22322
22374
|
*/
|
22323
22375
|
Hypervisor?: HypervisorType;
|
22324
22376
|
/**
|
@@ -22369,6 +22421,10 @@ declare namespace EC2 {
|
|
22369
22421
|
* 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 EC2 User Guide.
|
22370
22422
|
*/
|
22371
22423
|
ImdsSupport?: ImdsSupportValues;
|
22424
|
+
/**
|
22425
|
+
* The ID of the instance that the AMI was created from if the AMI was created using CreateImage. This field only appears if the AMI was created using CreateImage.
|
22426
|
+
*/
|
22427
|
+
SourceInstanceId?: String;
|
22372
22428
|
}
|
22373
22429
|
export interface ImageAttribute {
|
22374
22430
|
/**
|
@@ -22481,7 +22537,7 @@ declare namespace EC2 {
|
|
22481
22537
|
RecycleBinExitTime?: MillisecondDateTime;
|
22482
22538
|
}
|
22483
22539
|
export type ImageRecycleBinInfoList = ImageRecycleBinInfo[];
|
22484
|
-
export type ImageState = "pending"|"available"|"invalid"|"deregistered"|"transient"|"failed"|"error"|string;
|
22540
|
+
export type ImageState = "pending"|"available"|"invalid"|"deregistered"|"transient"|"failed"|"error"|"disabled"|string;
|
22485
22541
|
export type ImageTypeValues = "machine"|"kernel"|"ramdisk"|string;
|
22486
22542
|
export type ImdsSupportValues = "v2.0"|string;
|
22487
22543
|
export interface ImportClientVpnClientCertificateRevocationListRequest {
|
@@ -277,11 +277,11 @@ declare class ELBv2 extends Service {
|
|
277
277
|
*/
|
278
278
|
setSecurityGroups(callback?: (err: AWSError, data: ELBv2.Types.SetSecurityGroupsOutput) => void): Request<ELBv2.Types.SetSecurityGroupsOutput, AWSError>;
|
279
279
|
/**
|
280
|
-
* Enables the Availability Zones for the specified public subnets for the specified Application Load Balancer or
|
280
|
+
* Enables the Availability Zones for the specified public subnets for the specified Application Load Balancer, Network Load Balancer or Gateway Load Balancer. The specified subnets replace the previously enabled subnets. When you specify subnets for a Network Load Balancer, or Gateway Load Balancer you must include all subnets that were enabled previously, with their existing configurations, plus any additional subnets.
|
281
281
|
*/
|
282
282
|
setSubnets(params: ELBv2.Types.SetSubnetsInput, callback?: (err: AWSError, data: ELBv2.Types.SetSubnetsOutput) => void): Request<ELBv2.Types.SetSubnetsOutput, AWSError>;
|
283
283
|
/**
|
284
|
-
* Enables the Availability Zones for the specified public subnets for the specified Application Load Balancer or
|
284
|
+
* Enables the Availability Zones for the specified public subnets for the specified Application Load Balancer, Network Load Balancer or Gateway Load Balancer. The specified subnets replace the previously enabled subnets. When you specify subnets for a Network Load Balancer, or Gateway Load Balancer you must include all subnets that were enabled previously, with their existing configurations, plus any additional subnets.
|
285
285
|
*/
|
286
286
|
setSubnets(callback?: (err: AWSError, data: ELBv2.Types.SetSubnetsOutput) => void): Request<ELBv2.Types.SetSubnetsOutput, AWSError>;
|
287
287
|
/**
|
@@ -1218,7 +1218,7 @@ declare namespace ELBv2 {
|
|
1218
1218
|
export type LoadBalancerArns = LoadBalancerArn[];
|
1219
1219
|
export interface LoadBalancerAttribute {
|
1220
1220
|
/**
|
1221
|
-
* The name of the attribute. The following attributes are supported by all load balancers: deletion_protection.enabled - Indicates whether deletion protection is enabled. The value is true or false. The default is false. load_balancing.cross_zone.enabled - Indicates whether cross-zone load balancing is enabled. The possible values are true and false. The default for Network Load Balancers and Gateway Load Balancers is false. The default for Application Load Balancers is true, and cannot be changed. The following attributes are supported by both Application Load Balancers and Network Load Balancers: access_logs.s3.enabled - Indicates whether access logs are enabled. The value is true or false. The default is false. access_logs.s3.bucket - The name of the S3 bucket for the access logs. This attribute is required if access logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket. access_logs.s3.prefix - The prefix for the location in the S3 bucket for the access logs. ipv6.deny_all_igw_traffic - Blocks internet gateway (IGW) access to the load balancer. It is set to false for internet-facing load balancers and true for internal load balancers, preventing unintended access to your internal load balancer through an internet gateway. The following attributes are supported by only Application Load Balancers: idle_timeout.timeout_seconds - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds. routing.http.desync_mitigation_mode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive. routing.http.drop_invalid_header_fields.enabled - Indicates whether HTTP headers with invalid header fields are removed by the load balancer (true) or routed to targets (false). The default is false. routing.http.preserve_host_header.enabled - Indicates whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change. The possible values are true and false. The default is false. routing.http.x_amzn_tls_version_and_cipher_suite.enabled - Indicates whether the two headers (x-amzn-tls-version and x-amzn-tls-cipher-suite), which contain information about the negotiated TLS version and cipher suite, are added to the client request before sending it to the target. The x-amzn-tls-version header has information about the TLS protocol version negotiated with the client, and the x-amzn-tls-cipher-suite header has information about the cipher suite negotiated with the client. Both headers are in OpenSSL format. The possible values for the attribute are true and false. The default is false. routing.http.xff_client_port.enabled - Indicates whether the X-Forwarded-For header should preserve the source port that the client used to connect to the load balancer. The possible values are true and false. The default is false. routing.http.xff_header_processing.mode - Enables you to modify, preserve, or remove the X-Forwarded-For header in the HTTP request before the Application Load Balancer sends the request to the target. The possible values are append, preserve, and remove. The default is append. If the value is append, the Application Load Balancer adds the client IP address (of the last hop) to the X-Forwarded-For header in the HTTP request before it sends it to targets. If the value is preserve the Application Load Balancer preserves the X-Forwarded-For header in the HTTP request, and sends it to targets without any change. If the value is remove, the Application Load Balancer removes the X-Forwarded-For header in the HTTP request before it sends it to targets. routing.http2.enabled - Indicates whether HTTP/2 is enabled. The possible values are true and false. The default is true. Elastic Load Balancing requires that message header names contain only alphanumeric characters and hyphens. waf.fail_open.enabled - Indicates whether to allow a WAF-enabled load balancer to route requests to targets if it is unable to forward the request to Amazon Web Services WAF. The possible values are true and false. The default is false.
|
1221
|
+
* The name of the attribute. The following attributes are supported by all load balancers: deletion_protection.enabled - Indicates whether deletion protection is enabled. The value is true or false. The default is false. load_balancing.cross_zone.enabled - Indicates whether cross-zone load balancing is enabled. The possible values are true and false. The default for Network Load Balancers and Gateway Load Balancers is false. The default for Application Load Balancers is true, and cannot be changed. The following attributes are supported by both Application Load Balancers and Network Load Balancers: access_logs.s3.enabled - Indicates whether access logs are enabled. The value is true or false. The default is false. access_logs.s3.bucket - The name of the S3 bucket for the access logs. This attribute is required if access logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket. access_logs.s3.prefix - The prefix for the location in the S3 bucket for the access logs. ipv6.deny_all_igw_traffic - Blocks internet gateway (IGW) access to the load balancer. It is set to false for internet-facing load balancers and true for internal load balancers, preventing unintended access to your internal load balancer through an internet gateway. The following attributes are supported by only Application Load Balancers: idle_timeout.timeout_seconds - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds. routing.http.desync_mitigation_mode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive. routing.http.drop_invalid_header_fields.enabled - Indicates whether HTTP headers with invalid header fields are removed by the load balancer (true) or routed to targets (false). The default is false. routing.http.preserve_host_header.enabled - Indicates whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change. The possible values are true and false. The default is false. routing.http.x_amzn_tls_version_and_cipher_suite.enabled - Indicates whether the two headers (x-amzn-tls-version and x-amzn-tls-cipher-suite), which contain information about the negotiated TLS version and cipher suite, are added to the client request before sending it to the target. The x-amzn-tls-version header has information about the TLS protocol version negotiated with the client, and the x-amzn-tls-cipher-suite header has information about the cipher suite negotiated with the client. Both headers are in OpenSSL format. The possible values for the attribute are true and false. The default is false. routing.http.xff_client_port.enabled - Indicates whether the X-Forwarded-For header should preserve the source port that the client used to connect to the load balancer. The possible values are true and false. The default is false. routing.http.xff_header_processing.mode - Enables you to modify, preserve, or remove the X-Forwarded-For header in the HTTP request before the Application Load Balancer sends the request to the target. The possible values are append, preserve, and remove. The default is append. If the value is append, the Application Load Balancer adds the client IP address (of the last hop) to the X-Forwarded-For header in the HTTP request before it sends it to targets. If the value is preserve the Application Load Balancer preserves the X-Forwarded-For header in the HTTP request, and sends it to targets without any change. If the value is remove, the Application Load Balancer removes the X-Forwarded-For header in the HTTP request before it sends it to targets. routing.http2.enabled - Indicates whether HTTP/2 is enabled. The possible values are true and false. The default is true. Elastic Load Balancing requires that message header names contain only alphanumeric characters and hyphens. waf.fail_open.enabled - Indicates whether to allow a WAF-enabled load balancer to route requests to targets if it is unable to forward the request to Amazon Web Services WAF. The possible values are true and false. The default is false. The following attributes are supported by only Network Load Balancers: dns_record.client_routing_policy - Indicates how traffic is distributed among the load balancer Availability Zones. The possible values are availability_zone_affinity with 100 percent zonal affinity, partial_availability_zone_affinity with 85 percent zonal affinity, and any_availability_zone with 0 percent zonal affinity.
|
1222
1222
|
*/
|
1223
1223
|
Key?: LoadBalancerAttributeKey;
|
1224
1224
|
/**
|
@@ -1626,15 +1626,15 @@ declare namespace ELBv2 {
|
|
1626
1626
|
*/
|
1627
1627
|
LoadBalancerArn: LoadBalancerArn;
|
1628
1628
|
/**
|
1629
|
-
* The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings. [Application Load Balancers] You must specify subnets from at least two Availability Zones. [Application Load Balancers on Outposts] You must specify one Outpost subnet. [Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones. [Network Load Balancers] You can specify subnets from one or more Availability Zones.
|
1629
|
+
* The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings. [Application Load Balancers] You must specify subnets from at least two Availability Zones. [Application Load Balancers on Outposts] You must specify one Outpost subnet. [Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones. [Network Load Balancers] You can specify subnets from one or more Availability Zones. [Gateway Load Balancers] You can specify subnets from one or more Availability Zones.
|
1630
1630
|
*/
|
1631
1631
|
Subnets?: Subnets;
|
1632
1632
|
/**
|
1633
|
-
* The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings. [Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets. [Application Load Balancers on Outposts] You must specify one Outpost subnet. [Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones. [Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you can specify one IPv6 address per subnet.
|
1633
|
+
* The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings. [Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets. [Application Load Balancers on Outposts] You must specify one Outpost subnet. [Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones. [Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you can specify one IPv6 address per subnet. [Gateway Load Balancers] You can specify subnets from one or more Availability Zones.
|
1634
1634
|
*/
|
1635
1635
|
SubnetMappings?: SubnetMappings;
|
1636
1636
|
/**
|
1637
|
-
* [Network Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener.
|
1637
|
+
* [Network Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. [Gateway Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses).
|
1638
1638
|
*/
|
1639
1639
|
IpAddressType?: IpAddressType;
|
1640
1640
|
}
|
@@ -1644,7 +1644,7 @@ declare namespace ELBv2 {
|
|
1644
1644
|
*/
|
1645
1645
|
AvailabilityZones?: AvailabilityZones;
|
1646
1646
|
/**
|
1647
|
-
* [Network Load Balancers] The IP address type.
|
1647
|
+
* [Network Load Balancers] The IP address type. [Gateway Load Balancers] The IP address type.
|
1648
1648
|
*/
|
1649
1649
|
IpAddressType?: IpAddressType;
|
1650
1650
|
}
|
@@ -11678,7 +11678,7 @@ declare namespace Glue {
|
|
11678
11678
|
*/
|
11679
11679
|
AuthToken?: Generic512CharString;
|
11680
11680
|
}
|
11681
|
-
export type SourceControlProvider = "GITHUB"|"AWS_CODE_COMMIT"|string;
|
11681
|
+
export type SourceControlProvider = "GITHUB"|"GITLAB"|"BITBUCKET"|"AWS_CODE_COMMIT"|string;
|
11682
11682
|
export interface SparkConnectorSource {
|
11683
11683
|
/**
|
11684
11684
|
* The name of the data source.
|
@@ -13150,11 +13150,11 @@ declare namespace Glue {
|
|
13150
13150
|
*/
|
13151
13151
|
JobName?: NameString;
|
13152
13152
|
/**
|
13153
|
-
*
|
13153
|
+
* The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
|
13154
13154
|
*/
|
13155
13155
|
Provider?: SourceControlProvider;
|
13156
13156
|
/**
|
13157
|
-
* The name of the remote repository that contains the job artifacts.
|
13157
|
+
* The name of the remote repository that contains the job artifacts. For BitBucket providers, RepositoryName should include WorkspaceName. Use the format <WorkspaceName>/<RepositoryName>.
|
13158
13158
|
*/
|
13159
13159
|
RepositoryName?: NameString;
|
13160
13160
|
/**
|
@@ -13348,11 +13348,11 @@ declare namespace Glue {
|
|
13348
13348
|
*/
|
13349
13349
|
JobName?: NameString;
|
13350
13350
|
/**
|
13351
|
-
*
|
13351
|
+
* The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
|
13352
13352
|
*/
|
13353
13353
|
Provider?: SourceControlProvider;
|
13354
13354
|
/**
|
13355
|
-
* The name of the remote repository that contains the job artifacts.
|
13355
|
+
* The name of the remote repository that contains the job artifacts. For BitBucket providers, RepositoryName should include WorkspaceName. Use the format <WorkspaceName>/<RepositoryName>.
|
13356
13356
|
*/
|
13357
13357
|
RepositoryName?: NameString;
|
13358
13358
|
/**
|
@@ -84,11 +84,11 @@ declare class Inspector2 extends Service {
|
|
84
84
|
*/
|
85
85
|
cancelSbomExport(callback?: (err: AWSError, data: Inspector2.Types.CancelSbomExportResponse) => void): Request<Inspector2.Types.CancelSbomExportResponse, AWSError>;
|
86
86
|
/**
|
87
|
-
* Creates a filter resource using specified filter criteria.
|
87
|
+
* Creates a filter resource using specified filter criteria. When the filter action is set to SUPPRESS this action creates a suppression rule.
|
88
88
|
*/
|
89
89
|
createFilter(params: Inspector2.Types.CreateFilterRequest, callback?: (err: AWSError, data: Inspector2.Types.CreateFilterResponse) => void): Request<Inspector2.Types.CreateFilterResponse, AWSError>;
|
90
90
|
/**
|
91
|
-
* Creates a filter resource using specified filter criteria.
|
91
|
+
* Creates a filter resource using specified filter criteria. When the filter action is set to SUPPRESS this action creates a suppression rule.
|
92
92
|
*/
|
93
93
|
createFilter(callback?: (err: AWSError, data: Inspector2.Types.CreateFilterResponse) => void): Request<Inspector2.Types.CreateFilterResponse, AWSError>;
|
94
94
|
/**
|
@@ -1113,7 +1113,7 @@ declare namespace Inspector2 {
|
|
1113
1113
|
*/
|
1114
1114
|
resourceType?: CoverageStringFilterList;
|
1115
1115
|
/**
|
1116
|
-
* The scan status code to filter on.
|
1116
|
+
* The scan status code to filter on. Valid values are: ValidationException, InternalServerException, ResourceNotFoundException, BadRequestException, and ThrottlingException.
|
1117
1117
|
*/
|
1118
1118
|
scanStatusCode?: CoverageStringFilterList;
|
1119
1119
|
/**
|
@@ -1531,7 +1531,7 @@ declare namespace Inspector2 {
|
|
1531
1531
|
*/
|
1532
1532
|
tags?: TagMap;
|
1533
1533
|
}
|
1534
|
-
export type Ec2Platform = "WINDOWS"|"LINUX"|"UNKNOWN"|string;
|
1534
|
+
export type Ec2Platform = "WINDOWS"|"LINUX"|"UNKNOWN"|"MACOS"|string;
|
1535
1535
|
export interface EcrConfiguration {
|
1536
1536
|
/**
|
1537
1537
|
* The ECR automated re-scan duration defines how long an ECR image will be actively scanned by Amazon Inspector. When the number of days since an image was last pushed exceeds the automated re-scan duration the monitoring state of that image becomes inactive and all associated findings are scheduled for closure.
|
@@ -1991,11 +1991,11 @@ declare namespace Inspector2 {
|
|
1991
1991
|
*/
|
1992
1992
|
remediation: Remediation;
|
1993
1993
|
/**
|
1994
|
-
* Contains information on the resources involved in a finding.
|
1994
|
+
* Contains information on the resources involved in a finding. The resource value determines the valid values for type in your request. For more information, see Finding types in the Amazon Inspector user guide.
|
1995
1995
|
*/
|
1996
1996
|
resources: ResourceList;
|
1997
1997
|
/**
|
1998
|
-
* The severity of the finding.
|
1998
|
+
* The severity of the finding. UNTRIAGED applies to PACKAGE_VULNERABILITY type findings that the vendor has not assigned a severity yet. For more information, see Severity levels for findings in the Amazon Inspector user guide.
|
1999
1999
|
*/
|
2000
2000
|
severity: Severity;
|
2001
2001
|
/**
|
@@ -2007,7 +2007,7 @@ declare namespace Inspector2 {
|
|
2007
2007
|
*/
|
2008
2008
|
title?: FindingTitle;
|
2009
2009
|
/**
|
2010
|
-
* The type of the finding.
|
2010
|
+
* The type of the finding. The type value determines the valid values for resource in your request. For more information, see Finding types in the Amazon Inspector user guide.
|
2011
2011
|
*/
|
2012
2012
|
type: FindingType;
|
2013
2013
|
/**
|
@@ -2479,11 +2479,11 @@ declare namespace Inspector2 {
|
|
2479
2479
|
export type ListAccountPermissionsMaxResults = number;
|
2480
2480
|
export interface ListAccountPermissionsRequest {
|
2481
2481
|
/**
|
2482
|
-
* The maximum number of results
|
2482
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2483
2483
|
*/
|
2484
2484
|
maxResults?: ListAccountPermissionsMaxResults;
|
2485
2485
|
/**
|
2486
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
|
2486
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
|
2487
2487
|
*/
|
2488
2488
|
nextToken?: NextToken;
|
2489
2489
|
/**
|
@@ -2508,11 +2508,11 @@ declare namespace Inspector2 {
|
|
2508
2508
|
*/
|
2509
2509
|
filterCriteria?: CoverageFilterCriteria;
|
2510
2510
|
/**
|
2511
|
-
* The maximum number of results
|
2511
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2512
2512
|
*/
|
2513
2513
|
maxResults?: ListCoverageMaxResults;
|
2514
2514
|
/**
|
2515
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
|
2515
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
|
2516
2516
|
*/
|
2517
2517
|
nextToken?: NextToken;
|
2518
2518
|
}
|
@@ -2556,11 +2556,11 @@ declare namespace Inspector2 {
|
|
2556
2556
|
}
|
2557
2557
|
export interface ListDelegatedAdminAccountsRequest {
|
2558
2558
|
/**
|
2559
|
-
* The maximum number of results
|
2559
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2560
2560
|
*/
|
2561
2561
|
maxResults?: ListDelegatedAdminMaxResults;
|
2562
2562
|
/**
|
2563
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
|
2563
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
|
2564
2564
|
*/
|
2565
2565
|
nextToken?: NextToken;
|
2566
2566
|
}
|
@@ -2586,11 +2586,11 @@ declare namespace Inspector2 {
|
|
2586
2586
|
*/
|
2587
2587
|
arns?: FilterArnList;
|
2588
2588
|
/**
|
2589
|
-
* The maximum number of results
|
2589
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2590
2590
|
*/
|
2591
2591
|
maxResults?: ListFilterMaxResults;
|
2592
2592
|
/**
|
2593
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
|
2593
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
|
2594
2594
|
*/
|
2595
2595
|
nextToken?: NextToken;
|
2596
2596
|
}
|
@@ -2619,11 +2619,11 @@ declare namespace Inspector2 {
|
|
2619
2619
|
*/
|
2620
2620
|
aggregationType: AggregationType;
|
2621
2621
|
/**
|
2622
|
-
* The maximum number of results
|
2622
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2623
2623
|
*/
|
2624
2624
|
maxResults?: ListFindingAggregationsMaxResults;
|
2625
2625
|
/**
|
2626
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
|
2626
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
|
2627
2627
|
*/
|
2628
2628
|
nextToken?: NextToken;
|
2629
2629
|
}
|
@@ -2648,11 +2648,11 @@ declare namespace Inspector2 {
|
|
2648
2648
|
*/
|
2649
2649
|
filterCriteria?: FilterCriteria;
|
2650
2650
|
/**
|
2651
|
-
* The maximum number of results
|
2651
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2652
2652
|
*/
|
2653
2653
|
maxResults?: ListFindingsMaxResults;
|
2654
2654
|
/**
|
2655
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
|
2655
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
|
2656
2656
|
*/
|
2657
2657
|
nextToken?: NextToken;
|
2658
2658
|
/**
|
@@ -2673,11 +2673,11 @@ declare namespace Inspector2 {
|
|
2673
2673
|
export type ListMembersMaxResults = number;
|
2674
2674
|
export interface ListMembersRequest {
|
2675
2675
|
/**
|
2676
|
-
* The maximum number of results
|
2676
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2677
2677
|
*/
|
2678
2678
|
maxResults?: ListMembersMaxResults;
|
2679
2679
|
/**
|
2680
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
|
2680
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
|
2681
2681
|
*/
|
2682
2682
|
nextToken?: NextToken;
|
2683
2683
|
/**
|
@@ -2715,11 +2715,11 @@ declare namespace Inspector2 {
|
|
2715
2715
|
*/
|
2716
2716
|
accountIds?: UsageAccountIdList;
|
2717
2717
|
/**
|
2718
|
-
* The maximum number of results
|
2718
|
+
* The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken value, use this value when you call the action again to get the remaining results.
|
2719
2719
|
*/
|
2720
2720
|
maxResults?: ListUsageTotalsMaxResults;
|
2721
2721
|
/**
|
2722
|
-
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
|
2722
|
+
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults maximum value it will also return a nextToken value. For subsequent calls, use the nextToken value returned from the previous request to continue listing results after the first page.
|
2723
2723
|
*/
|
2724
2724
|
nextToken?: ListUsageTotalsNextToken;
|
2725
2725
|
}
|
@@ -3206,7 +3206,7 @@ declare namespace Inspector2 {
|
|
3206
3206
|
export type SbomReportFormat = "CYCLONEDX_1_4"|"SPDX_2_3"|string;
|
3207
3207
|
export interface ScanStatus {
|
3208
3208
|
/**
|
3209
|
-
* The
|
3209
|
+
* The scan status. Possible return values and descriptions are: PENDING_INITIAL_SCAN - This resource has been identified for scanning, results will be available soon. ACCESS_DENIED - Resource access policy restricting Amazon Inspector access. Please update the IAM policy. INTERNAL_ERROR - Amazon Inspector has encountered an internal error for this resource. Amazon Inspector service will automatically resolve the issue and resume the scanning. No action required from the user. UNMANAGED_EC2_INSTANCE - The EC2 instance is not managed by SSM, please use the following SSM automation to remediate the issue: https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-awssupport-troubleshoot-managed-instance.html. Once the instance becomes managed by SSM, Inspector will automatically begin scanning this instance. UNSUPPORTED_OS - Amazon Inspector does not support this OS, architecture, or image manifest type at this time. To see a complete list of supported operating systems see: https://docs.aws.amazon.com/inspector/latest/user/supported.html. SCAN_ELIGIBILITY_EXPIRED - The configured scan duration has lapsed for this image. RESOURCE_TERMINATED - This resource has been terminated. The findings and coverage associated with this resource are in the process of being cleaned up. SUCCESSFUL - The scan was successful. NO_RESOURCES_FOUND - Reserved for future use. IMAGE_SIZE_EXCEEDED - Reserved for future use. SCAN_FREQUENCY_MANUAL - This image will not be covered by Amazon Inspector due to the repository scan frequency configuration. SCAN_FREQUENCY_SCAN_ON_PUSH - This image will be scanned one time and will not new findings because of the scan frequency configuration. EC2_INSTANCE_STOPPED - This EC2 instance is in a stopped state, therefore, Amazon Inspector will pause scanning. The existing findings will continue to exist until the instance is terminated. Once the instance is re-started, Inspector will automatically start scanning the instance again. Please note that you will not be charged for this instance while it’s in a stopped state. PENDING_DISABLE - This resource is pending cleanup during disablement. The customer will not be billed while a resource is in the pending disable status. NO INVENTORY - Amazon Inspector couldn’t find software application inventory to scan for vulnerabilities. This might be caused due to required Amazon Inspector associations being deleted or failing to run on your resource. Please verify the status of InspectorInventoryCollection-do-not-delete association in the SSM console for the resource. Additionally, you can verify the instance’s inventory in the SSM Fleet Manager console. STALE_INVENTORY - Amazon Inspector wasn’t able to collect an updated software application inventory in the last 7 days. Please confirm the required Amazon Inspector associations still exist and you can still see an updated inventory in the SSM console. EXCLUDED_BY_TAG - This resource was not scanned because it has been excluded by a tag. UNSUPPORTED_RUNTIME - The function was not scanned because it has an unsupported runtime. To see a complete list of supported runtimes see: https://docs.aws.amazon.com/inspector/latest/user/supported.html. UNSUPPORTED_MEDIA_TYPE - The ECR image has an unsupported media type. UNSUPPORTED_CONFIG_FILE - Reserved for future use. DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED - The instance has exceeded the 5000 package limit for Amazon Inspector Deep inspection. To resume Deep inspection for this instance you can try to adjust the custom paths associated with the account. DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED - The SSM agent couldn't send inventory to Amazon Inspector because the SSM quota for Inventory data collected per instance per day has already been reached for this instance. DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED - Amazon Inspector failed to extract the package inventory because the package collection time exceeding the maximum threshold of 15 minutes. DEEP_INSPECTION_NO_INVENTORY The Amazon Inspector plugin hasn't yet been able to collect an inventory of packages for this instance. This is usually the result of a pending scan, however, if this status persists after 6 hours, use SSM to ensure that the required Amazon Inspector associations exist and are running for the instance.
|
3210
3210
|
*/
|
3211
3211
|
reason: ScanStatusReason;
|
3212
3212
|
/**
|
@@ -3610,7 +3610,7 @@ declare namespace Inspector2 {
|
|
3610
3610
|
*/
|
3611
3611
|
relatedVulnerabilities?: RelatedVulnerabilities;
|
3612
3612
|
/**
|
3613
|
-
* The source of the vulnerability information.
|
3613
|
+
* The source of the vulnerability information. Possible results are RHEL, AMAZON_CVE, DEBIAN or NVD.
|
3614
3614
|
*/
|
3615
3615
|
source?: VulnerabilitySource;
|
3616
3616
|
/**
|
@@ -421,10 +421,30 @@ declare namespace IVSRealTime {
|
|
421
421
|
* Application-provided attributes to encode into the token and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
|
422
422
|
*/
|
423
423
|
attributes?: ParticipantAttributes;
|
424
|
+
/**
|
425
|
+
* The participant’s browser.
|
426
|
+
*/
|
427
|
+
browserName?: ParticipantClientAttribute;
|
428
|
+
/**
|
429
|
+
* The participant’s browser version.
|
430
|
+
*/
|
431
|
+
browserVersion?: ParticipantClientAttribute;
|
424
432
|
/**
|
425
433
|
* ISO 8601 timestamp (returned as a string) when the participant first joined the stage session.
|
426
434
|
*/
|
427
435
|
firstJoinTime?: Time;
|
436
|
+
/**
|
437
|
+
* The participant’s Internet Service Provider.
|
438
|
+
*/
|
439
|
+
ispName?: ParticipantClientAttribute;
|
440
|
+
/**
|
441
|
+
* The participant’s operating system.
|
442
|
+
*/
|
443
|
+
osName?: ParticipantClientAttribute;
|
444
|
+
/**
|
445
|
+
* The participant’s operating system version.
|
446
|
+
*/
|
447
|
+
osVersion?: ParticipantClientAttribute;
|
428
448
|
/**
|
429
449
|
* Unique identifier for this participant, assigned by IVS.
|
430
450
|
*/
|
@@ -433,6 +453,10 @@ declare namespace IVSRealTime {
|
|
433
453
|
* Whether the participant ever published to the stage session.
|
434
454
|
*/
|
435
455
|
published?: Published;
|
456
|
+
/**
|
457
|
+
* The participant’s SDK version.
|
458
|
+
*/
|
459
|
+
sdkVersion?: ParticipantClientAttribute;
|
436
460
|
/**
|
437
461
|
* Whether the participant is connected to or disconnected from the stage.
|
438
462
|
*/
|
@@ -443,6 +467,7 @@ declare namespace IVSRealTime {
|
|
443
467
|
userId?: UserId;
|
444
468
|
}
|
445
469
|
export type ParticipantAttributes = {[key: string]: String};
|
470
|
+
export type ParticipantClientAttribute = string;
|
446
471
|
export type ParticipantId = string;
|
447
472
|
export type ParticipantList = ParticipantSummary[];
|
448
473
|
export type ParticipantState = "CONNECTED"|"DISCONNECTED"|string;
|
@@ -2586,6 +2586,7 @@ declare namespace Lambda {
|
|
2586
2586
|
export type NamespacedFunctionName = string;
|
2587
2587
|
export type NamespacedStatementId = string;
|
2588
2588
|
export type NonNegativeInteger = number;
|
2589
|
+
export type NullableBoolean = boolean;
|
2589
2590
|
export interface OnFailure {
|
2590
2591
|
/**
|
2591
2592
|
* The Amazon Resource Name (ARN) of the destination resource.
|
@@ -3334,6 +3335,10 @@ declare namespace Lambda {
|
|
3334
3335
|
* A list of VPC security group IDs.
|
3335
3336
|
*/
|
3336
3337
|
SecurityGroupIds?: SecurityGroupIds;
|
3338
|
+
/**
|
3339
|
+
* Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
|
3340
|
+
*/
|
3341
|
+
Ipv6AllowedForDualStack?: NullableBoolean;
|
3337
3342
|
}
|
3338
3343
|
export interface VpcConfigResponse {
|
3339
3344
|
/**
|
@@ -3348,6 +3353,10 @@ declare namespace Lambda {
|
|
3348
3353
|
* The ID of the VPC.
|
3349
3354
|
*/
|
3350
3355
|
VpcId?: VpcId;
|
3356
|
+
/**
|
3357
|
+
* Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
|
3358
|
+
*/
|
3359
|
+
Ipv6AllowedForDualStack?: NullableBoolean;
|
3351
3360
|
}
|
3352
3361
|
export type VpcId = string;
|
3353
3362
|
export type Weight = number;
|
@@ -28,11 +28,11 @@ declare class Pricing extends Service {
|
|
28
28
|
*/
|
29
29
|
getAttributeValues(callback?: (err: AWSError, data: Pricing.Types.GetAttributeValuesResponse) => void): Request<Pricing.Types.GetAttributeValuesResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns the URL that you can retrieve your Price List file from. This URL is based on the PriceListArn and FileFormat that you retrieve from the
|
31
|
+
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns the URL that you can retrieve your Price List file from. This URL is based on the PriceListArn and FileFormat that you retrieve from the ListPriceLists response.
|
32
32
|
*/
|
33
33
|
getPriceListFileUrl(params: Pricing.Types.GetPriceListFileUrlRequest, callback?: (err: AWSError, data: Pricing.Types.GetPriceListFileUrlResponse) => void): Request<Pricing.Types.GetPriceListFileUrlResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns the URL that you can retrieve your Price List file from. This URL is based on the PriceListArn and FileFormat that you retrieve from the
|
35
|
+
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns the URL that you can retrieve your Price List file from. This URL is based on the PriceListArn and FileFormat that you retrieve from the ListPriceLists response.
|
36
36
|
*/
|
37
37
|
getPriceListFileUrl(callback?: (err: AWSError, data: Pricing.Types.GetPriceListFileUrlResponse) => void): Request<Pricing.Types.GetPriceListFileUrlResponse, AWSError>;
|
38
38
|
/**
|
@@ -44,11 +44,11 @@ declare class Pricing extends Service {
|
|
44
44
|
*/
|
45
45
|
getProducts(callback?: (err: AWSError, data: Pricing.Types.GetProductsResponse) => void): Request<Pricing.Types.GetProductsResponse, AWSError>;
|
46
46
|
/**
|
47
|
-
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns a list of Price List references that the requester if authorized to view, given a ServiceCode, CurrencyCode, and an EffectiveDate. Use without a RegionCode filter to list Price List references from all available Amazon Web Services Regions. Use with a RegionCode filter to get the Price List reference that's specific to a specific Amazon Web Services Region. You can use the PriceListArn from the response to get your preferred Price List files through the
|
47
|
+
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns a list of Price List references that the requester if authorized to view, given a ServiceCode, CurrencyCode, and an EffectiveDate. Use without a RegionCode filter to list Price List references from all available Amazon Web Services Regions. Use with a RegionCode filter to get the Price List reference that's specific to a specific Amazon Web Services Region. You can use the PriceListArn from the response to get your preferred Price List files through the GetPriceListFileUrl API.
|
48
48
|
*/
|
49
49
|
listPriceLists(params: Pricing.Types.ListPriceListsRequest, callback?: (err: AWSError, data: Pricing.Types.ListPriceListsResponse) => void): Request<Pricing.Types.ListPriceListsResponse, AWSError>;
|
50
50
|
/**
|
51
|
-
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns a list of Price List references that the requester if authorized to view, given a ServiceCode, CurrencyCode, and an EffectiveDate. Use without a RegionCode filter to list Price List references from all available Amazon Web Services Regions. Use with a RegionCode filter to get the Price List reference that's specific to a specific Amazon Web Services Region. You can use the PriceListArn from the response to get your preferred Price List files through the
|
51
|
+
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns a list of Price List references that the requester if authorized to view, given a ServiceCode, CurrencyCode, and an EffectiveDate. Use without a RegionCode filter to list Price List references from all available Amazon Web Services Regions. Use with a RegionCode filter to get the Price List reference that's specific to a specific Amazon Web Services Region. You can use the PriceListArn from the response to get your preferred Price List files through the GetPriceListFileUrl API.
|
52
52
|
*/
|
53
53
|
listPriceLists(callback?: (err: AWSError, data: Pricing.Types.ListPriceListsResponse) => void): Request<Pricing.Types.ListPriceListsResponse, AWSError>;
|
54
54
|
}
|
@@ -144,11 +144,11 @@ declare namespace Pricing {
|
|
144
144
|
}
|
145
145
|
export interface GetPriceListFileUrlRequest {
|
146
146
|
/**
|
147
|
-
* The unique identifier that maps to where your Price List files are located. PriceListArn can be obtained from the
|
147
|
+
* The unique identifier that maps to where your Price List files are located. PriceListArn can be obtained from the ListPriceLists response.
|
148
148
|
*/
|
149
149
|
PriceListArn: PriceListArn;
|
150
150
|
/**
|
151
|
-
* The format that you want to retrieve your Price List files in. The FileFormat can be obtained from the
|
151
|
+
* The format that you want to retrieve your Price List files in. The FileFormat can be obtained from the ListPriceLists response.
|
152
152
|
*/
|
153
153
|
FileFormat: FileFormat;
|
154
154
|
}
|
@@ -196,7 +196,7 @@ declare namespace Pricing {
|
|
196
196
|
}
|
197
197
|
export interface ListPriceListsRequest {
|
198
198
|
/**
|
199
|
-
* The service code or the Savings Plan service code for the attributes that you want to retrieve. For example, to get the list of applicable Amazon EC2 price lists, use AmazonEC2. For a full list of service codes containing On-Demand and Reserved Instance (RI) pricing, use the
|
199
|
+
* The service code or the Savings Plan service code for the attributes that you want to retrieve. For example, to get the list of applicable Amazon EC2 price lists, use AmazonEC2. For a full list of service codes containing On-Demand and Reserved Instance (RI) pricing, use the DescribeServices API. To retrieve the Reserved Instance and Compute Savings Plan price lists, use ComputeSavingsPlans. To retrieve Machine Learning Savings Plans price lists, use MachineLearningSavingsPlans.
|
200
200
|
*/
|
201
201
|
ServiceCode: ServiceCode;
|
202
202
|
/**
|
@@ -204,7 +204,7 @@ declare namespace Pricing {
|
|
204
204
|
*/
|
205
205
|
EffectiveDate: EffectiveDate;
|
206
206
|
/**
|
207
|
-
* This is used to filter the Price List by Amazon Web Services Region. For example, to get the price list only for the US East (N. Virginia) Region, use us-east-1. If nothing is specified, you retrieve price lists for all applicable Regions. The available RegionCode list can be retrieved from
|
207
|
+
* This is used to filter the Price List by Amazon Web Services Region. For example, to get the price list only for the US East (N. Virginia) Region, use us-east-1. If nothing is specified, you retrieve price lists for all applicable Regions. The available RegionCode list can be retrieved from GetAttributeValues API.
|
208
208
|
*/
|
209
209
|
RegionCode?: RegionCode;
|
210
210
|
/**
|