cdk-lambda-subminute 2.0.388 → 2.0.390
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/batch-2016-08-10.min.json +387 -115
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +28 -21
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +140 -105
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +61 -61
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +12 -12
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +126 -123
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +65 -6
- package/node_modules/aws-sdk/clients/batch.d.ts +395 -36
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +7 -1
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +40 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +2 -1
- package/node_modules/aws-sdk/clients/iot.d.ts +11 -10
- package/node_modules/aws-sdk/clients/wafv2.d.ts +5 -0
- 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 +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +216 -181
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +102 -102
- 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.
|