cdk-docker-image-deployment 0.0.143 → 0.0.145
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/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 +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +123 -40
- package/node_modules/aws-sdk/apis/ssm-sap-2018-05-10.min.json +79 -28
- package/node_modules/aws-sdk/apis/ssm-sap-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/lambda.d.ts +96 -2
- package/node_modules/aws-sdk/clients/route53.d.ts +3 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +3 -3
- package/node_modules/aws-sdk/clients/ssmsap.d.ts +174 -115
- 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 +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +126 -43
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +41 -41
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -269,6 +269,14 @@ declare class Lambda extends Service {
|
|
|
269
269
|
* Retrieves the provisioned concurrency configuration for a function's alias or version.
|
|
270
270
|
*/
|
|
271
271
|
getProvisionedConcurrencyConfig(callback?: (err: AWSError, data: Lambda.Types.GetProvisionedConcurrencyConfigResponse) => void): Request<Lambda.Types.GetProvisionedConcurrencyConfigResponse, AWSError>;
|
|
272
|
+
/**
|
|
273
|
+
* Retrieves the runtime management configuration for a function's version. If the runtime update mode is Manual, this includes the ARN of the runtime version and the runtime update mode. If the runtime update mode is Auto or Function update, this includes the runtime update mode and null is returned for the ARN. For more information, see Runtime updates.
|
|
274
|
+
*/
|
|
275
|
+
getRuntimeManagementConfig(params: Lambda.Types.GetRuntimeManagementConfigRequest, callback?: (err: AWSError, data: Lambda.Types.GetRuntimeManagementConfigResponse) => void): Request<Lambda.Types.GetRuntimeManagementConfigResponse, AWSError>;
|
|
276
|
+
/**
|
|
277
|
+
* Retrieves the runtime management configuration for a function's version. If the runtime update mode is Manual, this includes the ARN of the runtime version and the runtime update mode. If the runtime update mode is Auto or Function update, this includes the runtime update mode and null is returned for the ARN. For more information, see Runtime updates.
|
|
278
|
+
*/
|
|
279
|
+
getRuntimeManagementConfig(callback?: (err: AWSError, data: Lambda.Types.GetRuntimeManagementConfigResponse) => void): Request<Lambda.Types.GetRuntimeManagementConfigResponse, AWSError>;
|
|
272
280
|
/**
|
|
273
281
|
* Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set InvocationType to Event. For synchronous invocation, details about the function response, including errors, are included in the response body and headers. For either invocation type, you can find more information in the execution log and trace. When an error occurs, your function may be invoked multiple times. Retry behavior varies by error type, client, event source, and invocation type. For example, if you invoke a function asynchronously and it returns an error, Lambda executes the function up to two more times. For more information, see Error handling and automatic retries in Lambda. For asynchronous invocation, Lambda adds events to a queue before sending them to your function. If your function does not have enough capacity to keep up with the queue, events may be lost. Occasionally, your function may receive the same event multiple times, even if no error occurs. To retain events that were not processed, configure your function with a dead-letter queue. The status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your function from executing, such as permissions errors, quota errors, or issues with your function's code and configuration. For example, Lambda returns TooManyRequestsException if running the function would cause you to exceed a concurrency limit at either the account level (ConcurrentInvocationLimitExceeded) or function level (ReservedFunctionConcurrentInvocationLimitExceeded). For functions with a long timeout, your client might disconnect during synchronous invocation while it waits for a response. Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long connections with timeout or keep-alive settings. This operation requires permission for the lambda:InvokeFunction action. For details on how to set up permissions for cross-account invocations, see Granting function access to other accounts.
|
|
274
282
|
*/
|
|
@@ -326,11 +334,11 @@ declare class Lambda extends Service {
|
|
|
326
334
|
*/
|
|
327
335
|
listFunctionUrlConfigs(callback?: (err: AWSError, data: Lambda.Types.ListFunctionUrlConfigsResponse) => void): Request<Lambda.Types.ListFunctionUrlConfigsResponse, AWSError>;
|
|
328
336
|
/**
|
|
329
|
-
* Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call. Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. The ListFunctions operation returns a subset of the FunctionConfiguration fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode) for a function or version, use GetFunction.
|
|
337
|
+
* Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call. Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. The ListFunctions operation returns a subset of the FunctionConfiguration fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode, RuntimeVersionConfig) for a function or version, use GetFunction.
|
|
330
338
|
*/
|
|
331
339
|
listFunctions(params: Lambda.Types.ListFunctionsRequest, callback?: (err: AWSError, data: Lambda.Types.ListFunctionsResponse) => void): Request<Lambda.Types.ListFunctionsResponse, AWSError>;
|
|
332
340
|
/**
|
|
333
|
-
* Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call. Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. The ListFunctions operation returns a subset of the FunctionConfiguration fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode) for a function or version, use GetFunction.
|
|
341
|
+
* Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call. Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. The ListFunctions operation returns a subset of the FunctionConfiguration fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode, RuntimeVersionConfig) for a function or version, use GetFunction.
|
|
334
342
|
*/
|
|
335
343
|
listFunctions(callback?: (err: AWSError, data: Lambda.Types.ListFunctionsResponse) => void): Request<Lambda.Types.ListFunctionsResponse, AWSError>;
|
|
336
344
|
/**
|
|
@@ -429,6 +437,14 @@ declare class Lambda extends Service {
|
|
|
429
437
|
* Adds a provisioned concurrency configuration to a function's alias or version.
|
|
430
438
|
*/
|
|
431
439
|
putProvisionedConcurrencyConfig(callback?: (err: AWSError, data: Lambda.Types.PutProvisionedConcurrencyConfigResponse) => void): Request<Lambda.Types.PutProvisionedConcurrencyConfigResponse, AWSError>;
|
|
440
|
+
/**
|
|
441
|
+
* Sets the runtime management configuration for a function's version. For more information, see Runtime updates.
|
|
442
|
+
*/
|
|
443
|
+
putRuntimeManagementConfig(params: Lambda.Types.PutRuntimeManagementConfigRequest, callback?: (err: AWSError, data: Lambda.Types.PutRuntimeManagementConfigResponse) => void): Request<Lambda.Types.PutRuntimeManagementConfigResponse, AWSError>;
|
|
444
|
+
/**
|
|
445
|
+
* Sets the runtime management configuration for a function's version. For more information, see Runtime updates.
|
|
446
|
+
*/
|
|
447
|
+
putRuntimeManagementConfig(callback?: (err: AWSError, data: Lambda.Types.PutRuntimeManagementConfigResponse) => void): Request<Lambda.Types.PutRuntimeManagementConfigResponse, AWSError>;
|
|
432
448
|
/**
|
|
433
449
|
* Removes a statement from the permissions policy for a version of an Lambda layer. For more information, see AddLayerVersionPermission.
|
|
434
450
|
*/
|
|
@@ -1546,6 +1562,10 @@ declare namespace Lambda {
|
|
|
1546
1562
|
* Set ApplyOn to PublishedVersions to create a snapshot of the initialized execution environment when you publish a function version. For more information, see Improving startup performance with Lambda SnapStart.
|
|
1547
1563
|
*/
|
|
1548
1564
|
SnapStart?: SnapStartResponse;
|
|
1565
|
+
/**
|
|
1566
|
+
* The ARN of the runtime and any errors that occured.
|
|
1567
|
+
*/
|
|
1568
|
+
RuntimeVersionConfig?: RuntimeVersionConfig;
|
|
1549
1569
|
}
|
|
1550
1570
|
export interface FunctionEventInvokeConfig {
|
|
1551
1571
|
/**
|
|
@@ -1887,6 +1907,26 @@ declare namespace Lambda {
|
|
|
1887
1907
|
*/
|
|
1888
1908
|
LastModified?: Timestamp;
|
|
1889
1909
|
}
|
|
1910
|
+
export interface GetRuntimeManagementConfigRequest {
|
|
1911
|
+
/**
|
|
1912
|
+
* The name of the Lambda function. Name formats Function name – my-function. Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN – 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
|
|
1913
|
+
*/
|
|
1914
|
+
FunctionName: FunctionName;
|
|
1915
|
+
/**
|
|
1916
|
+
* Specify a version of the function. This can be $LATEST or a published version number. If no value is specified, the configuration for the $LATEST version is returned.
|
|
1917
|
+
*/
|
|
1918
|
+
Qualifier?: Qualifier;
|
|
1919
|
+
}
|
|
1920
|
+
export interface GetRuntimeManagementConfigResponse {
|
|
1921
|
+
/**
|
|
1922
|
+
* The current runtime update mode of the function.
|
|
1923
|
+
*/
|
|
1924
|
+
UpdateRuntimeOn?: UpdateRuntimeOn;
|
|
1925
|
+
/**
|
|
1926
|
+
* The ARN of the runtime the function is configured to use. If the runtime update mode is Manual, the ARN is returned, otherwise null is returned.
|
|
1927
|
+
*/
|
|
1928
|
+
RuntimeVersionArn?: RuntimeVersionArn;
|
|
1929
|
+
}
|
|
1890
1930
|
export type Handler = string;
|
|
1891
1931
|
export type Header = string;
|
|
1892
1932
|
export type HeadersList = Header[];
|
|
@@ -2652,6 +2692,38 @@ declare namespace Lambda {
|
|
|
2652
2692
|
*/
|
|
2653
2693
|
LastModified?: Timestamp;
|
|
2654
2694
|
}
|
|
2695
|
+
export interface PutRuntimeManagementConfigRequest {
|
|
2696
|
+
/**
|
|
2697
|
+
* The name of the Lambda function. Name formats Function name – my-function. Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN – 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
|
|
2698
|
+
*/
|
|
2699
|
+
FunctionName: FunctionName;
|
|
2700
|
+
/**
|
|
2701
|
+
* Specify a version of the function. This can be $LATEST or a published version number. If no value is specified, the configuration for the $LATEST version is returned.
|
|
2702
|
+
*/
|
|
2703
|
+
Qualifier?: Qualifier;
|
|
2704
|
+
/**
|
|
2705
|
+
* Specify the runtime update mode. Auto (default) - Automatically update to the most recent and secure runtime version using a Two-phase runtime version rollout. This is the best choice for most customers to ensure they always benefit from runtime updates. Function update - Lambda updates the runtime of your function to the most recent and secure runtime version when you update your function. This approach synchronizes runtime updates with function deployments, giving you control over when runtime updates are applied and allowing you to detect and mitigate rare runtime update incompatibilities early. When using this setting, you need to regularly update your functions to keep their runtime up-to-date. Manual - You specify a runtime version in your function configuration. The function will use this runtime version indefinitely. In the rare case where a new runtime version is incompatible with an existing function, this allows you to roll back your function to an earlier runtime version. For more information, see Roll back a runtime version.
|
|
2706
|
+
*/
|
|
2707
|
+
UpdateRuntimeOn: UpdateRuntimeOn;
|
|
2708
|
+
/**
|
|
2709
|
+
* The ARN of the runtime version you want the function to use. This is only required if you're using the Manual runtime update mode.
|
|
2710
|
+
*/
|
|
2711
|
+
RuntimeVersionArn?: RuntimeVersionArn;
|
|
2712
|
+
}
|
|
2713
|
+
export interface PutRuntimeManagementConfigResponse {
|
|
2714
|
+
/**
|
|
2715
|
+
* The runtime update mode.
|
|
2716
|
+
*/
|
|
2717
|
+
UpdateRuntimeOn: UpdateRuntimeOn;
|
|
2718
|
+
/**
|
|
2719
|
+
* The ARN of the function
|
|
2720
|
+
*/
|
|
2721
|
+
FunctionArn: FunctionArn;
|
|
2722
|
+
/**
|
|
2723
|
+
* The ARN of the runtime the function is configured to use. If the runtime update mode is manual, the ARN is returned, otherwise null is returned.
|
|
2724
|
+
*/
|
|
2725
|
+
RuntimeVersionArn?: RuntimeVersionArn;
|
|
2726
|
+
}
|
|
2655
2727
|
export type Qualifier = string;
|
|
2656
2728
|
export type Queue = string;
|
|
2657
2729
|
export type Queues = Queue[];
|
|
@@ -2695,6 +2767,27 @@ declare namespace Lambda {
|
|
|
2695
2767
|
export type ResourceArn = string;
|
|
2696
2768
|
export type RoleArn = string;
|
|
2697
2769
|
export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"nodejs8.10"|"nodejs10.x"|"nodejs12.x"|"nodejs14.x"|"nodejs16.x"|"java8"|"java8.al2"|"java11"|"python2.7"|"python3.6"|"python3.7"|"python3.8"|"python3.9"|"dotnetcore1.0"|"dotnetcore2.0"|"dotnetcore2.1"|"dotnetcore3.1"|"dotnet6"|"nodejs4.3-edge"|"go1.x"|"ruby2.5"|"ruby2.7"|"provided"|"provided.al2"|"nodejs18.x"|string;
|
|
2770
|
+
export type RuntimeVersionArn = string;
|
|
2771
|
+
export interface RuntimeVersionConfig {
|
|
2772
|
+
/**
|
|
2773
|
+
* The ARN of the runtime version you want the function to use.
|
|
2774
|
+
*/
|
|
2775
|
+
RuntimeVersionArn?: RuntimeVersionArn;
|
|
2776
|
+
/**
|
|
2777
|
+
* Error response when Lambda is unable to retrieve the runtime version for a function.
|
|
2778
|
+
*/
|
|
2779
|
+
Error?: RuntimeVersionError;
|
|
2780
|
+
}
|
|
2781
|
+
export interface RuntimeVersionError {
|
|
2782
|
+
/**
|
|
2783
|
+
* The error code.
|
|
2784
|
+
*/
|
|
2785
|
+
ErrorCode?: String;
|
|
2786
|
+
/**
|
|
2787
|
+
* The error message.
|
|
2788
|
+
*/
|
|
2789
|
+
Message?: SensitiveString;
|
|
2790
|
+
}
|
|
2698
2791
|
export type S3Bucket = string;
|
|
2699
2792
|
export type S3Key = string;
|
|
2700
2793
|
export type S3ObjectVersion = string;
|
|
@@ -3097,6 +3190,7 @@ declare namespace Lambda {
|
|
|
3097
3190
|
*/
|
|
3098
3191
|
LastModifiedTime: Timestamp;
|
|
3099
3192
|
}
|
|
3193
|
+
export type UpdateRuntimeOn = "Auto"|"Manual"|"FunctionUpdate"|string;
|
|
3100
3194
|
export type Version = string;
|
|
3101
3195
|
export interface VpcConfig {
|
|
3102
3196
|
/**
|
|
@@ -850,7 +850,7 @@ declare namespace Route53 {
|
|
|
850
850
|
Dimensions?: DimensionList;
|
|
851
851
|
}
|
|
852
852
|
export type CloudWatchLogsLogGroupArn = string;
|
|
853
|
-
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|string;
|
|
853
|
+
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"ap-southeast-4"|string;
|
|
854
854
|
export type CollectionName = string;
|
|
855
855
|
export type CollectionSummaries = CollectionSummary[];
|
|
856
856
|
export interface CollectionSummary {
|
|
@@ -2620,7 +2620,7 @@ declare namespace Route53 {
|
|
|
2620
2620
|
export type ResourceRecordSetFailover = "PRIMARY"|"SECONDARY"|string;
|
|
2621
2621
|
export type ResourceRecordSetIdentifier = string;
|
|
2622
2622
|
export type ResourceRecordSetMultiValueAnswer = boolean;
|
|
2623
|
-
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"af-south-1"|"eu-south-1"|"eu-south-2"|string;
|
|
2623
|
+
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|string;
|
|
2624
2624
|
export type ResourceRecordSetWeight = number;
|
|
2625
2625
|
export type ResourceRecordSets = ResourceRecordSet[];
|
|
2626
2626
|
export type ResourceRecords = ResourceRecord[];
|
|
@@ -2991,7 +2991,7 @@ declare namespace Route53 {
|
|
|
2991
2991
|
VPCId?: VPCId;
|
|
2992
2992
|
}
|
|
2993
2993
|
export type VPCId = string;
|
|
2994
|
-
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-south-2"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|string;
|
|
2994
|
+
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-south-2"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|string;
|
|
2995
2995
|
export type VPCs = VPC[];
|
|
2996
2996
|
/**
|
|
2997
2997
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
@@ -10468,7 +10468,7 @@ declare namespace SageMaker {
|
|
|
10468
10468
|
*/
|
|
10469
10469
|
Tags?: TagList;
|
|
10470
10470
|
/**
|
|
10471
|
-
* A list of the shadow variants hosted on the endpoint. Each shadow variant is a model in shadow mode with production traffic replicated from the
|
|
10471
|
+
* A list of the shadow variants hosted on the endpoint. Each shadow variant is a model in shadow mode with production traffic replicated from the production variant.
|
|
10472
10472
|
*/
|
|
10473
10473
|
ShadowProductionVariants?: ProductionVariantSummaryList;
|
|
10474
10474
|
}
|
|
@@ -18193,7 +18193,7 @@ declare namespace SageMaker {
|
|
|
18193
18193
|
*/
|
|
18194
18194
|
ServerlessConfig?: ProductionVariantServerlessConfig;
|
|
18195
18195
|
/**
|
|
18196
|
-
* The size, in GB, of the ML storage volume attached to individual inference instance associated with the production variant.
|
|
18196
|
+
* The size, in GB, of the ML storage volume attached to individual inference instance associated with the production variant. Currently only Amazon EBS gp2 storage volumes are supported.
|
|
18197
18197
|
*/
|
|
18198
18198
|
VolumeSizeInGB?: ProductionVariantVolumeSizeInGB;
|
|
18199
18199
|
/**
|
|
@@ -18217,7 +18217,7 @@ declare namespace SageMaker {
|
|
|
18217
18217
|
*/
|
|
18218
18218
|
KmsKeyId?: KmsKeyId;
|
|
18219
18219
|
}
|
|
18220
|
-
export type ProductionVariantInstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.12xlarge"|"ml.m5d.24xlarge"|"ml.c4.large"|"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.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.large"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.12xlarge"|"ml.r5.24xlarge"|"ml.r5d.large"|"ml.r5d.xlarge"|"ml.r5d.2xlarge"|"ml.r5d.4xlarge"|"ml.r5d.12xlarge"|"ml.r5d.24xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.12xlarge"|"ml.g5.16xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.p4d.24xlarge"|"ml.c7g.large"|"ml.c7g.xlarge"|"ml.c7g.2xlarge"|"ml.c7g.4xlarge"|"ml.c7g.8xlarge"|"ml.c7g.12xlarge"|"ml.c7g.16xlarge"|"ml.m6g.large"|"ml.m6g.xlarge"|"ml.m6g.2xlarge"|"ml.m6g.4xlarge"|"ml.m6g.8xlarge"|"ml.m6g.12xlarge"|"ml.m6g.16xlarge"|"ml.m6gd.large"|"ml.m6gd.xlarge"|"ml.m6gd.2xlarge"|"ml.m6gd.4xlarge"|"ml.m6gd.8xlarge"|"ml.m6gd.12xlarge"|"ml.m6gd.16xlarge"|"ml.c6g.large"|"ml.c6g.xlarge"|"ml.c6g.2xlarge"|"ml.c6g.4xlarge"|"ml.c6g.8xlarge"|"ml.c6g.12xlarge"|"ml.c6g.16xlarge"|"ml.c6gd.large"|"ml.c6gd.xlarge"|"ml.c6gd.2xlarge"|"ml.c6gd.4xlarge"|"ml.c6gd.8xlarge"|"ml.c6gd.12xlarge"|"ml.c6gd.16xlarge"|"ml.c6gn.large"|"ml.c6gn.xlarge"|"ml.c6gn.2xlarge"|"ml.c6gn.4xlarge"|"ml.c6gn.8xlarge"|"ml.c6gn.12xlarge"|"ml.c6gn.16xlarge"|"ml.r6g.large"|"ml.r6g.xlarge"|"ml.r6g.2xlarge"|"ml.r6g.4xlarge"|"ml.r6g.8xlarge"|"ml.r6g.12xlarge"|"ml.r6g.16xlarge"|"ml.r6gd.large"|"ml.r6gd.xlarge"|"ml.r6gd.2xlarge"|"ml.r6gd.4xlarge"|"ml.r6gd.8xlarge"|"ml.r6gd.12xlarge"|"ml.r6gd.16xlarge"|string;
|
|
18220
|
+
export type ProductionVariantInstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.12xlarge"|"ml.m5d.24xlarge"|"ml.c4.large"|"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.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.large"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.12xlarge"|"ml.r5.24xlarge"|"ml.r5d.large"|"ml.r5d.xlarge"|"ml.r5d.2xlarge"|"ml.r5d.4xlarge"|"ml.r5d.12xlarge"|"ml.r5d.24xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.12xlarge"|"ml.g5.16xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.p4d.24xlarge"|"ml.c7g.large"|"ml.c7g.xlarge"|"ml.c7g.2xlarge"|"ml.c7g.4xlarge"|"ml.c7g.8xlarge"|"ml.c7g.12xlarge"|"ml.c7g.16xlarge"|"ml.m6g.large"|"ml.m6g.xlarge"|"ml.m6g.2xlarge"|"ml.m6g.4xlarge"|"ml.m6g.8xlarge"|"ml.m6g.12xlarge"|"ml.m6g.16xlarge"|"ml.m6gd.large"|"ml.m6gd.xlarge"|"ml.m6gd.2xlarge"|"ml.m6gd.4xlarge"|"ml.m6gd.8xlarge"|"ml.m6gd.12xlarge"|"ml.m6gd.16xlarge"|"ml.c6g.large"|"ml.c6g.xlarge"|"ml.c6g.2xlarge"|"ml.c6g.4xlarge"|"ml.c6g.8xlarge"|"ml.c6g.12xlarge"|"ml.c6g.16xlarge"|"ml.c6gd.large"|"ml.c6gd.xlarge"|"ml.c6gd.2xlarge"|"ml.c6gd.4xlarge"|"ml.c6gd.8xlarge"|"ml.c6gd.12xlarge"|"ml.c6gd.16xlarge"|"ml.c6gn.large"|"ml.c6gn.xlarge"|"ml.c6gn.2xlarge"|"ml.c6gn.4xlarge"|"ml.c6gn.8xlarge"|"ml.c6gn.12xlarge"|"ml.c6gn.16xlarge"|"ml.r6g.large"|"ml.r6g.xlarge"|"ml.r6g.2xlarge"|"ml.r6g.4xlarge"|"ml.r6g.8xlarge"|"ml.r6g.12xlarge"|"ml.r6g.16xlarge"|"ml.r6gd.large"|"ml.r6gd.xlarge"|"ml.r6gd.2xlarge"|"ml.r6gd.4xlarge"|"ml.r6gd.8xlarge"|"ml.r6gd.12xlarge"|"ml.r6gd.16xlarge"|"ml.p4de.24xlarge"|string;
|
|
18221
18221
|
export type ProductionVariantList = ProductionVariant[];
|
|
18222
18222
|
export type ProductionVariantModelDataDownloadTimeoutInSeconds = number;
|
|
18223
18223
|
export interface ProductionVariantServerlessConfig {
|