@aws-sdk/client-sagemaker 3.131.0 → 3.132.0
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 +11 -0
- package/dist-cjs/SageMaker.js +135 -0
- package/dist-cjs/commands/CreateEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/CreateEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/CreateHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DeleteEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DeleteEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/DescribeEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DescribeHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageVersionCommand.js +3 -3
- package/dist-cjs/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-cjs/commands/ListEdgeDeploymentPlansCommand.js +36 -0
- package/dist-cjs/commands/ListPipelineExecutionStepsCommand.js +3 -3
- package/dist-cjs/commands/ListPipelineParametersForExecutionCommand.js +3 -3
- package/dist-cjs/commands/ListPipelinesCommand.js +3 -3
- package/dist-cjs/commands/ListProcessingJobsCommand.js +3 -3
- package/dist-cjs/commands/ListStageDevicesCommand.js +36 -0
- package/dist-cjs/commands/StartEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/StopEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +54 -54
- package/dist-cjs/models/models_1.js +106 -112
- package/dist-cjs/models/models_2.js +152 -140
- package/dist-cjs/models/models_3.js +162 -3
- package/dist-cjs/pagination/ListEdgeDeploymentPlansPaginator.js +36 -0
- package/dist-cjs/pagination/ListStageDevicesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +710 -11
- package/dist-es/SageMaker.js +135 -0
- package/dist-es/commands/CreateEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/CreateEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/CreateHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DeleteEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DeleteEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/DescribeEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DescribeHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DescribeImageCommand.js +1 -1
- package/dist-es/commands/DescribeImageVersionCommand.js +1 -1
- package/dist-es/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-es/commands/ListEdgeDeploymentPlansCommand.js +39 -0
- package/dist-es/commands/ListPipelineExecutionStepsCommand.js +1 -1
- package/dist-es/commands/ListPipelineParametersForExecutionCommand.js +1 -1
- package/dist-es/commands/ListPipelinesCommand.js +1 -1
- package/dist-es/commands/ListProcessingJobsCommand.js +1 -1
- package/dist-es/commands/ListStageDevicesCommand.js +39 -0
- package/dist-es/commands/StartEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/StopEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +39 -37
- package/dist-es/models/models_1.js +72 -82
- package/dist-es/models/models_2.js +114 -94
- package/dist-es/models/models_3.js +110 -0
- package/dist-es/pagination/ListEdgeDeploymentPlansPaginator.js +75 -0
- package/dist-es/pagination/ListStageDevicesPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +798 -12
- package/dist-types/SageMaker.d.ts +63 -0
- package/dist-types/SageMakerClient.d.ts +11 -2
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +35 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +35 -0
- package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/StopEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +150 -451
- package/dist-types/models/models_1.d.ts +645 -504
- package/dist-types/models/models_2.d.ts +5430 -5423
- package/dist-types/models/models_3.d.ts +730 -3
- package/dist-types/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/SageMaker.d.ts +45 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +11 -2
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +91 -132
- package/dist-types/ts3.4/models/models_1.d.ts +235 -238
- package/dist-types/ts3.4/models/models_2.d.ts +341 -324
- package/dist-types/ts3.4/models/models_3.d.ts +371 -3
- package/dist-types/ts3.4/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +27 -0
- package/package.json +1 -1
|
@@ -1,4 +1,136 @@
|
|
|
1
|
-
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DomainSettings, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, GitConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource,
|
|
1
|
+
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, GitConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HyperParameterTuningJobObjective, HyperParameterTuningJobStrategyType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, OutputDataConfig, ParameterRanges, ProblemType, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, PublicWorkforceTaskPrice, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TrainingInputMode, TrainingJobEarlyStoppingType, TrainingSpecification, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, TuningJobCompletionCriteria, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
|
|
3
|
+
export interface HyperParameterTuningJobConfig {
|
|
4
|
+
|
|
5
|
+
Strategy: HyperParameterTuningJobStrategyType | string | undefined;
|
|
6
|
+
|
|
7
|
+
HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
|
|
8
|
+
|
|
9
|
+
ResourceLimits: ResourceLimits | undefined;
|
|
10
|
+
|
|
11
|
+
ParameterRanges?: ParameterRanges;
|
|
12
|
+
|
|
13
|
+
TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType | string;
|
|
14
|
+
|
|
15
|
+
TuningJobCompletionCriteria?: TuningJobCompletionCriteria;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace HyperParameterTuningJobConfig {
|
|
18
|
+
|
|
19
|
+
const filterSensitiveLog: (obj: HyperParameterTuningJobConfig) => any;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface HyperParameterAlgorithmSpecification {
|
|
23
|
+
|
|
24
|
+
TrainingImage?: string;
|
|
25
|
+
|
|
26
|
+
TrainingInputMode: TrainingInputMode | string | undefined;
|
|
27
|
+
|
|
28
|
+
AlgorithmName?: string;
|
|
29
|
+
|
|
30
|
+
MetricDefinitions?: MetricDefinition[];
|
|
31
|
+
}
|
|
32
|
+
export declare namespace HyperParameterAlgorithmSpecification {
|
|
33
|
+
|
|
34
|
+
const filterSensitiveLog: (obj: HyperParameterAlgorithmSpecification) => any;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface RetryStrategy {
|
|
38
|
+
|
|
39
|
+
MaximumRetryAttempts: number | undefined;
|
|
40
|
+
}
|
|
41
|
+
export declare namespace RetryStrategy {
|
|
42
|
+
|
|
43
|
+
const filterSensitiveLog: (obj: RetryStrategy) => any;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface HyperParameterTrainingJobDefinition {
|
|
47
|
+
|
|
48
|
+
DefinitionName?: string;
|
|
49
|
+
|
|
50
|
+
TuningObjective?: HyperParameterTuningJobObjective;
|
|
51
|
+
|
|
52
|
+
HyperParameterRanges?: ParameterRanges;
|
|
53
|
+
|
|
54
|
+
StaticHyperParameters?: Record<string, string>;
|
|
55
|
+
|
|
56
|
+
AlgorithmSpecification: HyperParameterAlgorithmSpecification | undefined;
|
|
57
|
+
|
|
58
|
+
RoleArn: string | undefined;
|
|
59
|
+
|
|
60
|
+
InputDataConfig?: Channel[];
|
|
61
|
+
|
|
62
|
+
VpcConfig?: VpcConfig;
|
|
63
|
+
|
|
64
|
+
OutputDataConfig: OutputDataConfig | undefined;
|
|
65
|
+
|
|
66
|
+
ResourceConfig: ResourceConfig | undefined;
|
|
67
|
+
|
|
68
|
+
StoppingCondition: StoppingCondition | undefined;
|
|
69
|
+
|
|
70
|
+
EnableNetworkIsolation?: boolean;
|
|
71
|
+
|
|
72
|
+
EnableInterContainerTrafficEncryption?: boolean;
|
|
73
|
+
|
|
74
|
+
EnableManagedSpotTraining?: boolean;
|
|
75
|
+
|
|
76
|
+
CheckpointConfig?: CheckpointConfig;
|
|
77
|
+
|
|
78
|
+
RetryStrategy?: RetryStrategy;
|
|
79
|
+
}
|
|
80
|
+
export declare namespace HyperParameterTrainingJobDefinition {
|
|
81
|
+
|
|
82
|
+
const filterSensitiveLog: (obj: HyperParameterTrainingJobDefinition) => any;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export interface ParentHyperParameterTuningJob {
|
|
86
|
+
|
|
87
|
+
HyperParameterTuningJobName?: string;
|
|
88
|
+
}
|
|
89
|
+
export declare namespace ParentHyperParameterTuningJob {
|
|
90
|
+
|
|
91
|
+
const filterSensitiveLog: (obj: ParentHyperParameterTuningJob) => any;
|
|
92
|
+
}
|
|
93
|
+
export declare enum HyperParameterTuningJobWarmStartType {
|
|
94
|
+
IDENTICAL_DATA_AND_ALGORITHM = "IdenticalDataAndAlgorithm",
|
|
95
|
+
TRANSFER_LEARNING = "TransferLearning"
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export interface HyperParameterTuningJobWarmStartConfig {
|
|
99
|
+
|
|
100
|
+
ParentHyperParameterTuningJobs: ParentHyperParameterTuningJob[] | undefined;
|
|
101
|
+
|
|
102
|
+
WarmStartType: HyperParameterTuningJobWarmStartType | string | undefined;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace HyperParameterTuningJobWarmStartConfig {
|
|
105
|
+
|
|
106
|
+
const filterSensitiveLog: (obj: HyperParameterTuningJobWarmStartConfig) => any;
|
|
107
|
+
}
|
|
108
|
+
export interface CreateHyperParameterTuningJobRequest {
|
|
109
|
+
|
|
110
|
+
HyperParameterTuningJobName: string | undefined;
|
|
111
|
+
|
|
112
|
+
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
|
|
113
|
+
|
|
114
|
+
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
115
|
+
|
|
116
|
+
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
117
|
+
|
|
118
|
+
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
119
|
+
|
|
120
|
+
Tags?: Tag[];
|
|
121
|
+
}
|
|
122
|
+
export declare namespace CreateHyperParameterTuningJobRequest {
|
|
123
|
+
|
|
124
|
+
const filterSensitiveLog: (obj: CreateHyperParameterTuningJobRequest) => any;
|
|
125
|
+
}
|
|
126
|
+
export interface CreateHyperParameterTuningJobResponse {
|
|
127
|
+
|
|
128
|
+
HyperParameterTuningJobArn: string | undefined;
|
|
129
|
+
}
|
|
130
|
+
export declare namespace CreateHyperParameterTuningJobResponse {
|
|
131
|
+
|
|
132
|
+
const filterSensitiveLog: (obj: CreateHyperParameterTuningJobResponse) => any;
|
|
133
|
+
}
|
|
2
134
|
export interface CreateImageRequest {
|
|
3
135
|
|
|
4
136
|
Description?: string;
|
|
@@ -2241,6 +2373,24 @@ export declare namespace DeleteDomainRequest {
|
|
|
2241
2373
|
|
|
2242
2374
|
const filterSensitiveLog: (obj: DeleteDomainRequest) => any;
|
|
2243
2375
|
}
|
|
2376
|
+
export interface DeleteEdgeDeploymentPlanRequest {
|
|
2377
|
+
|
|
2378
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
2379
|
+
}
|
|
2380
|
+
export declare namespace DeleteEdgeDeploymentPlanRequest {
|
|
2381
|
+
|
|
2382
|
+
const filterSensitiveLog: (obj: DeleteEdgeDeploymentPlanRequest) => any;
|
|
2383
|
+
}
|
|
2384
|
+
export interface DeleteEdgeDeploymentStageRequest {
|
|
2385
|
+
|
|
2386
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
2387
|
+
|
|
2388
|
+
StageName: string | undefined;
|
|
2389
|
+
}
|
|
2390
|
+
export declare namespace DeleteEdgeDeploymentStageRequest {
|
|
2391
|
+
|
|
2392
|
+
const filterSensitiveLog: (obj: DeleteEdgeDeploymentStageRequest) => any;
|
|
2393
|
+
}
|
|
2244
2394
|
export interface DeleteEndpointInput {
|
|
2245
2395
|
|
|
2246
2396
|
EndpointName: string | undefined;
|
|
@@ -2554,6 +2704,50 @@ export declare namespace DeployedImage {
|
|
|
2554
2704
|
|
|
2555
2705
|
const filterSensitiveLog: (obj: DeployedImage) => any;
|
|
2556
2706
|
}
|
|
2707
|
+
export declare enum StageStatus {
|
|
2708
|
+
Creating = "CREATING",
|
|
2709
|
+
Deployed = "DEPLOYED",
|
|
2710
|
+
Failed = "FAILED",
|
|
2711
|
+
InProgress = "INPROGRESS",
|
|
2712
|
+
ReadyToDeploy = "READYTODEPLOY",
|
|
2713
|
+
Starting = "STARTING",
|
|
2714
|
+
Stopped = "STOPPED",
|
|
2715
|
+
Stopping = "STOPPING"
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
export interface EdgeDeploymentStatus {
|
|
2719
|
+
|
|
2720
|
+
StageStatus: StageStatus | string | undefined;
|
|
2721
|
+
|
|
2722
|
+
EdgeDeploymentSuccessInStage: number | undefined;
|
|
2723
|
+
|
|
2724
|
+
EdgeDeploymentPendingInStage: number | undefined;
|
|
2725
|
+
|
|
2726
|
+
EdgeDeploymentFailedInStage: number | undefined;
|
|
2727
|
+
|
|
2728
|
+
EdgeDeploymentStatusMessage?: string;
|
|
2729
|
+
|
|
2730
|
+
EdgeDeploymentStageStartTime?: Date;
|
|
2731
|
+
}
|
|
2732
|
+
export declare namespace EdgeDeploymentStatus {
|
|
2733
|
+
|
|
2734
|
+
const filterSensitiveLog: (obj: EdgeDeploymentStatus) => any;
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2737
|
+
export interface DeploymentStageStatusSummary {
|
|
2738
|
+
|
|
2739
|
+
StageName: string | undefined;
|
|
2740
|
+
|
|
2741
|
+
DeviceSelectionConfig: DeviceSelectionConfig | undefined;
|
|
2742
|
+
|
|
2743
|
+
DeploymentConfig: EdgeDeploymentConfig | undefined;
|
|
2744
|
+
|
|
2745
|
+
DeploymentStatus: EdgeDeploymentStatus | undefined;
|
|
2746
|
+
}
|
|
2747
|
+
export declare namespace DeploymentStageStatusSummary {
|
|
2748
|
+
|
|
2749
|
+
const filterSensitiveLog: (obj: DeploymentStageStatusSummary) => any;
|
|
2750
|
+
}
|
|
2557
2751
|
export interface DeregisterDevicesRequest {
|
|
2558
2752
|
|
|
2559
2753
|
DeviceFleetName: string | undefined;
|
|
@@ -3130,6 +3324,46 @@ export declare namespace DescribeDomainResponse {
|
|
|
3130
3324
|
|
|
3131
3325
|
const filterSensitiveLog: (obj: DescribeDomainResponse) => any;
|
|
3132
3326
|
}
|
|
3327
|
+
export interface DescribeEdgeDeploymentPlanRequest {
|
|
3328
|
+
|
|
3329
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
3330
|
+
|
|
3331
|
+
NextToken?: string;
|
|
3332
|
+
|
|
3333
|
+
MaxResults?: number;
|
|
3334
|
+
}
|
|
3335
|
+
export declare namespace DescribeEdgeDeploymentPlanRequest {
|
|
3336
|
+
|
|
3337
|
+
const filterSensitiveLog: (obj: DescribeEdgeDeploymentPlanRequest) => any;
|
|
3338
|
+
}
|
|
3339
|
+
export interface DescribeEdgeDeploymentPlanResponse {
|
|
3340
|
+
|
|
3341
|
+
EdgeDeploymentPlanArn: string | undefined;
|
|
3342
|
+
|
|
3343
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
3344
|
+
|
|
3345
|
+
ModelConfigs: EdgeDeploymentModelConfig[] | undefined;
|
|
3346
|
+
|
|
3347
|
+
DeviceFleetName: string | undefined;
|
|
3348
|
+
|
|
3349
|
+
EdgeDeploymentSuccess?: number;
|
|
3350
|
+
|
|
3351
|
+
EdgeDeploymentPending?: number;
|
|
3352
|
+
|
|
3353
|
+
EdgeDeploymentFailed?: number;
|
|
3354
|
+
|
|
3355
|
+
Stages: DeploymentStageStatusSummary[] | undefined;
|
|
3356
|
+
|
|
3357
|
+
NextToken?: string;
|
|
3358
|
+
|
|
3359
|
+
CreationTime?: Date;
|
|
3360
|
+
|
|
3361
|
+
LastModifiedTime?: Date;
|
|
3362
|
+
}
|
|
3363
|
+
export declare namespace DescribeEdgeDeploymentPlanResponse {
|
|
3364
|
+
|
|
3365
|
+
const filterSensitiveLog: (obj: DescribeEdgeDeploymentPlanResponse) => any;
|
|
3366
|
+
}
|
|
3133
3367
|
export interface DescribeEdgePackagingJobRequest {
|
|
3134
3368
|
|
|
3135
3369
|
EdgePackagingJobName: string | undefined;
|
|
@@ -3618,240 +3852,3 @@ export declare namespace DescribeHumanTaskUiResponse {
|
|
|
3618
3852
|
|
|
3619
3853
|
const filterSensitiveLog: (obj: DescribeHumanTaskUiResponse) => any;
|
|
3620
3854
|
}
|
|
3621
|
-
export interface DescribeHyperParameterTuningJobRequest {
|
|
3622
|
-
|
|
3623
|
-
HyperParameterTuningJobName: string | undefined;
|
|
3624
|
-
}
|
|
3625
|
-
export declare namespace DescribeHyperParameterTuningJobRequest {
|
|
3626
|
-
|
|
3627
|
-
const filterSensitiveLog: (obj: DescribeHyperParameterTuningJobRequest) => any;
|
|
3628
|
-
}
|
|
3629
|
-
|
|
3630
|
-
export interface FinalHyperParameterTuningJobObjectiveMetric {
|
|
3631
|
-
|
|
3632
|
-
Type?: HyperParameterTuningJobObjectiveType | string;
|
|
3633
|
-
|
|
3634
|
-
MetricName: string | undefined;
|
|
3635
|
-
|
|
3636
|
-
Value: number | undefined;
|
|
3637
|
-
}
|
|
3638
|
-
export declare namespace FinalHyperParameterTuningJobObjectiveMetric {
|
|
3639
|
-
|
|
3640
|
-
const filterSensitiveLog: (obj: FinalHyperParameterTuningJobObjectiveMetric) => any;
|
|
3641
|
-
}
|
|
3642
|
-
export declare enum TrainingJobStatus {
|
|
3643
|
-
COMPLETED = "Completed",
|
|
3644
|
-
FAILED = "Failed",
|
|
3645
|
-
IN_PROGRESS = "InProgress",
|
|
3646
|
-
STOPPED = "Stopped",
|
|
3647
|
-
STOPPING = "Stopping"
|
|
3648
|
-
}
|
|
3649
|
-
|
|
3650
|
-
export interface HyperParameterTrainingJobSummary {
|
|
3651
|
-
|
|
3652
|
-
TrainingJobDefinitionName?: string;
|
|
3653
|
-
|
|
3654
|
-
TrainingJobName: string | undefined;
|
|
3655
|
-
|
|
3656
|
-
TrainingJobArn: string | undefined;
|
|
3657
|
-
|
|
3658
|
-
TuningJobName?: string;
|
|
3659
|
-
|
|
3660
|
-
CreationTime: Date | undefined;
|
|
3661
|
-
|
|
3662
|
-
TrainingStartTime?: Date;
|
|
3663
|
-
|
|
3664
|
-
TrainingEndTime?: Date;
|
|
3665
|
-
|
|
3666
|
-
TrainingJobStatus: TrainingJobStatus | string | undefined;
|
|
3667
|
-
|
|
3668
|
-
TunedHyperParameters: Record<string, string> | undefined;
|
|
3669
|
-
|
|
3670
|
-
FailureReason?: string;
|
|
3671
|
-
|
|
3672
|
-
FinalHyperParameterTuningJobObjectiveMetric?: FinalHyperParameterTuningJobObjectiveMetric;
|
|
3673
|
-
|
|
3674
|
-
ObjectiveStatus?: ObjectiveStatus | string;
|
|
3675
|
-
}
|
|
3676
|
-
export declare namespace HyperParameterTrainingJobSummary {
|
|
3677
|
-
|
|
3678
|
-
const filterSensitiveLog: (obj: HyperParameterTrainingJobSummary) => any;
|
|
3679
|
-
}
|
|
3680
|
-
export declare enum HyperParameterTuningJobStatus {
|
|
3681
|
-
COMPLETED = "Completed",
|
|
3682
|
-
FAILED = "Failed",
|
|
3683
|
-
IN_PROGRESS = "InProgress",
|
|
3684
|
-
STOPPED = "Stopped",
|
|
3685
|
-
STOPPING = "Stopping"
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
export interface ObjectiveStatusCounters {
|
|
3689
|
-
|
|
3690
|
-
Succeeded?: number;
|
|
3691
|
-
|
|
3692
|
-
Pending?: number;
|
|
3693
|
-
|
|
3694
|
-
Failed?: number;
|
|
3695
|
-
}
|
|
3696
|
-
export declare namespace ObjectiveStatusCounters {
|
|
3697
|
-
|
|
3698
|
-
const filterSensitiveLog: (obj: ObjectiveStatusCounters) => any;
|
|
3699
|
-
}
|
|
3700
|
-
|
|
3701
|
-
export interface TrainingJobStatusCounters {
|
|
3702
|
-
|
|
3703
|
-
Completed?: number;
|
|
3704
|
-
|
|
3705
|
-
InProgress?: number;
|
|
3706
|
-
|
|
3707
|
-
RetryableError?: number;
|
|
3708
|
-
|
|
3709
|
-
NonRetryableError?: number;
|
|
3710
|
-
|
|
3711
|
-
Stopped?: number;
|
|
3712
|
-
}
|
|
3713
|
-
export declare namespace TrainingJobStatusCounters {
|
|
3714
|
-
|
|
3715
|
-
const filterSensitiveLog: (obj: TrainingJobStatusCounters) => any;
|
|
3716
|
-
}
|
|
3717
|
-
export interface DescribeHyperParameterTuningJobResponse {
|
|
3718
|
-
|
|
3719
|
-
HyperParameterTuningJobName: string | undefined;
|
|
3720
|
-
|
|
3721
|
-
HyperParameterTuningJobArn: string | undefined;
|
|
3722
|
-
|
|
3723
|
-
HyperParameterTuningJobConfig: HyperParameterTuningJobConfig | undefined;
|
|
3724
|
-
|
|
3725
|
-
TrainingJobDefinition?: HyperParameterTrainingJobDefinition;
|
|
3726
|
-
|
|
3727
|
-
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
3728
|
-
|
|
3729
|
-
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | string | undefined;
|
|
3730
|
-
|
|
3731
|
-
CreationTime: Date | undefined;
|
|
3732
|
-
|
|
3733
|
-
HyperParameterTuningEndTime?: Date;
|
|
3734
|
-
|
|
3735
|
-
LastModifiedTime?: Date;
|
|
3736
|
-
|
|
3737
|
-
TrainingJobStatusCounters: TrainingJobStatusCounters | undefined;
|
|
3738
|
-
|
|
3739
|
-
ObjectiveStatusCounters: ObjectiveStatusCounters | undefined;
|
|
3740
|
-
|
|
3741
|
-
BestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
3742
|
-
|
|
3743
|
-
OverallBestTrainingJob?: HyperParameterTrainingJobSummary;
|
|
3744
|
-
|
|
3745
|
-
WarmStartConfig?: HyperParameterTuningJobWarmStartConfig;
|
|
3746
|
-
|
|
3747
|
-
FailureReason?: string;
|
|
3748
|
-
}
|
|
3749
|
-
export declare namespace DescribeHyperParameterTuningJobResponse {
|
|
3750
|
-
|
|
3751
|
-
const filterSensitiveLog: (obj: DescribeHyperParameterTuningJobResponse) => any;
|
|
3752
|
-
}
|
|
3753
|
-
export interface DescribeImageRequest {
|
|
3754
|
-
|
|
3755
|
-
ImageName: string | undefined;
|
|
3756
|
-
}
|
|
3757
|
-
export declare namespace DescribeImageRequest {
|
|
3758
|
-
|
|
3759
|
-
const filterSensitiveLog: (obj: DescribeImageRequest) => any;
|
|
3760
|
-
}
|
|
3761
|
-
export declare enum ImageStatus {
|
|
3762
|
-
CREATED = "CREATED",
|
|
3763
|
-
CREATE_FAILED = "CREATE_FAILED",
|
|
3764
|
-
CREATING = "CREATING",
|
|
3765
|
-
DELETE_FAILED = "DELETE_FAILED",
|
|
3766
|
-
DELETING = "DELETING",
|
|
3767
|
-
UPDATE_FAILED = "UPDATE_FAILED",
|
|
3768
|
-
UPDATING = "UPDATING"
|
|
3769
|
-
}
|
|
3770
|
-
export interface DescribeImageResponse {
|
|
3771
|
-
|
|
3772
|
-
CreationTime?: Date;
|
|
3773
|
-
|
|
3774
|
-
Description?: string;
|
|
3775
|
-
|
|
3776
|
-
DisplayName?: string;
|
|
3777
|
-
|
|
3778
|
-
FailureReason?: string;
|
|
3779
|
-
|
|
3780
|
-
ImageArn?: string;
|
|
3781
|
-
|
|
3782
|
-
ImageName?: string;
|
|
3783
|
-
|
|
3784
|
-
ImageStatus?: ImageStatus | string;
|
|
3785
|
-
|
|
3786
|
-
LastModifiedTime?: Date;
|
|
3787
|
-
|
|
3788
|
-
RoleArn?: string;
|
|
3789
|
-
}
|
|
3790
|
-
export declare namespace DescribeImageResponse {
|
|
3791
|
-
|
|
3792
|
-
const filterSensitiveLog: (obj: DescribeImageResponse) => any;
|
|
3793
|
-
}
|
|
3794
|
-
export interface DescribeImageVersionRequest {
|
|
3795
|
-
|
|
3796
|
-
ImageName: string | undefined;
|
|
3797
|
-
|
|
3798
|
-
Version?: number;
|
|
3799
|
-
}
|
|
3800
|
-
export declare namespace DescribeImageVersionRequest {
|
|
3801
|
-
|
|
3802
|
-
const filterSensitiveLog: (obj: DescribeImageVersionRequest) => any;
|
|
3803
|
-
}
|
|
3804
|
-
export declare enum ImageVersionStatus {
|
|
3805
|
-
CREATED = "CREATED",
|
|
3806
|
-
CREATE_FAILED = "CREATE_FAILED",
|
|
3807
|
-
CREATING = "CREATING",
|
|
3808
|
-
DELETE_FAILED = "DELETE_FAILED",
|
|
3809
|
-
DELETING = "DELETING"
|
|
3810
|
-
}
|
|
3811
|
-
export interface DescribeImageVersionResponse {
|
|
3812
|
-
|
|
3813
|
-
BaseImage?: string;
|
|
3814
|
-
|
|
3815
|
-
ContainerImage?: string;
|
|
3816
|
-
|
|
3817
|
-
CreationTime?: Date;
|
|
3818
|
-
|
|
3819
|
-
FailureReason?: string;
|
|
3820
|
-
|
|
3821
|
-
ImageArn?: string;
|
|
3822
|
-
|
|
3823
|
-
ImageVersionArn?: string;
|
|
3824
|
-
|
|
3825
|
-
ImageVersionStatus?: ImageVersionStatus | string;
|
|
3826
|
-
|
|
3827
|
-
LastModifiedTime?: Date;
|
|
3828
|
-
|
|
3829
|
-
Version?: number;
|
|
3830
|
-
}
|
|
3831
|
-
export declare namespace DescribeImageVersionResponse {
|
|
3832
|
-
|
|
3833
|
-
const filterSensitiveLog: (obj: DescribeImageVersionResponse) => any;
|
|
3834
|
-
}
|
|
3835
|
-
export interface DescribeInferenceRecommendationsJobRequest {
|
|
3836
|
-
|
|
3837
|
-
JobName: string | undefined;
|
|
3838
|
-
}
|
|
3839
|
-
export declare namespace DescribeInferenceRecommendationsJobRequest {
|
|
3840
|
-
|
|
3841
|
-
const filterSensitiveLog: (obj: DescribeInferenceRecommendationsJobRequest) => any;
|
|
3842
|
-
}
|
|
3843
|
-
|
|
3844
|
-
export interface EndpointOutputConfiguration {
|
|
3845
|
-
|
|
3846
|
-
EndpointName: string | undefined;
|
|
3847
|
-
|
|
3848
|
-
VariantName: string | undefined;
|
|
3849
|
-
|
|
3850
|
-
InstanceType: ProductionVariantInstanceType | string | undefined;
|
|
3851
|
-
|
|
3852
|
-
InitialInstanceCount: number | undefined;
|
|
3853
|
-
}
|
|
3854
|
-
export declare namespace EndpointOutputConfiguration {
|
|
3855
|
-
|
|
3856
|
-
const filterSensitiveLog: (obj: EndpointOutputConfiguration) => any;
|
|
3857
|
-
}
|