cdk-lambda-subminute 2.0.387 → 2.0.389
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/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +90 -1
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +70 -55
- package/node_modules/aws-sdk/apis/kafkaconnect-2021-09-14.min.json +185 -48
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +21 -12
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +65 -6
- package/node_modules/aws-sdk/clients/apigateway.d.ts +4 -4
- package/node_modules/aws-sdk/clients/drs.d.ts +23 -0
- package/node_modules/aws-sdk/clients/kafkaconnect.d.ts +124 -3
- package/node_modules/aws-sdk/clients/rds.d.ts +13 -1
- 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 +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +24 -15
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +32 -32
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -155,6 +155,14 @@ declare class AmplifyUIBuilder extends Service {
|
|
155
155
|
* Retrieves a list of forms for a specified Amplify app and backend environment.
|
156
156
|
*/
|
157
157
|
listForms(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ListFormsResponse) => void): Request<AmplifyUIBuilder.Types.ListFormsResponse, AWSError>;
|
158
|
+
/**
|
159
|
+
* Returns a list of tags for a specified Amazon Resource Name (ARN).
|
160
|
+
*/
|
161
|
+
listTagsForResource(params: AmplifyUIBuilder.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ListTagsForResourceResponse) => void): Request<AmplifyUIBuilder.Types.ListTagsForResourceResponse, AWSError>;
|
162
|
+
/**
|
163
|
+
* Returns a list of tags for a specified Amazon Resource Name (ARN).
|
164
|
+
*/
|
165
|
+
listTagsForResource(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ListTagsForResourceResponse) => void): Request<AmplifyUIBuilder.Types.ListTagsForResourceResponse, AWSError>;
|
158
166
|
/**
|
159
167
|
* Retrieves a list of themes for a specified Amplify app and backend environment.
|
160
168
|
*/
|
@@ -187,6 +195,22 @@ declare class AmplifyUIBuilder extends Service {
|
|
187
195
|
* Starts a code generation job for a specified Amplify app and backend environment.
|
188
196
|
*/
|
189
197
|
startCodegenJob(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.StartCodegenJobResponse) => void): Request<AmplifyUIBuilder.Types.StartCodegenJobResponse, AWSError>;
|
198
|
+
/**
|
199
|
+
* Tags the resource with a tag key and value.
|
200
|
+
*/
|
201
|
+
tagResource(params: AmplifyUIBuilder.Types.TagResourceRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.TagResourceResponse) => void): Request<AmplifyUIBuilder.Types.TagResourceResponse, AWSError>;
|
202
|
+
/**
|
203
|
+
* Tags the resource with a tag key and value.
|
204
|
+
*/
|
205
|
+
tagResource(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.TagResourceResponse) => void): Request<AmplifyUIBuilder.Types.TagResourceResponse, AWSError>;
|
206
|
+
/**
|
207
|
+
* Untags a resource with a specified Amazon Resource Name (ARN).
|
208
|
+
*/
|
209
|
+
untagResource(params: AmplifyUIBuilder.Types.UntagResourceRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.UntagResourceResponse) => void): Request<AmplifyUIBuilder.Types.UntagResourceResponse, AWSError>;
|
210
|
+
/**
|
211
|
+
* Untags a resource with a specified Amazon Resource Name (ARN).
|
212
|
+
*/
|
213
|
+
untagResource(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.UntagResourceResponse) => void): Request<AmplifyUIBuilder.Types.UntagResourceResponse, AWSError>;
|
190
214
|
/**
|
191
215
|
* Updates an existing component.
|
192
216
|
*/
|
@@ -1668,7 +1692,6 @@ declare namespace AmplifyUIBuilder {
|
|
1668
1692
|
*/
|
1669
1693
|
nextToken?: String;
|
1670
1694
|
}
|
1671
|
-
export type ListComponentsLimit = number;
|
1672
1695
|
export interface ListComponentsRequest {
|
1673
1696
|
/**
|
1674
1697
|
* The unique ID for the Amplify app.
|
@@ -1685,7 +1708,7 @@ declare namespace AmplifyUIBuilder {
|
|
1685
1708
|
/**
|
1686
1709
|
* The maximum number of components to retrieve.
|
1687
1710
|
*/
|
1688
|
-
maxResults?:
|
1711
|
+
maxResults?: ListEntityLimit;
|
1689
1712
|
}
|
1690
1713
|
export interface ListComponentsResponse {
|
1691
1714
|
/**
|
@@ -1697,7 +1720,7 @@ declare namespace AmplifyUIBuilder {
|
|
1697
1720
|
*/
|
1698
1721
|
nextToken?: String;
|
1699
1722
|
}
|
1700
|
-
export type
|
1723
|
+
export type ListEntityLimit = number;
|
1701
1724
|
export interface ListFormsRequest {
|
1702
1725
|
/**
|
1703
1726
|
* The unique ID for the Amplify app.
|
@@ -1714,7 +1737,7 @@ declare namespace AmplifyUIBuilder {
|
|
1714
1737
|
/**
|
1715
1738
|
* The maximum number of forms to retrieve.
|
1716
1739
|
*/
|
1717
|
-
maxResults?:
|
1740
|
+
maxResults?: ListEntityLimit;
|
1718
1741
|
}
|
1719
1742
|
export interface ListFormsResponse {
|
1720
1743
|
/**
|
@@ -1726,7 +1749,18 @@ declare namespace AmplifyUIBuilder {
|
|
1726
1749
|
*/
|
1727
1750
|
nextToken?: String;
|
1728
1751
|
}
|
1729
|
-
export
|
1752
|
+
export interface ListTagsForResourceRequest {
|
1753
|
+
/**
|
1754
|
+
* The Amazon Resource Name (ARN) to use to list tags.
|
1755
|
+
*/
|
1756
|
+
resourceArn: String;
|
1757
|
+
}
|
1758
|
+
export interface ListTagsForResourceResponse {
|
1759
|
+
/**
|
1760
|
+
* A list of tag key value pairs for a specified Amazon Resource Name (ARN).
|
1761
|
+
*/
|
1762
|
+
tags: Tags;
|
1763
|
+
}
|
1730
1764
|
export interface ListThemesRequest {
|
1731
1765
|
/**
|
1732
1766
|
* The unique ID for the Amplify app.
|
@@ -1743,7 +1777,7 @@ declare namespace AmplifyUIBuilder {
|
|
1743
1777
|
/**
|
1744
1778
|
* The maximum number of theme results to return in the response.
|
1745
1779
|
*/
|
1746
|
-
maxResults?:
|
1780
|
+
maxResults?: ListEntityLimit;
|
1747
1781
|
}
|
1748
1782
|
export interface ListThemesResponse {
|
1749
1783
|
/**
|
@@ -1977,6 +2011,19 @@ declare namespace AmplifyUIBuilder {
|
|
1977
2011
|
export type String = string;
|
1978
2012
|
export type SyntheticTimestamp_date_time = Date;
|
1979
2013
|
export type TagKey = string;
|
2014
|
+
export type TagKeyList = TagKey[];
|
2015
|
+
export interface TagResourceRequest {
|
2016
|
+
/**
|
2017
|
+
* The Amazon Resource Name (ARN) to use to tag a resource.
|
2018
|
+
*/
|
2019
|
+
resourceArn: String;
|
2020
|
+
/**
|
2021
|
+
* A list of tag key value pairs for a specified Amazon Resource Name (ARN).
|
2022
|
+
*/
|
2023
|
+
tags: Tags;
|
2024
|
+
}
|
2025
|
+
export interface TagResourceResponse {
|
2026
|
+
}
|
1980
2027
|
export type TagValue = string;
|
1981
2028
|
export type Tags = {[key: string]: TagValue};
|
1982
2029
|
export interface Theme {
|
@@ -2060,6 +2107,18 @@ declare namespace AmplifyUIBuilder {
|
|
2060
2107
|
}
|
2061
2108
|
export type ThemeValuesList = ThemeValues[];
|
2062
2109
|
export type TokenProviders = "figma"|string;
|
2110
|
+
export interface UntagResourceRequest {
|
2111
|
+
/**
|
2112
|
+
* The Amazon Resource Name (ARN) to use to untag a resource.
|
2113
|
+
*/
|
2114
|
+
resourceArn: String;
|
2115
|
+
/**
|
2116
|
+
* The tag keys to use to untag a resource.
|
2117
|
+
*/
|
2118
|
+
tagKeys: TagKeyList;
|
2119
|
+
}
|
2120
|
+
export interface UntagResourceResponse {
|
2121
|
+
}
|
2063
2122
|
export interface UpdateComponentData {
|
2064
2123
|
/**
|
2065
2124
|
* The unique ID of the component to update.
|
@@ -908,11 +908,11 @@ declare class APIGateway extends Service {
|
|
908
908
|
*/
|
909
909
|
updateMethodResponse(callback?: (err: AWSError, data: APIGateway.Types.MethodResponse) => void): Request<APIGateway.Types.MethodResponse, AWSError>;
|
910
910
|
/**
|
911
|
-
* Changes information about a model.
|
911
|
+
* Changes information about a model. The maximum size of the model is 400 KB.
|
912
912
|
*/
|
913
913
|
updateModel(params: APIGateway.Types.UpdateModelRequest, callback?: (err: AWSError, data: APIGateway.Types.Model) => void): Request<APIGateway.Types.Model, AWSError>;
|
914
914
|
/**
|
915
|
-
* Changes information about a model.
|
915
|
+
* Changes information about a model. The maximum size of the model is 400 KB.
|
916
916
|
*/
|
917
917
|
updateModel(callback?: (err: AWSError, data: APIGateway.Types.Model) => void): Request<APIGateway.Types.Model, AWSError>;
|
918
918
|
/**
|
@@ -1437,7 +1437,7 @@ declare namespace APIGateway {
|
|
1437
1437
|
*/
|
1438
1438
|
description?: String;
|
1439
1439
|
/**
|
1440
|
-
* The schema for the model. For application/json models, this should be JSON schema draft 4 model.
|
1440
|
+
* The schema for the model. For application/json models, this should be JSON schema draft 4 model. The maximum size of the model is 400 KB.
|
1441
1441
|
*/
|
1442
1442
|
schema?: String;
|
1443
1443
|
/**
|
@@ -3491,7 +3491,7 @@ declare namespace APIGateway {
|
|
3491
3491
|
*/
|
3492
3492
|
description?: String;
|
3493
3493
|
/**
|
3494
|
-
* Specifies whether a cache cluster is enabled for the stage.
|
3494
|
+
* Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set CachingEnabled to true for a method.
|
3495
3495
|
*/
|
3496
3496
|
cacheClusterEnabled?: Boolean;
|
3497
3497
|
/**
|
@@ -473,6 +473,10 @@ declare namespace Drs {
|
|
473
473
|
* A mapping between the volumes being converted and the converted snapshot ids
|
474
474
|
*/
|
475
475
|
volumeToConversionMap?: VolumeToConversionMap;
|
476
|
+
/**
|
477
|
+
* A mapping between the volumes being converted and the product codes associated with them
|
478
|
+
*/
|
479
|
+
volumeToProductCodes?: VolumeToProductCodes;
|
476
480
|
/**
|
477
481
|
* A mapping between the volumes and their sizes
|
478
482
|
*/
|
@@ -687,6 +691,10 @@ declare namespace Drs {
|
|
687
691
|
* The total amount of data to be replicated in bytes.
|
688
692
|
*/
|
689
693
|
totalStorageBytes?: PositiveInteger;
|
694
|
+
/**
|
695
|
+
* The status of the volume.
|
696
|
+
*/
|
697
|
+
volumeStatus?: VolumeStatus;
|
690
698
|
}
|
691
699
|
export type DataReplicationInfoReplicatedDisks = DataReplicationInfoReplicatedDisk[];
|
692
700
|
export interface DataReplicationInitiation {
|
@@ -1645,6 +1653,19 @@ declare namespace Drs {
|
|
1645
1653
|
}
|
1646
1654
|
export type ParticipatingServers = ParticipatingServer[];
|
1647
1655
|
export type PositiveInteger = number;
|
1656
|
+
export interface ProductCode {
|
1657
|
+
/**
|
1658
|
+
* Id of a product code associated with a volume.
|
1659
|
+
*/
|
1660
|
+
productCodeId?: ProductCodeId;
|
1661
|
+
/**
|
1662
|
+
* Mode of a product code associated with a volume.
|
1663
|
+
*/
|
1664
|
+
productCodeMode?: ProductCodeMode;
|
1665
|
+
}
|
1666
|
+
export type ProductCodeId = string;
|
1667
|
+
export type ProductCodeMode = "ENABLED"|"DISABLED"|string;
|
1668
|
+
export type ProductCodes = ProductCode[];
|
1648
1669
|
export interface PutLaunchActionRequest {
|
1649
1670
|
/**
|
1650
1671
|
* Launch action code.
|
@@ -2793,7 +2814,9 @@ declare namespace Drs {
|
|
2793
2814
|
*/
|
2794
2815
|
useDedicatedReplicationServer?: Boolean;
|
2795
2816
|
}
|
2817
|
+
export type VolumeStatus = "REGULAR"|"CONTAINS_MARKETPLACE_PRODUCT_CODES"|"MISSING_VOLUME_ATTRIBUTES"|"MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"|string;
|
2796
2818
|
export type VolumeToConversionMap = {[key: string]: ConversionMap};
|
2819
|
+
export type VolumeToProductCodes = {[key: string]: ProductCodes};
|
2797
2820
|
export type VolumeToSizeMap = {[key: string]: PositiveInteger};
|
2798
2821
|
export type VpcID = string;
|
2799
2822
|
/**
|
@@ -12,11 +12,11 @@ declare class KafkaConnect extends Service {
|
|
12
12
|
constructor(options?: KafkaConnect.Types.ClientConfiguration)
|
13
13
|
config: Config & KafkaConnect.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Creates a connector using the specified properties.
|
15
|
+
* Creates a connector using the specified properties.
|
16
16
|
*/
|
17
17
|
createConnector(params: KafkaConnect.Types.CreateConnectorRequest, callback?: (err: AWSError, data: KafkaConnect.Types.CreateConnectorResponse) => void): Request<KafkaConnect.Types.CreateConnectorResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Creates a connector using the specified properties.
|
19
|
+
* Creates a connector using the specified properties.
|
20
20
|
*/
|
21
21
|
createConnector(callback?: (err: AWSError, data: KafkaConnect.Types.CreateConnectorResponse) => void): Request<KafkaConnect.Types.CreateConnectorResponse, AWSError>;
|
22
22
|
/**
|
@@ -51,6 +51,14 @@ declare class KafkaConnect extends Service {
|
|
51
51
|
* Deletes a custom plugin.
|
52
52
|
*/
|
53
53
|
deleteCustomPlugin(callback?: (err: AWSError, data: KafkaConnect.Types.DeleteCustomPluginResponse) => void): Request<KafkaConnect.Types.DeleteCustomPluginResponse, AWSError>;
|
54
|
+
/**
|
55
|
+
* Deletes the specified worker configuration.
|
56
|
+
*/
|
57
|
+
deleteWorkerConfiguration(params: KafkaConnect.Types.DeleteWorkerConfigurationRequest, callback?: (err: AWSError, data: KafkaConnect.Types.DeleteWorkerConfigurationResponse) => void): Request<KafkaConnect.Types.DeleteWorkerConfigurationResponse, AWSError>;
|
58
|
+
/**
|
59
|
+
* Deletes the specified worker configuration.
|
60
|
+
*/
|
61
|
+
deleteWorkerConfiguration(callback?: (err: AWSError, data: KafkaConnect.Types.DeleteWorkerConfigurationResponse) => void): Request<KafkaConnect.Types.DeleteWorkerConfigurationResponse, AWSError>;
|
54
62
|
/**
|
55
63
|
* Returns summary information about the connector.
|
56
64
|
*/
|
@@ -91,6 +99,14 @@ declare class KafkaConnect extends Service {
|
|
91
99
|
* Returns a list of all of the custom plugins in this account and Region.
|
92
100
|
*/
|
93
101
|
listCustomPlugins(callback?: (err: AWSError, data: KafkaConnect.Types.ListCustomPluginsResponse) => void): Request<KafkaConnect.Types.ListCustomPluginsResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* Lists all the tags attached to the specified resource.
|
104
|
+
*/
|
105
|
+
listTagsForResource(params: KafkaConnect.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: KafkaConnect.Types.ListTagsForResourceResponse) => void): Request<KafkaConnect.Types.ListTagsForResourceResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* Lists all the tags attached to the specified resource.
|
108
|
+
*/
|
109
|
+
listTagsForResource(callback?: (err: AWSError, data: KafkaConnect.Types.ListTagsForResourceResponse) => void): Request<KafkaConnect.Types.ListTagsForResourceResponse, AWSError>;
|
94
110
|
/**
|
95
111
|
* Returns a list of all of the worker configurations in this account and Region.
|
96
112
|
*/
|
@@ -99,6 +115,22 @@ declare class KafkaConnect extends Service {
|
|
99
115
|
* Returns a list of all of the worker configurations in this account and Region.
|
100
116
|
*/
|
101
117
|
listWorkerConfigurations(callback?: (err: AWSError, data: KafkaConnect.Types.ListWorkerConfigurationsResponse) => void): Request<KafkaConnect.Types.ListWorkerConfigurationsResponse, AWSError>;
|
118
|
+
/**
|
119
|
+
* Attaches tags to the specified resource.
|
120
|
+
*/
|
121
|
+
tagResource(params: KafkaConnect.Types.TagResourceRequest, callback?: (err: AWSError, data: KafkaConnect.Types.TagResourceResponse) => void): Request<KafkaConnect.Types.TagResourceResponse, AWSError>;
|
122
|
+
/**
|
123
|
+
* Attaches tags to the specified resource.
|
124
|
+
*/
|
125
|
+
tagResource(callback?: (err: AWSError, data: KafkaConnect.Types.TagResourceResponse) => void): Request<KafkaConnect.Types.TagResourceResponse, AWSError>;
|
126
|
+
/**
|
127
|
+
* Removes tags from the specified resource.
|
128
|
+
*/
|
129
|
+
untagResource(params: KafkaConnect.Types.UntagResourceRequest, callback?: (err: AWSError, data: KafkaConnect.Types.UntagResourceResponse) => void): Request<KafkaConnect.Types.UntagResourceResponse, AWSError>;
|
130
|
+
/**
|
131
|
+
* Removes tags from the specified resource.
|
132
|
+
*/
|
133
|
+
untagResource(callback?: (err: AWSError, data: KafkaConnect.Types.UntagResourceResponse) => void): Request<KafkaConnect.Types.UntagResourceResponse, AWSError>;
|
102
134
|
/**
|
103
135
|
* Updates the specified connector.
|
104
136
|
*/
|
@@ -346,13 +378,17 @@ declare namespace KafkaConnect {
|
|
346
378
|
*/
|
347
379
|
logDelivery?: LogDelivery;
|
348
380
|
/**
|
349
|
-
* Specifies which
|
381
|
+
* Amazon MSK Connect does not currently support specifying multiple plugins as a list. To use more than one plugin for your connector, you can create a single custom plugin using a ZIP file that bundles multiple plugins together. Specifies which plugin to use for the connector. You must specify a single-element list containing one customPlugin object.
|
350
382
|
*/
|
351
383
|
plugins: __listOfPlugin;
|
352
384
|
/**
|
353
385
|
* The Amazon Resource Name (ARN) of the IAM role used by the connector to access the Amazon Web Services resources that it needs. The types of resources depends on the logic of the connector. For example, a connector that has Amazon S3 as a destination must have permissions that allow it to write to the S3 destination bucket.
|
354
386
|
*/
|
355
387
|
serviceExecutionRoleArn: __string;
|
388
|
+
/**
|
389
|
+
* The tags you want to attach to the connector.
|
390
|
+
*/
|
391
|
+
tags?: Tags;
|
356
392
|
/**
|
357
393
|
* Specifies which worker configuration to use with the connector.
|
358
394
|
*/
|
@@ -389,6 +425,10 @@ declare namespace KafkaConnect {
|
|
389
425
|
* The name of the custom plugin.
|
390
426
|
*/
|
391
427
|
name: __stringMin1Max128;
|
428
|
+
/**
|
429
|
+
* The tags you want to attach to the custom plugin.
|
430
|
+
*/
|
431
|
+
tags?: Tags;
|
392
432
|
}
|
393
433
|
export interface CreateCustomPluginResponse {
|
394
434
|
/**
|
@@ -421,6 +461,10 @@ declare namespace KafkaConnect {
|
|
421
461
|
* Base64 encoded contents of connect-distributed.properties file.
|
422
462
|
*/
|
423
463
|
propertiesFileContent: __sensitiveString;
|
464
|
+
/**
|
465
|
+
* The tags you want to attach to the worker configuration.
|
466
|
+
*/
|
467
|
+
tags?: Tags;
|
424
468
|
}
|
425
469
|
export interface CreateWorkerConfigurationResponse {
|
426
470
|
/**
|
@@ -439,6 +483,10 @@ declare namespace KafkaConnect {
|
|
439
483
|
* The Amazon Resource Name (ARN) that Amazon assigned to the worker configuration.
|
440
484
|
*/
|
441
485
|
workerConfigurationArn?: __string;
|
486
|
+
/**
|
487
|
+
* The state of the worker configuration.
|
488
|
+
*/
|
489
|
+
workerConfigurationState?: WorkerConfigurationState;
|
442
490
|
}
|
443
491
|
export interface CustomPlugin {
|
444
492
|
/**
|
@@ -572,6 +620,22 @@ declare namespace KafkaConnect {
|
|
572
620
|
*/
|
573
621
|
customPluginState?: CustomPluginState;
|
574
622
|
}
|
623
|
+
export interface DeleteWorkerConfigurationRequest {
|
624
|
+
/**
|
625
|
+
* The Amazon Resource Name (ARN) of the worker configuration that you want to delete.
|
626
|
+
*/
|
627
|
+
workerConfigurationArn: __string;
|
628
|
+
}
|
629
|
+
export interface DeleteWorkerConfigurationResponse {
|
630
|
+
/**
|
631
|
+
* The Amazon Resource Name (ARN) of the worker configuration that you requested to delete.
|
632
|
+
*/
|
633
|
+
workerConfigurationArn?: __string;
|
634
|
+
/**
|
635
|
+
* The state of the worker configuration.
|
636
|
+
*/
|
637
|
+
workerConfigurationState?: WorkerConfigurationState;
|
638
|
+
}
|
575
639
|
export interface DescribeConnectorRequest {
|
576
640
|
/**
|
577
641
|
* The Amazon Resource Name (ARN) of the connector that you want to describe.
|
@@ -711,6 +775,10 @@ declare namespace KafkaConnect {
|
|
711
775
|
* The Amazon Resource Name (ARN) of the custom configuration.
|
712
776
|
*/
|
713
777
|
workerConfigurationArn?: __string;
|
778
|
+
/**
|
779
|
+
* The state of the worker configuration.
|
780
|
+
*/
|
781
|
+
workerConfigurationState?: WorkerConfigurationState;
|
714
782
|
}
|
715
783
|
export interface FirehoseLogDelivery {
|
716
784
|
/**
|
@@ -799,6 +867,10 @@ declare namespace KafkaConnect {
|
|
799
867
|
* The maximum number of custom plugins to list in one response.
|
800
868
|
*/
|
801
869
|
maxResults?: MaxResults;
|
870
|
+
/**
|
871
|
+
* Lists custom plugin names that start with the specified text string.
|
872
|
+
*/
|
873
|
+
namePrefix?: __string;
|
802
874
|
/**
|
803
875
|
* If the response of a ListCustomPlugins operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.
|
804
876
|
*/
|
@@ -814,11 +886,27 @@ declare namespace KafkaConnect {
|
|
814
886
|
*/
|
815
887
|
nextToken?: __string;
|
816
888
|
}
|
889
|
+
export interface ListTagsForResourceRequest {
|
890
|
+
/**
|
891
|
+
* The Amazon Resource Name (ARN) of the resource for which you want to list all attached tags.
|
892
|
+
*/
|
893
|
+
resourceArn: __string;
|
894
|
+
}
|
895
|
+
export interface ListTagsForResourceResponse {
|
896
|
+
/**
|
897
|
+
* Lists the tags attached to the specified resource in the corresponding request.
|
898
|
+
*/
|
899
|
+
tags?: Tags;
|
900
|
+
}
|
817
901
|
export interface ListWorkerConfigurationsRequest {
|
818
902
|
/**
|
819
903
|
* The maximum number of worker configurations to list in one response.
|
820
904
|
*/
|
821
905
|
maxResults?: MaxResults;
|
906
|
+
/**
|
907
|
+
* Lists worker configuration names that start with the specified text string.
|
908
|
+
*/
|
909
|
+
namePrefix?: __string;
|
822
910
|
/**
|
823
911
|
* If the response of a ListWorkerConfigurations operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.
|
824
912
|
*/
|
@@ -991,6 +1079,34 @@ declare namespace KafkaConnect {
|
|
991
1079
|
*/
|
992
1080
|
message?: __string;
|
993
1081
|
}
|
1082
|
+
export type TagKey = string;
|
1083
|
+
export type TagKeyList = TagKey[];
|
1084
|
+
export interface TagResourceRequest {
|
1085
|
+
/**
|
1086
|
+
* The Amazon Resource Name (ARN) of the resource to which you want to attach tags.
|
1087
|
+
*/
|
1088
|
+
resourceArn: __string;
|
1089
|
+
/**
|
1090
|
+
* The tags that you want to attach to the resource.
|
1091
|
+
*/
|
1092
|
+
tags: Tags;
|
1093
|
+
}
|
1094
|
+
export interface TagResourceResponse {
|
1095
|
+
}
|
1096
|
+
export type TagValue = string;
|
1097
|
+
export type Tags = {[key: string]: TagValue};
|
1098
|
+
export interface UntagResourceRequest {
|
1099
|
+
/**
|
1100
|
+
* The Amazon Resource Name (ARN) of the resource from which you want to remove tags.
|
1101
|
+
*/
|
1102
|
+
resourceArn: __string;
|
1103
|
+
/**
|
1104
|
+
* The keys of the tags that you want to remove from the resource.
|
1105
|
+
*/
|
1106
|
+
tagKeys: TagKeyList;
|
1107
|
+
}
|
1108
|
+
export interface UntagResourceResponse {
|
1109
|
+
}
|
994
1110
|
export interface UpdateConnectorRequest {
|
995
1111
|
/**
|
996
1112
|
* The target capacity.
|
@@ -1087,6 +1203,7 @@ declare namespace KafkaConnect {
|
|
1087
1203
|
*/
|
1088
1204
|
revision?: __long;
|
1089
1205
|
}
|
1206
|
+
export type WorkerConfigurationState = "ACTIVE"|"DELETING"|string;
|
1090
1207
|
export interface WorkerConfigurationSummary {
|
1091
1208
|
/**
|
1092
1209
|
* The time that a worker configuration was created.
|
@@ -1108,6 +1225,10 @@ declare namespace KafkaConnect {
|
|
1108
1225
|
* The Amazon Resource Name (ARN) of the worker configuration.
|
1109
1226
|
*/
|
1110
1227
|
workerConfigurationArn?: __string;
|
1228
|
+
/**
|
1229
|
+
* The state of the worker configuration.
|
1230
|
+
*/
|
1231
|
+
workerConfigurationState?: WorkerConfigurationState;
|
1111
1232
|
}
|
1112
1233
|
export interface WorkerLogDelivery {
|
1113
1234
|
/**
|
@@ -3343,6 +3343,10 @@ declare namespace RDS {
|
|
3343
3343
|
* The details for Aurora Limitless Database.
|
3344
3344
|
*/
|
3345
3345
|
LimitlessDatabase?: LimitlessDatabase;
|
3346
|
+
/**
|
3347
|
+
* The storage throughput for the DB cluster. The throughput is automatically set based on the IOPS that you provision, and is not configurable. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3348
|
+
*/
|
3349
|
+
StorageThroughput?: IntegerOptional;
|
3346
3350
|
}
|
3347
3351
|
export interface DBClusterAutomatedBackup {
|
3348
3352
|
/**
|
@@ -3438,6 +3442,10 @@ declare namespace RDS {
|
|
3438
3442
|
* The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.
|
3439
3443
|
*/
|
3440
3444
|
AwsBackupRecoveryPointArn?: String;
|
3445
|
+
/**
|
3446
|
+
* The storage throughput for the automated backup. The throughput is automatically set based on the IOPS that you provision, and is not configurable. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3447
|
+
*/
|
3448
|
+
StorageThroughput?: IntegerOptional;
|
3441
3449
|
}
|
3442
3450
|
export type DBClusterAutomatedBackupList = DBClusterAutomatedBackup[];
|
3443
3451
|
export interface DBClusterAutomatedBackupMessage {
|
@@ -3762,6 +3770,10 @@ declare namespace RDS {
|
|
3762
3770
|
* The resource ID of the DB cluster that this DB cluster snapshot was created from.
|
3763
3771
|
*/
|
3764
3772
|
DbClusterResourceId?: String;
|
3773
|
+
/**
|
3774
|
+
* The storage throughput for the DB cluster snapshot. The throughput is automatically set based on the IOPS that you provision, and is not configurable. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3775
|
+
*/
|
3776
|
+
StorageThroughput?: IntegerOptional;
|
3765
3777
|
}
|
3766
3778
|
export interface DBClusterSnapshotAttribute {
|
3767
3779
|
/**
|
@@ -9692,7 +9704,7 @@ declare namespace RDS {
|
|
9692
9704
|
*/
|
9693
9705
|
StorageThroughput?: IntegerOptional;
|
9694
9706
|
/**
|
9695
|
-
* The identifier for the
|
9707
|
+
* The identifier for the Multi-AZ DB cluster snapshot to restore from. For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide. Constraints: Must match the identifier of an existing Multi-AZ DB cluster snapshot. Can't be specified when DBSnapshotIdentifier is specified. Must be specified when DBSnapshotIdentifier isn't specified. If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the DBClusterSnapshotIdentifier must be the ARN of the shared snapshot. Can't be the identifier of an Aurora DB cluster snapshot.
|
9696
9708
|
*/
|
9697
9709
|
DBClusterSnapshotIdentifier?: String;
|
9698
9710
|
/**
|