cdk-docker-image-deployment 0.0.147 → 0.0.149
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.waiters2.json +6 -6
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +246 -195
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +2 -1
- package/node_modules/aws-sdk/apis/runtime.sagemaker-2017-05-13.min.json +5 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +329 -311
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +44 -0
- package/node_modules/aws-sdk/clients/outposts.d.ts +4 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +22 -0
- package/node_modules/aws-sdk/clients/sagemakerruntime.d.ts +7 -2
- 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 +6 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +8 -8
|
@@ -11,6 +11,14 @@ declare class MediaTailor extends Service {
|
|
|
11
11
|
*/
|
|
12
12
|
constructor(options?: MediaTailor.Types.ClientConfiguration)
|
|
13
13
|
config: Config & MediaTailor.Types.ClientConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* Configures Amazon CloudWatch log settings for a channel.
|
|
16
|
+
*/
|
|
17
|
+
configureLogsForChannel(params: MediaTailor.Types.ConfigureLogsForChannelRequest, callback?: (err: AWSError, data: MediaTailor.Types.ConfigureLogsForChannelResponse) => void): Request<MediaTailor.Types.ConfigureLogsForChannelResponse, AWSError>;
|
|
18
|
+
/**
|
|
19
|
+
* Configures Amazon CloudWatch log settings for a channel.
|
|
20
|
+
*/
|
|
21
|
+
configureLogsForChannel(callback?: (err: AWSError, data: MediaTailor.Types.ConfigureLogsForChannelResponse) => void): Request<MediaTailor.Types.ConfigureLogsForChannelResponse, AWSError>;
|
|
14
22
|
/**
|
|
15
23
|
* Amazon CloudWatch log settings for a playback configuration.
|
|
16
24
|
*/
|
|
@@ -475,6 +483,10 @@ declare namespace MediaTailor {
|
|
|
475
483
|
* The timestamp of when the channel was last modified.
|
|
476
484
|
*/
|
|
477
485
|
LastModifiedTime?: __timestampUnix;
|
|
486
|
+
/**
|
|
487
|
+
* The log configuration.
|
|
488
|
+
*/
|
|
489
|
+
LogConfiguration: LogConfigurationForChannel;
|
|
478
490
|
/**
|
|
479
491
|
* The channel's output properties.
|
|
480
492
|
*/
|
|
@@ -495,6 +507,26 @@ declare namespace MediaTailor {
|
|
|
495
507
|
export type ChannelState = "RUNNING"|"STOPPED"|string;
|
|
496
508
|
export type ConfigurationAliasesRequest = {[key: string]: __mapOf__string};
|
|
497
509
|
export type ConfigurationAliasesResponse = {[key: string]: __mapOf__string};
|
|
510
|
+
export interface ConfigureLogsForChannelRequest {
|
|
511
|
+
/**
|
|
512
|
+
* The name of the channel.
|
|
513
|
+
*/
|
|
514
|
+
ChannelName: __string;
|
|
515
|
+
/**
|
|
516
|
+
* The types of logs to collect.
|
|
517
|
+
*/
|
|
518
|
+
LogTypes: LogTypes;
|
|
519
|
+
}
|
|
520
|
+
export interface ConfigureLogsForChannelResponse {
|
|
521
|
+
/**
|
|
522
|
+
* The name of the channel.
|
|
523
|
+
*/
|
|
524
|
+
ChannelName?: __string;
|
|
525
|
+
/**
|
|
526
|
+
* The types of logs collected.
|
|
527
|
+
*/
|
|
528
|
+
LogTypes?: LogTypes;
|
|
529
|
+
}
|
|
498
530
|
export interface ConfigureLogsForPlaybackConfigurationRequest {
|
|
499
531
|
/**
|
|
500
532
|
* The percentage of session logs that MediaTailor sends to your Cloudwatch Logs account. For example, if your playback configuration has 1000 sessions and percentEnabled is set to 60, MediaTailor sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor decides at random which of the playback configuration sessions to send logs for. If you want to view logs for a specific session, you can use the debug log mode. Valid values: 0 - 100
|
|
@@ -1018,6 +1050,10 @@ declare namespace MediaTailor {
|
|
|
1018
1050
|
* The timestamp of when the channel was last modified.
|
|
1019
1051
|
*/
|
|
1020
1052
|
LastModifiedTime?: __timestampUnix;
|
|
1053
|
+
/**
|
|
1054
|
+
* The log configuration for the channel.
|
|
1055
|
+
*/
|
|
1056
|
+
LogConfiguration: LogConfigurationForChannel;
|
|
1021
1057
|
/**
|
|
1022
1058
|
* The channel's output properties.
|
|
1023
1059
|
*/
|
|
@@ -1619,6 +1655,14 @@ declare namespace MediaTailor {
|
|
|
1619
1655
|
*/
|
|
1620
1656
|
PercentEnabled: __integer;
|
|
1621
1657
|
}
|
|
1658
|
+
export interface LogConfigurationForChannel {
|
|
1659
|
+
/**
|
|
1660
|
+
* The log types.
|
|
1661
|
+
*/
|
|
1662
|
+
LogTypes?: LogTypes;
|
|
1663
|
+
}
|
|
1664
|
+
export type LogType = "AS_RUN"|string;
|
|
1665
|
+
export type LogTypes = LogType[];
|
|
1622
1666
|
export interface ManifestProcessingRules {
|
|
1623
1667
|
/**
|
|
1624
1668
|
* For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest. No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.
|
|
@@ -813,6 +813,10 @@ declare namespace Outposts {
|
|
|
813
813
|
* The fulfillment date of the order.
|
|
814
814
|
*/
|
|
815
815
|
OrderFulfilledDate?: ISO8601Timestamp;
|
|
816
|
+
/**
|
|
817
|
+
* The payment term.
|
|
818
|
+
*/
|
|
819
|
+
PaymentTerm?: PaymentTerm;
|
|
816
820
|
}
|
|
817
821
|
export type OrderId = string;
|
|
818
822
|
export type OrderStatus = "RECEIVED"|"PENDING"|"PROCESSING"|"INSTALLING"|"FULFILLED"|"CANCELLED"|"PREPARING"|"IN_PROGRESS"|"COMPLETED"|"ERROR"|string;
|
|
@@ -2687,6 +2687,10 @@ declare namespace SageMaker {
|
|
|
2687
2687
|
* The arguments for a container used to run a training job. See How Amazon SageMaker Runs Your Training Image for additional information.
|
|
2688
2688
|
*/
|
|
2689
2689
|
ContainerArguments?: TrainingContainerArguments;
|
|
2690
|
+
/**
|
|
2691
|
+
* The configuration to use an image from a private Docker registry for a training job.
|
|
2692
|
+
*/
|
|
2693
|
+
TrainingImageConfig?: TrainingImageConfig;
|
|
2690
2694
|
}
|
|
2691
2695
|
export type AlgorithmStatus = "Pending"|"InProgress"|"Completed"|"Failed"|"Deleting"|string;
|
|
2692
2696
|
export interface AlgorithmStatusDetails {
|
|
@@ -19851,6 +19855,16 @@ declare namespace SageMaker {
|
|
|
19851
19855
|
export type TrainingEnvironmentKey = string;
|
|
19852
19856
|
export type TrainingEnvironmentMap = {[key: string]: TrainingEnvironmentValue};
|
|
19853
19857
|
export type TrainingEnvironmentValue = string;
|
|
19858
|
+
export interface TrainingImageConfig {
|
|
19859
|
+
/**
|
|
19860
|
+
* The method that your training job will use to gain access to the images in your private Docker registry. For access to an image in a private Docker registry, set to Vpc.
|
|
19861
|
+
*/
|
|
19862
|
+
TrainingRepositoryAccessMode: TrainingRepositoryAccessMode;
|
|
19863
|
+
/**
|
|
19864
|
+
* An object containing authentication information for a private Docker registry containing your training images.
|
|
19865
|
+
*/
|
|
19866
|
+
TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig;
|
|
19867
|
+
}
|
|
19854
19868
|
export type TrainingInputMode = "Pipe"|"File"|"FastFile"|string;
|
|
19855
19869
|
export type TrainingInstanceCount = number;
|
|
19856
19870
|
export type TrainingInstanceType = "ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.p3dn.24xlarge"|"ml.p4d.24xlarge"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5n.xlarge"|"ml.c5n.2xlarge"|"ml.c5n.4xlarge"|"ml.c5n.9xlarge"|"ml.c5n.18xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.16xlarge"|"ml.g5.12xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.trn1.2xlarge"|"ml.trn1.32xlarge"|string;
|
|
@@ -20081,6 +20095,14 @@ declare namespace SageMaker {
|
|
|
20081
20095
|
*/
|
|
20082
20096
|
WarmPoolStatus?: WarmPoolStatus;
|
|
20083
20097
|
}
|
|
20098
|
+
export type TrainingRepositoryAccessMode = "Platform"|"Vpc"|string;
|
|
20099
|
+
export interface TrainingRepositoryAuthConfig {
|
|
20100
|
+
/**
|
|
20101
|
+
* The Amazon Resource Name (ARN) of an Amazon Web Services Lambda function used to give SageMaker access credentials to your private Docker registry.
|
|
20102
|
+
*/
|
|
20103
|
+
TrainingRepositoryCredentialsProviderArn: TrainingRepositoryCredentialsProviderArn;
|
|
20104
|
+
}
|
|
20105
|
+
export type TrainingRepositoryCredentialsProviderArn = string;
|
|
20084
20106
|
export interface TrainingSpecification {
|
|
20085
20107
|
/**
|
|
20086
20108
|
* The Amazon ECR registry path of the Docker image that contains the training algorithm.
|
|
@@ -20,11 +20,11 @@ declare class SageMakerRuntime extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
invokeEndpoint(callback?: (err: AWSError, data: SageMakerRuntime.Types.InvokeEndpointOutput) => void): Request<SageMakerRuntime.Types.InvokeEndpointOutput, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* After you deploy a model into production using Amazon SageMaker hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint in an asynchronous manner. Inference requests sent to this API are enqueued for asynchronous processing. The processing of the inference request may or may not complete before
|
|
23
|
+
* After you deploy a model into production using Amazon SageMaker hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint in an asynchronous manner. Inference requests sent to this API are enqueued for asynchronous processing. The processing of the inference request may or may not complete before you receive a response from this API. The response from this API will not contain the result of the inference request but contain information about where you can locate it. Amazon SageMaker strips all POST headers except those supported by the API. Amazon SageMaker might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpointAsync are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference.
|
|
24
24
|
*/
|
|
25
25
|
invokeEndpointAsync(params: SageMakerRuntime.Types.InvokeEndpointAsyncInput, callback?: (err: AWSError, data: SageMakerRuntime.Types.InvokeEndpointAsyncOutput) => void): Request<SageMakerRuntime.Types.InvokeEndpointAsyncOutput, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* After you deploy a model into production using Amazon SageMaker hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint in an asynchronous manner. Inference requests sent to this API are enqueued for asynchronous processing. The processing of the inference request may or may not complete before
|
|
27
|
+
* After you deploy a model into production using Amazon SageMaker hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint in an asynchronous manner. Inference requests sent to this API are enqueued for asynchronous processing. The processing of the inference request may or may not complete before you receive a response from this API. The response from this API will not contain the result of the inference request but contain information about where you can locate it. Amazon SageMaker strips all POST headers except those supported by the API. Amazon SageMaker might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpointAsync are authenticated by using Amazon Web Services Signature Version 4. For information, see Authenticating Requests (Amazon Web Services Signature Version 4) in the Amazon S3 API Reference.
|
|
28
28
|
*/
|
|
29
29
|
invokeEndpointAsync(callback?: (err: AWSError, data: SageMakerRuntime.Types.InvokeEndpointAsyncOutput) => void): Request<SageMakerRuntime.Types.InvokeEndpointAsyncOutput, AWSError>;
|
|
30
30
|
}
|
|
@@ -36,6 +36,7 @@ declare namespace SageMakerRuntime {
|
|
|
36
36
|
export type Header = string;
|
|
37
37
|
export type InferenceId = string;
|
|
38
38
|
export type InputLocationHeader = string;
|
|
39
|
+
export type InvocationTimeoutSecondsHeader = number;
|
|
39
40
|
export interface InvokeEndpointAsyncInput {
|
|
40
41
|
/**
|
|
41
42
|
* The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
|
|
@@ -65,6 +66,10 @@ declare namespace SageMakerRuntime {
|
|
|
65
66
|
* Maximum age in seconds a request can be in the queue before it is marked as expired.
|
|
66
67
|
*/
|
|
67
68
|
RequestTTLSeconds?: RequestTTLSecondsHeader;
|
|
69
|
+
/**
|
|
70
|
+
* Maximum amount of time in seconds a request can be processed before it is marked as expired.
|
|
71
|
+
*/
|
|
72
|
+
InvocationTimeoutSeconds?: InvocationTimeoutSecondsHeader;
|
|
68
73
|
}
|
|
69
74
|
export interface InvokeEndpointAsyncOutput {
|
|
70
75
|
/**
|