@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,15 +2,21 @@ import {
|
|
|
2
2
|
ActionStatus,
|
|
3
3
|
AdditionalInferenceSpecificationDefinition,
|
|
4
4
|
AlgorithmSpecification,
|
|
5
|
+
AppNetworkAccessType,
|
|
5
6
|
AppSecurityGroupManagement,
|
|
6
7
|
AppSpecification,
|
|
8
|
+
AppType,
|
|
7
9
|
BatchDataCaptureConfig,
|
|
8
10
|
BatchStrategy,
|
|
9
11
|
BatchTransformInput,
|
|
10
12
|
BooleanOperator,
|
|
13
|
+
CacheHitResult,
|
|
11
14
|
Channel,
|
|
12
15
|
CheckpointConfig,
|
|
16
|
+
ClusterInstanceGroupSpecification,
|
|
17
|
+
ContainerDefinition,
|
|
13
18
|
InferenceSpecification,
|
|
19
|
+
JupyterLabAppImageConfig,
|
|
14
20
|
KernelGatewayImageConfig,
|
|
15
21
|
MetadataProperties,
|
|
16
22
|
ModelApprovalStatus,
|
|
@@ -28,25 +34,23 @@ import {
|
|
|
28
34
|
} from "./models_0";
|
|
29
35
|
import {
|
|
30
36
|
_InstanceType,
|
|
31
|
-
CrossAccountFilterOption,
|
|
32
|
-
DataProcessing,
|
|
33
37
|
DebugHookConfig,
|
|
34
38
|
DebugRuleConfiguration,
|
|
35
|
-
DebugRuleEvaluationStatus,
|
|
36
39
|
DefaultSpaceSettings,
|
|
37
40
|
DeploymentConfig,
|
|
38
41
|
DriftCheckBaselines,
|
|
39
42
|
EdgeOutputConfig,
|
|
40
43
|
ExperimentConfig,
|
|
41
44
|
FeatureDefinition,
|
|
45
|
+
InferenceComponentRuntimeConfig,
|
|
46
|
+
InferenceComponentSpecification,
|
|
47
|
+
InferenceExecutionConfig,
|
|
42
48
|
InferenceExperimentDataStorageConfig,
|
|
43
49
|
InferenceExperimentSchedule,
|
|
44
50
|
InstanceMetadataServiceConfiguration,
|
|
45
51
|
JobType,
|
|
46
|
-
MemberDefinition,
|
|
47
52
|
ModelCardSecurityConfig,
|
|
48
53
|
ModelCardStatus,
|
|
49
|
-
ModelClientConfig,
|
|
50
54
|
ModelMetrics,
|
|
51
55
|
ModelPackageValidationSpecification,
|
|
52
56
|
ModelVariantConfig,
|
|
@@ -55,8 +59,6 @@ import {
|
|
|
55
59
|
NetworkConfig,
|
|
56
60
|
NotebookInstanceAcceleratorType,
|
|
57
61
|
NotebookInstanceLifecycleHook,
|
|
58
|
-
NotificationConfiguration,
|
|
59
|
-
OidcConfig,
|
|
60
62
|
ParallelismConfiguration,
|
|
61
63
|
PipelineDefinitionS3Location,
|
|
62
64
|
ProcessingInput,
|
|
@@ -65,58 +67,65 @@ import {
|
|
|
65
67
|
ProcessingStoppingCondition,
|
|
66
68
|
Processor,
|
|
67
69
|
ProfilerConfig,
|
|
68
|
-
ProfilerRuleConfiguration,
|
|
69
70
|
ProvisioningParameter,
|
|
70
71
|
RetryStrategy,
|
|
71
72
|
RootAccess,
|
|
72
73
|
ServiceCatalogProvisioningDetails,
|
|
73
74
|
ShadowModeConfig,
|
|
75
|
+
SharingType,
|
|
74
76
|
SkipModelValidation,
|
|
75
77
|
SourceAlgorithmSpecification,
|
|
76
|
-
SourceIpConfig,
|
|
77
78
|
SpaceSettings,
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
TrialComponentParameterValue,
|
|
81
|
-
TrialComponentStatus,
|
|
79
|
+
SpaceStorageSettings,
|
|
80
|
+
StudioLifecycleConfigAppType,
|
|
82
81
|
TtlDuration,
|
|
83
82
|
UiTemplate,
|
|
84
83
|
UserSettings,
|
|
85
84
|
VendorGuidance,
|
|
86
|
-
WorkforceVpcConfigRequest,
|
|
87
85
|
} from "./models_1";
|
|
88
86
|
import {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
Edge,
|
|
87
|
+
CrossAccountFilterOption,
|
|
88
|
+
DataProcessing,
|
|
89
|
+
DebugRuleEvaluationStatus,
|
|
90
|
+
DeploymentRecommendation,
|
|
94
91
|
EndpointStatus,
|
|
95
92
|
FeatureParameter,
|
|
93
|
+
HyperParameterTrainingJobSummary,
|
|
94
|
+
MemberDefinition,
|
|
96
95
|
MetricData,
|
|
97
96
|
ModelArtifacts,
|
|
97
|
+
ModelClientConfig,
|
|
98
98
|
ModelPackageGroupStatus,
|
|
99
99
|
ModelPackageStatusDetails,
|
|
100
100
|
MonitoringExecutionSummary,
|
|
101
|
+
NotificationConfiguration,
|
|
102
|
+
OidcConfig,
|
|
101
103
|
PipelineExecutionStatus,
|
|
102
104
|
PipelineExperimentConfig,
|
|
103
105
|
PipelineStatus,
|
|
104
106
|
ProcessingJobStatus,
|
|
107
|
+
ProfilerRuleConfiguration,
|
|
105
108
|
ProjectStatus,
|
|
106
109
|
ScheduleStatus,
|
|
107
|
-
SecondaryStatus,
|
|
108
|
-
SecondaryStatusTransition,
|
|
109
110
|
SelectiveExecutionConfig,
|
|
110
111
|
ServiceCatalogProvisionedProductDetails,
|
|
112
|
+
SourceIpConfig,
|
|
113
|
+
SpaceStatus,
|
|
114
|
+
SubscribedWorkteam,
|
|
115
|
+
TensorBoardOutputConfig,
|
|
111
116
|
TrainingJobStatus,
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
Workforce,
|
|
117
|
-
Workteam,
|
|
117
|
+
TrialComponentArtifact,
|
|
118
|
+
TrialComponentParameterValue,
|
|
119
|
+
TrialComponentStatus,
|
|
120
|
+
WorkforceVpcConfigRequest,
|
|
118
121
|
} from "./models_2";
|
|
119
122
|
import {
|
|
123
|
+
DesiredWeightAndCapacity,
|
|
124
|
+
Device,
|
|
125
|
+
DeviceDeploymentSummary,
|
|
126
|
+
Direction,
|
|
127
|
+
DomainSettingsForUpdate,
|
|
128
|
+
Edge,
|
|
120
129
|
Endpoint,
|
|
121
130
|
Experiment,
|
|
122
131
|
FeatureGroup,
|
|
@@ -126,11 +135,481 @@ import {
|
|
|
126
135
|
HyperParameterTuningJobSearchEntity,
|
|
127
136
|
InferenceExperimentStopDesiredState,
|
|
128
137
|
LineageType,
|
|
129
|
-
Model,
|
|
130
138
|
MonitoringAlertSummary,
|
|
131
|
-
|
|
139
|
+
PipelineExecutionStepMetadata,
|
|
132
140
|
ResourceType,
|
|
141
|
+
SecondaryStatus,
|
|
142
|
+
SecondaryStatusTransition,
|
|
143
|
+
SelectiveExecutionResult,
|
|
144
|
+
SortBy,
|
|
145
|
+
SortOrder,
|
|
146
|
+
TransformJobStatus,
|
|
147
|
+
TrialComponentMetricSummary,
|
|
148
|
+
TrialComponentSource,
|
|
149
|
+
TrialSource,
|
|
150
|
+
UserProfileStatus,
|
|
151
|
+
WarmPoolResourceStatus,
|
|
152
|
+
WarmPoolStatus,
|
|
153
|
+
Workforce,
|
|
154
|
+
Workteam,
|
|
133
155
|
} from "./models_3";
|
|
156
|
+
export declare const StepStatus: {
|
|
157
|
+
readonly EXECUTING: "Executing";
|
|
158
|
+
readonly FAILED: "Failed";
|
|
159
|
+
readonly STARTING: "Starting";
|
|
160
|
+
readonly STOPPED: "Stopped";
|
|
161
|
+
readonly STOPPING: "Stopping";
|
|
162
|
+
readonly SUCCEEDED: "Succeeded";
|
|
163
|
+
};
|
|
164
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
165
|
+
export interface PipelineExecutionStep {
|
|
166
|
+
StepName?: string;
|
|
167
|
+
StepDisplayName?: string;
|
|
168
|
+
StepDescription?: string;
|
|
169
|
+
StartTime?: Date;
|
|
170
|
+
EndTime?: Date;
|
|
171
|
+
StepStatus?: StepStatus;
|
|
172
|
+
CacheHitResult?: CacheHitResult;
|
|
173
|
+
AttemptCount?: number;
|
|
174
|
+
FailureReason?: string;
|
|
175
|
+
Metadata?: PipelineExecutionStepMetadata;
|
|
176
|
+
SelectiveExecutionResult?: SelectiveExecutionResult;
|
|
177
|
+
}
|
|
178
|
+
export interface ListPipelineExecutionStepsResponse {
|
|
179
|
+
PipelineExecutionSteps?: PipelineExecutionStep[];
|
|
180
|
+
NextToken?: string;
|
|
181
|
+
}
|
|
182
|
+
export interface ListPipelineParametersForExecutionRequest {
|
|
183
|
+
PipelineExecutionArn: string | undefined;
|
|
184
|
+
NextToken?: string;
|
|
185
|
+
MaxResults?: number;
|
|
186
|
+
}
|
|
187
|
+
export interface Parameter {
|
|
188
|
+
Name: string | undefined;
|
|
189
|
+
Value: string | undefined;
|
|
190
|
+
}
|
|
191
|
+
export interface ListPipelineParametersForExecutionResponse {
|
|
192
|
+
PipelineParameters?: Parameter[];
|
|
193
|
+
NextToken?: string;
|
|
194
|
+
}
|
|
195
|
+
export declare const SortPipelinesBy: {
|
|
196
|
+
readonly CREATION_TIME: "CreationTime";
|
|
197
|
+
readonly NAME: "Name";
|
|
198
|
+
};
|
|
199
|
+
export type SortPipelinesBy =
|
|
200
|
+
(typeof SortPipelinesBy)[keyof typeof SortPipelinesBy];
|
|
201
|
+
export interface ListPipelinesRequest {
|
|
202
|
+
PipelineNamePrefix?: string;
|
|
203
|
+
CreatedAfter?: Date;
|
|
204
|
+
CreatedBefore?: Date;
|
|
205
|
+
SortBy?: SortPipelinesBy;
|
|
206
|
+
SortOrder?: SortOrder;
|
|
207
|
+
NextToken?: string;
|
|
208
|
+
MaxResults?: number;
|
|
209
|
+
}
|
|
210
|
+
export interface PipelineSummary {
|
|
211
|
+
PipelineArn?: string;
|
|
212
|
+
PipelineName?: string;
|
|
213
|
+
PipelineDisplayName?: string;
|
|
214
|
+
PipelineDescription?: string;
|
|
215
|
+
RoleArn?: string;
|
|
216
|
+
CreationTime?: Date;
|
|
217
|
+
LastModifiedTime?: Date;
|
|
218
|
+
LastExecutionTime?: Date;
|
|
219
|
+
}
|
|
220
|
+
export interface ListPipelinesResponse {
|
|
221
|
+
PipelineSummaries?: PipelineSummary[];
|
|
222
|
+
NextToken?: string;
|
|
223
|
+
}
|
|
224
|
+
export interface ListProcessingJobsRequest {
|
|
225
|
+
CreationTimeAfter?: Date;
|
|
226
|
+
CreationTimeBefore?: Date;
|
|
227
|
+
LastModifiedTimeAfter?: Date;
|
|
228
|
+
LastModifiedTimeBefore?: Date;
|
|
229
|
+
NameContains?: string;
|
|
230
|
+
StatusEquals?: ProcessingJobStatus;
|
|
231
|
+
SortBy?: SortBy;
|
|
232
|
+
SortOrder?: SortOrder;
|
|
233
|
+
NextToken?: string;
|
|
234
|
+
MaxResults?: number;
|
|
235
|
+
}
|
|
236
|
+
export interface ProcessingJobSummary {
|
|
237
|
+
ProcessingJobName: string | undefined;
|
|
238
|
+
ProcessingJobArn: string | undefined;
|
|
239
|
+
CreationTime: Date | undefined;
|
|
240
|
+
ProcessingEndTime?: Date;
|
|
241
|
+
LastModifiedTime?: Date;
|
|
242
|
+
ProcessingJobStatus: ProcessingJobStatus | undefined;
|
|
243
|
+
FailureReason?: string;
|
|
244
|
+
ExitMessage?: string;
|
|
245
|
+
}
|
|
246
|
+
export interface ListProcessingJobsResponse {
|
|
247
|
+
ProcessingJobSummaries: ProcessingJobSummary[] | undefined;
|
|
248
|
+
NextToken?: string;
|
|
249
|
+
}
|
|
250
|
+
export declare const ProjectSortBy: {
|
|
251
|
+
readonly CREATION_TIME: "CreationTime";
|
|
252
|
+
readonly NAME: "Name";
|
|
253
|
+
};
|
|
254
|
+
export type ProjectSortBy = (typeof ProjectSortBy)[keyof typeof ProjectSortBy];
|
|
255
|
+
export declare const ProjectSortOrder: {
|
|
256
|
+
readonly ASCENDING: "Ascending";
|
|
257
|
+
readonly DESCENDING: "Descending";
|
|
258
|
+
};
|
|
259
|
+
export type ProjectSortOrder =
|
|
260
|
+
(typeof ProjectSortOrder)[keyof typeof ProjectSortOrder];
|
|
261
|
+
export interface ListProjectsInput {
|
|
262
|
+
CreationTimeAfter?: Date;
|
|
263
|
+
CreationTimeBefore?: Date;
|
|
264
|
+
MaxResults?: number;
|
|
265
|
+
NameContains?: string;
|
|
266
|
+
NextToken?: string;
|
|
267
|
+
SortBy?: ProjectSortBy;
|
|
268
|
+
SortOrder?: ProjectSortOrder;
|
|
269
|
+
}
|
|
270
|
+
export interface ProjectSummary {
|
|
271
|
+
ProjectName: string | undefined;
|
|
272
|
+
ProjectDescription?: string;
|
|
273
|
+
ProjectArn: string | undefined;
|
|
274
|
+
ProjectId: string | undefined;
|
|
275
|
+
CreationTime: Date | undefined;
|
|
276
|
+
ProjectStatus: ProjectStatus | undefined;
|
|
277
|
+
}
|
|
278
|
+
export interface ListProjectsOutput {
|
|
279
|
+
ProjectSummaryList: ProjectSummary[] | undefined;
|
|
280
|
+
NextToken?: string;
|
|
281
|
+
}
|
|
282
|
+
export declare const ResourceCatalogSortBy: {
|
|
283
|
+
readonly CREATION_TIME: "CreationTime";
|
|
284
|
+
};
|
|
285
|
+
export type ResourceCatalogSortBy =
|
|
286
|
+
(typeof ResourceCatalogSortBy)[keyof typeof ResourceCatalogSortBy];
|
|
287
|
+
export declare const ResourceCatalogSortOrder: {
|
|
288
|
+
readonly ASCENDING: "Ascending";
|
|
289
|
+
readonly DESCENDING: "Descending";
|
|
290
|
+
};
|
|
291
|
+
export type ResourceCatalogSortOrder =
|
|
292
|
+
(typeof ResourceCatalogSortOrder)[keyof typeof ResourceCatalogSortOrder];
|
|
293
|
+
export interface ListResourceCatalogsRequest {
|
|
294
|
+
NameContains?: string;
|
|
295
|
+
CreationTimeAfter?: Date;
|
|
296
|
+
CreationTimeBefore?: Date;
|
|
297
|
+
SortOrder?: ResourceCatalogSortOrder;
|
|
298
|
+
SortBy?: ResourceCatalogSortBy;
|
|
299
|
+
MaxResults?: number;
|
|
300
|
+
NextToken?: string;
|
|
301
|
+
}
|
|
302
|
+
export interface ResourceCatalog {
|
|
303
|
+
ResourceCatalogArn: string | undefined;
|
|
304
|
+
ResourceCatalogName: string | undefined;
|
|
305
|
+
Description: string | undefined;
|
|
306
|
+
CreationTime: Date | undefined;
|
|
307
|
+
}
|
|
308
|
+
export interface ListResourceCatalogsResponse {
|
|
309
|
+
ResourceCatalogs?: ResourceCatalog[];
|
|
310
|
+
NextToken?: string;
|
|
311
|
+
}
|
|
312
|
+
export declare const SpaceSortKey: {
|
|
313
|
+
readonly CreationTime: "CreationTime";
|
|
314
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
315
|
+
};
|
|
316
|
+
export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
|
|
317
|
+
export interface ListSpacesRequest {
|
|
318
|
+
NextToken?: string;
|
|
319
|
+
MaxResults?: number;
|
|
320
|
+
SortOrder?: SortOrder;
|
|
321
|
+
SortBy?: SpaceSortKey;
|
|
322
|
+
DomainIdEquals?: string;
|
|
323
|
+
SpaceNameContains?: string;
|
|
324
|
+
}
|
|
325
|
+
export interface OwnershipSettingsSummary {
|
|
326
|
+
OwnerUserProfileName?: string;
|
|
327
|
+
}
|
|
328
|
+
export interface SpaceSettingsSummary {
|
|
329
|
+
AppType?: AppType;
|
|
330
|
+
SpaceStorageSettings?: SpaceStorageSettings;
|
|
331
|
+
}
|
|
332
|
+
export interface SpaceSharingSettingsSummary {
|
|
333
|
+
SharingType?: SharingType;
|
|
334
|
+
}
|
|
335
|
+
export interface SpaceDetails {
|
|
336
|
+
DomainId?: string;
|
|
337
|
+
SpaceName?: string;
|
|
338
|
+
Status?: SpaceStatus;
|
|
339
|
+
CreationTime?: Date;
|
|
340
|
+
LastModifiedTime?: Date;
|
|
341
|
+
SpaceDisplayName?: string;
|
|
342
|
+
SpaceSettingsSummary?: SpaceSettingsSummary;
|
|
343
|
+
SpaceSharingSettingsSummary?: SpaceSharingSettingsSummary;
|
|
344
|
+
OwnershipSettingsSummary?: OwnershipSettingsSummary;
|
|
345
|
+
}
|
|
346
|
+
export interface ListSpacesResponse {
|
|
347
|
+
Spaces?: SpaceDetails[];
|
|
348
|
+
NextToken?: string;
|
|
349
|
+
}
|
|
350
|
+
export interface ListStageDevicesRequest {
|
|
351
|
+
NextToken?: string;
|
|
352
|
+
MaxResults?: number;
|
|
353
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
354
|
+
ExcludeDevicesDeployedInOtherStage?: boolean;
|
|
355
|
+
StageName: string | undefined;
|
|
356
|
+
}
|
|
357
|
+
export interface ListStageDevicesResponse {
|
|
358
|
+
DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
|
|
359
|
+
NextToken?: string;
|
|
360
|
+
}
|
|
361
|
+
export declare const StudioLifecycleConfigSortKey: {
|
|
362
|
+
readonly CreationTime: "CreationTime";
|
|
363
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
364
|
+
readonly Name: "Name";
|
|
365
|
+
};
|
|
366
|
+
export type StudioLifecycleConfigSortKey =
|
|
367
|
+
(typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
|
|
368
|
+
export interface ListStudioLifecycleConfigsRequest {
|
|
369
|
+
MaxResults?: number;
|
|
370
|
+
NextToken?: string;
|
|
371
|
+
NameContains?: string;
|
|
372
|
+
AppTypeEquals?: StudioLifecycleConfigAppType;
|
|
373
|
+
CreationTimeBefore?: Date;
|
|
374
|
+
CreationTimeAfter?: Date;
|
|
375
|
+
ModifiedTimeBefore?: Date;
|
|
376
|
+
ModifiedTimeAfter?: Date;
|
|
377
|
+
SortBy?: StudioLifecycleConfigSortKey;
|
|
378
|
+
SortOrder?: SortOrder;
|
|
379
|
+
}
|
|
380
|
+
export interface StudioLifecycleConfigDetails {
|
|
381
|
+
StudioLifecycleConfigArn?: string;
|
|
382
|
+
StudioLifecycleConfigName?: string;
|
|
383
|
+
CreationTime?: Date;
|
|
384
|
+
LastModifiedTime?: Date;
|
|
385
|
+
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
386
|
+
}
|
|
387
|
+
export interface ListStudioLifecycleConfigsResponse {
|
|
388
|
+
NextToken?: string;
|
|
389
|
+
StudioLifecycleConfigs?: StudioLifecycleConfigDetails[];
|
|
390
|
+
}
|
|
391
|
+
export interface ListSubscribedWorkteamsRequest {
|
|
392
|
+
NameContains?: string;
|
|
393
|
+
NextToken?: string;
|
|
394
|
+
MaxResults?: number;
|
|
395
|
+
}
|
|
396
|
+
export interface ListSubscribedWorkteamsResponse {
|
|
397
|
+
SubscribedWorkteams: SubscribedWorkteam[] | undefined;
|
|
398
|
+
NextToken?: string;
|
|
399
|
+
}
|
|
400
|
+
export interface ListTagsInput {
|
|
401
|
+
ResourceArn: string | undefined;
|
|
402
|
+
NextToken?: string;
|
|
403
|
+
MaxResults?: number;
|
|
404
|
+
}
|
|
405
|
+
export interface ListTagsOutput {
|
|
406
|
+
Tags?: Tag[];
|
|
407
|
+
NextToken?: string;
|
|
408
|
+
}
|
|
409
|
+
export interface ListTrainingJobsRequest {
|
|
410
|
+
NextToken?: string;
|
|
411
|
+
MaxResults?: number;
|
|
412
|
+
CreationTimeAfter?: Date;
|
|
413
|
+
CreationTimeBefore?: Date;
|
|
414
|
+
LastModifiedTimeAfter?: Date;
|
|
415
|
+
LastModifiedTimeBefore?: Date;
|
|
416
|
+
NameContains?: string;
|
|
417
|
+
StatusEquals?: TrainingJobStatus;
|
|
418
|
+
SortBy?: SortBy;
|
|
419
|
+
SortOrder?: SortOrder;
|
|
420
|
+
WarmPoolStatusEquals?: WarmPoolResourceStatus;
|
|
421
|
+
}
|
|
422
|
+
export interface TrainingJobSummary {
|
|
423
|
+
TrainingJobName: string | undefined;
|
|
424
|
+
TrainingJobArn: string | undefined;
|
|
425
|
+
CreationTime: Date | undefined;
|
|
426
|
+
TrainingEndTime?: Date;
|
|
427
|
+
LastModifiedTime?: Date;
|
|
428
|
+
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
429
|
+
WarmPoolStatus?: WarmPoolStatus;
|
|
430
|
+
}
|
|
431
|
+
export interface ListTrainingJobsResponse {
|
|
432
|
+
TrainingJobSummaries: TrainingJobSummary[] | undefined;
|
|
433
|
+
NextToken?: string;
|
|
434
|
+
}
|
|
435
|
+
export declare const TrainingJobSortByOptions: {
|
|
436
|
+
readonly CreationTime: "CreationTime";
|
|
437
|
+
readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
|
|
438
|
+
readonly Name: "Name";
|
|
439
|
+
readonly Status: "Status";
|
|
440
|
+
};
|
|
441
|
+
export type TrainingJobSortByOptions =
|
|
442
|
+
(typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
|
|
443
|
+
export interface ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
444
|
+
HyperParameterTuningJobName: string | undefined;
|
|
445
|
+
NextToken?: string;
|
|
446
|
+
MaxResults?: number;
|
|
447
|
+
StatusEquals?: TrainingJobStatus;
|
|
448
|
+
SortBy?: TrainingJobSortByOptions;
|
|
449
|
+
SortOrder?: SortOrder;
|
|
450
|
+
}
|
|
451
|
+
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
452
|
+
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
453
|
+
NextToken?: string;
|
|
454
|
+
}
|
|
455
|
+
export interface ListTransformJobsRequest {
|
|
456
|
+
CreationTimeAfter?: Date;
|
|
457
|
+
CreationTimeBefore?: Date;
|
|
458
|
+
LastModifiedTimeAfter?: Date;
|
|
459
|
+
LastModifiedTimeBefore?: Date;
|
|
460
|
+
NameContains?: string;
|
|
461
|
+
StatusEquals?: TransformJobStatus;
|
|
462
|
+
SortBy?: SortBy;
|
|
463
|
+
SortOrder?: SortOrder;
|
|
464
|
+
NextToken?: string;
|
|
465
|
+
MaxResults?: number;
|
|
466
|
+
}
|
|
467
|
+
export interface TransformJobSummary {
|
|
468
|
+
TransformJobName: string | undefined;
|
|
469
|
+
TransformJobArn: string | undefined;
|
|
470
|
+
CreationTime: Date | undefined;
|
|
471
|
+
TransformEndTime?: Date;
|
|
472
|
+
LastModifiedTime?: Date;
|
|
473
|
+
TransformJobStatus: TransformJobStatus | undefined;
|
|
474
|
+
FailureReason?: string;
|
|
475
|
+
}
|
|
476
|
+
export interface ListTransformJobsResponse {
|
|
477
|
+
TransformJobSummaries: TransformJobSummary[] | undefined;
|
|
478
|
+
NextToken?: string;
|
|
479
|
+
}
|
|
480
|
+
export declare const SortTrialComponentsBy: {
|
|
481
|
+
readonly CREATION_TIME: "CreationTime";
|
|
482
|
+
readonly NAME: "Name";
|
|
483
|
+
};
|
|
484
|
+
export type SortTrialComponentsBy =
|
|
485
|
+
(typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
|
|
486
|
+
export interface ListTrialComponentsRequest {
|
|
487
|
+
ExperimentName?: string;
|
|
488
|
+
TrialName?: string;
|
|
489
|
+
SourceArn?: string;
|
|
490
|
+
CreatedAfter?: Date;
|
|
491
|
+
CreatedBefore?: Date;
|
|
492
|
+
SortBy?: SortTrialComponentsBy;
|
|
493
|
+
SortOrder?: SortOrder;
|
|
494
|
+
MaxResults?: number;
|
|
495
|
+
NextToken?: string;
|
|
496
|
+
}
|
|
497
|
+
export interface TrialComponentSummary {
|
|
498
|
+
TrialComponentName?: string;
|
|
499
|
+
TrialComponentArn?: string;
|
|
500
|
+
DisplayName?: string;
|
|
501
|
+
TrialComponentSource?: TrialComponentSource;
|
|
502
|
+
Status?: TrialComponentStatus;
|
|
503
|
+
StartTime?: Date;
|
|
504
|
+
EndTime?: Date;
|
|
505
|
+
CreationTime?: Date;
|
|
506
|
+
CreatedBy?: UserContext;
|
|
507
|
+
LastModifiedTime?: Date;
|
|
508
|
+
LastModifiedBy?: UserContext;
|
|
509
|
+
}
|
|
510
|
+
export interface ListTrialComponentsResponse {
|
|
511
|
+
TrialComponentSummaries?: TrialComponentSummary[];
|
|
512
|
+
NextToken?: string;
|
|
513
|
+
}
|
|
514
|
+
export declare const SortTrialsBy: {
|
|
515
|
+
readonly CREATION_TIME: "CreationTime";
|
|
516
|
+
readonly NAME: "Name";
|
|
517
|
+
};
|
|
518
|
+
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
519
|
+
export interface ListTrialsRequest {
|
|
520
|
+
ExperimentName?: string;
|
|
521
|
+
TrialComponentName?: string;
|
|
522
|
+
CreatedAfter?: Date;
|
|
523
|
+
CreatedBefore?: Date;
|
|
524
|
+
SortBy?: SortTrialsBy;
|
|
525
|
+
SortOrder?: SortOrder;
|
|
526
|
+
MaxResults?: number;
|
|
527
|
+
NextToken?: string;
|
|
528
|
+
}
|
|
529
|
+
export interface TrialSummary {
|
|
530
|
+
TrialArn?: string;
|
|
531
|
+
TrialName?: string;
|
|
532
|
+
DisplayName?: string;
|
|
533
|
+
TrialSource?: TrialSource;
|
|
534
|
+
CreationTime?: Date;
|
|
535
|
+
LastModifiedTime?: Date;
|
|
536
|
+
}
|
|
537
|
+
export interface ListTrialsResponse {
|
|
538
|
+
TrialSummaries?: TrialSummary[];
|
|
539
|
+
NextToken?: string;
|
|
540
|
+
}
|
|
541
|
+
export declare const UserProfileSortKey: {
|
|
542
|
+
readonly CreationTime: "CreationTime";
|
|
543
|
+
readonly LastModifiedTime: "LastModifiedTime";
|
|
544
|
+
};
|
|
545
|
+
export type UserProfileSortKey =
|
|
546
|
+
(typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
547
|
+
export interface ListUserProfilesRequest {
|
|
548
|
+
NextToken?: string;
|
|
549
|
+
MaxResults?: number;
|
|
550
|
+
SortOrder?: SortOrder;
|
|
551
|
+
SortBy?: UserProfileSortKey;
|
|
552
|
+
DomainIdEquals?: string;
|
|
553
|
+
UserProfileNameContains?: string;
|
|
554
|
+
}
|
|
555
|
+
export interface UserProfileDetails {
|
|
556
|
+
DomainId?: string;
|
|
557
|
+
UserProfileName?: string;
|
|
558
|
+
Status?: UserProfileStatus;
|
|
559
|
+
CreationTime?: Date;
|
|
560
|
+
LastModifiedTime?: Date;
|
|
561
|
+
}
|
|
562
|
+
export interface ListUserProfilesResponse {
|
|
563
|
+
UserProfiles?: UserProfileDetails[];
|
|
564
|
+
NextToken?: string;
|
|
565
|
+
}
|
|
566
|
+
export declare const ListWorkforcesSortByOptions: {
|
|
567
|
+
readonly CreateDate: "CreateDate";
|
|
568
|
+
readonly Name: "Name";
|
|
569
|
+
};
|
|
570
|
+
export type ListWorkforcesSortByOptions =
|
|
571
|
+
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
572
|
+
export interface ListWorkforcesRequest {
|
|
573
|
+
SortBy?: ListWorkforcesSortByOptions;
|
|
574
|
+
SortOrder?: SortOrder;
|
|
575
|
+
NameContains?: string;
|
|
576
|
+
NextToken?: string;
|
|
577
|
+
MaxResults?: number;
|
|
578
|
+
}
|
|
579
|
+
export interface ListWorkforcesResponse {
|
|
580
|
+
Workforces: Workforce[] | undefined;
|
|
581
|
+
NextToken?: string;
|
|
582
|
+
}
|
|
583
|
+
export declare const ListWorkteamsSortByOptions: {
|
|
584
|
+
readonly CreateDate: "CreateDate";
|
|
585
|
+
readonly Name: "Name";
|
|
586
|
+
};
|
|
587
|
+
export type ListWorkteamsSortByOptions =
|
|
588
|
+
(typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
|
|
589
|
+
export interface ListWorkteamsRequest {
|
|
590
|
+
SortBy?: ListWorkteamsSortByOptions;
|
|
591
|
+
SortOrder?: SortOrder;
|
|
592
|
+
NameContains?: string;
|
|
593
|
+
NextToken?: string;
|
|
594
|
+
MaxResults?: number;
|
|
595
|
+
}
|
|
596
|
+
export interface ListWorkteamsResponse {
|
|
597
|
+
Workteams: Workteam[] | undefined;
|
|
598
|
+
NextToken?: string;
|
|
599
|
+
}
|
|
600
|
+
export interface Model {
|
|
601
|
+
ModelName?: string;
|
|
602
|
+
PrimaryContainer?: ContainerDefinition;
|
|
603
|
+
Containers?: ContainerDefinition[];
|
|
604
|
+
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
605
|
+
ExecutionRoleArn?: string;
|
|
606
|
+
VpcConfig?: VpcConfig;
|
|
607
|
+
CreationTime?: Date;
|
|
608
|
+
ModelArn?: string;
|
|
609
|
+
EnableNetworkIsolation?: boolean;
|
|
610
|
+
Tags?: Tag[];
|
|
611
|
+
DeploymentRecommendation?: DeploymentRecommendation;
|
|
612
|
+
}
|
|
134
613
|
export interface ModelCard {
|
|
135
614
|
ModelCardArn?: string;
|
|
136
615
|
ModelCardName?: string;
|
|
@@ -640,6 +1119,7 @@ export interface UpdateActionResponse {
|
|
|
640
1119
|
export interface UpdateAppImageConfigRequest {
|
|
641
1120
|
AppImageConfigName: string | undefined;
|
|
642
1121
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
1122
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
643
1123
|
}
|
|
644
1124
|
export interface UpdateAppImageConfigResponse {
|
|
645
1125
|
AppImageConfigArn?: string;
|
|
@@ -653,6 +1133,13 @@ export interface UpdateArtifactRequest {
|
|
|
653
1133
|
export interface UpdateArtifactResponse {
|
|
654
1134
|
ArtifactArn?: string;
|
|
655
1135
|
}
|
|
1136
|
+
export interface UpdateClusterRequest {
|
|
1137
|
+
ClusterName: string | undefined;
|
|
1138
|
+
InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
|
|
1139
|
+
}
|
|
1140
|
+
export interface UpdateClusterResponse {
|
|
1141
|
+
ClusterArn: string | undefined;
|
|
1142
|
+
}
|
|
656
1143
|
export interface UpdateCodeRepositoryInput {
|
|
657
1144
|
CodeRepositoryName: string | undefined;
|
|
658
1145
|
GitConfig?: GitConfigForUpdate;
|
|
@@ -686,6 +1173,8 @@ export interface UpdateDomainRequest {
|
|
|
686
1173
|
DomainSettingsForUpdate?: DomainSettingsForUpdate;
|
|
687
1174
|
DefaultSpaceSettings?: DefaultSpaceSettings;
|
|
688
1175
|
AppSecurityGroupManagement?: AppSecurityGroupManagement;
|
|
1176
|
+
SubnetIds?: string[];
|
|
1177
|
+
AppNetworkAccessType?: AppNetworkAccessType;
|
|
689
1178
|
}
|
|
690
1179
|
export interface UpdateDomainResponse {
|
|
691
1180
|
DomainArn?: string;
|
|
@@ -777,6 +1266,21 @@ export interface UpdateImageVersionRequest {
|
|
|
777
1266
|
export interface UpdateImageVersionResponse {
|
|
778
1267
|
ImageVersionArn?: string;
|
|
779
1268
|
}
|
|
1269
|
+
export interface UpdateInferenceComponentInput {
|
|
1270
|
+
InferenceComponentName: string | undefined;
|
|
1271
|
+
Specification?: InferenceComponentSpecification;
|
|
1272
|
+
RuntimeConfig?: InferenceComponentRuntimeConfig;
|
|
1273
|
+
}
|
|
1274
|
+
export interface UpdateInferenceComponentOutput {
|
|
1275
|
+
InferenceComponentArn: string | undefined;
|
|
1276
|
+
}
|
|
1277
|
+
export interface UpdateInferenceComponentRuntimeConfigInput {
|
|
1278
|
+
InferenceComponentName: string | undefined;
|
|
1279
|
+
DesiredRuntimeConfig: InferenceComponentRuntimeConfig | undefined;
|
|
1280
|
+
}
|
|
1281
|
+
export interface UpdateInferenceComponentRuntimeConfigOutput {
|
|
1282
|
+
InferenceComponentArn: string | undefined;
|
|
1283
|
+
}
|
|
780
1284
|
export interface UpdateInferenceExperimentRequest {
|
|
781
1285
|
Name: string | undefined;
|
|
782
1286
|
Schedule?: InferenceExperimentSchedule;
|
|
@@ -885,6 +1389,7 @@ export interface UpdateSpaceRequest {
|
|
|
885
1389
|
DomainId: string | undefined;
|
|
886
1390
|
SpaceName: string | undefined;
|
|
887
1391
|
SpaceSettings?: SpaceSettings;
|
|
1392
|
+
SpaceDisplayName?: string;
|
|
888
1393
|
}
|
|
889
1394
|
export interface UpdateSpaceResponse {
|
|
890
1395
|
SpaceArn?: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInferenceComponentsCommandInput,
|
|
4
|
+
ListInferenceComponentsCommandOutput,
|
|
5
|
+
} from "../commands/ListInferenceComponentsCommand";
|
|
6
|
+
import { SageMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListInferenceComponents(
|
|
8
|
+
config: SageMakerPaginationConfiguration,
|
|
9
|
+
input: ListInferenceComponentsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListInferenceComponentsCommandOutput>;
|
|
@@ -25,6 +25,7 @@ export * from "./ListHumanTaskUisPaginator";
|
|
|
25
25
|
export * from "./ListHyperParameterTuningJobsPaginator";
|
|
26
26
|
export * from "./ListImageVersionsPaginator";
|
|
27
27
|
export * from "./ListImagesPaginator";
|
|
28
|
+
export * from "./ListInferenceComponentsPaginator";
|
|
28
29
|
export * from "./ListInferenceExperimentsPaginator";
|
|
29
30
|
export * from "./ListInferenceRecommendationsJobStepsPaginator";
|
|
30
31
|
export * from "./ListInferenceRecommendationsJobsPaginator";
|