cdk-lambda-subminute 2.0.462 → 2.0.463
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 +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +1000 -509
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ecr-2015-09-21.min.json +44 -6
- package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.min.json +17 -0
- package/node_modules/aws-sdk/clients/datazone.d.ts +616 -9
- package/node_modules/aws-sdk/clients/ecr.d.ts +57 -3
- package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.d.ts +21 -2
- package/node_modules/aws-sdk/clients/pi.d.ts +1 -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 +47 -9
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +63 -63
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -180,6 +180,14 @@ declare class ECR extends Service {
|
|
180
180
|
* Returns details about the repository creation templates in a registry. The prefixes request parameter can be used to return the details for a specific repository creation template.
|
181
181
|
*/
|
182
182
|
describeRepositoryCreationTemplates(callback?: (err: AWSError, data: ECR.Types.DescribeRepositoryCreationTemplatesResponse) => void): Request<ECR.Types.DescribeRepositoryCreationTemplatesResponse, AWSError>;
|
183
|
+
/**
|
184
|
+
* Retrieves the basic scan type version name.
|
185
|
+
*/
|
186
|
+
getAccountSetting(params: ECR.Types.GetAccountSettingRequest, callback?: (err: AWSError, data: ECR.Types.GetAccountSettingResponse) => void): Request<ECR.Types.GetAccountSettingResponse, AWSError>;
|
187
|
+
/**
|
188
|
+
* Retrieves the basic scan type version name.
|
189
|
+
*/
|
190
|
+
getAccountSetting(callback?: (err: AWSError, data: ECR.Types.GetAccountSettingResponse) => void): Request<ECR.Types.GetAccountSettingResponse, AWSError>;
|
183
191
|
/**
|
184
192
|
* Retrieves an authorization token. An authorization token represents your IAM authentication credentials and can be used to access any Amazon ECR registry that your IAM principal has access to. The authorization token is valid for 12 hours. The authorizationToken returned is a base64 encoded string that can be decoded and used in a docker login command to authenticate to a registry. The CLI offers an get-login-password command that simplifies the login process. For more information, see Registry authentication in the Amazon Elastic Container Registry User Guide.
|
185
193
|
*/
|
@@ -260,6 +268,14 @@ declare class ECR extends Service {
|
|
260
268
|
* List the tags for an Amazon ECR resource.
|
261
269
|
*/
|
262
270
|
listTagsForResource(callback?: (err: AWSError, data: ECR.Types.ListTagsForResourceResponse) => void): Request<ECR.Types.ListTagsForResourceResponse, AWSError>;
|
271
|
+
/**
|
272
|
+
* Allows you to change the basic scan type version by setting the name parameter to either CLAIR to AWS_NATIVE.
|
273
|
+
*/
|
274
|
+
putAccountSetting(params: ECR.Types.PutAccountSettingRequest, callback?: (err: AWSError, data: ECR.Types.PutAccountSettingResponse) => void): Request<ECR.Types.PutAccountSettingResponse, AWSError>;
|
275
|
+
/**
|
276
|
+
* Allows you to change the basic scan type version by setting the name parameter to either CLAIR to AWS_NATIVE.
|
277
|
+
*/
|
278
|
+
putAccountSetting(callback?: (err: AWSError, data: ECR.Types.PutAccountSettingResponse) => void): Request<ECR.Types.PutAccountSettingResponse, AWSError>;
|
263
279
|
/**
|
264
280
|
* Creates or updates the image manifest and tags associated with an image. When an image is pushed and all new image layers have been uploaded, the PutImage API is called once to create or update the image manifest and the tags associated with the image. This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.
|
265
281
|
*/
|
@@ -406,6 +422,8 @@ declare class ECR extends Service {
|
|
406
422
|
waitFor(state: "lifecyclePolicyPreviewComplete", callback?: (err: AWSError, data: ECR.Types.GetLifecyclePolicyPreviewResponse) => void): Request<ECR.Types.GetLifecyclePolicyPreviewResponse, AWSError>;
|
407
423
|
}
|
408
424
|
declare namespace ECR {
|
425
|
+
export type AccountSettingName = string;
|
426
|
+
export type AccountSettingValue = string;
|
409
427
|
export type Arch = string;
|
410
428
|
export type Arn = string;
|
411
429
|
export interface Attribute {
|
@@ -685,7 +703,7 @@ declare namespace ECR {
|
|
685
703
|
*/
|
686
704
|
appliedFor: RCTAppliedForList;
|
687
705
|
/**
|
688
|
-
* The ARN of the role to be assumed by Amazon ECR. This role must be in the same account as the registry that you are configuring.
|
706
|
+
* The ARN of the role to be assumed by Amazon ECR. This role must be in the same account as the registry that you are configuring. Amazon ECR will assume your supplied role when the customRoleArn is specified. When this field isn't specified, Amazon ECR will use the service-linked role for the repository creation template.
|
689
707
|
*/
|
690
708
|
customRoleArn?: CustomRoleArn;
|
691
709
|
}
|
@@ -1215,6 +1233,22 @@ declare namespace ECR {
|
|
1215
1233
|
export type FindingSeverity = "INFORMATIONAL"|"LOW"|"MEDIUM"|"HIGH"|"CRITICAL"|"UNDEFINED"|string;
|
1216
1234
|
export type FindingSeverityCounts = {[key: string]: SeverityCount};
|
1217
1235
|
export type ForceFlag = boolean;
|
1236
|
+
export interface GetAccountSettingRequest {
|
1237
|
+
/**
|
1238
|
+
* Basic scan type version name.
|
1239
|
+
*/
|
1240
|
+
name: AccountSettingName;
|
1241
|
+
}
|
1242
|
+
export interface GetAccountSettingResponse {
|
1243
|
+
/**
|
1244
|
+
* Retrieves the basic scan type version name.
|
1245
|
+
*/
|
1246
|
+
name?: AccountSettingName;
|
1247
|
+
/**
|
1248
|
+
* Retrieves the value that specifies what basic scan type is being used: AWS_NATIVE or CLAIR.
|
1249
|
+
*/
|
1250
|
+
value?: AccountSettingName;
|
1251
|
+
}
|
1218
1252
|
export type GetAuthorizationTokenRegistryIdList = RegistryId[];
|
1219
1253
|
export interface GetAuthorizationTokenRequest {
|
1220
1254
|
/**
|
@@ -1833,6 +1867,26 @@ declare namespace ECR {
|
|
1833
1867
|
export type PullThroughCacheRuleRepositoryPrefix = string;
|
1834
1868
|
export type PullThroughCacheRuleRepositoryPrefixList = PullThroughCacheRuleRepositoryPrefix[];
|
1835
1869
|
export type PushTimestamp = Date;
|
1870
|
+
export interface PutAccountSettingRequest {
|
1871
|
+
/**
|
1872
|
+
* Basic scan type version name.
|
1873
|
+
*/
|
1874
|
+
name: AccountSettingName;
|
1875
|
+
/**
|
1876
|
+
* Setting value that determines what basic scan type is being used: AWS_NATIVE or CLAIR.
|
1877
|
+
*/
|
1878
|
+
value: AccountSettingValue;
|
1879
|
+
}
|
1880
|
+
export interface PutAccountSettingResponse {
|
1881
|
+
/**
|
1882
|
+
* Retrieves the the basic scan type version name.
|
1883
|
+
*/
|
1884
|
+
name?: AccountSettingName;
|
1885
|
+
/**
|
1886
|
+
* Retrieves the basic scan type value, either AWS_NATIVE or -.
|
1887
|
+
*/
|
1888
|
+
value?: AccountSettingValue;
|
1889
|
+
}
|
1836
1890
|
export interface PutImageRequest {
|
1837
1891
|
/**
|
1838
1892
|
* The Amazon Web Services account ID associated with the registry that contains the repository in which to put the image. If you do not specify a registry, the default registry is assumed.
|
@@ -2137,7 +2191,7 @@ declare namespace ECR {
|
|
2137
2191
|
*/
|
2138
2192
|
appliedFor?: RCTAppliedForList;
|
2139
2193
|
/**
|
2140
|
-
* The ARN of the role to be assumed by Amazon ECR.
|
2194
|
+
* The ARN of the role to be assumed by Amazon ECR. Amazon ECR will assume your supplied role when the customRoleArn is specified. When this field isn't specified, Amazon ECR will use the service-linked role for the repository creation template.
|
2141
2195
|
*/
|
2142
2196
|
customRoleArn?: CustomRoleArn;
|
2143
2197
|
/**
|
@@ -2462,7 +2516,7 @@ declare namespace ECR {
|
|
2462
2516
|
*/
|
2463
2517
|
appliedFor?: RCTAppliedForList;
|
2464
2518
|
/**
|
2465
|
-
* The ARN of the role to be assumed by Amazon ECR. This role must be in the same account as the registry that you are configuring.
|
2519
|
+
* The ARN of the role to be assumed by Amazon ECR. This role must be in the same account as the registry that you are configuring. Amazon ECR will assume your supplied role when the customRoleArn is specified. When this field isn't specified, Amazon ECR will use the service-linked role for the repository creation template.
|
2466
2520
|
*/
|
2467
2521
|
customRoleArn?: CustomRoleArn;
|
2468
2522
|
}
|
@@ -12,16 +12,35 @@ declare class KinesisVideoWebRTCStorage extends Service {
|
|
12
12
|
constructor(options?: KinesisVideoWebRTCStorage.Types.ClientConfiguration)
|
13
13
|
config: Config & KinesisVideoWebRTCStorage.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Join the ongoing one way-video and/or multi-way audio WebRTC session as a video producing device for an input channel. If there’s no existing session for the channel, a new streaming session needs to be created, and the Amazon Resource Name (ARN) of the signaling channel must be provided. Currently for the SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream
|
15
|
+
* Before using this API, you must call the GetSignalingChannelEndpoint API to request the WEBRTC endpoint. You then specify the endpoint and region in your JoinStorageSession API request. Join the ongoing one way-video and/or multi-way audio WebRTC session as a video producing device for an input channel. If there’s no existing session for the channel, a new streaming session needs to be created, and the Amazon Resource Name (ARN) of the signaling channel must be provided. Currently for the SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream. Only video producing devices can join the session and record media. Both audio and video tracks are currently required for WebRTC ingestion. Current requirements: Video track: H.264 Audio track: Opus The resulting ingested video in the Kinesis video stream will have the following parameters: H.264 video and AAC audio. Once a master participant has negotiated a connection through WebRTC, the ingested media session will be stored in the Kinesis video stream. Multiple viewers are then able to play back real-time media through our Playback APIs. You can also use existing Kinesis Video Streams features like HLS or DASH playback, image generation via GetImages, and more with ingested WebRTC media. S3 image delivery and notifications are not currently supported. Assume that only one video producing device client can be associated with a session for the channel. If more than one client joins the session of a specific channel as a video producing device, the most recent client request takes precedence. Additional information Idempotent - This API is not idempotent. Retry behavior - This is counted as a new API call. Concurrent calls - Concurrent calls are allowed. An offer is sent once per each call.
|
16
16
|
*/
|
17
17
|
joinStorageSession(params: KinesisVideoWebRTCStorage.Types.JoinStorageSessionInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
18
18
|
/**
|
19
|
-
* Join the ongoing one way-video and/or multi-way audio WebRTC session as a video producing device for an input channel. If there’s no existing session for the channel, a new streaming session needs to be created, and the Amazon Resource Name (ARN) of the signaling channel must be provided. Currently for the SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream
|
19
|
+
* Before using this API, you must call the GetSignalingChannelEndpoint API to request the WEBRTC endpoint. You then specify the endpoint and region in your JoinStorageSession API request. Join the ongoing one way-video and/or multi-way audio WebRTC session as a video producing device for an input channel. If there’s no existing session for the channel, a new streaming session needs to be created, and the Amazon Resource Name (ARN) of the signaling channel must be provided. Currently for the SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream. Only video producing devices can join the session and record media. Both audio and video tracks are currently required for WebRTC ingestion. Current requirements: Video track: H.264 Audio track: Opus The resulting ingested video in the Kinesis video stream will have the following parameters: H.264 video and AAC audio. Once a master participant has negotiated a connection through WebRTC, the ingested media session will be stored in the Kinesis video stream. Multiple viewers are then able to play back real-time media through our Playback APIs. You can also use existing Kinesis Video Streams features like HLS or DASH playback, image generation via GetImages, and more with ingested WebRTC media. S3 image delivery and notifications are not currently supported. Assume that only one video producing device client can be associated with a session for the channel. If more than one client joins the session of a specific channel as a video producing device, the most recent client request takes precedence. Additional information Idempotent - This API is not idempotent. Retry behavior - This is counted as a new API call. Concurrent calls - Concurrent calls are allowed. An offer is sent once per each call.
|
20
20
|
*/
|
21
21
|
joinStorageSession(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
22
|
+
/**
|
23
|
+
* Join the ongoing one way-video and/or multi-way audio WebRTC session as a viewer for an input channel. If there’s no existing session for the channel, create a new streaming session and provide the Amazon Resource Name (ARN) of the signaling channel (channelArn) and client id (clientId). Currently for SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join a session first and wait for other participants. While participants are having peer to peer conversations through WebRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. If there’s an existing session with the same clientId that's found in the join session request, the new request takes precedence.
|
24
|
+
*/
|
25
|
+
joinStorageSessionAsViewer(params: KinesisVideoWebRTCStorage.Types.JoinStorageSessionAsViewerInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
26
|
+
/**
|
27
|
+
* Join the ongoing one way-video and/or multi-way audio WebRTC session as a viewer for an input channel. If there’s no existing session for the channel, create a new streaming session and provide the Amazon Resource Name (ARN) of the signaling channel (channelArn) and client id (clientId). Currently for SINGLE_MASTER type, a video producing device is able to ingest both audio and video media into a stream, while viewers can only ingest audio. Both a video producing device and viewers can join a session first and wait for other participants. While participants are having peer to peer conversations through WebRTC, the ingested media session will be stored into the Kinesis Video Stream. Multiple viewers are able to playback real-time media. Customers can also use existing Kinesis Video Streams features like HLS or DASH playback, Image generation, and more with ingested WebRTC media. If there’s an existing session with the same clientId that's found in the join session request, the new request takes precedence.
|
28
|
+
*/
|
29
|
+
joinStorageSessionAsViewer(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
22
30
|
}
|
23
31
|
declare namespace KinesisVideoWebRTCStorage {
|
24
32
|
export type ChannelArn = string;
|
33
|
+
export type ClientId = string;
|
34
|
+
export interface JoinStorageSessionAsViewerInput {
|
35
|
+
/**
|
36
|
+
* The Amazon Resource Name (ARN) of the signaling channel.
|
37
|
+
*/
|
38
|
+
channelArn: ChannelArn;
|
39
|
+
/**
|
40
|
+
* The unique identifier for the sender client.
|
41
|
+
*/
|
42
|
+
clientId: ClientId;
|
43
|
+
}
|
25
44
|
export interface JoinStorageSessionInput {
|
26
45
|
/**
|
27
46
|
* The Amazon Resource Name (ARN) of the signaling channel.
|
@@ -338,7 +338,7 @@ declare namespace PI {
|
|
338
338
|
*/
|
339
339
|
Group: SanitizedString;
|
340
340
|
/**
|
341
|
-
* A list of specific dimensions from a dimension group. If this parameter is not present, then it signifies that all of the dimensions in the group were requested, or are present in the response. Valid values for elements in the Dimensions array are: db.application.name - The name of the application that is connected to the database. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Amazon DocumentDB db.host.id - The host ID of the connected client (all engines). db.host.name - The host name of the connected client (all engines). db.name - The name of the database to which the client is connected. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Aurora MySQL Amazon RDS MySQL Amazon RDS MariaDB Amazon DocumentDB db.query.id - The query ID generated by Performance Insights (only Amazon DocumentDB). db.query.db_id - The query ID generated by the database (only Amazon DocumentDB). db.query.statement - The text of the query that is being run (only Amazon DocumentDB). db.query.tokenized_id db.query.tokenized.id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.db_id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.statement - The text of the query digest (only Amazon DocumentDB). db.session_type.name - The type of the current session (only Amazon DocumentDB). db.sql.id - The hash of the full, non-tokenized SQL statement generated by Performance Insights (all engines except Amazon DocumentDB). db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi- (all engines except Amazon DocumentDB). db.sql.statement - The full text of the SQL statement that is running, as in SELECT * FROM employees (all engines except Amazon DocumentDB) db.sql.tokenized_id db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights (all engines except Amazon DocumentDB). In the console, db.sql_tokenized.id is called the Support ID because Amazon Web Services Support can look at this data to help you troubleshoot database issues. db.sql_tokenized.db_id - Either the native database ID used to refer to the SQL statement, or a synthetic ID such as pi-2372568224 that Performance Insights generates if the native database ID isn't available (all engines except Amazon DocumentDB). db.sql_tokenized.statement - The text of the SQL digest, as in SELECT * FROM employees WHERE employee_id = ? (all engines except Amazon DocumentDB) db.user.id - The ID of the user logged in to the database (all engines except Amazon DocumentDB). db.user.name - The name of the user logged in to the database (all engines except Amazon DocumentDB). db.wait_event.name - The event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event.type - The type of event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event_type.name - The name of the event type for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_state.name - The event for which the backend is waiting (only Amazon DocumentDB).
|
341
|
+
* A list of specific dimensions from a dimension group. If this parameter is not present, then it signifies that all of the dimensions in the group were requested, or are present in the response. Valid values for elements in the Dimensions array are: db.application.name - The name of the application that is connected to the database. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Amazon DocumentDB db.host.id - The host ID of the connected client (all engines). db.host.name - The host name of the connected client (all engines). db.name - The name of the database to which the client is connected. Valid values are as follows: Aurora PostgreSQL Amazon RDS PostgreSQL Aurora MySQL Amazon RDS MySQL Amazon RDS MariaDB Amazon DocumentDB db.query.id - The query ID generated by Performance Insights (only Amazon DocumentDB). db.query.db_id - The query ID generated by the database (only Amazon DocumentDB). db.query.statement - The text of the query that is being run (only Amazon DocumentDB). db.query.tokenized_id db.query.tokenized.id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.db_id - The query digest ID generated by Performance Insights (only Amazon DocumentDB). db.query.tokenized.statement - The text of the query digest (only Amazon DocumentDB). db.session_type.name - The type of the current session (only Amazon DocumentDB). db.sql.id - The hash of the full, non-tokenized SQL statement generated by Performance Insights (all engines except Amazon DocumentDB). db.sql.db_id - Either the SQL ID generated by the database engine, or a value generated by Performance Insights that begins with pi- (all engines except Amazon DocumentDB). db.sql.statement - The full text of the SQL statement that is running, as in SELECT * FROM employees (all engines except Amazon DocumentDB) db.sql.tokenized_id - The hash of the SQL digest generated by Performance Insights (all engines except Amazon DocumentDB). The db.sql.tokenized_id dimension fetches the value of the db.sql_tokenized.id dimension. Amazon RDS returns db.sql.tokenized_id from the db.sql dimension group. db.sql_tokenized.id - The hash of the SQL digest generated by Performance Insights (all engines except Amazon DocumentDB). In the console, db.sql_tokenized.id is called the Support ID because Amazon Web Services Support can look at this data to help you troubleshoot database issues. db.sql_tokenized.db_id - Either the native database ID used to refer to the SQL statement, or a synthetic ID such as pi-2372568224 that Performance Insights generates if the native database ID isn't available (all engines except Amazon DocumentDB). db.sql_tokenized.statement - The text of the SQL digest, as in SELECT * FROM employees WHERE employee_id = ? (all engines except Amazon DocumentDB) db.user.id - The ID of the user logged in to the database (all engines except Amazon DocumentDB). db.user.name - The name of the user logged in to the database (all engines except Amazon DocumentDB). db.wait_event.name - The event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event.type - The type of event for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_event_type.name - The name of the event type for which the backend is waiting (all engines except Amazon DocumentDB). db.wait_state.name - The event for which the backend is waiting (only Amazon DocumentDB).
|
342
342
|
*/
|
343
343
|
Dimensions?: SanitizedStringList;
|
344
344
|
/**
|