@aws-sdk/client-sagemaker 3.461.0 → 3.464.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/README.md +104 -0
- package/dist-cjs/SageMaker.js +26 -0
- package/dist-cjs/commands/CreateClusterCommand.js +51 -0
- package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
- package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
- package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
- package/dist-cjs/commands/ListClustersCommand.js +51 -0
- package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
- package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +77 -64
- package/dist-cjs/models/models_1.js +85 -51
- package/dist-cjs/models/models_2.js +58 -83
- package/dist-cjs/models/models_3.js +89 -64
- package/dist-cjs/models/models_4.js +65 -3
- package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1046 -36
- package/dist-es/SageMaker.js +26 -0
- package/dist-es/commands/CreateClusterCommand.js +47 -0
- package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/CreateWorkforceCommand.js +1 -1
- package/dist-es/commands/DeleteClusterCommand.js +47 -0
- package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
- package/dist-es/commands/DescribeClusterCommand.js +47 -0
- package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
- package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
- package/dist-es/commands/ListClusterNodesCommand.js +47 -0
- package/dist-es/commands/ListClustersCommand.js +47 -0
- package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
- package/dist-es/commands/UpdateClusterCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +74 -62
- package/dist-es/models/models_1.js +84 -48
- package/dist-es/models/models_2.js +55 -82
- package/dist-es/models/models_3.js +87 -62
- package/dist-es/models/models_4.js +63 -1
- package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1006 -22
- package/dist-types/SageMaker.d.ts +91 -0
- package/dist-types/SageMakerClient.d.ts +15 -2
- package/dist-types/commands/AddTagsCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppCommand.d.ts +3 -2
- package/dist-types/commands/CreateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +64 -17
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
- package/dist-types/commands/CreateSpaceCommand.d.ts +45 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +4 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +56 -2
- package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
- package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAppCommand.d.ts +3 -2
- package/dist-types/commands/DescribeAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +56 -9
- package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +46 -0
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +5 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +55 -1
- package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/ListAppImageConfigsCommand.d.ts +13 -0
- package/dist-types/commands/ListAppsCommand.d.ts +8 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
- package/dist-types/commands/ListClustersCommand.d.ts +87 -0
- package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -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/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +4 -4
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +58 -7
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
- package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +39 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +616 -544
- package/dist-types/models/models_1.d.ts +7904 -8160
- package/dist-types/models/models_2.d.ts +4780 -5344
- package/dist-types/models/models_3.d.ts +5386 -4662
- package/dist-types/models/models_4.d.ts +2031 -4
- package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
- package/dist-types/ts3.4/SageMaker.d.ts +227 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- 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/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -175
- package/dist-types/ts3.4/models/models_1.d.ts +302 -309
- package/dist-types/ts3.4/models/models_2.d.ts +388 -490
- package/dist-types/ts3.4/models/models_3.d.ts +574 -472
- package/dist-types/ts3.4/models/models_4.d.ts +534 -29
- package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
ActionSummary,
|
|
3
3
|
AgentVersion,
|
|
4
4
|
AlgorithmSortBy,
|
|
5
|
+
AlgorithmSpecification,
|
|
5
6
|
AlgorithmSummary,
|
|
6
7
|
AppDetails,
|
|
7
8
|
AppImageConfigDetails,
|
|
@@ -16,63 +17,75 @@ import {
|
|
|
16
17
|
AutoMLJobSummary,
|
|
17
18
|
AutoMLSortBy,
|
|
18
19
|
AutoMLSortOrder,
|
|
19
|
-
|
|
20
|
+
BatchDataCaptureConfig,
|
|
21
|
+
BatchStrategy,
|
|
20
22
|
CallbackStepMetadata,
|
|
21
23
|
CandidateSortBy,
|
|
22
24
|
CandidateStatus,
|
|
25
|
+
Channel,
|
|
26
|
+
CheckpointConfig,
|
|
23
27
|
ClarifyCheckStepMetadata,
|
|
28
|
+
ClusterNodeSummary,
|
|
29
|
+
ClusterSortBy,
|
|
30
|
+
ClusterSummary,
|
|
24
31
|
CodeRepositorySortBy,
|
|
25
32
|
CodeRepositorySortOrder,
|
|
26
33
|
CodeRepositorySummary,
|
|
34
|
+
CognitoConfig,
|
|
27
35
|
CompilationJobStatus,
|
|
28
36
|
CompilationJobSummary,
|
|
29
37
|
ConditionStepMetadata,
|
|
30
|
-
ContainerDefinition,
|
|
31
38
|
ContextSummary,
|
|
39
|
+
MetadataProperties,
|
|
32
40
|
ModelApprovalStatus,
|
|
33
41
|
ModelPackageStatus,
|
|
42
|
+
OutputDataConfig,
|
|
34
43
|
OutputParameter,
|
|
44
|
+
ResourceConfig,
|
|
45
|
+
ResourceSpec,
|
|
46
|
+
StoppingCondition,
|
|
35
47
|
Tag,
|
|
48
|
+
TransformInput,
|
|
49
|
+
TransformOutput,
|
|
50
|
+
TransformResources,
|
|
36
51
|
UserContext,
|
|
37
52
|
VpcConfig,
|
|
38
53
|
} from "./models_0";
|
|
39
54
|
import {
|
|
40
55
|
_InstanceType,
|
|
41
|
-
|
|
56
|
+
DebugHookConfig,
|
|
57
|
+
DebugRuleConfiguration,
|
|
42
58
|
EdgeOutputConfig,
|
|
59
|
+
ExecutionRoleIdentityConfig,
|
|
60
|
+
ExperimentConfig,
|
|
43
61
|
FeatureDefinition,
|
|
44
62
|
FeatureType,
|
|
45
63
|
HyperParameterTrainingJobDefinition,
|
|
46
64
|
HyperParameterTuningJobConfig,
|
|
47
65
|
HyperParameterTuningJobStrategyType,
|
|
48
66
|
HyperParameterTuningJobWarmStartConfig,
|
|
49
|
-
InferenceExecutionConfig,
|
|
50
67
|
InferenceExperimentSchedule,
|
|
51
68
|
InferenceExperimentType,
|
|
69
|
+
InfraCheckConfig,
|
|
52
70
|
LabelingJobInputConfig,
|
|
53
71
|
ModelCardStatus,
|
|
54
72
|
MonitoringScheduleConfig,
|
|
55
73
|
MonitoringType,
|
|
56
74
|
OfflineStoreConfig,
|
|
57
75
|
OnlineStoreConfig,
|
|
76
|
+
ProfilerConfig,
|
|
58
77
|
RecommendationJobType,
|
|
59
78
|
ResourceLimits,
|
|
60
|
-
|
|
61
|
-
|
|
79
|
+
RetryStrategy,
|
|
80
|
+
UserSettings,
|
|
62
81
|
} from "./models_1";
|
|
63
82
|
import {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
DomainDetails,
|
|
70
|
-
DynamicScalingConfiguration,
|
|
71
|
-
EdgeDeploymentPlanSummary,
|
|
72
|
-
EdgeModelStat,
|
|
83
|
+
CustomizedMetricSpecification,
|
|
84
|
+
DataCaptureConfigSummary,
|
|
85
|
+
DataProcessing,
|
|
86
|
+
DebugRuleEvaluationStatus,
|
|
87
|
+
DomainStatus,
|
|
73
88
|
EdgePackagingJobStatus,
|
|
74
|
-
EdgePackagingJobSummary,
|
|
75
|
-
EMRStepMetadata,
|
|
76
89
|
EndpointOutputConfiguration,
|
|
77
90
|
EndpointStatus,
|
|
78
91
|
ExecutionStatus,
|
|
@@ -89,40 +102,510 @@ import {
|
|
|
89
102
|
HyperParameterTuningJobStatus,
|
|
90
103
|
ImageStatus,
|
|
91
104
|
ImageVersionStatus,
|
|
105
|
+
InferenceComponentStatus,
|
|
92
106
|
InferenceExperimentStatus,
|
|
93
107
|
InferenceMetrics,
|
|
94
108
|
LabelCounters,
|
|
95
109
|
LabelingJobOutput,
|
|
96
110
|
LabelingJobStatus,
|
|
97
111
|
LastUpdateStatus,
|
|
112
|
+
MemberDefinition,
|
|
113
|
+
MetricData,
|
|
114
|
+
ModelArtifacts,
|
|
98
115
|
ModelCardExportJobStatus,
|
|
116
|
+
ModelClientConfig,
|
|
99
117
|
ModelConfiguration,
|
|
100
118
|
ModelPackageGroupStatus,
|
|
101
119
|
MonitoringExecutionSummary,
|
|
102
120
|
NotebookInstanceStatus,
|
|
121
|
+
NotificationConfiguration,
|
|
103
122
|
ObjectiveStatusCounters,
|
|
104
123
|
OfflineStoreStatus,
|
|
105
124
|
OfflineStoreStatusValue,
|
|
106
125
|
PipelineExecutionStatus,
|
|
107
|
-
ProcessingJobStatus,
|
|
108
126
|
ProductionVariantSummary,
|
|
109
|
-
|
|
127
|
+
ProfilerRuleConfiguration,
|
|
128
|
+
ProfilerRuleEvaluationStatus,
|
|
110
129
|
RecommendationJobStatus,
|
|
111
130
|
RecommendationMetrics,
|
|
112
131
|
ScheduleStatus,
|
|
113
|
-
|
|
114
|
-
|
|
132
|
+
SourceIpConfig,
|
|
133
|
+
TensorBoardOutputConfig,
|
|
115
134
|
TrainingJobStatus,
|
|
116
135
|
TrainingJobStatusCounters,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
UserProfileStatus,
|
|
121
|
-
WarmPoolResourceStatus,
|
|
122
|
-
WarmPoolStatus,
|
|
123
|
-
Workforce,
|
|
124
|
-
Workteam,
|
|
136
|
+
TrialComponentArtifact,
|
|
137
|
+
TrialComponentParameterValue,
|
|
138
|
+
TrialComponentStatus,
|
|
125
139
|
} from "./models_2";
|
|
140
|
+
export declare const ProfilingStatus: {
|
|
141
|
+
readonly DISABLED: "Disabled";
|
|
142
|
+
readonly ENABLED: "Enabled";
|
|
143
|
+
};
|
|
144
|
+
export type ProfilingStatus =
|
|
145
|
+
(typeof ProfilingStatus)[keyof typeof ProfilingStatus];
|
|
146
|
+
export declare const SecondaryStatus: {
|
|
147
|
+
readonly COMPLETED: "Completed";
|
|
148
|
+
readonly DOWNLOADING: "Downloading";
|
|
149
|
+
readonly DOWNLOADING_TRAINING_IMAGE: "DownloadingTrainingImage";
|
|
150
|
+
readonly FAILED: "Failed";
|
|
151
|
+
readonly INTERRUPTED: "Interrupted";
|
|
152
|
+
readonly LAUNCHING_ML_INSTANCES: "LaunchingMLInstances";
|
|
153
|
+
readonly MAX_RUNTIME_EXCEEDED: "MaxRuntimeExceeded";
|
|
154
|
+
readonly MAX_WAIT_TIME_EXCEEDED: "MaxWaitTimeExceeded";
|
|
155
|
+
readonly PREPARING_TRAINING_STACK: "PreparingTrainingStack";
|
|
156
|
+
readonly RESTARTING: "Restarting";
|
|
157
|
+
readonly STARTING: "Starting";
|
|
158
|
+
readonly STOPPED: "Stopped";
|
|
159
|
+
readonly STOPPING: "Stopping";
|
|
160
|
+
readonly TRAINING: "Training";
|
|
161
|
+
readonly UPDATING: "Updating";
|
|
162
|
+
readonly UPLOADING: "Uploading";
|
|
163
|
+
};
|
|
164
|
+
export type SecondaryStatus =
|
|
165
|
+
(typeof SecondaryStatus)[keyof typeof SecondaryStatus];
|
|
166
|
+
export interface SecondaryStatusTransition {
|
|
167
|
+
Status: SecondaryStatus | undefined;
|
|
168
|
+
StartTime: Date | undefined;
|
|
169
|
+
EndTime?: Date;
|
|
170
|
+
StatusMessage?: string;
|
|
171
|
+
}
|
|
172
|
+
export declare const WarmPoolResourceStatus: {
|
|
173
|
+
readonly AVAILABLE: "Available";
|
|
174
|
+
readonly INUSE: "InUse";
|
|
175
|
+
readonly REUSED: "Reused";
|
|
176
|
+
readonly TERMINATED: "Terminated";
|
|
177
|
+
};
|
|
178
|
+
export type WarmPoolResourceStatus =
|
|
179
|
+
(typeof WarmPoolResourceStatus)[keyof typeof WarmPoolResourceStatus];
|
|
180
|
+
export interface WarmPoolStatus {
|
|
181
|
+
Status: WarmPoolResourceStatus | undefined;
|
|
182
|
+
ResourceRetainedBillableTimeInSeconds?: number;
|
|
183
|
+
ReusedByJob?: string;
|
|
184
|
+
}
|
|
185
|
+
export interface DescribeTrainingJobResponse {
|
|
186
|
+
TrainingJobName: string | undefined;
|
|
187
|
+
TrainingJobArn: string | undefined;
|
|
188
|
+
TuningJobArn?: string;
|
|
189
|
+
LabelingJobArn?: string;
|
|
190
|
+
AutoMLJobArn?: string;
|
|
191
|
+
ModelArtifacts: ModelArtifacts | undefined;
|
|
192
|
+
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
193
|
+
SecondaryStatus: SecondaryStatus | undefined;
|
|
194
|
+
FailureReason?: string;
|
|
195
|
+
HyperParameters?: Record<string, string>;
|
|
196
|
+
AlgorithmSpecification: AlgorithmSpecification | undefined;
|
|
197
|
+
RoleArn?: string;
|
|
198
|
+
InputDataConfig?: Channel[];
|
|
199
|
+
OutputDataConfig?: OutputDataConfig;
|
|
200
|
+
ResourceConfig: ResourceConfig | undefined;
|
|
201
|
+
VpcConfig?: VpcConfig;
|
|
202
|
+
StoppingCondition: StoppingCondition | undefined;
|
|
203
|
+
CreationTime: Date | undefined;
|
|
204
|
+
TrainingStartTime?: Date;
|
|
205
|
+
TrainingEndTime?: Date;
|
|
206
|
+
LastModifiedTime?: Date;
|
|
207
|
+
SecondaryStatusTransitions?: SecondaryStatusTransition[];
|
|
208
|
+
FinalMetricDataList?: MetricData[];
|
|
209
|
+
EnableNetworkIsolation?: boolean;
|
|
210
|
+
EnableInterContainerTrafficEncryption?: boolean;
|
|
211
|
+
EnableManagedSpotTraining?: boolean;
|
|
212
|
+
CheckpointConfig?: CheckpointConfig;
|
|
213
|
+
TrainingTimeInSeconds?: number;
|
|
214
|
+
BillableTimeInSeconds?: number;
|
|
215
|
+
DebugHookConfig?: DebugHookConfig;
|
|
216
|
+
ExperimentConfig?: ExperimentConfig;
|
|
217
|
+
DebugRuleConfigurations?: DebugRuleConfiguration[];
|
|
218
|
+
TensorBoardOutputConfig?: TensorBoardOutputConfig;
|
|
219
|
+
DebugRuleEvaluationStatuses?: DebugRuleEvaluationStatus[];
|
|
220
|
+
ProfilerConfig?: ProfilerConfig;
|
|
221
|
+
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
222
|
+
ProfilerRuleEvaluationStatuses?: ProfilerRuleEvaluationStatus[];
|
|
223
|
+
ProfilingStatus?: ProfilingStatus;
|
|
224
|
+
RetryStrategy?: RetryStrategy;
|
|
225
|
+
Environment?: Record<string, string>;
|
|
226
|
+
WarmPoolStatus?: WarmPoolStatus;
|
|
227
|
+
InfraCheckConfig?: InfraCheckConfig;
|
|
228
|
+
}
|
|
229
|
+
export interface DescribeTransformJobRequest {
|
|
230
|
+
TransformJobName: string | undefined;
|
|
231
|
+
}
|
|
232
|
+
export declare const TransformJobStatus: {
|
|
233
|
+
readonly COMPLETED: "Completed";
|
|
234
|
+
readonly FAILED: "Failed";
|
|
235
|
+
readonly IN_PROGRESS: "InProgress";
|
|
236
|
+
readonly STOPPED: "Stopped";
|
|
237
|
+
readonly STOPPING: "Stopping";
|
|
238
|
+
};
|
|
239
|
+
export type TransformJobStatus =
|
|
240
|
+
(typeof TransformJobStatus)[keyof typeof TransformJobStatus];
|
|
241
|
+
export interface DescribeTransformJobResponse {
|
|
242
|
+
TransformJobName: string | undefined;
|
|
243
|
+
TransformJobArn: string | undefined;
|
|
244
|
+
TransformJobStatus: TransformJobStatus | undefined;
|
|
245
|
+
FailureReason?: string;
|
|
246
|
+
ModelName: string | undefined;
|
|
247
|
+
MaxConcurrentTransforms?: number;
|
|
248
|
+
ModelClientConfig?: ModelClientConfig;
|
|
249
|
+
MaxPayloadInMB?: number;
|
|
250
|
+
BatchStrategy?: BatchStrategy;
|
|
251
|
+
Environment?: Record<string, string>;
|
|
252
|
+
TransformInput: TransformInput | undefined;
|
|
253
|
+
TransformOutput?: TransformOutput;
|
|
254
|
+
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
255
|
+
TransformResources: TransformResources | undefined;
|
|
256
|
+
CreationTime: Date | undefined;
|
|
257
|
+
TransformStartTime?: Date;
|
|
258
|
+
TransformEndTime?: Date;
|
|
259
|
+
LabelingJobArn?: string;
|
|
260
|
+
AutoMLJobArn?: string;
|
|
261
|
+
DataProcessing?: DataProcessing;
|
|
262
|
+
ExperimentConfig?: ExperimentConfig;
|
|
263
|
+
}
|
|
264
|
+
export interface DescribeTrialRequest {
|
|
265
|
+
TrialName: string | undefined;
|
|
266
|
+
}
|
|
267
|
+
export interface TrialSource {
|
|
268
|
+
SourceArn: string | undefined;
|
|
269
|
+
SourceType?: string;
|
|
270
|
+
}
|
|
271
|
+
export interface DescribeTrialResponse {
|
|
272
|
+
TrialName?: string;
|
|
273
|
+
TrialArn?: string;
|
|
274
|
+
DisplayName?: string;
|
|
275
|
+
ExperimentName?: string;
|
|
276
|
+
Source?: TrialSource;
|
|
277
|
+
CreationTime?: Date;
|
|
278
|
+
CreatedBy?: UserContext;
|
|
279
|
+
LastModifiedTime?: Date;
|
|
280
|
+
LastModifiedBy?: UserContext;
|
|
281
|
+
MetadataProperties?: MetadataProperties;
|
|
282
|
+
}
|
|
283
|
+
export interface DescribeTrialComponentRequest {
|
|
284
|
+
TrialComponentName: string | undefined;
|
|
285
|
+
}
|
|
286
|
+
export interface TrialComponentMetricSummary {
|
|
287
|
+
MetricName?: string;
|
|
288
|
+
SourceArn?: string;
|
|
289
|
+
TimeStamp?: Date;
|
|
290
|
+
Max?: number;
|
|
291
|
+
Min?: number;
|
|
292
|
+
Last?: number;
|
|
293
|
+
Count?: number;
|
|
294
|
+
Avg?: number;
|
|
295
|
+
StdDev?: number;
|
|
296
|
+
}
|
|
297
|
+
export interface TrialComponentSource {
|
|
298
|
+
SourceArn: string | undefined;
|
|
299
|
+
SourceType?: string;
|
|
300
|
+
}
|
|
301
|
+
export interface DescribeTrialComponentResponse {
|
|
302
|
+
TrialComponentName?: string;
|
|
303
|
+
TrialComponentArn?: string;
|
|
304
|
+
DisplayName?: string;
|
|
305
|
+
Source?: TrialComponentSource;
|
|
306
|
+
Status?: TrialComponentStatus;
|
|
307
|
+
StartTime?: Date;
|
|
308
|
+
EndTime?: Date;
|
|
309
|
+
CreationTime?: Date;
|
|
310
|
+
CreatedBy?: UserContext;
|
|
311
|
+
LastModifiedTime?: Date;
|
|
312
|
+
LastModifiedBy?: UserContext;
|
|
313
|
+
Parameters?: Record<string, TrialComponentParameterValue>;
|
|
314
|
+
InputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
315
|
+
OutputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
316
|
+
MetadataProperties?: MetadataProperties;
|
|
317
|
+
Metrics?: TrialComponentMetricSummary[];
|
|
318
|
+
LineageGroupArn?: string;
|
|
319
|
+
Sources?: TrialComponentSource[];
|
|
320
|
+
}
|
|
321
|
+
export interface DescribeUserProfileRequest {
|
|
322
|
+
DomainId: string | undefined;
|
|
323
|
+
UserProfileName: string | undefined;
|
|
324
|
+
}
|
|
325
|
+
export declare const UserProfileStatus: {
|
|
326
|
+
readonly Delete_Failed: "Delete_Failed";
|
|
327
|
+
readonly Deleting: "Deleting";
|
|
328
|
+
readonly Failed: "Failed";
|
|
329
|
+
readonly InService: "InService";
|
|
330
|
+
readonly Pending: "Pending";
|
|
331
|
+
readonly Update_Failed: "Update_Failed";
|
|
332
|
+
readonly Updating: "Updating";
|
|
333
|
+
};
|
|
334
|
+
export type UserProfileStatus =
|
|
335
|
+
(typeof UserProfileStatus)[keyof typeof UserProfileStatus];
|
|
336
|
+
export interface DescribeUserProfileResponse {
|
|
337
|
+
DomainId?: string;
|
|
338
|
+
UserProfileArn?: string;
|
|
339
|
+
UserProfileName?: string;
|
|
340
|
+
HomeEfsFileSystemUid?: string;
|
|
341
|
+
Status?: UserProfileStatus;
|
|
342
|
+
LastModifiedTime?: Date;
|
|
343
|
+
CreationTime?: Date;
|
|
344
|
+
FailureReason?: string;
|
|
345
|
+
SingleSignOnUserIdentifier?: string;
|
|
346
|
+
SingleSignOnUserValue?: string;
|
|
347
|
+
UserSettings?: UserSettings;
|
|
348
|
+
}
|
|
349
|
+
export interface DescribeWorkforceRequest {
|
|
350
|
+
WorkforceName: string | undefined;
|
|
351
|
+
}
|
|
352
|
+
export interface OidcConfigForResponse {
|
|
353
|
+
ClientId?: string;
|
|
354
|
+
Issuer?: string;
|
|
355
|
+
AuthorizationEndpoint?: string;
|
|
356
|
+
TokenEndpoint?: string;
|
|
357
|
+
UserInfoEndpoint?: string;
|
|
358
|
+
LogoutEndpoint?: string;
|
|
359
|
+
JwksUri?: string;
|
|
360
|
+
}
|
|
361
|
+
export declare const WorkforceStatus: {
|
|
362
|
+
readonly ACTIVE: "Active";
|
|
363
|
+
readonly DELETING: "Deleting";
|
|
364
|
+
readonly FAILED: "Failed";
|
|
365
|
+
readonly INITIALIZING: "Initializing";
|
|
366
|
+
readonly UPDATING: "Updating";
|
|
367
|
+
};
|
|
368
|
+
export type WorkforceStatus =
|
|
369
|
+
(typeof WorkforceStatus)[keyof typeof WorkforceStatus];
|
|
370
|
+
export interface WorkforceVpcConfigResponse {
|
|
371
|
+
VpcId: string | undefined;
|
|
372
|
+
SecurityGroupIds: string[] | undefined;
|
|
373
|
+
Subnets: string[] | undefined;
|
|
374
|
+
VpcEndpointId?: string;
|
|
375
|
+
}
|
|
376
|
+
export interface Workforce {
|
|
377
|
+
WorkforceName: string | undefined;
|
|
378
|
+
WorkforceArn: string | undefined;
|
|
379
|
+
LastUpdatedDate?: Date;
|
|
380
|
+
SourceIpConfig?: SourceIpConfig;
|
|
381
|
+
SubDomain?: string;
|
|
382
|
+
CognitoConfig?: CognitoConfig;
|
|
383
|
+
OidcConfig?: OidcConfigForResponse;
|
|
384
|
+
CreateDate?: Date;
|
|
385
|
+
WorkforceVpcConfig?: WorkforceVpcConfigResponse;
|
|
386
|
+
Status?: WorkforceStatus;
|
|
387
|
+
FailureReason?: string;
|
|
388
|
+
}
|
|
389
|
+
export interface DescribeWorkforceResponse {
|
|
390
|
+
Workforce: Workforce | undefined;
|
|
391
|
+
}
|
|
392
|
+
export interface DescribeWorkteamRequest {
|
|
393
|
+
WorkteamName: string | undefined;
|
|
394
|
+
}
|
|
395
|
+
export interface Workteam {
|
|
396
|
+
WorkteamName: string | undefined;
|
|
397
|
+
MemberDefinitions: MemberDefinition[] | undefined;
|
|
398
|
+
WorkteamArn: string | undefined;
|
|
399
|
+
WorkforceArn?: string;
|
|
400
|
+
ProductListingIds?: string[];
|
|
401
|
+
Description: string | undefined;
|
|
402
|
+
SubDomain?: string;
|
|
403
|
+
CreateDate?: Date;
|
|
404
|
+
LastUpdatedDate?: Date;
|
|
405
|
+
NotificationConfiguration?: NotificationConfiguration;
|
|
406
|
+
}
|
|
407
|
+
export interface DescribeWorkteamResponse {
|
|
408
|
+
Workteam: Workteam | undefined;
|
|
409
|
+
}
|
|
410
|
+
export interface ProductionVariantServerlessUpdateConfig {
|
|
411
|
+
MaxConcurrency?: number;
|
|
412
|
+
ProvisionedConcurrency?: number;
|
|
413
|
+
}
|
|
414
|
+
export interface DesiredWeightAndCapacity {
|
|
415
|
+
VariantName: string | undefined;
|
|
416
|
+
DesiredWeight?: number;
|
|
417
|
+
DesiredInstanceCount?: number;
|
|
418
|
+
ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig;
|
|
419
|
+
}
|
|
420
|
+
export interface Device {
|
|
421
|
+
DeviceName: string | undefined;
|
|
422
|
+
Description?: string;
|
|
423
|
+
IotThingName?: string;
|
|
424
|
+
}
|
|
425
|
+
export declare const DeviceDeploymentStatus: {
|
|
426
|
+
readonly Deployed: "DEPLOYED";
|
|
427
|
+
readonly Failed: "FAILED";
|
|
428
|
+
readonly InProgress: "INPROGRESS";
|
|
429
|
+
readonly ReadyToDeploy: "READYTODEPLOY";
|
|
430
|
+
readonly Stopped: "STOPPED";
|
|
431
|
+
readonly Stopping: "STOPPING";
|
|
432
|
+
};
|
|
433
|
+
export type DeviceDeploymentStatus =
|
|
434
|
+
(typeof DeviceDeploymentStatus)[keyof typeof DeviceDeploymentStatus];
|
|
435
|
+
export interface DeviceDeploymentSummary {
|
|
436
|
+
EdgeDeploymentPlanArn: string | undefined;
|
|
437
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
438
|
+
StageName: string | undefined;
|
|
439
|
+
DeployedStageName?: string;
|
|
440
|
+
DeviceFleetName?: string;
|
|
441
|
+
DeviceName: string | undefined;
|
|
442
|
+
DeviceArn: string | undefined;
|
|
443
|
+
DeviceDeploymentStatus?: DeviceDeploymentStatus;
|
|
444
|
+
DeviceDeploymentStatusMessage?: string;
|
|
445
|
+
Description?: string;
|
|
446
|
+
DeploymentStartTime?: Date;
|
|
447
|
+
}
|
|
448
|
+
export interface DeviceFleetSummary {
|
|
449
|
+
DeviceFleetArn: string | undefined;
|
|
450
|
+
DeviceFleetName: string | undefined;
|
|
451
|
+
CreationTime?: Date;
|
|
452
|
+
LastModifiedTime?: Date;
|
|
453
|
+
}
|
|
454
|
+
export interface DeviceStats {
|
|
455
|
+
ConnectedDeviceCount: number | undefined;
|
|
456
|
+
RegisteredDeviceCount: number | undefined;
|
|
457
|
+
}
|
|
458
|
+
export interface EdgeModelSummary {
|
|
459
|
+
ModelName: string | undefined;
|
|
460
|
+
ModelVersion: string | undefined;
|
|
461
|
+
}
|
|
462
|
+
export interface DeviceSummary {
|
|
463
|
+
DeviceName: string | undefined;
|
|
464
|
+
DeviceArn: string | undefined;
|
|
465
|
+
Description?: string;
|
|
466
|
+
DeviceFleetName?: string;
|
|
467
|
+
IotThingName?: string;
|
|
468
|
+
RegistrationTime?: Date;
|
|
469
|
+
LatestHeartbeat?: Date;
|
|
470
|
+
Models?: EdgeModelSummary[];
|
|
471
|
+
AgentVersion?: string;
|
|
472
|
+
}
|
|
473
|
+
export declare const Direction: {
|
|
474
|
+
readonly ASCENDANTS: "Ascendants";
|
|
475
|
+
readonly BOTH: "Both";
|
|
476
|
+
readonly DESCENDANTS: "Descendants";
|
|
477
|
+
};
|
|
478
|
+
export type Direction = (typeof Direction)[keyof typeof Direction];
|
|
479
|
+
export interface DisableSagemakerServicecatalogPortfolioInput {}
|
|
480
|
+
export interface DisableSagemakerServicecatalogPortfolioOutput {}
|
|
481
|
+
export interface DisassociateTrialComponentRequest {
|
|
482
|
+
TrialComponentName: string | undefined;
|
|
483
|
+
TrialName: string | undefined;
|
|
484
|
+
}
|
|
485
|
+
export interface DisassociateTrialComponentResponse {
|
|
486
|
+
TrialComponentArn?: string;
|
|
487
|
+
TrialArn?: string;
|
|
488
|
+
}
|
|
489
|
+
export interface DomainDetails {
|
|
490
|
+
DomainArn?: string;
|
|
491
|
+
DomainId?: string;
|
|
492
|
+
DomainName?: string;
|
|
493
|
+
Status?: DomainStatus;
|
|
494
|
+
CreationTime?: Date;
|
|
495
|
+
LastModifiedTime?: Date;
|
|
496
|
+
Url?: string;
|
|
497
|
+
}
|
|
498
|
+
export interface RStudioServerProDomainSettingsForUpdate {
|
|
499
|
+
DomainExecutionRoleArn: string | undefined;
|
|
500
|
+
DefaultResourceSpec?: ResourceSpec;
|
|
501
|
+
RStudioConnectUrl?: string;
|
|
502
|
+
RStudioPackageManagerUrl?: string;
|
|
503
|
+
}
|
|
504
|
+
export interface DomainSettingsForUpdate {
|
|
505
|
+
RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
|
|
506
|
+
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
|
|
507
|
+
SecurityGroupIds?: string[];
|
|
508
|
+
}
|
|
509
|
+
export interface PredefinedMetricSpecification {
|
|
510
|
+
PredefinedMetricType?: string;
|
|
511
|
+
}
|
|
512
|
+
export type MetricSpecification =
|
|
513
|
+
| MetricSpecification.CustomizedMember
|
|
514
|
+
| MetricSpecification.PredefinedMember
|
|
515
|
+
| MetricSpecification.$UnknownMember;
|
|
516
|
+
export declare namespace MetricSpecification {
|
|
517
|
+
interface PredefinedMember {
|
|
518
|
+
Predefined: PredefinedMetricSpecification;
|
|
519
|
+
Customized?: never;
|
|
520
|
+
$unknown?: never;
|
|
521
|
+
}
|
|
522
|
+
interface CustomizedMember {
|
|
523
|
+
Predefined?: never;
|
|
524
|
+
Customized: CustomizedMetricSpecification;
|
|
525
|
+
$unknown?: never;
|
|
526
|
+
}
|
|
527
|
+
interface $UnknownMember {
|
|
528
|
+
Predefined?: never;
|
|
529
|
+
Customized?: never;
|
|
530
|
+
$unknown: [string, any];
|
|
531
|
+
}
|
|
532
|
+
interface Visitor<T> {
|
|
533
|
+
Predefined: (value: PredefinedMetricSpecification) => T;
|
|
534
|
+
Customized: (value: CustomizedMetricSpecification) => T;
|
|
535
|
+
_: (name: string, value: any) => T;
|
|
536
|
+
}
|
|
537
|
+
const visit: <T>(value: MetricSpecification, visitor: Visitor<T>) => T;
|
|
538
|
+
}
|
|
539
|
+
export interface TargetTrackingScalingPolicyConfiguration {
|
|
540
|
+
MetricSpecification?: MetricSpecification;
|
|
541
|
+
TargetValue?: number;
|
|
542
|
+
}
|
|
543
|
+
export type ScalingPolicy =
|
|
544
|
+
| ScalingPolicy.TargetTrackingMember
|
|
545
|
+
| ScalingPolicy.$UnknownMember;
|
|
546
|
+
export declare namespace ScalingPolicy {
|
|
547
|
+
interface TargetTrackingMember {
|
|
548
|
+
TargetTracking: TargetTrackingScalingPolicyConfiguration;
|
|
549
|
+
$unknown?: never;
|
|
550
|
+
}
|
|
551
|
+
interface $UnknownMember {
|
|
552
|
+
TargetTracking?: never;
|
|
553
|
+
$unknown: [string, any];
|
|
554
|
+
}
|
|
555
|
+
interface Visitor<T> {
|
|
556
|
+
TargetTracking: (value: TargetTrackingScalingPolicyConfiguration) => T;
|
|
557
|
+
_: (name: string, value: any) => T;
|
|
558
|
+
}
|
|
559
|
+
const visit: <T>(value: ScalingPolicy, visitor: Visitor<T>) => T;
|
|
560
|
+
}
|
|
561
|
+
export interface DynamicScalingConfiguration {
|
|
562
|
+
MinCapacity?: number;
|
|
563
|
+
MaxCapacity?: number;
|
|
564
|
+
ScaleInCooldown?: number;
|
|
565
|
+
ScaleOutCooldown?: number;
|
|
566
|
+
ScalingPolicies?: ScalingPolicy[];
|
|
567
|
+
}
|
|
568
|
+
export interface Edge {
|
|
569
|
+
SourceArn?: string;
|
|
570
|
+
DestinationArn?: string;
|
|
571
|
+
AssociationType?: AssociationEdgeType;
|
|
572
|
+
}
|
|
573
|
+
export interface EdgeDeploymentPlanSummary {
|
|
574
|
+
EdgeDeploymentPlanArn: string | undefined;
|
|
575
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
576
|
+
DeviceFleetName: string | undefined;
|
|
577
|
+
EdgeDeploymentSuccess: number | undefined;
|
|
578
|
+
EdgeDeploymentPending: number | undefined;
|
|
579
|
+
EdgeDeploymentFailed: number | undefined;
|
|
580
|
+
CreationTime?: Date;
|
|
581
|
+
LastModifiedTime?: Date;
|
|
582
|
+
}
|
|
583
|
+
export interface EdgeModelStat {
|
|
584
|
+
ModelName: string | undefined;
|
|
585
|
+
ModelVersion: string | undefined;
|
|
586
|
+
OfflineDeviceCount: number | undefined;
|
|
587
|
+
ConnectedDeviceCount: number | undefined;
|
|
588
|
+
ActiveDeviceCount: number | undefined;
|
|
589
|
+
SamplingDeviceCount: number | undefined;
|
|
590
|
+
}
|
|
591
|
+
export interface EdgePackagingJobSummary {
|
|
592
|
+
EdgePackagingJobArn: string | undefined;
|
|
593
|
+
EdgePackagingJobName: string | undefined;
|
|
594
|
+
EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
|
|
595
|
+
CompilationJobName?: string;
|
|
596
|
+
ModelName?: string;
|
|
597
|
+
ModelVersion?: string;
|
|
598
|
+
CreationTime?: Date;
|
|
599
|
+
LastModifiedTime?: Date;
|
|
600
|
+
}
|
|
601
|
+
export interface EMRStepMetadata {
|
|
602
|
+
ClusterId?: string;
|
|
603
|
+
StepId?: string;
|
|
604
|
+
StepName?: string;
|
|
605
|
+
LogFilePath?: string;
|
|
606
|
+
}
|
|
607
|
+
export interface EnableSagemakerServicecatalogPortfolioInput {}
|
|
608
|
+
export interface EnableSagemakerServicecatalogPortfolioOutput {}
|
|
126
609
|
export interface MonitoringSchedule {
|
|
127
610
|
MonitoringScheduleArn?: string;
|
|
128
611
|
MonitoringScheduleName?: string;
|
|
@@ -510,6 +993,23 @@ export interface ImportHubContentResponse {
|
|
|
510
993
|
HubArn: string | undefined;
|
|
511
994
|
HubContentArn: string | undefined;
|
|
512
995
|
}
|
|
996
|
+
export declare const InferenceComponentSortKey: {
|
|
997
|
+
readonly CreationTime: "CreationTime";
|
|
998
|
+
readonly Name: "Name";
|
|
999
|
+
readonly Status: "Status";
|
|
1000
|
+
};
|
|
1001
|
+
export type InferenceComponentSortKey =
|
|
1002
|
+
(typeof InferenceComponentSortKey)[keyof typeof InferenceComponentSortKey];
|
|
1003
|
+
export interface InferenceComponentSummary {
|
|
1004
|
+
CreationTime: Date | undefined;
|
|
1005
|
+
InferenceComponentArn: string | undefined;
|
|
1006
|
+
InferenceComponentName: string | undefined;
|
|
1007
|
+
EndpointArn: string | undefined;
|
|
1008
|
+
EndpointName: string | undefined;
|
|
1009
|
+
VariantName: string | undefined;
|
|
1010
|
+
InferenceComponentStatus?: InferenceComponentStatus;
|
|
1011
|
+
LastModifiedTime: Date | undefined;
|
|
1012
|
+
}
|
|
513
1013
|
export interface InferenceExperimentSummary {
|
|
514
1014
|
Name: string | undefined;
|
|
515
1015
|
Type: InferenceExperimentType | undefined;
|
|
@@ -758,6 +1258,33 @@ export interface ListCandidatesForAutoMLJobResponse {
|
|
|
758
1258
|
Candidates: AutoMLCandidate[] | undefined;
|
|
759
1259
|
NextToken?: string;
|
|
760
1260
|
}
|
|
1261
|
+
export interface ListClusterNodesRequest {
|
|
1262
|
+
ClusterName: string | undefined;
|
|
1263
|
+
CreationTimeAfter?: Date;
|
|
1264
|
+
CreationTimeBefore?: Date;
|
|
1265
|
+
InstanceGroupNameContains?: string;
|
|
1266
|
+
MaxResults?: number;
|
|
1267
|
+
NextToken?: string;
|
|
1268
|
+
SortBy?: ClusterSortBy;
|
|
1269
|
+
SortOrder?: SortOrder;
|
|
1270
|
+
}
|
|
1271
|
+
export interface ListClusterNodesResponse {
|
|
1272
|
+
NextToken: string | undefined;
|
|
1273
|
+
ClusterNodeSummaries: ClusterNodeSummary[] | undefined;
|
|
1274
|
+
}
|
|
1275
|
+
export interface ListClustersRequest {
|
|
1276
|
+
CreationTimeAfter?: Date;
|
|
1277
|
+
CreationTimeBefore?: Date;
|
|
1278
|
+
MaxResults?: number;
|
|
1279
|
+
NameContains?: string;
|
|
1280
|
+
NextToken?: string;
|
|
1281
|
+
SortBy?: ClusterSortBy;
|
|
1282
|
+
SortOrder?: SortOrder;
|
|
1283
|
+
}
|
|
1284
|
+
export interface ListClustersResponse {
|
|
1285
|
+
NextToken: string | undefined;
|
|
1286
|
+
ClusterSummaries: ClusterSummary[] | undefined;
|
|
1287
|
+
}
|
|
761
1288
|
export interface ListCodeRepositoriesInput {
|
|
762
1289
|
CreationTimeAfter?: Date;
|
|
763
1290
|
CreationTimeBefore?: Date;
|
|
@@ -1118,6 +1645,24 @@ export interface ListImageVersionsResponse {
|
|
|
1118
1645
|
ImageVersions?: ImageVersion[];
|
|
1119
1646
|
NextToken?: string;
|
|
1120
1647
|
}
|
|
1648
|
+
export interface ListInferenceComponentsInput {
|
|
1649
|
+
SortBy?: InferenceComponentSortKey;
|
|
1650
|
+
SortOrder?: OrderKey;
|
|
1651
|
+
NextToken?: string;
|
|
1652
|
+
MaxResults?: number;
|
|
1653
|
+
NameContains?: string;
|
|
1654
|
+
CreationTimeBefore?: Date;
|
|
1655
|
+
CreationTimeAfter?: Date;
|
|
1656
|
+
LastModifiedTimeBefore?: Date;
|
|
1657
|
+
LastModifiedTimeAfter?: Date;
|
|
1658
|
+
StatusEquals?: InferenceComponentStatus;
|
|
1659
|
+
EndpointNameEquals?: string;
|
|
1660
|
+
VariantNameEquals?: string;
|
|
1661
|
+
}
|
|
1662
|
+
export interface ListInferenceComponentsOutput {
|
|
1663
|
+
InferenceComponents: InferenceComponentSummary[] | undefined;
|
|
1664
|
+
NextToken?: string;
|
|
1665
|
+
}
|
|
1121
1666
|
export declare const SortInferenceExperimentsBy: {
|
|
1122
1667
|
readonly CREATION_TIME: "CreationTime";
|
|
1123
1668
|
readonly NAME: "Name";
|
|
@@ -1777,446 +2322,3 @@ export interface PipelineExecutionStepMetadata {
|
|
|
1777
2322
|
export interface SelectiveExecutionResult {
|
|
1778
2323
|
SourcePipelineExecutionArn?: string;
|
|
1779
2324
|
}
|
|
1780
|
-
export declare const StepStatus: {
|
|
1781
|
-
readonly EXECUTING: "Executing";
|
|
1782
|
-
readonly FAILED: "Failed";
|
|
1783
|
-
readonly STARTING: "Starting";
|
|
1784
|
-
readonly STOPPED: "Stopped";
|
|
1785
|
-
readonly STOPPING: "Stopping";
|
|
1786
|
-
readonly SUCCEEDED: "Succeeded";
|
|
1787
|
-
};
|
|
1788
|
-
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
1789
|
-
export interface PipelineExecutionStep {
|
|
1790
|
-
StepName?: string;
|
|
1791
|
-
StepDisplayName?: string;
|
|
1792
|
-
StepDescription?: string;
|
|
1793
|
-
StartTime?: Date;
|
|
1794
|
-
EndTime?: Date;
|
|
1795
|
-
StepStatus?: StepStatus;
|
|
1796
|
-
CacheHitResult?: CacheHitResult;
|
|
1797
|
-
AttemptCount?: number;
|
|
1798
|
-
FailureReason?: string;
|
|
1799
|
-
Metadata?: PipelineExecutionStepMetadata;
|
|
1800
|
-
SelectiveExecutionResult?: SelectiveExecutionResult;
|
|
1801
|
-
}
|
|
1802
|
-
export interface ListPipelineExecutionStepsResponse {
|
|
1803
|
-
PipelineExecutionSteps?: PipelineExecutionStep[];
|
|
1804
|
-
NextToken?: string;
|
|
1805
|
-
}
|
|
1806
|
-
export interface ListPipelineParametersForExecutionRequest {
|
|
1807
|
-
PipelineExecutionArn: string | undefined;
|
|
1808
|
-
NextToken?: string;
|
|
1809
|
-
MaxResults?: number;
|
|
1810
|
-
}
|
|
1811
|
-
export interface Parameter {
|
|
1812
|
-
Name: string | undefined;
|
|
1813
|
-
Value: string | undefined;
|
|
1814
|
-
}
|
|
1815
|
-
export interface ListPipelineParametersForExecutionResponse {
|
|
1816
|
-
PipelineParameters?: Parameter[];
|
|
1817
|
-
NextToken?: string;
|
|
1818
|
-
}
|
|
1819
|
-
export declare const SortPipelinesBy: {
|
|
1820
|
-
readonly CREATION_TIME: "CreationTime";
|
|
1821
|
-
readonly NAME: "Name";
|
|
1822
|
-
};
|
|
1823
|
-
export type SortPipelinesBy =
|
|
1824
|
-
(typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
|
|
1825
|
-
export interface ListPipelinesRequest {
|
|
1826
|
-
PipelineNamePrefix?: string;
|
|
1827
|
-
CreatedAfter?: Date;
|
|
1828
|
-
CreatedBefore?: Date;
|
|
1829
|
-
SortBy?: SortPipelinesBy;
|
|
1830
|
-
SortOrder?: SortOrder;
|
|
1831
|
-
NextToken?: string;
|
|
1832
|
-
MaxResults?: number;
|
|
1833
|
-
}
|
|
1834
|
-
export interface PipelineSummary {
|
|
1835
|
-
PipelineArn?: string;
|
|
1836
|
-
PipelineName?: string;
|
|
1837
|
-
PipelineDisplayName?: string;
|
|
1838
|
-
PipelineDescription?: string;
|
|
1839
|
-
RoleArn?: string;
|
|
1840
|
-
CreationTime?: Date;
|
|
1841
|
-
LastModifiedTime?: Date;
|
|
1842
|
-
LastExecutionTime?: Date;
|
|
1843
|
-
}
|
|
1844
|
-
export interface ListPipelinesResponse {
|
|
1845
|
-
PipelineSummaries?: PipelineSummary[];
|
|
1846
|
-
NextToken?: string;
|
|
1847
|
-
}
|
|
1848
|
-
export interface ListProcessingJobsRequest {
|
|
1849
|
-
CreationTimeAfter?: Date;
|
|
1850
|
-
CreationTimeBefore?: Date;
|
|
1851
|
-
LastModifiedTimeAfter?: Date;
|
|
1852
|
-
LastModifiedTimeBefore?: Date;
|
|
1853
|
-
NameContains?: string;
|
|
1854
|
-
StatusEquals?: ProcessingJobStatus;
|
|
1855
|
-
SortBy?: SortBy;
|
|
1856
|
-
SortOrder?: SortOrder;
|
|
1857
|
-
NextToken?: string;
|
|
1858
|
-
MaxResults?: number;
|
|
1859
|
-
}
|
|
1860
|
-
export interface ProcessingJobSummary {
|
|
1861
|
-
ProcessingJobName: string | undefined;
|
|
1862
|
-
ProcessingJobArn: string | undefined;
|
|
1863
|
-
CreationTime: Date | undefined;
|
|
1864
|
-
ProcessingEndTime?: Date;
|
|
1865
|
-
LastModifiedTime?: Date;
|
|
1866
|
-
ProcessingJobStatus: ProcessingJobStatus | undefined;
|
|
1867
|
-
FailureReason?: string;
|
|
1868
|
-
ExitMessage?: string;
|
|
1869
|
-
}
|
|
1870
|
-
export interface ListProcessingJobsResponse {
|
|
1871
|
-
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
1872
|
-
NextToken?: string;
|
|
1873
|
-
}
|
|
1874
|
-
export declare const ProjectSortBy: {
|
|
1875
|
-
readonly CREATION_TIME: "CreationTime";
|
|
1876
|
-
readonly NAME: "Name";
|
|
1877
|
-
};
|
|
1878
|
-
export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
|
|
1879
|
-
export declare const ProjectSortOrder: {
|
|
1880
|
-
readonly ASCENDING: "Ascending";
|
|
1881
|
-
readonly DESCENDING: "Descending";
|
|
1882
|
-
};
|
|
1883
|
-
export type ProjectSortOrder =
|
|
1884
|
-
(typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
|
|
1885
|
-
export interface ListProjectsInput {
|
|
1886
|
-
CreationTimeAfter?: Date;
|
|
1887
|
-
CreationTimeBefore?: Date;
|
|
1888
|
-
MaxResults?: number;
|
|
1889
|
-
NameContains?: string;
|
|
1890
|
-
NextToken?: string;
|
|
1891
|
-
SortBy?: ProjectSortBy;
|
|
1892
|
-
SortOrder?: ProjectSortOrder;
|
|
1893
|
-
}
|
|
1894
|
-
export interface ProjectSummary {
|
|
1895
|
-
ProjectName: string | undefined;
|
|
1896
|
-
ProjectDescription?: string;
|
|
1897
|
-
ProjectArn: string | undefined;
|
|
1898
|
-
ProjectId: string | undefined;
|
|
1899
|
-
CreationTime: Date | undefined;
|
|
1900
|
-
ProjectStatus: ProjectStatus | undefined;
|
|
1901
|
-
}
|
|
1902
|
-
export interface ListProjectsOutput {
|
|
1903
|
-
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
1904
|
-
NextToken?: string;
|
|
1905
|
-
}
|
|
1906
|
-
export declare const ResourceCatalogSortBy: {
|
|
1907
|
-
readonly CREATION_TIME: "CreationTime";
|
|
1908
|
-
};
|
|
1909
|
-
export type ResourceCatalogSortBy =
|
|
1910
|
-
(typeof ResourceCatalogSortBy)[keyof typeof ResourceCatalogSortBy];
|
|
1911
|
-
export declare const ResourceCatalogSortOrder: {
|
|
1912
|
-
readonly ASCENDING: "Ascending";
|
|
1913
|
-
readonly DESCENDING: "Descending";
|
|
1914
|
-
};
|
|
1915
|
-
export type ResourceCatalogSortOrder =
|
|
1916
|
-
(typeof ResourceCatalogSortOrder)[keyof typeof ResourceCatalogSortOrder];
|
|
1917
|
-
export interface ListResourceCatalogsRequest {
|
|
1918
|
-
NameContains?: string;
|
|
1919
|
-
CreationTimeAfter?: Date;
|
|
1920
|
-
CreationTimeBefore?: Date;
|
|
1921
|
-
SortOrder?: ResourceCatalogSortOrder;
|
|
1922
|
-
SortBy?: ResourceCatalogSortBy;
|
|
1923
|
-
MaxResults?: number;
|
|
1924
|
-
NextToken?: string;
|
|
1925
|
-
}
|
|
1926
|
-
export interface ResourceCatalog {
|
|
1927
|
-
ResourceCatalogArn: string | undefined;
|
|
1928
|
-
ResourceCatalogName: string | undefined;
|
|
1929
|
-
Description: string | undefined;
|
|
1930
|
-
CreationTime: Date | undefined;
|
|
1931
|
-
}
|
|
1932
|
-
export interface ListResourceCatalogsResponse {
|
|
1933
|
-
ResourceCatalogs?: ResourceCatalog[];
|
|
1934
|
-
NextToken?: string;
|
|
1935
|
-
}
|
|
1936
|
-
export declare const SpaceSortKey: {
|
|
1937
|
-
readonly CreationTime: "CreationTime";
|
|
1938
|
-
readonly LastModifiedTime: "LastModifiedTime";
|
|
1939
|
-
};
|
|
1940
|
-
export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
1941
|
-
export interface ListSpacesRequest {
|
|
1942
|
-
NextToken?: string;
|
|
1943
|
-
MaxResults?: number;
|
|
1944
|
-
SortOrder?: SortOrder;
|
|
1945
|
-
SortBy?: SpaceSortKey;
|
|
1946
|
-
DomainIdEquals?: string;
|
|
1947
|
-
SpaceNameContains?: string;
|
|
1948
|
-
}
|
|
1949
|
-
export interface SpaceDetails {
|
|
1950
|
-
DomainId?: string;
|
|
1951
|
-
SpaceName?: string;
|
|
1952
|
-
Status?: SpaceStatus;
|
|
1953
|
-
CreationTime?: Date;
|
|
1954
|
-
LastModifiedTime?: Date;
|
|
1955
|
-
}
|
|
1956
|
-
export interface ListSpacesResponse {
|
|
1957
|
-
Spaces?: SpaceDetails[];
|
|
1958
|
-
NextToken?: string;
|
|
1959
|
-
}
|
|
1960
|
-
export interface ListStageDevicesRequest {
|
|
1961
|
-
NextToken?: string;
|
|
1962
|
-
MaxResults?: number;
|
|
1963
|
-
EdgeDeploymentPlanName: string | undefined;
|
|
1964
|
-
ExcludeDevicesDeployedInOtherStage?: boolean;
|
|
1965
|
-
StageName: string | undefined;
|
|
1966
|
-
}
|
|
1967
|
-
export interface ListStageDevicesResponse {
|
|
1968
|
-
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
1969
|
-
NextToken?: string;
|
|
1970
|
-
}
|
|
1971
|
-
export declare const StudioLifecycleConfigSortKey: {
|
|
1972
|
-
readonly CreationTime: "CreationTime";
|
|
1973
|
-
readonly LastModifiedTime: "LastModifiedTime";
|
|
1974
|
-
readonly Name: "Name";
|
|
1975
|
-
};
|
|
1976
|
-
export type StudioLifecycleConfigSortKey =
|
|
1977
|
-
(typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
|
|
1978
|
-
export interface ListStudioLifecycleConfigsRequest {
|
|
1979
|
-
MaxResults?: number;
|
|
1980
|
-
NextToken?: string;
|
|
1981
|
-
NameContains?: string;
|
|
1982
|
-
AppTypeEquals?: StudioLifecycleConfigAppType;
|
|
1983
|
-
CreationTimeBefore?: Date;
|
|
1984
|
-
CreationTimeAfter?: Date;
|
|
1985
|
-
ModifiedTimeBefore?: Date;
|
|
1986
|
-
ModifiedTimeAfter?: Date;
|
|
1987
|
-
SortBy?: StudioLifecycleConfigSortKey;
|
|
1988
|
-
SortOrder?: SortOrder;
|
|
1989
|
-
}
|
|
1990
|
-
export interface StudioLifecycleConfigDetails {
|
|
1991
|
-
StudioLifecycleConfigArn?: string;
|
|
1992
|
-
StudioLifecycleConfigName?: string;
|
|
1993
|
-
CreationTime?: Date;
|
|
1994
|
-
LastModifiedTime?: Date;
|
|
1995
|
-
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
1996
|
-
}
|
|
1997
|
-
export interface ListStudioLifecycleConfigsResponse {
|
|
1998
|
-
NextToken?: string;
|
|
1999
|
-
StudioLifecycleConfigs?: StudioLifecycleConfigDetails[];
|
|
2000
|
-
}
|
|
2001
|
-
export interface ListSubscribedWorkteamsRequest {
|
|
2002
|
-
NameContains?: string;
|
|
2003
|
-
NextToken?: string;
|
|
2004
|
-
MaxResults?: number;
|
|
2005
|
-
}
|
|
2006
|
-
export interface ListSubscribedWorkteamsResponse {
|
|
2007
|
-
SubscribedWorkteams: SubscribedWorkteam[] | undefined;
|
|
2008
|
-
NextToken?: string;
|
|
2009
|
-
}
|
|
2010
|
-
export interface ListTagsInput {
|
|
2011
|
-
ResourceArn: string | undefined;
|
|
2012
|
-
NextToken?: string;
|
|
2013
|
-
MaxResults?: number;
|
|
2014
|
-
}
|
|
2015
|
-
export interface ListTagsOutput {
|
|
2016
|
-
Tags?: Tag[];
|
|
2017
|
-
NextToken?: string;
|
|
2018
|
-
}
|
|
2019
|
-
export interface ListTrainingJobsRequest {
|
|
2020
|
-
NextToken?: string;
|
|
2021
|
-
MaxResults?: number;
|
|
2022
|
-
CreationTimeAfter?: Date;
|
|
2023
|
-
CreationTimeBefore?: Date;
|
|
2024
|
-
LastModifiedTimeAfter?: Date;
|
|
2025
|
-
LastModifiedTimeBefore?: Date;
|
|
2026
|
-
NameContains?: string;
|
|
2027
|
-
StatusEquals?: TrainingJobStatus;
|
|
2028
|
-
SortBy?: SortBy;
|
|
2029
|
-
SortOrder?: SortOrder;
|
|
2030
|
-
WarmPoolStatusEquals?: WarmPoolResourceStatus;
|
|
2031
|
-
}
|
|
2032
|
-
export interface TrainingJobSummary {
|
|
2033
|
-
TrainingJobName: string | undefined;
|
|
2034
|
-
TrainingJobArn: string | undefined;
|
|
2035
|
-
CreationTime: Date | undefined;
|
|
2036
|
-
TrainingEndTime?: Date;
|
|
2037
|
-
LastModifiedTime?: Date;
|
|
2038
|
-
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
2039
|
-
WarmPoolStatus?: WarmPoolStatus;
|
|
2040
|
-
}
|
|
2041
|
-
export interface ListTrainingJobsResponse {
|
|
2042
|
-
TrainingJobSummaries: TrainingJobSummary[] | undefined;
|
|
2043
|
-
NextToken?: string;
|
|
2044
|
-
}
|
|
2045
|
-
export declare const TrainingJobSortByOptions: {
|
|
2046
|
-
readonly CreationTime: "CreationTime";
|
|
2047
|
-
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
2048
|
-
readonly Name: "Name";
|
|
2049
|
-
readonly Status: "Status";
|
|
2050
|
-
};
|
|
2051
|
-
export type TrainingJobSortByOptions =
|
|
2052
|
-
(typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
|
|
2053
|
-
export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
2054
|
-
HyperParameterTuningJobName: string | undefined;
|
|
2055
|
-
NextToken?: string;
|
|
2056
|
-
MaxResults?: number;
|
|
2057
|
-
StatusEquals?: TrainingJobStatus;
|
|
2058
|
-
SortBy?: TrainingJobSortByOptions;
|
|
2059
|
-
SortOrder?: SortOrder;
|
|
2060
|
-
}
|
|
2061
|
-
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
2062
|
-
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
2063
|
-
NextToken?: string;
|
|
2064
|
-
}
|
|
2065
|
-
export interface ListTransformJobsRequest {
|
|
2066
|
-
CreationTimeAfter?: Date;
|
|
2067
|
-
CreationTimeBefore?: Date;
|
|
2068
|
-
LastModifiedTimeAfter?: Date;
|
|
2069
|
-
LastModifiedTimeBefore?: Date;
|
|
2070
|
-
NameContains?: string;
|
|
2071
|
-
StatusEquals?: TransformJobStatus;
|
|
2072
|
-
SortBy?: SortBy;
|
|
2073
|
-
SortOrder?: SortOrder;
|
|
2074
|
-
NextToken?: string;
|
|
2075
|
-
MaxResults?: number;
|
|
2076
|
-
}
|
|
2077
|
-
export interface TransformJobSummary {
|
|
2078
|
-
TransformJobName: string | undefined;
|
|
2079
|
-
TransformJobArn: string | undefined;
|
|
2080
|
-
CreationTime: Date | undefined;
|
|
2081
|
-
TransformEndTime?: Date;
|
|
2082
|
-
LastModifiedTime?: Date;
|
|
2083
|
-
TransformJobStatus: TransformJobStatus | undefined;
|
|
2084
|
-
FailureReason?: string;
|
|
2085
|
-
}
|
|
2086
|
-
export interface ListTransformJobsResponse {
|
|
2087
|
-
TransformJobSummaries: TransformJobSummary[] | undefined;
|
|
2088
|
-
NextToken?: string;
|
|
2089
|
-
}
|
|
2090
|
-
export declare const SortTrialComponentsBy: {
|
|
2091
|
-
readonly CREATION_TIME: "CreationTime";
|
|
2092
|
-
readonly NAME: "Name";
|
|
2093
|
-
};
|
|
2094
|
-
export type SortTrialComponentsBy =
|
|
2095
|
-
(typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
|
|
2096
|
-
export interface ListTrialComponentsRequest {
|
|
2097
|
-
ExperimentName?: string;
|
|
2098
|
-
TrialName?: string;
|
|
2099
|
-
SourceArn?: string;
|
|
2100
|
-
CreatedAfter?: Date;
|
|
2101
|
-
CreatedBefore?: Date;
|
|
2102
|
-
SortBy?: SortTrialComponentsBy;
|
|
2103
|
-
SortOrder?: SortOrder;
|
|
2104
|
-
MaxResults?: number;
|
|
2105
|
-
NextToken?: string;
|
|
2106
|
-
}
|
|
2107
|
-
export interface TrialComponentSummary {
|
|
2108
|
-
TrialComponentName?: string;
|
|
2109
|
-
TrialComponentArn?: string;
|
|
2110
|
-
DisplayName?: string;
|
|
2111
|
-
TrialComponentSource?: TrialComponentSource;
|
|
2112
|
-
Status?: TrialComponentStatus;
|
|
2113
|
-
StartTime?: Date;
|
|
2114
|
-
EndTime?: Date;
|
|
2115
|
-
CreationTime?: Date;
|
|
2116
|
-
CreatedBy?: UserContext;
|
|
2117
|
-
LastModifiedTime?: Date;
|
|
2118
|
-
LastModifiedBy?: UserContext;
|
|
2119
|
-
}
|
|
2120
|
-
export interface ListTrialComponentsResponse {
|
|
2121
|
-
TrialComponentSummaries?: TrialComponentSummary[];
|
|
2122
|
-
NextToken?: string;
|
|
2123
|
-
}
|
|
2124
|
-
export declare const SortTrialsBy: {
|
|
2125
|
-
readonly CREATION_TIME: "CreationTime";
|
|
2126
|
-
readonly NAME: "Name";
|
|
2127
|
-
};
|
|
2128
|
-
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
2129
|
-
export interface ListTrialsRequest {
|
|
2130
|
-
ExperimentName?: string;
|
|
2131
|
-
TrialComponentName?: string;
|
|
2132
|
-
CreatedAfter?: Date;
|
|
2133
|
-
CreatedBefore?: Date;
|
|
2134
|
-
SortBy?: SortTrialsBy;
|
|
2135
|
-
SortOrder?: SortOrder;
|
|
2136
|
-
MaxResults?: number;
|
|
2137
|
-
NextToken?: string;
|
|
2138
|
-
}
|
|
2139
|
-
export interface TrialSummary {
|
|
2140
|
-
TrialArn?: string;
|
|
2141
|
-
TrialName?: string;
|
|
2142
|
-
DisplayName?: string;
|
|
2143
|
-
TrialSource?: TrialSource;
|
|
2144
|
-
CreationTime?: Date;
|
|
2145
|
-
LastModifiedTime?: Date;
|
|
2146
|
-
}
|
|
2147
|
-
export interface ListTrialsResponse {
|
|
2148
|
-
TrialSummaries?: TrialSummary[];
|
|
2149
|
-
NextToken?: string;
|
|
2150
|
-
}
|
|
2151
|
-
export declare const UserProfileSortKey: {
|
|
2152
|
-
readonly CreationTime: "CreationTime";
|
|
2153
|
-
readonly LastModifiedTime: "LastModifiedTime";
|
|
2154
|
-
};
|
|
2155
|
-
export type UserProfileSortKey =
|
|
2156
|
-
(typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
2157
|
-
export interface ListUserProfilesRequest {
|
|
2158
|
-
NextToken?: string;
|
|
2159
|
-
MaxResults?: number;
|
|
2160
|
-
SortOrder?: SortOrder;
|
|
2161
|
-
SortBy?: UserProfileSortKey;
|
|
2162
|
-
DomainIdEquals?: string;
|
|
2163
|
-
UserProfileNameContains?: string;
|
|
2164
|
-
}
|
|
2165
|
-
export interface UserProfileDetails {
|
|
2166
|
-
DomainId?: string;
|
|
2167
|
-
UserProfileName?: string;
|
|
2168
|
-
Status?: UserProfileStatus;
|
|
2169
|
-
CreationTime?: Date;
|
|
2170
|
-
LastModifiedTime?: Date;
|
|
2171
|
-
}
|
|
2172
|
-
export interface ListUserProfilesResponse {
|
|
2173
|
-
UserProfiles?: UserProfileDetails[];
|
|
2174
|
-
NextToken?: string;
|
|
2175
|
-
}
|
|
2176
|
-
export declare const ListWorkforcesSortByOptions: {
|
|
2177
|
-
readonly CreateDate: "CreateDate";
|
|
2178
|
-
readonly Name: "Name";
|
|
2179
|
-
};
|
|
2180
|
-
export type ListWorkforcesSortByOptions =
|
|
2181
|
-
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
2182
|
-
export interface ListWorkforcesRequest {
|
|
2183
|
-
SortBy?: ListWorkforcesSortByOptions;
|
|
2184
|
-
SortOrder?: SortOrder;
|
|
2185
|
-
NameContains?: string;
|
|
2186
|
-
NextToken?: string;
|
|
2187
|
-
MaxResults?: number;
|
|
2188
|
-
}
|
|
2189
|
-
export interface ListWorkforcesResponse {
|
|
2190
|
-
Workforces: Workforce[] | undefined;
|
|
2191
|
-
NextToken?: string;
|
|
2192
|
-
}
|
|
2193
|
-
export declare const ListWorkteamsSortByOptions: {
|
|
2194
|
-
readonly CreateDate: "CreateDate";
|
|
2195
|
-
readonly Name: "Name";
|
|
2196
|
-
};
|
|
2197
|
-
export type ListWorkteamsSortByOptions =
|
|
2198
|
-
(typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
2199
|
-
export interface ListWorkteamsRequest {
|
|
2200
|
-
SortBy?: ListWorkteamsSortByOptions;
|
|
2201
|
-
SortOrder?: SortOrder;
|
|
2202
|
-
NameContains?: string;
|
|
2203
|
-
NextToken?: string;
|
|
2204
|
-
MaxResults?: number;
|
|
2205
|
-
}
|
|
2206
|
-
export interface ListWorkteamsResponse {
|
|
2207
|
-
Workteams: Workteam[] | undefined;
|
|
2208
|
-
NextToken?: string;
|
|
2209
|
-
}
|
|
2210
|
-
export interface Model {
|
|
2211
|
-
ModelName?: string;
|
|
2212
|
-
PrimaryContainer?: ContainerDefinition;
|
|
2213
|
-
Containers?: ContainerDefinition[];
|
|
2214
|
-
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
2215
|
-
ExecutionRoleArn?: string;
|
|
2216
|
-
VpcConfig?: VpcConfig;
|
|
2217
|
-
CreationTime?: Date;
|
|
2218
|
-
ModelArn?: string;
|
|
2219
|
-
EnableNetworkIsolation?: boolean;
|
|
2220
|
-
Tags?: Tag[];
|
|
2221
|
-
DeploymentRecommendation?: DeploymentRecommendation;
|
|
2222
|
-
}
|