@aws-sdk/client-sagemaker 3.45.0 → 3.47.2
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/CHANGELOG.md +45 -0
- package/dist-cjs/commands/DescribeModelBiasJobDefinitionCommand.js +1 -2
- package/dist-cjs/commands/DescribeModelCommand.js +2 -1
- package/dist-cjs/commands/ListTrainingJobsForHyperParameterTuningJobCommand.js +2 -1
- package/dist-cjs/commands/ListTransformJobsCommand.js +1 -2
- package/dist-cjs/endpoints.js +0 -20
- package/dist-cjs/models/models_0.js +14 -30
- package/dist-cjs/models/models_1.js +17 -17
- package/dist-cjs/models/models_2.js +24 -24
- package/dist-cjs/models/models_3.js +21 -3
- package/dist-cjs/protocols/Aws_json1_1.js +71 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/commands/DescribeModelBiasJobDefinitionCommand.js +1 -2
- package/dist-es/commands/DescribeModelCommand.js +2 -1
- package/dist-es/commands/ListTrainingJobsForHyperParameterTuningJobCommand.js +2 -1
- package/dist-es/commands/ListTransformJobsCommand.js +1 -2
- package/dist-es/endpoints.js +0 -20
- package/dist-es/models/models_0.js +8 -16
- package/dist-es/models/models_1.js +8 -8
- package/dist-es/models/models_2.js +12 -12
- package/dist-es/models/models_3.js +12 -0
- package/dist-es/protocols/Aws_json1_1.js +65 -7
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/SageMaker.d.ts +4 -4
- package/dist-types/SageMakerClient.d.ts +5 -1
- package/dist-types/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -2
- package/dist-types/commands/DescribeModelCommand.d.ts +2 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +2 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -2
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +2 -2
- package/dist-types/commands/StopTransformJobCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +14 -31
- package/dist-types/models/models_1.d.ts +54 -66
- package/dist-types/models/models_2.d.ts +120 -125
- package/dist-types/models/models_3.d.ts +157 -3
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +3 -1
- package/dist-types/ts3.4/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DescribeModelCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +8 -16
- package/dist-types/ts3.4/models/models_1.d.ts +27 -33
- package/dist-types/ts3.4/models/models_2.d.ts +60 -59
- package/dist-types/ts3.4/models/models_3.d.ts +73 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +40 -47
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { SageMakerClientConfig } from "./SageMakerClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { SageMakerClientConfig } from "./SageMakerClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AddAssociationCommandInput, AddAssociationCommandOutput } from "./commands/AddAssociationCommand";
|
|
10
10
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
@@ -302,6 +302,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
302
302
|
regionInfoProvider?: RegionInfoProvider;
|
|
303
303
|
|
|
304
304
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
305
|
+
|
|
306
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
305
307
|
}
|
|
306
308
|
declare type SageMakerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
307
309
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeModelBiasJobDefinitionRequest } from "../models/
|
|
4
|
-
import { DescribeModelBiasJobDefinitionResponse } from "../models/models_2";
|
|
3
|
+
import { DescribeModelBiasJobDefinitionRequest, DescribeModelBiasJobDefinitionResponse } from "../models/models_2";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
export interface DescribeModelBiasJobDefinitionCommandInput extends DescribeModelBiasJobDefinitionRequest {
|
|
7
6
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeModelInput
|
|
3
|
+
import { DescribeModelInput } from "../models/models_1";
|
|
4
|
+
import { DescribeModelOutput } from "../models/models_2";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
export interface DescribeModelCommandInput extends DescribeModelInput {
|
|
6
7
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListTrainingJobsForHyperParameterTuningJobRequest
|
|
3
|
+
import { ListTrainingJobsForHyperParameterTuningJobRequest } from "../models/models_2";
|
|
4
|
+
import { ListTrainingJobsForHyperParameterTuningJobResponse } from "../models/models_3";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
export interface ListTrainingJobsForHyperParameterTuningJobCommandInput extends ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
6
7
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListTransformJobsRequest } from "../models/
|
|
4
|
-
import { ListTransformJobsResponse } from "../models/models_3";
|
|
3
|
+
import { ListTransformJobsRequest, ListTransformJobsResponse } from "../models/models_3";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
export interface ListTransformJobsCommandInput extends ListTransformJobsRequest {
|
|
7
6
|
}
|
|
@@ -76,20 +76,12 @@ export interface ResourceLimitExceeded extends __SmithyException, $MetadataBeare
|
|
|
76
76
|
$fault: "client";
|
|
77
77
|
Message?: string;
|
|
78
78
|
}
|
|
79
|
-
export declare namespace ResourceLimitExceeded {
|
|
80
|
-
|
|
81
|
-
const filterSensitiveLog: (obj: ResourceLimitExceeded) => any;
|
|
82
|
-
}
|
|
83
79
|
|
|
84
80
|
export interface ResourceNotFound extends __SmithyException, $MetadataBearer {
|
|
85
81
|
name: "ResourceNotFound";
|
|
86
82
|
$fault: "client";
|
|
87
83
|
Message?: string;
|
|
88
84
|
}
|
|
89
|
-
export declare namespace ResourceNotFound {
|
|
90
|
-
|
|
91
|
-
const filterSensitiveLog: (obj: ResourceNotFound) => any;
|
|
92
|
-
}
|
|
93
85
|
|
|
94
86
|
export interface ModelInput {
|
|
95
87
|
|
|
@@ -519,6 +511,14 @@ export declare enum TrainingInstanceType {
|
|
|
519
511
|
ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
|
|
520
512
|
ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
|
|
521
513
|
ML_G4DN_XLARGE = "ml.g4dn.xlarge",
|
|
514
|
+
ML_G5_12XLARGE = "ml.g5.12xlarge",
|
|
515
|
+
ML_G5_16XLARGE = "ml.g5.16xlarge",
|
|
516
|
+
ML_G5_24XLARGE = "ml.g5.24xlarge",
|
|
517
|
+
ML_G5_2XLARGE = "ml.g5.2xlarge",
|
|
518
|
+
ML_G5_48XLARGE = "ml.g5.48xlarge",
|
|
519
|
+
ML_G5_4XLARGE = "ml.g5.4xlarge",
|
|
520
|
+
ML_G5_8XLARGE = "ml.g5.8xlarge",
|
|
521
|
+
ML_G5_XLARGE = "ml.g5.xlarge",
|
|
522
522
|
ML_M4_10XLARGE = "ml.m4.10xlarge",
|
|
523
523
|
ML_M4_16XLARGE = "ml.m4.16xlarge",
|
|
524
524
|
ML_M4_2XLARGE = "ml.m4.2xlarge",
|
|
@@ -1901,10 +1901,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
1901
1901
|
$fault: "client";
|
|
1902
1902
|
Message?: string;
|
|
1903
1903
|
}
|
|
1904
|
-
export declare namespace ConflictException {
|
|
1905
|
-
|
|
1906
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
1907
|
-
}
|
|
1908
1904
|
export declare enum RepositoryAccessMode {
|
|
1909
1905
|
PLATFORM = "Platform",
|
|
1910
1906
|
VPC = "Vpc"
|
|
@@ -2252,10 +2248,6 @@ export interface ResourceInUse extends __SmithyException, $MetadataBearer {
|
|
|
2252
2248
|
$fault: "client";
|
|
2253
2249
|
Message?: string;
|
|
2254
2250
|
}
|
|
2255
|
-
export declare namespace ResourceInUse {
|
|
2256
|
-
|
|
2257
|
-
const filterSensitiveLog: (obj: ResourceInUse) => any;
|
|
2258
|
-
}
|
|
2259
2251
|
export interface CreateAppImageConfigRequest {
|
|
2260
2252
|
|
|
2261
2253
|
AppImageConfigName: string | undefined;
|
|
@@ -1083,13 +1083,37 @@ export declare namespace CreateNotebookInstanceLifecycleConfigOutput {
|
|
|
1083
1083
|
|
|
1084
1084
|
const filterSensitiveLog: (obj: CreateNotebookInstanceLifecycleConfigOutput) => any;
|
|
1085
1085
|
}
|
|
1086
|
+
|
|
1087
|
+
export interface ParallelismConfiguration {
|
|
1088
|
+
|
|
1089
|
+
MaxParallelExecutionSteps: number | undefined;
|
|
1090
|
+
}
|
|
1091
|
+
export declare namespace ParallelismConfiguration {
|
|
1092
|
+
|
|
1093
|
+
const filterSensitiveLog: (obj: ParallelismConfiguration) => any;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
export interface PipelineDefinitionS3Location {
|
|
1097
|
+
|
|
1098
|
+
Bucket: string | undefined;
|
|
1099
|
+
|
|
1100
|
+
ObjectKey: string | undefined;
|
|
1101
|
+
|
|
1102
|
+
VersionId?: string;
|
|
1103
|
+
}
|
|
1104
|
+
export declare namespace PipelineDefinitionS3Location {
|
|
1105
|
+
|
|
1106
|
+
const filterSensitiveLog: (obj: PipelineDefinitionS3Location) => any;
|
|
1107
|
+
}
|
|
1086
1108
|
export interface CreatePipelineRequest {
|
|
1087
1109
|
|
|
1088
1110
|
PipelineName: string | undefined;
|
|
1089
1111
|
|
|
1090
1112
|
PipelineDisplayName?: string;
|
|
1091
1113
|
|
|
1092
|
-
PipelineDefinition
|
|
1114
|
+
PipelineDefinition?: string;
|
|
1115
|
+
|
|
1116
|
+
PipelineDefinitionS3Location?: PipelineDefinitionS3Location;
|
|
1093
1117
|
|
|
1094
1118
|
PipelineDescription?: string;
|
|
1095
1119
|
|
|
@@ -1098,6 +1122,8 @@ export interface CreatePipelineRequest {
|
|
|
1098
1122
|
RoleArn: string | undefined;
|
|
1099
1123
|
|
|
1100
1124
|
Tags?: Tag[];
|
|
1125
|
+
|
|
1126
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1101
1127
|
}
|
|
1102
1128
|
export declare namespace CreatePipelineRequest {
|
|
1103
1129
|
|
|
@@ -3907,35 +3933,3 @@ export declare namespace DescribeModelInput {
|
|
|
3907
3933
|
|
|
3908
3934
|
const filterSensitiveLog: (obj: DescribeModelInput) => any;
|
|
3909
3935
|
}
|
|
3910
|
-
export interface DescribeModelOutput {
|
|
3911
|
-
|
|
3912
|
-
ModelName: string | undefined;
|
|
3913
|
-
|
|
3914
|
-
PrimaryContainer?: ContainerDefinition;
|
|
3915
|
-
|
|
3916
|
-
Containers?: ContainerDefinition[];
|
|
3917
|
-
|
|
3918
|
-
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
3919
|
-
|
|
3920
|
-
ExecutionRoleArn: string | undefined;
|
|
3921
|
-
|
|
3922
|
-
VpcConfig?: VpcConfig;
|
|
3923
|
-
|
|
3924
|
-
CreationTime: Date | undefined;
|
|
3925
|
-
|
|
3926
|
-
ModelArn: string | undefined;
|
|
3927
|
-
|
|
3928
|
-
EnableNetworkIsolation?: boolean;
|
|
3929
|
-
}
|
|
3930
|
-
export declare namespace DescribeModelOutput {
|
|
3931
|
-
|
|
3932
|
-
const filterSensitiveLog: (obj: DescribeModelOutput) => any;
|
|
3933
|
-
}
|
|
3934
|
-
export interface DescribeModelBiasJobDefinitionRequest {
|
|
3935
|
-
|
|
3936
|
-
JobDefinitionName: string | undefined;
|
|
3937
|
-
}
|
|
3938
|
-
export declare namespace DescribeModelBiasJobDefinitionRequest {
|
|
3939
|
-
|
|
3940
|
-
const filterSensitiveLog: (obj: DescribeModelBiasJobDefinitionRequest) => any;
|
|
3941
|
-
}
|
|
@@ -1,5 +1,37 @@
|
|
|
1
|
-
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContextSummary, EdgeOutputConfig, FeatureDefinition, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ResourceConfig, ResourceLimits, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus,
|
|
1
|
+
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ResourceConfig, ResourceLimits, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, LabelCounters, LabelingJobInputConfig, LabelingJobOutput, LabelingJobStatus, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationJobType, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
export interface DescribeModelOutput {
|
|
4
|
+
|
|
5
|
+
ModelName: string | undefined;
|
|
6
|
+
|
|
7
|
+
PrimaryContainer?: ContainerDefinition;
|
|
8
|
+
|
|
9
|
+
Containers?: ContainerDefinition[];
|
|
10
|
+
|
|
11
|
+
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
12
|
+
|
|
13
|
+
ExecutionRoleArn: string | undefined;
|
|
14
|
+
|
|
15
|
+
VpcConfig?: VpcConfig;
|
|
16
|
+
|
|
17
|
+
CreationTime: Date | undefined;
|
|
18
|
+
|
|
19
|
+
ModelArn: string | undefined;
|
|
20
|
+
|
|
21
|
+
EnableNetworkIsolation?: boolean;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace DescribeModelOutput {
|
|
24
|
+
|
|
25
|
+
const filterSensitiveLog: (obj: DescribeModelOutput) => any;
|
|
26
|
+
}
|
|
27
|
+
export interface DescribeModelBiasJobDefinitionRequest {
|
|
28
|
+
|
|
29
|
+
JobDefinitionName: string | undefined;
|
|
30
|
+
}
|
|
31
|
+
export declare namespace DescribeModelBiasJobDefinitionRequest {
|
|
32
|
+
|
|
33
|
+
const filterSensitiveLog: (obj: DescribeModelBiasJobDefinitionRequest) => any;
|
|
34
|
+
}
|
|
3
35
|
export interface DescribeModelBiasJobDefinitionResponse {
|
|
4
36
|
|
|
5
37
|
JobDefinitionArn: string | undefined;
|
|
@@ -433,6 +465,8 @@ export interface DescribePipelineResponse {
|
|
|
433
465
|
CreatedBy?: UserContext;
|
|
434
466
|
|
|
435
467
|
LastModifiedBy?: UserContext;
|
|
468
|
+
|
|
469
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
436
470
|
}
|
|
437
471
|
export declare namespace DescribePipelineResponse {
|
|
438
472
|
|
|
@@ -505,6 +539,8 @@ export interface DescribePipelineExecutionResponse {
|
|
|
505
539
|
CreatedBy?: UserContext;
|
|
506
540
|
|
|
507
541
|
LastModifiedBy?: UserContext;
|
|
542
|
+
|
|
543
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
508
544
|
}
|
|
509
545
|
export declare namespace DescribePipelineExecutionResponse {
|
|
510
546
|
|
|
@@ -1427,6 +1463,21 @@ export declare namespace EdgePackagingJobSummary {
|
|
|
1427
1463
|
|
|
1428
1464
|
const filterSensitiveLog: (obj: EdgePackagingJobSummary) => any;
|
|
1429
1465
|
}
|
|
1466
|
+
|
|
1467
|
+
export interface EMRStepMetadata {
|
|
1468
|
+
|
|
1469
|
+
ClusterId?: string;
|
|
1470
|
+
|
|
1471
|
+
StepId?: string;
|
|
1472
|
+
|
|
1473
|
+
StepName?: string;
|
|
1474
|
+
|
|
1475
|
+
LogFilePath?: string;
|
|
1476
|
+
}
|
|
1477
|
+
export declare namespace EMRStepMetadata {
|
|
1478
|
+
|
|
1479
|
+
const filterSensitiveLog: (obj: EMRStepMetadata) => any;
|
|
1480
|
+
}
|
|
1430
1481
|
export interface EnableSagemakerServicecatalogPortfolioInput {
|
|
1431
1482
|
}
|
|
1432
1483
|
export declare namespace EnableSagemakerServicecatalogPortfolioInput {
|
|
@@ -3831,6 +3882,8 @@ export interface PipelineExecutionStepMetadata {
|
|
|
3831
3882
|
QualityCheck?: QualityCheckStepMetadata;
|
|
3832
3883
|
|
|
3833
3884
|
ClarifyCheck?: ClarifyCheckStepMetadata;
|
|
3885
|
+
|
|
3886
|
+
EMR?: EMRStepMetadata;
|
|
3834
3887
|
}
|
|
3835
3888
|
export declare namespace PipelineExecutionStepMetadata {
|
|
3836
3889
|
|
|
@@ -3849,6 +3902,10 @@ export interface PipelineExecutionStep {
|
|
|
3849
3902
|
|
|
3850
3903
|
StepName?: string;
|
|
3851
3904
|
|
|
3905
|
+
StepDisplayName?: string;
|
|
3906
|
+
|
|
3907
|
+
StepDescription?: string;
|
|
3908
|
+
|
|
3852
3909
|
StartTime?: Date;
|
|
3853
3910
|
|
|
3854
3911
|
EndTime?: Date;
|
|
@@ -3856,6 +3913,7 @@ export interface PipelineExecutionStep {
|
|
|
3856
3913
|
StepStatus?: StepStatus | string;
|
|
3857
3914
|
|
|
3858
3915
|
CacheHitResult?: CacheHitResult;
|
|
3916
|
+
|
|
3859
3917
|
AttemptCount?: number;
|
|
3860
3918
|
|
|
3861
3919
|
FailureReason?: string;
|
|
@@ -4263,60 +4321,3 @@ export declare namespace ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
|
4263
4321
|
|
|
4264
4322
|
const filterSensitiveLog: (obj: ListTrainingJobsForHyperParameterTuningJobRequest) => any;
|
|
4265
4323
|
}
|
|
4266
|
-
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
4267
|
-
|
|
4268
|
-
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
4269
|
-
|
|
4270
|
-
NextToken?: string;
|
|
4271
|
-
}
|
|
4272
|
-
export declare namespace ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
4273
|
-
|
|
4274
|
-
const filterSensitiveLog: (obj: ListTrainingJobsForHyperParameterTuningJobResponse) => any;
|
|
4275
|
-
}
|
|
4276
|
-
export interface ListTransformJobsRequest {
|
|
4277
|
-
|
|
4278
|
-
CreationTimeAfter?: Date;
|
|
4279
|
-
|
|
4280
|
-
CreationTimeBefore?: Date;
|
|
4281
|
-
|
|
4282
|
-
LastModifiedTimeAfter?: Date;
|
|
4283
|
-
|
|
4284
|
-
LastModifiedTimeBefore?: Date;
|
|
4285
|
-
|
|
4286
|
-
NameContains?: string;
|
|
4287
|
-
|
|
4288
|
-
StatusEquals?: TransformJobStatus | string;
|
|
4289
|
-
|
|
4290
|
-
SortBy?: SortBy | string;
|
|
4291
|
-
|
|
4292
|
-
SortOrder?: SortOrder | string;
|
|
4293
|
-
|
|
4294
|
-
NextToken?: string;
|
|
4295
|
-
|
|
4296
|
-
MaxResults?: number;
|
|
4297
|
-
}
|
|
4298
|
-
export declare namespace ListTransformJobsRequest {
|
|
4299
|
-
|
|
4300
|
-
const filterSensitiveLog: (obj: ListTransformJobsRequest) => any;
|
|
4301
|
-
}
|
|
4302
|
-
|
|
4303
|
-
export interface TransformJobSummary {
|
|
4304
|
-
|
|
4305
|
-
TransformJobName: string | undefined;
|
|
4306
|
-
|
|
4307
|
-
TransformJobArn: string | undefined;
|
|
4308
|
-
|
|
4309
|
-
CreationTime: Date | undefined;
|
|
4310
|
-
|
|
4311
|
-
TransformEndTime?: Date;
|
|
4312
|
-
|
|
4313
|
-
LastModifiedTime?: Date;
|
|
4314
|
-
|
|
4315
|
-
TransformJobStatus: TransformJobStatus | string | undefined;
|
|
4316
|
-
|
|
4317
|
-
FailureReason?: string;
|
|
4318
|
-
}
|
|
4319
|
-
export declare namespace TransformJobSummary {
|
|
4320
|
-
|
|
4321
|
-
const filterSensitiveLog: (obj: TransformJobSummary) => any;
|
|
4322
|
-
}
|
|
@@ -1,6 +1,63 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, Channel, CheckpointConfig, DeploymentConfig, EdgeOutputConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
-
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortOrder, TransformJobStatus,
|
|
2
|
+
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
5
|
+
|
|
6
|
+
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
7
|
+
|
|
8
|
+
NextToken?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
11
|
+
|
|
12
|
+
const filterSensitiveLog: (obj: ListTrainingJobsForHyperParameterTuningJobResponse) => any;
|
|
13
|
+
}
|
|
14
|
+
export interface ListTransformJobsRequest {
|
|
15
|
+
|
|
16
|
+
CreationTimeAfter?: Date;
|
|
17
|
+
|
|
18
|
+
CreationTimeBefore?: Date;
|
|
19
|
+
|
|
20
|
+
LastModifiedTimeAfter?: Date;
|
|
21
|
+
|
|
22
|
+
LastModifiedTimeBefore?: Date;
|
|
23
|
+
|
|
24
|
+
NameContains?: string;
|
|
25
|
+
|
|
26
|
+
StatusEquals?: TransformJobStatus | string;
|
|
27
|
+
|
|
28
|
+
SortBy?: SortBy | string;
|
|
29
|
+
|
|
30
|
+
SortOrder?: SortOrder | string;
|
|
31
|
+
|
|
32
|
+
NextToken?: string;
|
|
33
|
+
|
|
34
|
+
MaxResults?: number;
|
|
35
|
+
}
|
|
36
|
+
export declare namespace ListTransformJobsRequest {
|
|
37
|
+
|
|
38
|
+
const filterSensitiveLog: (obj: ListTransformJobsRequest) => any;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface TransformJobSummary {
|
|
42
|
+
|
|
43
|
+
TransformJobName: string | undefined;
|
|
44
|
+
|
|
45
|
+
TransformJobArn: string | undefined;
|
|
46
|
+
|
|
47
|
+
CreationTime: Date | undefined;
|
|
48
|
+
|
|
49
|
+
TransformEndTime?: Date;
|
|
50
|
+
|
|
51
|
+
LastModifiedTime?: Date;
|
|
52
|
+
|
|
53
|
+
TransformJobStatus: TransformJobStatus | string | undefined;
|
|
54
|
+
|
|
55
|
+
FailureReason?: string;
|
|
56
|
+
}
|
|
57
|
+
export declare namespace TransformJobSummary {
|
|
58
|
+
|
|
59
|
+
const filterSensitiveLog: (obj: TransformJobSummary) => any;
|
|
60
|
+
}
|
|
4
61
|
export interface ListTransformJobsResponse {
|
|
5
62
|
|
|
6
63
|
TransformJobSummaries: TransformJobSummary[] | undefined;
|
|
@@ -371,6 +428,8 @@ export interface Pipeline {
|
|
|
371
428
|
|
|
372
429
|
LastModifiedBy?: UserContext;
|
|
373
430
|
|
|
431
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
432
|
+
|
|
374
433
|
Tags?: Tag[];
|
|
375
434
|
}
|
|
376
435
|
export declare namespace Pipeline {
|
|
@@ -402,6 +461,8 @@ export interface PipelineExecution {
|
|
|
402
461
|
|
|
403
462
|
LastModifiedBy?: UserContext;
|
|
404
463
|
|
|
464
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
465
|
+
|
|
405
466
|
PipelineParameters?: Parameter[];
|
|
406
467
|
}
|
|
407
468
|
export declare namespace PipelineExecution {
|
|
@@ -656,6 +717,8 @@ export interface RetryPipelineExecutionRequest {
|
|
|
656
717
|
PipelineExecutionArn: string | undefined;
|
|
657
718
|
|
|
658
719
|
ClientRequestToken?: string;
|
|
720
|
+
|
|
721
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
659
722
|
}
|
|
660
723
|
export declare namespace RetryPipelineExecutionRequest {
|
|
661
724
|
|
|
@@ -1031,6 +1094,8 @@ export interface StartPipelineExecutionRequest {
|
|
|
1031
1094
|
PipelineExecutionDescription?: string;
|
|
1032
1095
|
|
|
1033
1096
|
ClientRequestToken?: string;
|
|
1097
|
+
|
|
1098
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1034
1099
|
}
|
|
1035
1100
|
export declare namespace StartPipelineExecutionRequest {
|
|
1036
1101
|
|
|
@@ -1518,9 +1583,13 @@ export interface UpdatePipelineRequest {
|
|
|
1518
1583
|
|
|
1519
1584
|
PipelineDefinition?: string;
|
|
1520
1585
|
|
|
1586
|
+
PipelineDefinitionS3Location?: PipelineDefinitionS3Location;
|
|
1587
|
+
|
|
1521
1588
|
PipelineDescription?: string;
|
|
1522
1589
|
|
|
1523
1590
|
RoleArn?: string;
|
|
1591
|
+
|
|
1592
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1524
1593
|
}
|
|
1525
1594
|
export declare namespace UpdatePipelineRequest {
|
|
1526
1595
|
|
|
@@ -1541,6 +1610,8 @@ export interface UpdatePipelineExecutionRequest {
|
|
|
1541
1610
|
PipelineExecutionDescription?: string;
|
|
1542
1611
|
|
|
1543
1612
|
PipelineExecutionDisplayName?: string;
|
|
1613
|
+
|
|
1614
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1544
1615
|
}
|
|
1545
1616
|
export declare namespace UpdatePipelineExecutionRequest {
|
|
1546
1617
|
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { SageMakerClientConfig } from "./SageMakerClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { SageMakerClientConfig } from "./SageMakerClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|