aws-sdk 2.1424.0 → 2.1426.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -1
- package/README.md +1 -1
- package/apis/amplifyuibuilder-2021-08-11.min.json +40 -9
- package/apis/application-insights-2018-11-25.min.json +228 -43
- package/apis/application-insights-2018-11-25.paginators.json +5 -0
- package/apis/autoscaling-2011-01-01.examples.json +73 -10
- package/apis/autoscaling-2011-01-01.min.json +61 -52
- package/apis/cleanrooms-2022-02-17.min.json +601 -85
- package/apis/cleanrooms-2022-02-17.paginators.json +12 -0
- package/apis/cloudformation-2010-05-15.min.json +95 -80
- package/apis/cloudfront-2020-05-31.min.json +4 -1
- package/apis/inspector2-2020-06-08.min.json +291 -192
- package/apis/kafka-2018-11-14.min.json +237 -52
- package/apis/kafka-2018-11-14.paginators.json +6 -0
- package/apis/lookoutequipment-2020-12-15.min.json +337 -23
- package/apis/lookoutequipment-2020-12-15.paginators.json +5 -0
- package/apis/omics-2022-11-28.min.json +32 -29
- package/apis/pinpoint-2016-12-01.examples.json +6 -12
- package/apis/pinpoint-2016-12-01.min.json +286 -243
- package/apis/rds-2014-10-31.min.json +175 -162
- package/apis/scheduler-2021-06-30.min.json +15 -12
- package/clients/amplifyuibuilder.d.ts +48 -4
- package/clients/applicationinsights.d.ts +342 -2
- package/clients/autoscaling.d.ts +13 -2
- package/clients/cleanrooms.d.ts +516 -9
- package/clients/cloudformation.d.ts +21 -0
- package/clients/cloudfront.d.ts +14 -10
- package/clients/codestarconnections.d.ts +10 -10
- package/clients/connect.d.ts +1 -1
- package/clients/drs.d.ts +1 -1
- package/clients/inspector2.d.ts +101 -2
- package/clients/kafka.d.ts +204 -0
- package/clients/lookoutequipment.d.ts +522 -15
- package/clients/omics.d.ts +13 -0
- package/clients/pinpoint.d.ts +69 -5
- package/clients/rds.d.ts +21 -0
- package/clients/route53.d.ts +9 -9
- package/clients/scheduler.d.ts +16 -3
- package/clients/sqs.d.ts +9 -9
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +18 -18
- package/dist/aws-sdk.js +338 -298
- package/dist/aws-sdk.min.js +95 -95
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -1090,6 +1090,10 @@ declare namespace CloudFormation {
|
|
1090
1090
|
* Whether to enable termination protection on the specified stack. If a user attempts to delete a stack with termination protection enabled, the operation fails and the stack remains unchanged. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide. Termination protection is deactivated on stacks by default. For nested stacks, termination protection is set on the root stack and can't be changed directly on the nested stack.
|
1091
1091
|
*/
|
1092
1092
|
EnableTerminationProtection?: EnableTerminationProtection;
|
1093
|
+
/**
|
1094
|
+
* This deletion policy deletes newly created resources, but retains existing resources, when a stack operation is rolled back. This ensures new, empty, and unused resources are deleted, while critical resources and their data are retained. RetainExceptOnCreate can be specified for any resource that supports the DeletionPolicy attribute.
|
1095
|
+
*/
|
1096
|
+
RetainExceptOnCreate?: RetainExceptOnCreate;
|
1093
1097
|
}
|
1094
1098
|
export interface CreateStackInstancesInput {
|
1095
1099
|
/**
|
@@ -2006,6 +2010,10 @@ declare namespace CloudFormation {
|
|
2006
2010
|
* Preserves the state of previously provisioned resources when an operation fails. This parameter can't be specified when the OnStackFailure parameter to the CreateChangeSet API operation was specified. True - if the stack creation fails, do nothing. This is equivalent to specifying DO_NOTHING for the OnStackFailure parameter to the CreateChangeSet API operation. False - if the stack creation fails, roll back the stack. This is equivalent to specifying ROLLBACK for the OnStackFailure parameter to the CreateChangeSet API operation. Default: True
|
2007
2011
|
*/
|
2008
2012
|
DisableRollback?: DisableRollback;
|
2013
|
+
/**
|
2014
|
+
* This deletion policy deletes newly created resources, but retains existing resources, when a stack operation is rolled back. This ensures new, empty, and unused resources are deleted, while critical resources and their data are retained. RetainExceptOnCreate can be specified for any resource that supports the DeletionPolicy attribute.
|
2015
|
+
*/
|
2016
|
+
RetainExceptOnCreate?: RetainExceptOnCreate;
|
2009
2017
|
}
|
2010
2018
|
export interface ExecuteChangeSetOutput {
|
2011
2019
|
}
|
@@ -3013,6 +3021,7 @@ declare namespace CloudFormation {
|
|
3013
3021
|
export type ResourceTypes = ResourceType[];
|
3014
3022
|
export type ResourcesToImport = ResourceToImport[];
|
3015
3023
|
export type ResourcesToSkip = ResourceToSkip[];
|
3024
|
+
export type RetainExceptOnCreate = boolean;
|
3016
3025
|
export type RetainResources = LogicalResourceId[];
|
3017
3026
|
export type RetainStacks = boolean;
|
3018
3027
|
export type RetainStacksNullable = boolean;
|
@@ -3042,6 +3051,10 @@ declare namespace CloudFormation {
|
|
3042
3051
|
* A unique identifier for this RollbackStack request.
|
3043
3052
|
*/
|
3044
3053
|
ClientRequestToken?: ClientRequestToken;
|
3054
|
+
/**
|
3055
|
+
* This deletion policy deletes newly created resources, but retains existing resources, when a stack operation is rolled back. This ensures new, empty, and unused resources are deleted, while critical resources and their data are retained. RetainExceptOnCreate can be specified for any resource that supports the DeletionPolicy attribute.
|
3056
|
+
*/
|
3057
|
+
RetainExceptOnCreate?: RetainExceptOnCreate;
|
3045
3058
|
}
|
3046
3059
|
export interface RollbackStackOutput {
|
3047
3060
|
/**
|
@@ -3232,6 +3245,10 @@ declare namespace CloudFormation {
|
|
3232
3245
|
* Information about whether a stack's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.
|
3233
3246
|
*/
|
3234
3247
|
DriftInformation?: StackDriftInformation;
|
3248
|
+
/**
|
3249
|
+
* This deletion policy deletes newly created resources, but retains existing resources, when a stack operation is rolled back. This ensures new, empty, and unused resources are deleted, while critical resources and their data are retained. RetainExceptOnCreate can be specified for any resource that supports the DeletionPolicy attribute.
|
3250
|
+
*/
|
3251
|
+
RetainExceptOnCreate?: RetainExceptOnCreate;
|
3235
3252
|
}
|
3236
3253
|
export type StackDriftDetectionId = string;
|
3237
3254
|
export type StackDriftDetectionStatus = "DETECTION_IN_PROGRESS"|"DETECTION_FAILED"|"DETECTION_COMPLETE"|string;
|
@@ -4382,6 +4399,10 @@ declare namespace CloudFormation {
|
|
4382
4399
|
* A unique identifier for this UpdateStack request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to update a stack with the same name. You might retry UpdateStack requests to ensure that CloudFormation successfully received them. All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1. In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.
|
4383
4400
|
*/
|
4384
4401
|
ClientRequestToken?: ClientRequestToken;
|
4402
|
+
/**
|
4403
|
+
* This deletion policy deletes newly created resources, but retains existing resources, when a stack operation is rolled back. This ensures new, empty, and unused resources are deleted, while critical resources and their data are retained. RetainExceptOnCreate can be specified for any resource that supports the DeletionPolicy attribute.
|
4404
|
+
*/
|
4405
|
+
RetainExceptOnCreate?: RetainExceptOnCreate;
|
4385
4406
|
}
|
4386
4407
|
export interface UpdateStackInstancesInput {
|
4387
4408
|
/**
|
package/clients/cloudfront.d.ts
CHANGED
@@ -22,11 +22,11 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
22
22
|
*/
|
23
23
|
associateAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
24
24
|
/**
|
25
|
-
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution.
|
25
|
+
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution. This API operation requires the following IAM permissions: GetDistribution CreateDistribution CopyDistribution
|
26
26
|
*/
|
27
27
|
copyDistribution(params: CloudFront.Types.CopyDistributionRequest, callback?: (err: AWSError, data: CloudFront.Types.CopyDistributionResult) => void): Request<CloudFront.Types.CopyDistributionResult, AWSError>;
|
28
28
|
/**
|
29
|
-
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution.
|
29
|
+
* Creates a staging distribution using the configuration of the provided primary distribution. A staging distribution is a copy of an existing distribution (called the primary distribution) that you can use in a continuous deployment workflow. After you create a staging distribution, you can use UpdateDistribution to modify the staging distribution's configuration. Then you can use CreateContinuousDeploymentPolicy to incrementally move traffic to the staging distribution. This API operation requires the following IAM permissions: GetDistribution CreateDistribution CopyDistribution
|
30
30
|
*/
|
31
31
|
copyDistribution(callback?: (err: AWSError, data: CloudFront.Types.CopyDistributionResult) => void): Request<CloudFront.Types.CopyDistributionResult, AWSError>;
|
32
32
|
/**
|
@@ -62,11 +62,11 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
62
62
|
*/
|
63
63
|
createDistribution(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionResult) => void): Request<CloudFront.Types.CreateDistributionResult, AWSError>;
|
64
64
|
/**
|
65
|
-
* Create a new distribution with tags.
|
65
|
+
* Create a new distribution with tags. This API operation requires the following IAM permissions: CreateDistribution TagResource
|
66
66
|
*/
|
67
67
|
createDistributionWithTags(params: CloudFront.Types.CreateDistributionWithTagsRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>;
|
68
68
|
/**
|
69
|
-
* Create a new distribution with tags.
|
69
|
+
* Create a new distribution with tags. This API operation requires the following IAM permissions: CreateDistribution TagResource
|
70
70
|
*/
|
71
71
|
createDistributionWithTags(callback?: (err: AWSError, data: CloudFront.Types.CreateDistributionWithTagsResult) => void): Request<CloudFront.Types.CreateDistributionWithTagsResult, AWSError>;
|
72
72
|
/**
|
@@ -774,11 +774,11 @@ declare class CloudFront extends CloudFrontCustomizations {
|
|
774
774
|
*/
|
775
775
|
updateDistribution(callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionResult) => void): Request<CloudFront.Types.UpdateDistributionResult, AWSError>;
|
776
776
|
/**
|
777
|
-
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution.
|
777
|
+
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution. This API operation requires the following IAM permissions: GetDistribution UpdateDistribution
|
778
778
|
*/
|
779
779
|
updateDistributionWithStagingConfig(params: CloudFront.Types.UpdateDistributionWithStagingConfigRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionWithStagingConfigResult) => void): Request<CloudFront.Types.UpdateDistributionWithStagingConfigResult, AWSError>;
|
780
780
|
/**
|
781
|
-
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution.
|
781
|
+
* Copies the staging distribution's configuration to its corresponding primary distribution. The primary distribution retains its Aliases (also known as alternate domain names or CNAMEs) and ContinuousDeploymentPolicyId value, but otherwise its configuration is overwritten to match the staging distribution. You can use this operation in a continuous deployment workflow after you have tested configuration changes on the staging distribution. After using a continuous deployment policy to move a portion of your domain name's traffic to the staging distribution and verifying that it works as intended, you can use this operation to copy the staging distribution's configuration to the primary distribution. This action will disable the continuous deployment policy and move your domain's traffic back to the primary distribution. This API operation requires the following IAM permissions: GetDistribution UpdateDistribution
|
782
782
|
*/
|
783
783
|
updateDistributionWithStagingConfig(callback?: (err: AWSError, data: CloudFront.Types.UpdateDistributionWithStagingConfigResult) => void): Request<CloudFront.Types.UpdateDistributionWithStagingConfigResult, AWSError>;
|
784
784
|
/**
|
@@ -910,7 +910,7 @@ declare namespace CloudFront {
|
|
910
910
|
}
|
911
911
|
export interface ActiveTrustedSigners {
|
912
912
|
/**
|
913
|
-
* This field is true if any of the Amazon Web Services accounts in the list
|
913
|
+
* This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.
|
914
914
|
*/
|
915
915
|
Enabled: boolean;
|
916
916
|
/**
|
@@ -1400,6 +1400,10 @@ declare namespace CloudFront {
|
|
1400
1400
|
* A value that uniquely identifies a request to create a resource. This helps to prevent CloudFront from creating a duplicate resource if you accidentally resubmit an identical request.
|
1401
1401
|
*/
|
1402
1402
|
CallerReference: string;
|
1403
|
+
/**
|
1404
|
+
* A Boolean flag to specify the state of the staging distribution when it's created. When you set this value to True, the staging distribution is enabled. When you set this value to False, the staging distribution is disabled. If you omit this field, the default value is True.
|
1405
|
+
*/
|
1406
|
+
Enabled?: boolean;
|
1403
1407
|
}
|
1404
1408
|
export interface CopyDistributionResult {
|
1405
1409
|
Distribution?: Distribution;
|
@@ -2598,7 +2602,7 @@ declare namespace CloudFront {
|
|
2598
2602
|
*/
|
2599
2603
|
Comment: string;
|
2600
2604
|
/**
|
2601
|
-
* The function's runtime environment
|
2605
|
+
* The function's runtime environment verion.
|
2602
2606
|
*/
|
2603
2607
|
Runtime: FunctionRuntime;
|
2604
2608
|
}
|
@@ -2641,7 +2645,7 @@ declare namespace CloudFront {
|
|
2641
2645
|
LastModifiedTime: timestamp;
|
2642
2646
|
}
|
2643
2647
|
export type FunctionName = string;
|
2644
|
-
export type FunctionRuntime = "cloudfront-js-1.0"|string;
|
2648
|
+
export type FunctionRuntime = "cloudfront-js-1.0"|"cloudfront-js-2.0"|string;
|
2645
2649
|
export type FunctionStage = "DEVELOPMENT"|"LIVE"|string;
|
2646
2650
|
export interface FunctionSummary {
|
2647
2651
|
/**
|
@@ -4940,7 +4944,7 @@ declare namespace CloudFront {
|
|
4940
4944
|
}
|
4941
4945
|
export interface TrustedSigners {
|
4942
4946
|
/**
|
4943
|
-
* This field is true if any of the Amazon Web Services accounts
|
4947
|
+
* This field is true if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field is false.
|
4944
4948
|
*/
|
4945
4949
|
Enabled: boolean;
|
4946
4950
|
/**
|
@@ -12,11 +12,11 @@ declare class CodeStarconnections extends Service {
|
|
12
12
|
constructor(options?: CodeStarconnections.Types.ClientConfiguration)
|
13
13
|
config: Config & CodeStarconnections.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Creates a connection that can then be given to other
|
15
|
+
* Creates a connection that can then be given to other Amazon Web Services services like CodePipeline so that it can access third-party code repositories. The connection is in pending status until the third-party connection handshake is completed from the console.
|
16
16
|
*/
|
17
17
|
createConnection(params: CodeStarconnections.Types.CreateConnectionInput, callback?: (err: AWSError, data: CodeStarconnections.Types.CreateConnectionOutput) => void): Request<CodeStarconnections.Types.CreateConnectionOutput, AWSError>;
|
18
18
|
/**
|
19
|
-
* Creates a connection that can then be given to other
|
19
|
+
* Creates a connection that can then be given to other Amazon Web Services services like CodePipeline so that it can access third-party code repositories. The connection is in pending status until the third-party connection handshake is completed from the console.
|
20
20
|
*/
|
21
21
|
createConnection(callback?: (err: AWSError, data: CodeStarconnections.Types.CreateConnectionOutput) => void): Request<CodeStarconnections.Types.CreateConnectionOutput, AWSError>;
|
22
22
|
/**
|
@@ -92,11 +92,11 @@ declare class CodeStarconnections extends Service {
|
|
92
92
|
*/
|
93
93
|
tagResource(callback?: (err: AWSError, data: CodeStarconnections.Types.TagResourceOutput) => void): Request<CodeStarconnections.Types.TagResourceOutput, AWSError>;
|
94
94
|
/**
|
95
|
-
* Removes tags from an
|
95
|
+
* Removes tags from an Amazon Web Services resource.
|
96
96
|
*/
|
97
97
|
untagResource(params: CodeStarconnections.Types.UntagResourceInput, callback?: (err: AWSError, data: CodeStarconnections.Types.UntagResourceOutput) => void): Request<CodeStarconnections.Types.UntagResourceOutput, AWSError>;
|
98
98
|
/**
|
99
|
-
* Removes tags from an
|
99
|
+
* Removes tags from an Amazon Web Services resource.
|
100
100
|
*/
|
101
101
|
untagResource(callback?: (err: AWSError, data: CodeStarconnections.Types.UntagResourceOutput) => void): Request<CodeStarconnections.Types.UntagResourceOutput, AWSError>;
|
102
102
|
/**
|
@@ -113,11 +113,11 @@ declare namespace CodeStarconnections {
|
|
113
113
|
export type AmazonResourceName = string;
|
114
114
|
export interface Connection {
|
115
115
|
/**
|
116
|
-
* The name of the connection. Connection names must be unique in an
|
116
|
+
* The name of the connection. Connection names must be unique in an Amazon Web Services account.
|
117
117
|
*/
|
118
118
|
ConnectionName?: ConnectionName;
|
119
119
|
/**
|
120
|
-
* The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between
|
120
|
+
* The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between Amazon Web Services. The ARN is never reused if the connection is deleted.
|
121
121
|
*/
|
122
122
|
ConnectionArn?: ConnectionArn;
|
123
123
|
/**
|
@@ -147,7 +147,7 @@ declare namespace CodeStarconnections {
|
|
147
147
|
*/
|
148
148
|
ProviderType?: ProviderType;
|
149
149
|
/**
|
150
|
-
* The name of the connection to be created.
|
150
|
+
* The name of the connection to be created.
|
151
151
|
*/
|
152
152
|
ConnectionName: ConnectionName;
|
153
153
|
/**
|
@@ -161,7 +161,7 @@ declare namespace CodeStarconnections {
|
|
161
161
|
}
|
162
162
|
export interface CreateConnectionOutput {
|
163
163
|
/**
|
164
|
-
* The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the connection reference when the connection is shared between
|
164
|
+
* The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the connection reference when the connection is shared between Amazon Web Services services. The ARN is never reused if the connection is deleted.
|
165
165
|
*/
|
166
166
|
ConnectionArn: ConnectionArn;
|
167
167
|
/**
|
@@ -171,7 +171,7 @@ declare namespace CodeStarconnections {
|
|
171
171
|
}
|
172
172
|
export interface CreateHostInput {
|
173
173
|
/**
|
174
|
-
* The name of the host to be created.
|
174
|
+
* The name of the host to be created.
|
175
175
|
*/
|
176
176
|
Name: HostName;
|
177
177
|
/**
|
@@ -348,7 +348,7 @@ declare namespace CodeStarconnections {
|
|
348
348
|
}
|
349
349
|
export type MaxResults = number;
|
350
350
|
export type NextToken = string;
|
351
|
-
export type ProviderType = "Bitbucket"|"GitHub"|"GitHubEnterpriseServer"|string;
|
351
|
+
export type ProviderType = "Bitbucket"|"GitHub"|"GitHubEnterpriseServer"|"GitLab"|string;
|
352
352
|
export type SecurityGroupId = string;
|
353
353
|
export type SecurityGroupIds = SecurityGroupId[];
|
354
354
|
export type SubnetId = string;
|
package/clients/connect.d.ts
CHANGED
@@ -6497,7 +6497,7 @@ declare namespace Connect {
|
|
6497
6497
|
PhoneNumberCountryCode?: PhoneNumberCountryCode;
|
6498
6498
|
}
|
6499
6499
|
export type PhoneNumberSummaryList = PhoneNumberSummary[];
|
6500
|
-
export type PhoneNumberType = "TOLL_FREE"|"DID"|string;
|
6500
|
+
export type PhoneNumberType = "TOLL_FREE"|"DID"|"UIFN"|"SHARED"|"THIRD_PARTY_TF"|"THIRD_PARTY_DID"|string;
|
6501
6501
|
export type PhoneNumberTypes = PhoneNumberType[];
|
6502
6502
|
export type PhoneNumberWorkflowMessage = string;
|
6503
6503
|
export type PhoneNumberWorkflowStatus = "CLAIMED"|"IN_PROGRESS"|"FAILED"|string;
|
package/clients/drs.d.ts
CHANGED
@@ -2300,7 +2300,7 @@ declare namespace Drs {
|
|
2300
2300
|
}
|
2301
2301
|
export type TagValue = string;
|
2302
2302
|
export type TagsMap = {[key: string]: TagValue};
|
2303
|
-
export type TargetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|string;
|
2303
|
+
export type TargetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|"IN_AWS"|string;
|
2304
2304
|
export interface TerminateRecoveryInstancesRequest {
|
2305
2305
|
/**
|
2306
2306
|
* The IDs of the Recovery Instances that should be terminated.
|
package/clients/inspector2.d.ts
CHANGED
@@ -35,6 +35,14 @@ declare class Inspector2 extends Service {
|
|
35
35
|
* Retrieves code snippets from findings that Amazon Inspector detected code vulnerabilities in.
|
36
36
|
*/
|
37
37
|
batchGetCodeSnippet(callback?: (err: AWSError, data: Inspector2.Types.BatchGetCodeSnippetResponse) => void): Request<Inspector2.Types.BatchGetCodeSnippetResponse, AWSError>;
|
38
|
+
/**
|
39
|
+
* Gets vulnerability details for findings.
|
40
|
+
*/
|
41
|
+
batchGetFindingDetails(params: Inspector2.Types.BatchGetFindingDetailsRequest, callback?: (err: AWSError, data: Inspector2.Types.BatchGetFindingDetailsResponse) => void): Request<Inspector2.Types.BatchGetFindingDetailsResponse, AWSError>;
|
42
|
+
/**
|
43
|
+
* Gets vulnerability details for findings.
|
44
|
+
*/
|
45
|
+
batchGetFindingDetails(callback?: (err: AWSError, data: Inspector2.Types.BatchGetFindingDetailsResponse) => void): Request<Inspector2.Types.BatchGetFindingDetailsResponse, AWSError>;
|
38
46
|
/**
|
39
47
|
* Gets free trial status for multiple Amazon Web Services accounts.
|
40
48
|
*/
|
@@ -828,6 +836,22 @@ declare namespace Inspector2 {
|
|
828
836
|
*/
|
829
837
|
errors?: CodeSnippetErrorList;
|
830
838
|
}
|
839
|
+
export interface BatchGetFindingDetailsRequest {
|
840
|
+
/**
|
841
|
+
* A list of finding ARNs.
|
842
|
+
*/
|
843
|
+
findingArns: FindingArnList;
|
844
|
+
}
|
845
|
+
export interface BatchGetFindingDetailsResponse {
|
846
|
+
/**
|
847
|
+
* Error information for findings that details could not be returned for.
|
848
|
+
*/
|
849
|
+
errors?: FindingDetailsErrorList;
|
850
|
+
/**
|
851
|
+
* A finding's vulnerability details.
|
852
|
+
*/
|
853
|
+
findingDetails?: FindingDetails;
|
854
|
+
}
|
831
855
|
export interface BatchGetFreeTrialInfoRequest {
|
832
856
|
/**
|
833
857
|
* The account IDs to get free trial status for.
|
@@ -1379,7 +1403,7 @@ declare namespace Inspector2 {
|
|
1379
1403
|
*/
|
1380
1404
|
bucketName: String;
|
1381
1405
|
/**
|
1382
|
-
* The prefix
|
1406
|
+
* The prefix that the findings will be written under.
|
1383
1407
|
*/
|
1384
1408
|
keyPrefix?: String;
|
1385
1409
|
/**
|
@@ -1610,6 +1634,24 @@ declare namespace Inspector2 {
|
|
1610
1634
|
export type EpssScoreValue = number;
|
1611
1635
|
export type ErrorCode = "ALREADY_ENABLED"|"ENABLE_IN_PROGRESS"|"DISABLE_IN_PROGRESS"|"SUSPEND_IN_PROGRESS"|"RESOURCE_NOT_FOUND"|"ACCESS_DENIED"|"INTERNAL_ERROR"|"SSM_UNAVAILABLE"|"SSM_THROTTLED"|"EVENTBRIDGE_UNAVAILABLE"|"EVENTBRIDGE_THROTTLED"|"RESOURCE_SCAN_NOT_DISABLED"|"DISASSOCIATE_ALL_MEMBERS"|"ACCOUNT_IS_ISOLATED"|string;
|
1612
1636
|
export type ErrorMessage = string;
|
1637
|
+
export interface Evidence {
|
1638
|
+
/**
|
1639
|
+
* The evidence details.
|
1640
|
+
*/
|
1641
|
+
evidenceDetail?: EvidenceDetail;
|
1642
|
+
/**
|
1643
|
+
* The evidence rule.
|
1644
|
+
*/
|
1645
|
+
evidenceRule?: EvidenceRule;
|
1646
|
+
/**
|
1647
|
+
* The evidence severity.
|
1648
|
+
*/
|
1649
|
+
severity?: EvidenceSeverity;
|
1650
|
+
}
|
1651
|
+
export type EvidenceDetail = string;
|
1652
|
+
export type EvidenceList = Evidence[];
|
1653
|
+
export type EvidenceRule = string;
|
1654
|
+
export type EvidenceSeverity = string;
|
1613
1655
|
export type ExecutionRoleArn = string;
|
1614
1656
|
export type ExploitAvailable = "YES"|"NO"|string;
|
1615
1657
|
export interface ExploitObserved {
|
@@ -1831,7 +1873,7 @@ declare namespace Inspector2 {
|
|
1831
1873
|
*/
|
1832
1874
|
lastObservedAt?: DateFilterList;
|
1833
1875
|
/**
|
1834
|
-
* Details on
|
1876
|
+
* Details on network protocol used to filter findings.
|
1835
1877
|
*/
|
1836
1878
|
networkProtocol?: StringFilterList;
|
1837
1879
|
/**
|
@@ -1974,7 +2016,61 @@ declare namespace Inspector2 {
|
|
1974
2016
|
updatedAt?: DateTimeTimestamp;
|
1975
2017
|
}
|
1976
2018
|
export type FindingArn = string;
|
2019
|
+
export type FindingArnList = FindingArn[];
|
1977
2020
|
export type FindingDescription = string;
|
2021
|
+
export interface FindingDetail {
|
2022
|
+
cisaData?: CisaData;
|
2023
|
+
/**
|
2024
|
+
* The Common Weakness Enumerations (CWEs) associated with the vulnerability.
|
2025
|
+
*/
|
2026
|
+
cwes?: Cwes;
|
2027
|
+
/**
|
2028
|
+
* The Exploit Prediction Scoring System (EPSS) score of the vulnerability.
|
2029
|
+
*/
|
2030
|
+
epssScore?: Double;
|
2031
|
+
/**
|
2032
|
+
* Information on the evidence of the vulnerability.
|
2033
|
+
*/
|
2034
|
+
evidences?: EvidenceList;
|
2035
|
+
exploitObserved?: ExploitObserved;
|
2036
|
+
/**
|
2037
|
+
* The finding ARN that the vulnerability details are associated with.
|
2038
|
+
*/
|
2039
|
+
findingArn?: FindingArn;
|
2040
|
+
/**
|
2041
|
+
* The reference URLs for the vulnerability data.
|
2042
|
+
*/
|
2043
|
+
referenceUrls?: VulnerabilityReferenceUrls;
|
2044
|
+
/**
|
2045
|
+
* The risk score of the vulnerability.
|
2046
|
+
*/
|
2047
|
+
riskScore?: RiskScore;
|
2048
|
+
/**
|
2049
|
+
* The known malware tools or kits that can exploit the vulnerability.
|
2050
|
+
*/
|
2051
|
+
tools?: Tools;
|
2052
|
+
/**
|
2053
|
+
* The MITRE adversary tactics, techniques, or procedures (TTPs) associated with the vulnerability.
|
2054
|
+
*/
|
2055
|
+
ttps?: Ttps;
|
2056
|
+
}
|
2057
|
+
export type FindingDetails = FindingDetail[];
|
2058
|
+
export interface FindingDetailsError {
|
2059
|
+
/**
|
2060
|
+
* The error code.
|
2061
|
+
*/
|
2062
|
+
errorCode: FindingDetailsErrorCode;
|
2063
|
+
/**
|
2064
|
+
* The error message.
|
2065
|
+
*/
|
2066
|
+
errorMessage: NonEmptyString;
|
2067
|
+
/**
|
2068
|
+
* The finding ARN that returned an error.
|
2069
|
+
*/
|
2070
|
+
findingArn: FindingArn;
|
2071
|
+
}
|
2072
|
+
export type FindingDetailsErrorCode = "INTERNAL_ERROR"|"ACCESS_DENIED"|"FINDING_DETAILS_NOT_FOUND"|"INVALID_INPUT"|string;
|
2073
|
+
export type FindingDetailsErrorList = FindingDetailsError[];
|
1978
2074
|
export type FindingList = Finding[];
|
1979
2075
|
export type FindingStatus = "ACTIVE"|"SUPPRESSED"|"CLOSED"|string;
|
1980
2076
|
export type FindingTitle = string;
|
@@ -3105,6 +3201,7 @@ declare namespace Inspector2 {
|
|
3105
3201
|
export type ResourceStringFilterList = ResourceStringFilter[];
|
3106
3202
|
export type ResourceStringInput = string;
|
3107
3203
|
export type ResourceType = "AWS_EC2_INSTANCE"|"AWS_ECR_CONTAINER_IMAGE"|"AWS_ECR_REPOSITORY"|"AWS_LAMBDA_FUNCTION"|string;
|
3204
|
+
export type RiskScore = number;
|
3108
3205
|
export type Runtime = "NODEJS"|"NODEJS_12_X"|"NODEJS_14_X"|"NODEJS_16_X"|"JAVA_8"|"JAVA_8_AL2"|"JAVA_11"|"PYTHON_3_7"|"PYTHON_3_8"|"PYTHON_3_9"|"UNSUPPORTED"|"NODEJS_18_X"|"GO_1_X"|"JAVA_17"|"PYTHON_3_10"|string;
|
3109
3206
|
export type SbomReportFormat = "CYCLONEDX_1_4"|"SPDX_2_3"|string;
|
3110
3207
|
export interface ScanStatus {
|
@@ -3301,6 +3398,8 @@ declare namespace Inspector2 {
|
|
3301
3398
|
vulnerabilityId?: String;
|
3302
3399
|
}
|
3303
3400
|
export type TitleSortBy = "CRITICAL"|"HIGH"|"ALL"|string;
|
3401
|
+
export type Tool = string;
|
3402
|
+
export type Tools = Tool[];
|
3304
3403
|
export type Ttp = string;
|
3305
3404
|
export type Ttps = Ttp[];
|
3306
3405
|
export interface UntagResourceRequest {
|