aws-sdk 2.1423.0 → 2.1425.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 +16 -1
- package/README.md +1 -1
- 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 +54 -16
- package/apis/autoscaling-2011-01-01.min.json +3 -0
- package/apis/autoscaling-2011-01-01.paginators.json +6 -0
- package/apis/cloudformation-2010-05-15.min.json +95 -80
- package/apis/cloudfront-2020-05-31.min.json +4 -1
- package/apis/ebs-2019-11-02.min.json +2 -1
- package/apis/ec2-2016-11-15.min.json +795 -780
- package/apis/ec2-2016-11-15.waiters2.json +25 -0
- package/apis/kafka-2018-11-14.min.json +237 -52
- package/apis/kafka-2018-11-14.paginators.json +6 -0
- package/apis/pinpoint-2016-12-01.examples.json +6 -12
- package/apis/pinpoint-2016-12-01.min.json +286 -243
- package/apis/sagemaker-2017-07-24.min.json +3 -0
- package/clients/applicationinsights.d.ts +342 -2
- package/clients/autoscaling.d.ts +7 -7
- package/clients/cloudformation.d.ts +21 -0
- package/clients/cloudfront.d.ts +14 -10
- package/clients/connect.d.ts +1 -1
- package/clients/ebs.d.ts +17 -12
- package/clients/ec2.d.ts +29 -0
- package/clients/eks.d.ts +1 -1
- package/clients/kafka.d.ts +204 -0
- package/clients/pinpoint.d.ts +69 -5
- package/clients/sagemaker.d.ts +1 -0
- package/clients/sqs.d.ts +9 -9
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +931 -864
- package/dist/aws-sdk.min.js +98 -98
- 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
|
/**
|
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/ebs.d.ts
CHANGED
@@ -13,51 +13,51 @@ declare class EBS extends Service {
|
|
13
13
|
constructor(options?: EBS.Types.ClientConfiguration)
|
14
14
|
config: Config & EBS.Types.ClientConfiguration;
|
15
15
|
/**
|
16
|
-
* Seals and completes the snapshot after all of the required blocks of data have been written to it. Completing the snapshot changes the status to completed. You cannot write new blocks to a snapshot after it has been completed.
|
16
|
+
* Seals and completes the snapshot after all of the required blocks of data have been written to it. Completing the snapshot changes the status to completed. You cannot write new blocks to a snapshot after it has been completed. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
17
17
|
*/
|
18
18
|
completeSnapshot(params: EBS.Types.CompleteSnapshotRequest, callback?: (err: AWSError, data: EBS.Types.CompleteSnapshotResponse) => void): Request<EBS.Types.CompleteSnapshotResponse, AWSError>;
|
19
19
|
/**
|
20
|
-
* Seals and completes the snapshot after all of the required blocks of data have been written to it. Completing the snapshot changes the status to completed. You cannot write new blocks to a snapshot after it has been completed.
|
20
|
+
* Seals and completes the snapshot after all of the required blocks of data have been written to it. Completing the snapshot changes the status to completed. You cannot write new blocks to a snapshot after it has been completed. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
21
21
|
*/
|
22
22
|
completeSnapshot(callback?: (err: AWSError, data: EBS.Types.CompleteSnapshotResponse) => void): Request<EBS.Types.CompleteSnapshotResponse, AWSError>;
|
23
23
|
/**
|
24
|
-
* Returns the data in a block in an Amazon Elastic Block Store snapshot.
|
24
|
+
* Returns the data in a block in an Amazon Elastic Block Store snapshot. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
25
25
|
*/
|
26
26
|
getSnapshotBlock(params: EBS.Types.GetSnapshotBlockRequest, callback?: (err: AWSError, data: EBS.Types.GetSnapshotBlockResponse) => void): Request<EBS.Types.GetSnapshotBlockResponse, AWSError>;
|
27
27
|
/**
|
28
|
-
* Returns the data in a block in an Amazon Elastic Block Store snapshot.
|
28
|
+
* Returns the data in a block in an Amazon Elastic Block Store snapshot. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
29
29
|
*/
|
30
30
|
getSnapshotBlock(callback?: (err: AWSError, data: EBS.Types.GetSnapshotBlockResponse) => void): Request<EBS.Types.GetSnapshotBlockResponse, AWSError>;
|
31
31
|
/**
|
32
|
-
* Returns information about the blocks that are different between two Amazon Elastic Block Store snapshots of the same volume/snapshot lineage.
|
32
|
+
* Returns information about the blocks that are different between two Amazon Elastic Block Store snapshots of the same volume/snapshot lineage. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
33
33
|
*/
|
34
34
|
listChangedBlocks(params: EBS.Types.ListChangedBlocksRequest, callback?: (err: AWSError, data: EBS.Types.ListChangedBlocksResponse) => void): Request<EBS.Types.ListChangedBlocksResponse, AWSError>;
|
35
35
|
/**
|
36
|
-
* Returns information about the blocks that are different between two Amazon Elastic Block Store snapshots of the same volume/snapshot lineage.
|
36
|
+
* Returns information about the blocks that are different between two Amazon Elastic Block Store snapshots of the same volume/snapshot lineage. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
37
37
|
*/
|
38
38
|
listChangedBlocks(callback?: (err: AWSError, data: EBS.Types.ListChangedBlocksResponse) => void): Request<EBS.Types.ListChangedBlocksResponse, AWSError>;
|
39
39
|
/**
|
40
|
-
* Returns information about the blocks in an Amazon Elastic Block Store snapshot.
|
40
|
+
* Returns information about the blocks in an Amazon Elastic Block Store snapshot. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
41
41
|
*/
|
42
42
|
listSnapshotBlocks(params: EBS.Types.ListSnapshotBlocksRequest, callback?: (err: AWSError, data: EBS.Types.ListSnapshotBlocksResponse) => void): Request<EBS.Types.ListSnapshotBlocksResponse, AWSError>;
|
43
43
|
/**
|
44
|
-
* Returns information about the blocks in an Amazon Elastic Block Store snapshot.
|
44
|
+
* Returns information about the blocks in an Amazon Elastic Block Store snapshot. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
45
45
|
*/
|
46
46
|
listSnapshotBlocks(callback?: (err: AWSError, data: EBS.Types.ListSnapshotBlocksResponse) => void): Request<EBS.Types.ListSnapshotBlocksResponse, AWSError>;
|
47
47
|
/**
|
48
|
-
* Writes a block of data to a snapshot. If the specified block contains data, the existing data is overwritten. The target snapshot must be in the pending state. Data written to a snapshot must be aligned with 512-KiB sectors.
|
48
|
+
* Writes a block of data to a snapshot. If the specified block contains data, the existing data is overwritten. The target snapshot must be in the pending state. Data written to a snapshot must be aligned with 512-KiB sectors. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
49
49
|
*/
|
50
50
|
putSnapshotBlock(params: EBS.Types.PutSnapshotBlockRequest, callback?: (err: AWSError, data: EBS.Types.PutSnapshotBlockResponse) => void): Request<EBS.Types.PutSnapshotBlockResponse, AWSError>;
|
51
51
|
/**
|
52
|
-
* Writes a block of data to a snapshot. If the specified block contains data, the existing data is overwritten. The target snapshot must be in the pending state. Data written to a snapshot must be aligned with 512-KiB sectors.
|
52
|
+
* Writes a block of data to a snapshot. If the specified block contains data, the existing data is overwritten. The target snapshot must be in the pending state. Data written to a snapshot must be aligned with 512-KiB sectors. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
53
53
|
*/
|
54
54
|
putSnapshotBlock(callback?: (err: AWSError, data: EBS.Types.PutSnapshotBlockResponse) => void): Request<EBS.Types.PutSnapshotBlockResponse, AWSError>;
|
55
55
|
/**
|
56
|
-
* Creates a new Amazon EBS snapshot. The new snapshot enters the pending state after the request completes. After creating the snapshot, use PutSnapshotBlock to write blocks of data to the snapshot.
|
56
|
+
* Creates a new Amazon EBS snapshot. The new snapshot enters the pending state after the request completes. After creating the snapshot, use PutSnapshotBlock to write blocks of data to the snapshot. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
57
57
|
*/
|
58
58
|
startSnapshot(params: EBS.Types.StartSnapshotRequest, callback?: (err: AWSError, data: EBS.Types.StartSnapshotResponse) => void): Request<EBS.Types.StartSnapshotResponse, AWSError>;
|
59
59
|
/**
|
60
|
-
* Creates a new Amazon EBS snapshot. The new snapshot enters the pending state after the request completes. After creating the snapshot, use PutSnapshotBlock to write blocks of data to the snapshot.
|
60
|
+
* Creates a new Amazon EBS snapshot. The new snapshot enters the pending state after the request completes. After creating the snapshot, use PutSnapshotBlock to write blocks of data to the snapshot. You should always retry requests that receive server (5xx) error responses, and ThrottlingException and RequestThrottledException client error responses. For more information see Error retries in the Amazon Elastic Compute Cloud User Guide.
|
61
61
|
*/
|
62
62
|
startSnapshot(callback?: (err: AWSError, data: EBS.Types.StartSnapshotResponse) => void): Request<EBS.Types.StartSnapshotResponse, AWSError>;
|
63
63
|
}
|
@@ -289,6 +289,7 @@ declare namespace EBS {
|
|
289
289
|
*/
|
290
290
|
ChecksumAlgorithm?: ChecksumAlgorithm;
|
291
291
|
}
|
292
|
+
export type SSEType = "sse-ebs"|"sse-kms"|"none"|string;
|
292
293
|
export type SnapshotId = string;
|
293
294
|
export interface StartSnapshotRequest {
|
294
295
|
/**
|
@@ -365,6 +366,10 @@ declare namespace EBS {
|
|
365
366
|
* The Amazon Resource Name (ARN) of the Key Management Service (KMS) key used to encrypt the snapshot.
|
366
367
|
*/
|
367
368
|
KmsKeyArn?: KmsKeyArn;
|
369
|
+
/**
|
370
|
+
* Reserved for future use.
|
371
|
+
*/
|
372
|
+
SseType?: SSEType;
|
368
373
|
}
|
369
374
|
export type Status = "completed"|"pending"|"error"|string;
|
370
375
|
export interface Tag {
|
package/clients/ec2.d.ts
CHANGED
@@ -4956,6 +4956,14 @@ declare class EC2 extends Service {
|
|
4956
4956
|
* Waits for the spotInstanceRequestFulfilled state by periodically calling the underlying EC2.describeSpotInstanceRequestsoperation every 15 seconds (at most 40 times).
|
4957
4957
|
*/
|
4958
4958
|
waitFor(state: "spotInstanceRequestFulfilled", callback?: (err: AWSError, data: EC2.Types.DescribeSpotInstanceRequestsResult) => void): Request<EC2.Types.DescribeSpotInstanceRequestsResult, AWSError>;
|
4959
|
+
/**
|
4960
|
+
* Waits for the storeImageTaskComplete state by periodically calling the underlying EC2.describeStoreImageTasksoperation every 5 seconds (at most 40 times).
|
4961
|
+
*/
|
4962
|
+
waitFor(state: "storeImageTaskComplete", params: EC2.Types.DescribeStoreImageTasksRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: EC2.Types.DescribeStoreImageTasksResult) => void): Request<EC2.Types.DescribeStoreImageTasksResult, AWSError>;
|
4963
|
+
/**
|
4964
|
+
* Waits for the storeImageTaskComplete state by periodically calling the underlying EC2.describeStoreImageTasksoperation every 5 seconds (at most 40 times).
|
4965
|
+
*/
|
4966
|
+
waitFor(state: "storeImageTaskComplete", callback?: (err: AWSError, data: EC2.Types.DescribeStoreImageTasksResult) => void): Request<EC2.Types.DescribeStoreImageTasksResult, AWSError>;
|
4959
4967
|
/**
|
4960
4968
|
* Waits for the subnetAvailable state by periodically calling the underlying EC2.describeSubnetsoperation every 15 seconds (at most 40 times).
|
4961
4969
|
*/
|
@@ -20712,6 +20720,10 @@ declare namespace EC2 {
|
|
20712
20720
|
* Indicates whether encryption by default is enabled.
|
20713
20721
|
*/
|
20714
20722
|
EbsEncryptionByDefault?: Boolean;
|
20723
|
+
/**
|
20724
|
+
* Reserved for future use.
|
20725
|
+
*/
|
20726
|
+
SseType?: SSEType;
|
20715
20727
|
}
|
20716
20728
|
export interface GetFlowLogsIntegrationTemplateRequest {
|
20717
20729
|
/**
|
@@ -32458,6 +32470,10 @@ declare namespace EC2 {
|
|
32458
32470
|
* The size of the volume, in GiB.
|
32459
32471
|
*/
|
32460
32472
|
VolumeSize?: Integer;
|
32473
|
+
/**
|
32474
|
+
* Reserved for future use.
|
32475
|
+
*/
|
32476
|
+
SseType?: SSEType;
|
32461
32477
|
}
|
32462
32478
|
export interface RestoreSnapshotTierRequest {
|
32463
32479
|
/**
|
@@ -33042,6 +33058,7 @@ declare namespace EC2 {
|
|
33042
33058
|
*/
|
33043
33059
|
UploadPolicySignature?: String;
|
33044
33060
|
}
|
33061
|
+
export type SSEType = "sse-ebs"|"sse-kms"|"none"|string;
|
33045
33062
|
export interface ScheduledInstance {
|
33046
33063
|
/**
|
33047
33064
|
* The Availability Zone.
|
@@ -33915,6 +33932,10 @@ declare namespace EC2 {
|
|
33915
33932
|
* Only for archived snapshots that are temporarily restored. Indicates the date and time when a temporarily restored snapshot will be automatically re-archived.
|
33916
33933
|
*/
|
33917
33934
|
RestoreExpiryTime?: MillisecondDateTime;
|
33935
|
+
/**
|
33936
|
+
* Reserved for future use.
|
33937
|
+
*/
|
33938
|
+
SseType?: SSEType;
|
33918
33939
|
}
|
33919
33940
|
export type SnapshotAttributeName = "productCodes"|"createVolumePermission"|string;
|
33920
33941
|
export interface SnapshotDetail {
|
@@ -34025,6 +34046,10 @@ declare namespace EC2 {
|
|
34025
34046
|
* The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide.
|
34026
34047
|
*/
|
34027
34048
|
OutpostArn?: String;
|
34049
|
+
/**
|
34050
|
+
* Reserved for future use.
|
34051
|
+
*/
|
34052
|
+
SseType?: SSEType;
|
34028
34053
|
}
|
34029
34054
|
export type SnapshotList = Snapshot[];
|
34030
34055
|
export interface SnapshotRecycleBinInfo {
|
@@ -37514,6 +37539,10 @@ declare namespace EC2 {
|
|
37514
37539
|
* The throughput that the volume supports, in MiB/s.
|
37515
37540
|
*/
|
37516
37541
|
Throughput?: Integer;
|
37542
|
+
/**
|
37543
|
+
* Reserved for future use.
|
37544
|
+
*/
|
37545
|
+
SseType?: SSEType;
|
37517
37546
|
}
|
37518
37547
|
export interface VolumeAttachment {
|
37519
37548
|
/**
|
package/clients/eks.d.ts
CHANGED
@@ -1617,7 +1617,7 @@ declare namespace EKS {
|
|
1617
1617
|
*/
|
1618
1618
|
issues?: IssueList;
|
1619
1619
|
}
|
1620
|
-
export type NodegroupIssueCode = "AutoScalingGroupNotFound"|"AutoScalingGroupInvalidConfiguration"|"Ec2SecurityGroupNotFound"|"Ec2SecurityGroupDeletionFailure"|"Ec2LaunchTemplateNotFound"|"Ec2LaunchTemplateVersionMismatch"|"Ec2SubnetNotFound"|"Ec2SubnetInvalidConfiguration"|"IamInstanceProfileNotFound"|"IamLimitExceeded"|"IamNodeRoleNotFound"|"NodeCreationFailure"|"AsgInstanceLaunchFailures"|"InstanceLimitExceeded"|"InsufficientFreeAddresses"|"AccessDenied"|"InternalFailure"|"ClusterUnreachable"|"
|
1620
|
+
export type NodegroupIssueCode = "AutoScalingGroupNotFound"|"AutoScalingGroupInvalidConfiguration"|"Ec2SecurityGroupNotFound"|"Ec2SecurityGroupDeletionFailure"|"Ec2LaunchTemplateNotFound"|"Ec2LaunchTemplateVersionMismatch"|"Ec2SubnetNotFound"|"Ec2SubnetInvalidConfiguration"|"IamInstanceProfileNotFound"|"Ec2SubnetMissingIpv6Assignment"|"IamLimitExceeded"|"IamNodeRoleNotFound"|"NodeCreationFailure"|"AsgInstanceLaunchFailures"|"InstanceLimitExceeded"|"InsufficientFreeAddresses"|"AccessDenied"|"InternalFailure"|"ClusterUnreachable"|"AmiIdNotFound"|"AutoScalingGroupOptInRequired"|"AutoScalingGroupRateLimitExceeded"|"Ec2LaunchTemplateDeletionFailure"|"Ec2LaunchTemplateInvalidConfiguration"|"Ec2LaunchTemplateMaxLimitExceeded"|"Ec2SubnetListTooLong"|"IamThrottling"|"NodeTerminationFailure"|"PodEvictionFailure"|"SourceEc2LaunchTemplateNotFound"|"LimitExceeded"|"Unknown"|"AutoScalingGroupInstanceRefreshActive"|string;
|
1621
1621
|
export interface NodegroupResources {
|
1622
1622
|
/**
|
1623
1623
|
* The Auto Scaling groups associated with the node group.
|
package/clients/kafka.d.ts
CHANGED
@@ -155,6 +155,18 @@ declare class Kafka extends Service {
|
|
155
155
|
|
156
156
|
*/
|
157
157
|
describeClusterOperation(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationResponse) => void): Request<Kafka.Types.DescribeClusterOperationResponse, AWSError>;
|
158
|
+
/**
|
159
|
+
*
|
160
|
+
Returns a description of the cluster operation specified by the ARN.
|
161
|
+
|
162
|
+
*/
|
163
|
+
describeClusterOperationV2(params: Kafka.Types.DescribeClusterOperationV2Request, callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
|
164
|
+
/**
|
165
|
+
*
|
166
|
+
Returns a description of the cluster operation specified by the ARN.
|
167
|
+
|
168
|
+
*/
|
169
|
+
describeClusterOperationV2(callback?: (err: AWSError, data: Kafka.Types.DescribeClusterOperationV2Response) => void): Request<Kafka.Types.DescribeClusterOperationV2Response, AWSError>;
|
158
170
|
/**
|
159
171
|
*
|
160
172
|
Returns a description of this MSK configuration.
|
@@ -251,6 +263,18 @@ declare class Kafka extends Service {
|
|
251
263
|
|
252
264
|
*/
|
253
265
|
listClusterOperations(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsResponse) => void): Request<Kafka.Types.ListClusterOperationsResponse, AWSError>;
|
266
|
+
/**
|
267
|
+
*
|
268
|
+
Returns a list of all the operations that have been performed on the specified MSK cluster.
|
269
|
+
|
270
|
+
*/
|
271
|
+
listClusterOperationsV2(params: Kafka.Types.ListClusterOperationsV2Request, callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
|
272
|
+
/**
|
273
|
+
*
|
274
|
+
Returns a list of all the operations that have been performed on the specified MSK cluster.
|
275
|
+
|
276
|
+
*/
|
277
|
+
listClusterOperationsV2(callback?: (err: AWSError, data: Kafka.Types.ListClusterOperationsV2Response) => void): Request<Kafka.Types.ListClusterOperationsV2Response, AWSError>;
|
254
278
|
/**
|
255
279
|
*
|
256
280
|
Returns a list of all the MSK clusters in the current Region.
|
@@ -1659,6 +1683,124 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
1659
1683
|
*/
|
1660
1684
|
Tags?: __mapOf__string;
|
1661
1685
|
}
|
1686
|
+
export interface ClusterOperationV2 {
|
1687
|
+
/**
|
1688
|
+
*
|
1689
|
+
ARN of the cluster.
|
1690
|
+
*/
|
1691
|
+
ClusterArn?: __string;
|
1692
|
+
/**
|
1693
|
+
*
|
1694
|
+
Type of the backend cluster.
|
1695
|
+
*/
|
1696
|
+
ClusterType?: ClusterType;
|
1697
|
+
/**
|
1698
|
+
*
|
1699
|
+
The time at which operation was started.
|
1700
|
+
*/
|
1701
|
+
StartTime?: __timestampIso8601;
|
1702
|
+
/**
|
1703
|
+
*
|
1704
|
+
The time at which the operation finished.
|
1705
|
+
*/
|
1706
|
+
EndTime?: __timestampIso8601;
|
1707
|
+
/**
|
1708
|
+
*
|
1709
|
+
If cluster operation failed from an error, it describes the error.
|
1710
|
+
*/
|
1711
|
+
ErrorInfo?: ErrorInfo;
|
1712
|
+
/**
|
1713
|
+
*
|
1714
|
+
ARN of the cluster operation.
|
1715
|
+
*/
|
1716
|
+
OperationArn?: __string;
|
1717
|
+
/**
|
1718
|
+
*
|
1719
|
+
State of the cluster operation.
|
1720
|
+
*/
|
1721
|
+
OperationState?: __string;
|
1722
|
+
/**
|
1723
|
+
*
|
1724
|
+
Type of the cluster operation.
|
1725
|
+
*/
|
1726
|
+
OperationType?: __string;
|
1727
|
+
/**
|
1728
|
+
*
|
1729
|
+
Properties of a provisioned cluster.
|
1730
|
+
*/
|
1731
|
+
Provisioned?: ClusterOperationV2Provisioned;
|
1732
|
+
/**
|
1733
|
+
*
|
1734
|
+
Properties of a serverless cluster.
|
1735
|
+
*/
|
1736
|
+
Serverless?: ClusterOperationV2Serverless;
|
1737
|
+
}
|
1738
|
+
export interface ClusterOperationV2Provisioned {
|
1739
|
+
/**
|
1740
|
+
*
|
1741
|
+
Steps completed during the operation.
|
1742
|
+
*/
|
1743
|
+
OperationSteps?: __listOfClusterOperationStep;
|
1744
|
+
/**
|
1745
|
+
*
|
1746
|
+
Information about cluster attributes before a cluster is updated.
|
1747
|
+
*/
|
1748
|
+
SourceClusterInfo?: MutableClusterInfo;
|
1749
|
+
/**
|
1750
|
+
*
|
1751
|
+
Information about cluster attributes after a cluster is updated.
|
1752
|
+
*/
|
1753
|
+
TargetClusterInfo?: MutableClusterInfo;
|
1754
|
+
/**
|
1755
|
+
*
|
1756
|
+
Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
|
1757
|
+
*/
|
1758
|
+
VpcConnectionInfo?: VpcConnectionInfo;
|
1759
|
+
}
|
1760
|
+
export interface ClusterOperationV2Serverless {
|
1761
|
+
/**
|
1762
|
+
*
|
1763
|
+
Description of the VPC connection for CreateVpcConnection and DeleteVpcConnection operations.
|
1764
|
+
*/
|
1765
|
+
VpcConnectionInfo?: VpcConnectionInfoServerless;
|
1766
|
+
}
|
1767
|
+
export interface ClusterOperationV2Summary {
|
1768
|
+
/**
|
1769
|
+
*
|
1770
|
+
ARN of the cluster.
|
1771
|
+
*/
|
1772
|
+
ClusterArn?: __string;
|
1773
|
+
/**
|
1774
|
+
*
|
1775
|
+
Type of the backend cluster.
|
1776
|
+
*/
|
1777
|
+
ClusterType?: ClusterType;
|
1778
|
+
/**
|
1779
|
+
*
|
1780
|
+
The time at which operation was started.
|
1781
|
+
*/
|
1782
|
+
StartTime?: __timestampIso8601;
|
1783
|
+
/**
|
1784
|
+
*
|
1785
|
+
The time at which the operation finished.
|
1786
|
+
*/
|
1787
|
+
EndTime?: __timestampIso8601;
|
1788
|
+
/**
|
1789
|
+
*
|
1790
|
+
ARN of the cluster operation.
|
1791
|
+
*/
|
1792
|
+
OperationArn?: __string;
|
1793
|
+
/**
|
1794
|
+
*
|
1795
|
+
State of the cluster operation.
|
1796
|
+
*/
|
1797
|
+
OperationState?: __string;
|
1798
|
+
/**
|
1799
|
+
*
|
1800
|
+
Type of the cluster operation.
|
1801
|
+
*/
|
1802
|
+
OperationType?: __string;
|
1803
|
+
}
|
1662
1804
|
export interface DeleteClusterRequest {
|
1663
1805
|
/**
|
1664
1806
|
*
|
@@ -1749,6 +1891,12 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
1749
1891
|
*/
|
1750
1892
|
ClusterOperationArn: __string;
|
1751
1893
|
}
|
1894
|
+
export interface DescribeClusterOperationV2Request {
|
1895
|
+
/**
|
1896
|
+
* ARN of the cluster operation to describe.
|
1897
|
+
*/
|
1898
|
+
ClusterOperationArn: __string;
|
1899
|
+
}
|
1752
1900
|
export interface DescribeClusterOperationResponse {
|
1753
1901
|
/**
|
1754
1902
|
*
|
@@ -1757,6 +1905,13 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
1757
1905
|
*/
|
1758
1906
|
ClusterOperationInfo?: ClusterOperationInfo;
|
1759
1907
|
}
|
1908
|
+
export interface DescribeClusterOperationV2Response {
|
1909
|
+
/**
|
1910
|
+
*
|
1911
|
+
Cluster operation information
|
1912
|
+
*/
|
1913
|
+
ClusterOperationInfo?: ClusterOperationV2;
|
1914
|
+
}
|
1760
1915
|
export interface DescribeClusterRequest {
|
1761
1916
|
/**
|
1762
1917
|
*
|
@@ -2191,6 +2346,20 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
2191
2346
|
*/
|
2192
2347
|
NextToken?: __string;
|
2193
2348
|
}
|
2349
|
+
export interface ListClusterOperationsV2Request {
|
2350
|
+
/**
|
2351
|
+
* The arn of the cluster whose operations are being requested.
|
2352
|
+
*/
|
2353
|
+
ClusterArn: __string;
|
2354
|
+
/**
|
2355
|
+
* The maxResults of the query.
|
2356
|
+
*/
|
2357
|
+
MaxResults?: MaxResults;
|
2358
|
+
/**
|
2359
|
+
* The nextToken of the query.
|
2360
|
+
*/
|
2361
|
+
NextToken?: __string;
|
2362
|
+
}
|
2194
2363
|
export interface ListClusterOperationsResponse {
|
2195
2364
|
/**
|
2196
2365
|
*
|
@@ -2205,6 +2374,18 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
2205
2374
|
*/
|
2206
2375
|
NextToken?: __string;
|
2207
2376
|
}
|
2377
|
+
export interface ListClusterOperationsV2Response {
|
2378
|
+
/**
|
2379
|
+
*
|
2380
|
+
An array of cluster operation information objects.
|
2381
|
+
*/
|
2382
|
+
ClusterOperationInfoList?: __listOfClusterOperationV2Summary;
|
2383
|
+
/**
|
2384
|
+
*
|
2385
|
+
If the response of ListClusterOperationsV2 is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListClusterOperationsV2.
|
2386
|
+
*/
|
2387
|
+
NextToken?: __string;
|
2388
|
+
}
|
2208
2389
|
export interface ListClustersRequest {
|
2209
2390
|
/**
|
2210
2391
|
*
|
@@ -3399,6 +3580,28 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
3399
3580
|
*/
|
3400
3581
|
CreationTime?: __timestampIso8601;
|
3401
3582
|
}
|
3583
|
+
export interface VpcConnectionInfoServerless {
|
3584
|
+
/**
|
3585
|
+
*
|
3586
|
+
The time when Amazon MSK creates the VPC Connnection.
|
3587
|
+
*/
|
3588
|
+
CreationTime?: __timestampIso8601;
|
3589
|
+
/**
|
3590
|
+
*
|
3591
|
+
The owner of the VPC Connection.
|
3592
|
+
*/
|
3593
|
+
Owner?: __string;
|
3594
|
+
/**
|
3595
|
+
*
|
3596
|
+
Description of the requester that calls the API operation.
|
3597
|
+
*/
|
3598
|
+
UserIdentity?: UserIdentity;
|
3599
|
+
/**
|
3600
|
+
*
|
3601
|
+
The Amazon Resource Name (ARN) of the VPC connection.
|
3602
|
+
*/
|
3603
|
+
VpcConnectionArn?: __string;
|
3604
|
+
}
|
3402
3605
|
export type VpcConnectionState = "CREATING"|"AVAILABLE"|"INACTIVE"|"DEACTIVATING"|"DELETING"|"FAILED"|"REJECTED"|"REJECTING"|string;
|
3403
3606
|
export interface VpcConnectivity {
|
3404
3607
|
/**
|
@@ -3450,6 +3653,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
3450
3653
|
export type __listOfClusterInfo = ClusterInfo[];
|
3451
3654
|
export type __listOfCluster = Cluster[];
|
3452
3655
|
export type __listOfClusterOperationInfo = ClusterOperationInfo[];
|
3656
|
+
export type __listOfClusterOperationV2Summary = ClusterOperationV2Summary[];
|
3453
3657
|
export type __listOfClusterOperationStep = ClusterOperationStep[];
|
3454
3658
|
export type __listOfCompatibleKafkaVersion = CompatibleKafkaVersion[];
|
3455
3659
|
export type __listOfVpcConfig = VpcConfig[];
|