@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
|
@@ -12,7 +12,6 @@ import {
|
|
|
12
12
|
AppStatus,
|
|
13
13
|
AppType,
|
|
14
14
|
ArtifactSource,
|
|
15
|
-
AssociationEdgeType,
|
|
16
15
|
AsyncInferenceConfig,
|
|
17
16
|
AuthMode,
|
|
18
17
|
AutoMLCandidate,
|
|
@@ -34,26 +33,27 @@ import {
|
|
|
34
33
|
Autotune,
|
|
35
34
|
BatchDataCaptureConfig,
|
|
36
35
|
BatchStrategy,
|
|
36
|
+
CaptureStatus,
|
|
37
37
|
Channel,
|
|
38
38
|
CheckpointConfig,
|
|
39
|
+
ClusterInstanceGroupDetails,
|
|
40
|
+
ClusterNodeDetails,
|
|
41
|
+
ClusterStatus,
|
|
39
42
|
CognitoConfig,
|
|
43
|
+
CognitoMemberDefinition,
|
|
40
44
|
CompilationJobStatus,
|
|
41
45
|
ContainerDefinition,
|
|
42
46
|
ContextSource,
|
|
43
|
-
DataQualityAppSpecification,
|
|
44
|
-
DataQualityBaselineConfig,
|
|
45
|
-
DataQualityJobInput,
|
|
46
47
|
GitConfig,
|
|
47
48
|
HyperParameterTuningJobObjectiveType,
|
|
48
49
|
InferenceSpecification,
|
|
49
50
|
InputConfig,
|
|
51
|
+
JupyterLabAppImageConfig,
|
|
50
52
|
KernelGatewayImageConfig,
|
|
51
53
|
MetadataProperties,
|
|
52
54
|
ModelApprovalStatus,
|
|
53
55
|
ModelDeployConfig,
|
|
54
56
|
ModelPackageStatus,
|
|
55
|
-
MonitoringOutputConfig,
|
|
56
|
-
MonitoringResources,
|
|
57
57
|
NeoVpcConfig,
|
|
58
58
|
ObjectiveStatus,
|
|
59
59
|
OutputConfig,
|
|
@@ -73,13 +73,12 @@ import {
|
|
|
73
73
|
} from "./models_0";
|
|
74
74
|
import {
|
|
75
75
|
_InstanceType,
|
|
76
|
-
CustomizedMetricSpecification,
|
|
77
76
|
DataCaptureConfig,
|
|
78
|
-
|
|
79
|
-
|
|
77
|
+
DataQualityAppSpecification,
|
|
78
|
+
DataQualityBaselineConfig,
|
|
79
|
+
DataQualityJobInput,
|
|
80
80
|
DebugHookConfig,
|
|
81
81
|
DebugRuleConfiguration,
|
|
82
|
-
DebugRuleEvaluationStatus,
|
|
83
82
|
DefaultSpaceSettings,
|
|
84
83
|
DeploymentConfig,
|
|
85
84
|
DeviceSelectionConfig,
|
|
@@ -91,7 +90,6 @@ import {
|
|
|
91
90
|
EdgeOutputConfig,
|
|
92
91
|
EdgePresetDeploymentType,
|
|
93
92
|
EndpointInfo,
|
|
94
|
-
ExecutionRoleIdentityConfig,
|
|
95
93
|
ExperimentConfig,
|
|
96
94
|
ExplainerConfig,
|
|
97
95
|
FeatureDefinition,
|
|
@@ -105,24 +103,25 @@ import {
|
|
|
105
103
|
HyperParameterTrainingJobDefinition,
|
|
106
104
|
HyperParameterTuningJobConfig,
|
|
107
105
|
HyperParameterTuningJobWarmStartConfig,
|
|
106
|
+
InferenceComponentComputeResourceRequirements,
|
|
107
|
+
InferenceComponentStartupParameters,
|
|
108
108
|
InferenceExecutionConfig,
|
|
109
109
|
InferenceExperimentDataStorageConfig,
|
|
110
110
|
InferenceExperimentSchedule,
|
|
111
111
|
InferenceExperimentType,
|
|
112
|
+
InfraCheckConfig,
|
|
112
113
|
InstanceMetadataServiceConfiguration,
|
|
113
114
|
JobType,
|
|
114
115
|
LabelingJobAlgorithmsConfig,
|
|
115
116
|
LabelingJobInputConfig,
|
|
116
117
|
LabelingJobOutputConfig,
|
|
117
118
|
LabelingJobStoppingConditions,
|
|
118
|
-
MemberDefinition,
|
|
119
119
|
ModelBiasAppSpecification,
|
|
120
120
|
ModelBiasBaselineConfig,
|
|
121
121
|
ModelBiasJobInput,
|
|
122
122
|
ModelCardExportOutputConfig,
|
|
123
123
|
ModelCardSecurityConfig,
|
|
124
124
|
ModelCardStatus,
|
|
125
|
-
ModelClientConfig,
|
|
126
125
|
ModelExplainabilityAppSpecification,
|
|
127
126
|
ModelExplainabilityBaselineConfig,
|
|
128
127
|
ModelExplainabilityJobInput,
|
|
@@ -133,46 +132,335 @@ import {
|
|
|
133
132
|
ModelQualityBaselineConfig,
|
|
134
133
|
ModelQualityJobInput,
|
|
135
134
|
MonitoringNetworkConfig,
|
|
135
|
+
MonitoringOutputConfig,
|
|
136
|
+
MonitoringResources,
|
|
136
137
|
MonitoringScheduleConfig,
|
|
137
138
|
MonitoringStoppingCondition,
|
|
138
139
|
MonitoringType,
|
|
139
140
|
NetworkConfig,
|
|
140
141
|
NotebookInstanceAcceleratorType,
|
|
141
142
|
NotebookInstanceLifecycleHook,
|
|
142
|
-
NotificationConfiguration,
|
|
143
143
|
OfflineStoreConfig,
|
|
144
144
|
OnlineStoreConfig,
|
|
145
|
+
OwnershipSettings,
|
|
145
146
|
ParallelismConfiguration,
|
|
146
147
|
ProcessingInput,
|
|
148
|
+
ProcessingInstanceType,
|
|
147
149
|
ProcessingOutputConfig,
|
|
148
150
|
ProcessingResources,
|
|
149
151
|
ProcessingStoppingCondition,
|
|
150
152
|
Processor,
|
|
151
153
|
ProductionVariant,
|
|
152
154
|
ProductionVariantAcceleratorType,
|
|
155
|
+
ProductionVariantManagedInstanceScaling,
|
|
156
|
+
ProductionVariantRoutingConfig,
|
|
153
157
|
ProductionVariantServerlessConfig,
|
|
154
158
|
ProfilerConfig,
|
|
155
|
-
ProfilerRuleConfiguration,
|
|
156
159
|
RecommendationJobInputConfig,
|
|
157
160
|
RecommendationJobStoppingConditions,
|
|
158
161
|
RecommendationJobType,
|
|
159
162
|
RetryStrategy,
|
|
160
163
|
RootAccess,
|
|
161
|
-
RuleEvaluationStatus,
|
|
162
164
|
ServiceCatalogProvisioningDetails,
|
|
163
165
|
ShadowModeConfig,
|
|
164
166
|
SkipModelValidation,
|
|
165
167
|
SourceAlgorithmSpecification,
|
|
166
|
-
SourceIpConfig,
|
|
167
168
|
SpaceSettings,
|
|
169
|
+
SpaceSharingSettings,
|
|
168
170
|
StudioLifecycleConfigAppType,
|
|
169
|
-
TensorBoardOutputConfig,
|
|
170
|
-
TrialComponentArtifact,
|
|
171
|
-
TrialComponentParameterValue,
|
|
172
|
-
TrialComponentStatus,
|
|
173
171
|
UserSettings,
|
|
174
172
|
VendorGuidance,
|
|
175
173
|
} from "./models_1";
|
|
174
|
+
export interface ProfilerRuleConfiguration {
|
|
175
|
+
RuleConfigurationName: string | undefined;
|
|
176
|
+
LocalPath?: string;
|
|
177
|
+
S3OutputPath?: string;
|
|
178
|
+
RuleEvaluatorImage: string | undefined;
|
|
179
|
+
InstanceType?: ProcessingInstanceType;
|
|
180
|
+
VolumeSizeInGB?: number;
|
|
181
|
+
RuleParameters?: Record<string, string>;
|
|
182
|
+
}
|
|
183
|
+
export interface TensorBoardOutputConfig {
|
|
184
|
+
LocalPath?: string;
|
|
185
|
+
S3OutputPath: string | undefined;
|
|
186
|
+
}
|
|
187
|
+
export interface CreateTrainingJobRequest {
|
|
188
|
+
TrainingJobName: string | undefined;
|
|
189
|
+
HyperParameters?: Record<string, string>;
|
|
190
|
+
AlgorithmSpecification: AlgorithmSpecification | undefined;
|
|
191
|
+
RoleArn: string | undefined;
|
|
192
|
+
InputDataConfig?: Channel[];
|
|
193
|
+
OutputDataConfig: OutputDataConfig | undefined;
|
|
194
|
+
ResourceConfig: ResourceConfig | undefined;
|
|
195
|
+
VpcConfig?: VpcConfig;
|
|
196
|
+
StoppingCondition: StoppingCondition | undefined;
|
|
197
|
+
Tags?: Tag[];
|
|
198
|
+
EnableNetworkIsolation?: boolean;
|
|
199
|
+
EnableInterContainerTrafficEncryption?: boolean;
|
|
200
|
+
EnableManagedSpotTraining?: boolean;
|
|
201
|
+
CheckpointConfig?: CheckpointConfig;
|
|
202
|
+
DebugHookConfig?: DebugHookConfig;
|
|
203
|
+
DebugRuleConfigurations?: DebugRuleConfiguration[];
|
|
204
|
+
TensorBoardOutputConfig?: TensorBoardOutputConfig;
|
|
205
|
+
ExperimentConfig?: ExperimentConfig;
|
|
206
|
+
ProfilerConfig?: ProfilerConfig;
|
|
207
|
+
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
208
|
+
Environment?: Record<string, string>;
|
|
209
|
+
RetryStrategy?: RetryStrategy;
|
|
210
|
+
InfraCheckConfig?: InfraCheckConfig;
|
|
211
|
+
}
|
|
212
|
+
export interface CreateTrainingJobResponse {
|
|
213
|
+
TrainingJobArn: string | undefined;
|
|
214
|
+
}
|
|
215
|
+
export declare const JoinSource: {
|
|
216
|
+
readonly INPUT: "Input";
|
|
217
|
+
readonly NONE: "None";
|
|
218
|
+
};
|
|
219
|
+
export type JoinSource = (typeof JoinSource)[keyof typeof JoinSource];
|
|
220
|
+
export interface DataProcessing {
|
|
221
|
+
InputFilter?: string;
|
|
222
|
+
OutputFilter?: string;
|
|
223
|
+
JoinSource?: JoinSource;
|
|
224
|
+
}
|
|
225
|
+
export interface ModelClientConfig {
|
|
226
|
+
InvocationsTimeoutInSeconds?: number;
|
|
227
|
+
InvocationsMaxRetries?: number;
|
|
228
|
+
}
|
|
229
|
+
export interface CreateTransformJobRequest {
|
|
230
|
+
TransformJobName: string | undefined;
|
|
231
|
+
ModelName: string | undefined;
|
|
232
|
+
MaxConcurrentTransforms?: number;
|
|
233
|
+
ModelClientConfig?: ModelClientConfig;
|
|
234
|
+
MaxPayloadInMB?: number;
|
|
235
|
+
BatchStrategy?: BatchStrategy;
|
|
236
|
+
Environment?: Record<string, string>;
|
|
237
|
+
TransformInput: TransformInput | undefined;
|
|
238
|
+
TransformOutput: TransformOutput | undefined;
|
|
239
|
+
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
240
|
+
TransformResources: TransformResources | undefined;
|
|
241
|
+
DataProcessing?: DataProcessing;
|
|
242
|
+
Tags?: Tag[];
|
|
243
|
+
ExperimentConfig?: ExperimentConfig;
|
|
244
|
+
}
|
|
245
|
+
export interface CreateTransformJobResponse {
|
|
246
|
+
TransformJobArn: string | undefined;
|
|
247
|
+
}
|
|
248
|
+
export interface CreateTrialRequest {
|
|
249
|
+
TrialName: string | undefined;
|
|
250
|
+
DisplayName?: string;
|
|
251
|
+
ExperimentName: string | undefined;
|
|
252
|
+
MetadataProperties?: MetadataProperties;
|
|
253
|
+
Tags?: Tag[];
|
|
254
|
+
}
|
|
255
|
+
export interface CreateTrialResponse {
|
|
256
|
+
TrialArn?: string;
|
|
257
|
+
}
|
|
258
|
+
export interface TrialComponentArtifact {
|
|
259
|
+
MediaType?: string;
|
|
260
|
+
Value: string | undefined;
|
|
261
|
+
}
|
|
262
|
+
export type TrialComponentParameterValue =
|
|
263
|
+
| TrialComponentParameterValue.NumberValueMember
|
|
264
|
+
| TrialComponentParameterValue.StringValueMember
|
|
265
|
+
| TrialComponentParameterValue.$UnknownMember;
|
|
266
|
+
export declare namespace TrialComponentParameterValue {
|
|
267
|
+
interface StringValueMember {
|
|
268
|
+
StringValue: string;
|
|
269
|
+
NumberValue?: never;
|
|
270
|
+
$unknown?: never;
|
|
271
|
+
}
|
|
272
|
+
interface NumberValueMember {
|
|
273
|
+
StringValue?: never;
|
|
274
|
+
NumberValue: number;
|
|
275
|
+
$unknown?: never;
|
|
276
|
+
}
|
|
277
|
+
interface $UnknownMember {
|
|
278
|
+
StringValue?: never;
|
|
279
|
+
NumberValue?: never;
|
|
280
|
+
$unknown: [string, any];
|
|
281
|
+
}
|
|
282
|
+
interface Visitor<T> {
|
|
283
|
+
StringValue: (value: string) => T;
|
|
284
|
+
NumberValue: (value: number) => T;
|
|
285
|
+
_: (name: string, value: any) => T;
|
|
286
|
+
}
|
|
287
|
+
const visit: <T>(
|
|
288
|
+
value: TrialComponentParameterValue,
|
|
289
|
+
visitor: Visitor<T>
|
|
290
|
+
) => T;
|
|
291
|
+
}
|
|
292
|
+
export declare const TrialComponentPrimaryStatus: {
|
|
293
|
+
readonly COMPLETED: "Completed";
|
|
294
|
+
readonly FAILED: "Failed";
|
|
295
|
+
readonly IN_PROGRESS: "InProgress";
|
|
296
|
+
readonly STOPPED: "Stopped";
|
|
297
|
+
readonly STOPPING: "Stopping";
|
|
298
|
+
};
|
|
299
|
+
export type TrialComponentPrimaryStatus =
|
|
300
|
+
(typeof TrialComponentPrimaryStatus)[keyof typeof TrialComponentPrimaryStatus];
|
|
301
|
+
export interface TrialComponentStatus {
|
|
302
|
+
PrimaryStatus?: TrialComponentPrimaryStatus;
|
|
303
|
+
Message?: string;
|
|
304
|
+
}
|
|
305
|
+
export interface CreateTrialComponentRequest {
|
|
306
|
+
TrialComponentName: string | undefined;
|
|
307
|
+
DisplayName?: string;
|
|
308
|
+
Status?: TrialComponentStatus;
|
|
309
|
+
StartTime?: Date;
|
|
310
|
+
EndTime?: Date;
|
|
311
|
+
Parameters?: Record<string, TrialComponentParameterValue>;
|
|
312
|
+
InputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
313
|
+
OutputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
314
|
+
MetadataProperties?: MetadataProperties;
|
|
315
|
+
Tags?: Tag[];
|
|
316
|
+
}
|
|
317
|
+
export interface CreateTrialComponentResponse {
|
|
318
|
+
TrialComponentArn?: string;
|
|
319
|
+
}
|
|
320
|
+
export interface CreateUserProfileRequest {
|
|
321
|
+
DomainId: string | undefined;
|
|
322
|
+
UserProfileName: string | undefined;
|
|
323
|
+
SingleSignOnUserIdentifier?: string;
|
|
324
|
+
SingleSignOnUserValue?: string;
|
|
325
|
+
Tags?: Tag[];
|
|
326
|
+
UserSettings?: UserSettings;
|
|
327
|
+
}
|
|
328
|
+
export interface CreateUserProfileResponse {
|
|
329
|
+
UserProfileArn?: string;
|
|
330
|
+
}
|
|
331
|
+
export interface OidcConfig {
|
|
332
|
+
ClientId: string | undefined;
|
|
333
|
+
ClientSecret: string | undefined;
|
|
334
|
+
Issuer: string | undefined;
|
|
335
|
+
AuthorizationEndpoint: string | undefined;
|
|
336
|
+
TokenEndpoint: string | undefined;
|
|
337
|
+
UserInfoEndpoint: string | undefined;
|
|
338
|
+
LogoutEndpoint: string | undefined;
|
|
339
|
+
JwksUri: string | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface SourceIpConfig {
|
|
342
|
+
Cidrs: string[] | undefined;
|
|
343
|
+
}
|
|
344
|
+
export interface WorkforceVpcConfigRequest {
|
|
345
|
+
VpcId?: string;
|
|
346
|
+
SecurityGroupIds?: string[];
|
|
347
|
+
Subnets?: string[];
|
|
348
|
+
}
|
|
349
|
+
export interface CreateWorkforceRequest {
|
|
350
|
+
CognitoConfig?: CognitoConfig;
|
|
351
|
+
OidcConfig?: OidcConfig;
|
|
352
|
+
SourceIpConfig?: SourceIpConfig;
|
|
353
|
+
WorkforceName: string | undefined;
|
|
354
|
+
Tags?: Tag[];
|
|
355
|
+
WorkforceVpcConfig?: WorkforceVpcConfigRequest;
|
|
356
|
+
}
|
|
357
|
+
export interface CreateWorkforceResponse {
|
|
358
|
+
WorkforceArn: string | undefined;
|
|
359
|
+
}
|
|
360
|
+
export interface OidcMemberDefinition {
|
|
361
|
+
Groups: string[] | undefined;
|
|
362
|
+
}
|
|
363
|
+
export interface MemberDefinition {
|
|
364
|
+
CognitoMemberDefinition?: CognitoMemberDefinition;
|
|
365
|
+
OidcMemberDefinition?: OidcMemberDefinition;
|
|
366
|
+
}
|
|
367
|
+
export interface NotificationConfiguration {
|
|
368
|
+
NotificationTopicArn?: string;
|
|
369
|
+
}
|
|
370
|
+
export interface CreateWorkteamRequest {
|
|
371
|
+
WorkteamName: string | undefined;
|
|
372
|
+
WorkforceName?: string;
|
|
373
|
+
MemberDefinitions: MemberDefinition[] | undefined;
|
|
374
|
+
Description: string | undefined;
|
|
375
|
+
NotificationConfiguration?: NotificationConfiguration;
|
|
376
|
+
Tags?: Tag[];
|
|
377
|
+
}
|
|
378
|
+
export interface CreateWorkteamResponse {
|
|
379
|
+
WorkteamArn?: string;
|
|
380
|
+
}
|
|
381
|
+
export declare const CrossAccountFilterOption: {
|
|
382
|
+
readonly CROSS_ACCOUNT: "CrossAccount";
|
|
383
|
+
readonly SAME_ACCOUNT: "SameAccount";
|
|
384
|
+
};
|
|
385
|
+
export type CrossAccountFilterOption =
|
|
386
|
+
(typeof CrossAccountFilterOption)[keyof typeof CrossAccountFilterOption];
|
|
387
|
+
export declare const Statistic: {
|
|
388
|
+
readonly AVERAGE: "Average";
|
|
389
|
+
readonly MAXIMUM: "Maximum";
|
|
390
|
+
readonly MINIMUM: "Minimum";
|
|
391
|
+
readonly SAMPLE_COUNT: "SampleCount";
|
|
392
|
+
readonly SUM: "Sum";
|
|
393
|
+
};
|
|
394
|
+
export type Statistic = (typeof Statistic)[keyof typeof Statistic];
|
|
395
|
+
export interface CustomizedMetricSpecification {
|
|
396
|
+
MetricName?: string;
|
|
397
|
+
Namespace?: string;
|
|
398
|
+
Statistic?: Statistic;
|
|
399
|
+
}
|
|
400
|
+
export interface DataCaptureConfigSummary {
|
|
401
|
+
EnableCapture: boolean | undefined;
|
|
402
|
+
CaptureStatus: CaptureStatus | undefined;
|
|
403
|
+
CurrentSamplingPercentage: number | undefined;
|
|
404
|
+
DestinationS3Uri: string | undefined;
|
|
405
|
+
KmsKeyId: string | undefined;
|
|
406
|
+
}
|
|
407
|
+
export declare const RuleEvaluationStatus: {
|
|
408
|
+
readonly ERROR: "Error";
|
|
409
|
+
readonly IN_PROGRESS: "InProgress";
|
|
410
|
+
readonly ISSUES_FOUND: "IssuesFound";
|
|
411
|
+
readonly NO_ISSUES_FOUND: "NoIssuesFound";
|
|
412
|
+
readonly STOPPED: "Stopped";
|
|
413
|
+
readonly STOPPING: "Stopping";
|
|
414
|
+
};
|
|
415
|
+
export type RuleEvaluationStatus =
|
|
416
|
+
(typeof RuleEvaluationStatus)[keyof typeof RuleEvaluationStatus];
|
|
417
|
+
export interface DebugRuleEvaluationStatus {
|
|
418
|
+
RuleConfigurationName?: string;
|
|
419
|
+
RuleEvaluationJobArn?: string;
|
|
420
|
+
RuleEvaluationStatus?: RuleEvaluationStatus;
|
|
421
|
+
StatusDetails?: string;
|
|
422
|
+
LastModifiedTime?: Date;
|
|
423
|
+
}
|
|
424
|
+
export interface DeleteActionRequest {
|
|
425
|
+
ActionName: string | undefined;
|
|
426
|
+
}
|
|
427
|
+
export interface DeleteActionResponse {
|
|
428
|
+
ActionArn?: string;
|
|
429
|
+
}
|
|
430
|
+
export interface DeleteAlgorithmInput {
|
|
431
|
+
AlgorithmName: string | undefined;
|
|
432
|
+
}
|
|
433
|
+
export interface DeleteAppRequest {
|
|
434
|
+
DomainId: string | undefined;
|
|
435
|
+
UserProfileName?: string;
|
|
436
|
+
AppType: AppType | undefined;
|
|
437
|
+
AppName: string | undefined;
|
|
438
|
+
SpaceName?: string;
|
|
439
|
+
}
|
|
440
|
+
export interface DeleteAppImageConfigRequest {
|
|
441
|
+
AppImageConfigName: string | undefined;
|
|
442
|
+
}
|
|
443
|
+
export interface DeleteArtifactRequest {
|
|
444
|
+
ArtifactArn?: string;
|
|
445
|
+
Source?: ArtifactSource;
|
|
446
|
+
}
|
|
447
|
+
export interface DeleteArtifactResponse {
|
|
448
|
+
ArtifactArn?: string;
|
|
449
|
+
}
|
|
450
|
+
export interface DeleteAssociationRequest {
|
|
451
|
+
SourceArn: string | undefined;
|
|
452
|
+
DestinationArn: string | undefined;
|
|
453
|
+
}
|
|
454
|
+
export interface DeleteAssociationResponse {
|
|
455
|
+
SourceArn?: string;
|
|
456
|
+
DestinationArn?: string;
|
|
457
|
+
}
|
|
458
|
+
export interface DeleteClusterRequest {
|
|
459
|
+
ClusterName: string | undefined;
|
|
460
|
+
}
|
|
461
|
+
export interface DeleteClusterResponse {
|
|
462
|
+
ClusterArn: string | undefined;
|
|
463
|
+
}
|
|
176
464
|
export interface DeleteCodeRepositoryInput {
|
|
177
465
|
CodeRepositoryName: string | undefined;
|
|
178
466
|
}
|
|
@@ -255,6 +543,9 @@ export interface DeleteImageVersionRequest {
|
|
|
255
543
|
Alias?: string;
|
|
256
544
|
}
|
|
257
545
|
export interface DeleteImageVersionResponse {}
|
|
546
|
+
export interface DeleteInferenceComponentInput {
|
|
547
|
+
InferenceComponentName: string | undefined;
|
|
548
|
+
}
|
|
258
549
|
export interface DeleteInferenceExperimentRequest {
|
|
259
550
|
Name: string | undefined;
|
|
260
551
|
}
|
|
@@ -460,6 +751,7 @@ export interface DescribeAppImageConfigResponse {
|
|
|
460
751
|
CreationTime?: Date;
|
|
461
752
|
LastModifiedTime?: Date;
|
|
462
753
|
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
754
|
+
JupyterLabAppImageConfig?: JupyterLabAppImageConfig;
|
|
463
755
|
}
|
|
464
756
|
export interface DescribeArtifactRequest {
|
|
465
757
|
ArtifactArn: string | undefined;
|
|
@@ -538,6 +830,25 @@ export interface DescribeAutoMLJobV2Response {
|
|
|
538
830
|
ResolvedAttributes?: AutoMLResolvedAttributes;
|
|
539
831
|
AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName;
|
|
540
832
|
}
|
|
833
|
+
export interface DescribeClusterRequest {
|
|
834
|
+
ClusterName: string | undefined;
|
|
835
|
+
}
|
|
836
|
+
export interface DescribeClusterResponse {
|
|
837
|
+
ClusterArn: string | undefined;
|
|
838
|
+
ClusterName?: string;
|
|
839
|
+
ClusterStatus: ClusterStatus | undefined;
|
|
840
|
+
CreationTime?: Date;
|
|
841
|
+
FailureMessage?: string;
|
|
842
|
+
InstanceGroups: ClusterInstanceGroupDetails[] | undefined;
|
|
843
|
+
VpcConfig?: VpcConfig;
|
|
844
|
+
}
|
|
845
|
+
export interface DescribeClusterNodeRequest {
|
|
846
|
+
ClusterName: string | undefined;
|
|
847
|
+
NodeId: string | undefined;
|
|
848
|
+
}
|
|
849
|
+
export interface DescribeClusterNodeResponse {
|
|
850
|
+
NodeDetails: ClusterNodeDetails | undefined;
|
|
851
|
+
}
|
|
541
852
|
export interface DescribeCodeRepositoryInput {
|
|
542
853
|
CodeRepositoryName: string | undefined;
|
|
543
854
|
}
|
|
@@ -784,6 +1095,8 @@ export interface PendingProductionVariantSummary {
|
|
|
784
1095
|
VariantStatus?: ProductionVariantStatus[];
|
|
785
1096
|
CurrentServerlessConfig?: ProductionVariantServerlessConfig;
|
|
786
1097
|
DesiredServerlessConfig?: ProductionVariantServerlessConfig;
|
|
1098
|
+
ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
|
|
1099
|
+
RoutingConfig?: ProductionVariantRoutingConfig;
|
|
787
1100
|
}
|
|
788
1101
|
export interface PendingDeploymentSummary {
|
|
789
1102
|
EndpointConfigName: string | undefined;
|
|
@@ -801,6 +1114,8 @@ export interface ProductionVariantSummary {
|
|
|
801
1114
|
VariantStatus?: ProductionVariantStatus[];
|
|
802
1115
|
CurrentServerlessConfig?: ProductionVariantServerlessConfig;
|
|
803
1116
|
DesiredServerlessConfig?: ProductionVariantServerlessConfig;
|
|
1117
|
+
ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling;
|
|
1118
|
+
RoutingConfig?: ProductionVariantRoutingConfig;
|
|
804
1119
|
}
|
|
805
1120
|
export interface DescribeEndpointOutput {
|
|
806
1121
|
EndpointName: string | undefined;
|
|
@@ -831,6 +1146,9 @@ export interface DescribeEndpointConfigOutput {
|
|
|
831
1146
|
AsyncInferenceConfig?: AsyncInferenceConfig;
|
|
832
1147
|
ExplainerConfig?: ExplainerConfig;
|
|
833
1148
|
ShadowProductionVariants?: ProductionVariant[];
|
|
1149
|
+
ExecutionRoleArn?: string;
|
|
1150
|
+
VpcConfig?: VpcConfig;
|
|
1151
|
+
EnableNetworkIsolation?: boolean;
|
|
834
1152
|
}
|
|
835
1153
|
export interface DescribeExperimentRequest {
|
|
836
1154
|
ExperimentName: string | undefined;
|
|
@@ -1162,6 +1480,46 @@ export interface DescribeImageVersionResponse {
|
|
|
1162
1480
|
Horovod?: boolean;
|
|
1163
1481
|
ReleaseNotes?: string;
|
|
1164
1482
|
}
|
|
1483
|
+
export interface DescribeInferenceComponentInput {
|
|
1484
|
+
InferenceComponentName: string | undefined;
|
|
1485
|
+
}
|
|
1486
|
+
export declare const InferenceComponentStatus: {
|
|
1487
|
+
readonly CREATING: "Creating";
|
|
1488
|
+
readonly DELETING: "Deleting";
|
|
1489
|
+
readonly FAILED: "Failed";
|
|
1490
|
+
readonly IN_SERVICE: "InService";
|
|
1491
|
+
readonly UPDATING: "Updating";
|
|
1492
|
+
};
|
|
1493
|
+
export type InferenceComponentStatus =
|
|
1494
|
+
(typeof InferenceComponentStatus)[keyof typeof InferenceComponentStatus];
|
|
1495
|
+
export interface InferenceComponentRuntimeConfigSummary {
|
|
1496
|
+
DesiredCopyCount?: number;
|
|
1497
|
+
CurrentCopyCount?: number;
|
|
1498
|
+
}
|
|
1499
|
+
export interface InferenceComponentContainerSpecificationSummary {
|
|
1500
|
+
DeployedImage?: DeployedImage;
|
|
1501
|
+
ArtifactUrl?: string;
|
|
1502
|
+
Environment?: Record<string, string>;
|
|
1503
|
+
}
|
|
1504
|
+
export interface InferenceComponentSpecificationSummary {
|
|
1505
|
+
ModelName?: string;
|
|
1506
|
+
Container?: InferenceComponentContainerSpecificationSummary;
|
|
1507
|
+
StartupParameters?: InferenceComponentStartupParameters;
|
|
1508
|
+
ComputeResourceRequirements?: InferenceComponentComputeResourceRequirements;
|
|
1509
|
+
}
|
|
1510
|
+
export interface DescribeInferenceComponentOutput {
|
|
1511
|
+
InferenceComponentName: string | undefined;
|
|
1512
|
+
InferenceComponentArn: string | undefined;
|
|
1513
|
+
EndpointName: string | undefined;
|
|
1514
|
+
EndpointArn: string | undefined;
|
|
1515
|
+
VariantName?: string;
|
|
1516
|
+
FailureReason?: string;
|
|
1517
|
+
Specification?: InferenceComponentSpecificationSummary;
|
|
1518
|
+
RuntimeConfig?: InferenceComponentRuntimeConfigSummary;
|
|
1519
|
+
CreationTime: Date | undefined;
|
|
1520
|
+
LastModifiedTime: Date | undefined;
|
|
1521
|
+
InferenceComponentStatus?: InferenceComponentStatus;
|
|
1522
|
+
}
|
|
1165
1523
|
export interface DescribeInferenceExperimentRequest {
|
|
1166
1524
|
Name: string | undefined;
|
|
1167
1525
|
}
|
|
@@ -1352,7 +1710,7 @@ export interface DescribeModelOutput {
|
|
|
1352
1710
|
PrimaryContainer?: ContainerDefinition;
|
|
1353
1711
|
Containers?: ContainerDefinition[];
|
|
1354
1712
|
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
1355
|
-
ExecutionRoleArn
|
|
1713
|
+
ExecutionRoleArn?: string;
|
|
1356
1714
|
VpcConfig?: VpcConfig;
|
|
1357
1715
|
CreationTime: Date | undefined;
|
|
1358
1716
|
ModelArn: string | undefined;
|
|
@@ -1787,6 +2145,10 @@ export interface DescribeSpaceResponse {
|
|
|
1787
2145
|
CreationTime?: Date;
|
|
1788
2146
|
FailureReason?: string;
|
|
1789
2147
|
SpaceSettings?: SpaceSettings;
|
|
2148
|
+
Url?: string;
|
|
2149
|
+
SpaceDisplayName?: string;
|
|
2150
|
+
OwnershipSettings?: OwnershipSettings;
|
|
2151
|
+
SpaceSharingSettings?: SpaceSharingSettings;
|
|
1790
2152
|
}
|
|
1791
2153
|
export interface DescribeStudioLifecycleConfigRequest {
|
|
1792
2154
|
StudioLifecycleConfigName: string | undefined;
|
|
@@ -1827,474 +2189,10 @@ export interface ProfilerRuleEvaluationStatus {
|
|
|
1827
2189
|
StatusDetails?: string;
|
|
1828
2190
|
LastModifiedTime?: Date;
|
|
1829
2191
|
}
|
|
1830
|
-
export declare const
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
export type ProfilingStatus =
|
|
1835
|
-
(typeof ProfilingStatus)[keyof typeof ProfilingStatus];
|
|
1836
|
-
export declare const SecondaryStatus: {
|
|
1837
|
-
readonly COMPLETED: "Completed";
|
|
1838
|
-
readonly DOWNLOADING: "Downloading";
|
|
1839
|
-
readonly DOWNLOADING_TRAINING_IMAGE: "DownloadingTrainingImage";
|
|
1840
|
-
readonly FAILED: "Failed";
|
|
1841
|
-
readonly INTERRUPTED: "Interrupted";
|
|
1842
|
-
readonly LAUNCHING_ML_INSTANCES: "LaunchingMLInstances";
|
|
1843
|
-
readonly MAX_RUNTIME_EXCEEDED: "MaxRuntimeExceeded";
|
|
1844
|
-
readonly MAX_WAIT_TIME_EXCEEDED: "MaxWaitTimeExceeded";
|
|
1845
|
-
readonly PREPARING_TRAINING_STACK: "PreparingTrainingStack";
|
|
1846
|
-
readonly RESTARTING: "Restarting";
|
|
1847
|
-
readonly STARTING: "Starting";
|
|
1848
|
-
readonly STOPPED: "Stopped";
|
|
1849
|
-
readonly STOPPING: "Stopping";
|
|
1850
|
-
readonly TRAINING: "Training";
|
|
1851
|
-
readonly UPDATING: "Updating";
|
|
1852
|
-
readonly UPLOADING: "Uploading";
|
|
1853
|
-
};
|
|
1854
|
-
export type SecondaryStatus =
|
|
1855
|
-
(typeof SecondaryStatus)[keyof typeof SecondaryStatus];
|
|
1856
|
-
export interface SecondaryStatusTransition {
|
|
1857
|
-
Status: SecondaryStatus | undefined;
|
|
1858
|
-
StartTime: Date | undefined;
|
|
1859
|
-
EndTime?: Date;
|
|
1860
|
-
StatusMessage?: string;
|
|
1861
|
-
}
|
|
1862
|
-
export declare const WarmPoolResourceStatus: {
|
|
1863
|
-
readonly AVAILABLE: "Available";
|
|
1864
|
-
readonly INUSE: "InUse";
|
|
1865
|
-
readonly REUSED: "Reused";
|
|
1866
|
-
readonly TERMINATED: "Terminated";
|
|
1867
|
-
};
|
|
1868
|
-
export type WarmPoolResourceStatus =
|
|
1869
|
-
(typeof WarmPoolResourceStatus)[keyof typeof WarmPoolResourceStatus];
|
|
1870
|
-
export interface WarmPoolStatus {
|
|
1871
|
-
Status: WarmPoolResourceStatus | undefined;
|
|
1872
|
-
ResourceRetainedBillableTimeInSeconds?: number;
|
|
1873
|
-
ReusedByJob?: string;
|
|
1874
|
-
}
|
|
1875
|
-
export interface DescribeTrainingJobResponse {
|
|
1876
|
-
TrainingJobName: string | undefined;
|
|
1877
|
-
TrainingJobArn: string | undefined;
|
|
1878
|
-
TuningJobArn?: string;
|
|
1879
|
-
LabelingJobArn?: string;
|
|
1880
|
-
AutoMLJobArn?: string;
|
|
1881
|
-
ModelArtifacts: ModelArtifacts | undefined;
|
|
1882
|
-
TrainingJobStatus: TrainingJobStatus | undefined;
|
|
1883
|
-
SecondaryStatus: SecondaryStatus | undefined;
|
|
1884
|
-
FailureReason?: string;
|
|
1885
|
-
HyperParameters?: Record<string, string>;
|
|
1886
|
-
AlgorithmSpecification: AlgorithmSpecification | undefined;
|
|
1887
|
-
RoleArn?: string;
|
|
1888
|
-
InputDataConfig?: Channel[];
|
|
1889
|
-
OutputDataConfig?: OutputDataConfig;
|
|
1890
|
-
ResourceConfig: ResourceConfig | undefined;
|
|
1891
|
-
VpcConfig?: VpcConfig;
|
|
1892
|
-
StoppingCondition: StoppingCondition | undefined;
|
|
1893
|
-
CreationTime: Date | undefined;
|
|
1894
|
-
TrainingStartTime?: Date;
|
|
1895
|
-
TrainingEndTime?: Date;
|
|
1896
|
-
LastModifiedTime?: Date;
|
|
1897
|
-
SecondaryStatusTransitions?: SecondaryStatusTransition[];
|
|
1898
|
-
FinalMetricDataList?: MetricData[];
|
|
1899
|
-
EnableNetworkIsolation?: boolean;
|
|
1900
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
1901
|
-
EnableManagedSpotTraining?: boolean;
|
|
1902
|
-
CheckpointConfig?: CheckpointConfig;
|
|
1903
|
-
TrainingTimeInSeconds?: number;
|
|
1904
|
-
BillableTimeInSeconds?: number;
|
|
1905
|
-
DebugHookConfig?: DebugHookConfig;
|
|
1906
|
-
ExperimentConfig?: ExperimentConfig;
|
|
1907
|
-
DebugRuleConfigurations?: DebugRuleConfiguration[];
|
|
1908
|
-
TensorBoardOutputConfig?: TensorBoardOutputConfig;
|
|
1909
|
-
DebugRuleEvaluationStatuses?: DebugRuleEvaluationStatus[];
|
|
1910
|
-
ProfilerConfig?: ProfilerConfig;
|
|
1911
|
-
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
1912
|
-
ProfilerRuleEvaluationStatuses?: ProfilerRuleEvaluationStatus[];
|
|
1913
|
-
ProfilingStatus?: ProfilingStatus;
|
|
1914
|
-
RetryStrategy?: RetryStrategy;
|
|
1915
|
-
Environment?: Record<string, string>;
|
|
1916
|
-
WarmPoolStatus?: WarmPoolStatus;
|
|
1917
|
-
}
|
|
1918
|
-
export interface DescribeTransformJobRequest {
|
|
1919
|
-
TransformJobName: string | undefined;
|
|
1920
|
-
}
|
|
1921
|
-
export declare const TransformJobStatus: {
|
|
1922
|
-
readonly COMPLETED: "Completed";
|
|
1923
|
-
readonly FAILED: "Failed";
|
|
1924
|
-
readonly IN_PROGRESS: "InProgress";
|
|
1925
|
-
readonly STOPPED: "Stopped";
|
|
1926
|
-
readonly STOPPING: "Stopping";
|
|
1927
|
-
};
|
|
1928
|
-
export type TransformJobStatus =
|
|
1929
|
-
(typeof TransformJobStatus)[keyof typeof TransformJobStatus];
|
|
1930
|
-
export interface DescribeTransformJobResponse {
|
|
1931
|
-
TransformJobName: string | undefined;
|
|
1932
|
-
TransformJobArn: string | undefined;
|
|
1933
|
-
TransformJobStatus: TransformJobStatus | undefined;
|
|
1934
|
-
FailureReason?: string;
|
|
1935
|
-
ModelName: string | undefined;
|
|
1936
|
-
MaxConcurrentTransforms?: number;
|
|
1937
|
-
ModelClientConfig?: ModelClientConfig;
|
|
1938
|
-
MaxPayloadInMB?: number;
|
|
1939
|
-
BatchStrategy?: BatchStrategy;
|
|
1940
|
-
Environment?: Record<string, string>;
|
|
1941
|
-
TransformInput: TransformInput | undefined;
|
|
1942
|
-
TransformOutput?: TransformOutput;
|
|
1943
|
-
DataCaptureConfig?: BatchDataCaptureConfig;
|
|
1944
|
-
TransformResources: TransformResources | undefined;
|
|
1945
|
-
CreationTime: Date | undefined;
|
|
1946
|
-
TransformStartTime?: Date;
|
|
1947
|
-
TransformEndTime?: Date;
|
|
1948
|
-
LabelingJobArn?: string;
|
|
1949
|
-
AutoMLJobArn?: string;
|
|
1950
|
-
DataProcessing?: DataProcessing;
|
|
1951
|
-
ExperimentConfig?: ExperimentConfig;
|
|
1952
|
-
}
|
|
1953
|
-
export interface DescribeTrialRequest {
|
|
1954
|
-
TrialName: string | undefined;
|
|
1955
|
-
}
|
|
1956
|
-
export interface TrialSource {
|
|
1957
|
-
SourceArn: string | undefined;
|
|
1958
|
-
SourceType?: string;
|
|
1959
|
-
}
|
|
1960
|
-
export interface DescribeTrialResponse {
|
|
1961
|
-
TrialName?: string;
|
|
1962
|
-
TrialArn?: string;
|
|
1963
|
-
DisplayName?: string;
|
|
1964
|
-
ExperimentName?: string;
|
|
1965
|
-
Source?: TrialSource;
|
|
1966
|
-
CreationTime?: Date;
|
|
1967
|
-
CreatedBy?: UserContext;
|
|
1968
|
-
LastModifiedTime?: Date;
|
|
1969
|
-
LastModifiedBy?: UserContext;
|
|
1970
|
-
MetadataProperties?: MetadataProperties;
|
|
1971
|
-
}
|
|
1972
|
-
export interface DescribeTrialComponentRequest {
|
|
1973
|
-
TrialComponentName: string | undefined;
|
|
1974
|
-
}
|
|
1975
|
-
export interface TrialComponentMetricSummary {
|
|
1976
|
-
MetricName?: string;
|
|
1977
|
-
SourceArn?: string;
|
|
1978
|
-
TimeStamp?: Date;
|
|
1979
|
-
Max?: number;
|
|
1980
|
-
Min?: number;
|
|
1981
|
-
Last?: number;
|
|
1982
|
-
Count?: number;
|
|
1983
|
-
Avg?: number;
|
|
1984
|
-
StdDev?: number;
|
|
1985
|
-
}
|
|
1986
|
-
export interface TrialComponentSource {
|
|
1987
|
-
SourceArn: string | undefined;
|
|
1988
|
-
SourceType?: string;
|
|
1989
|
-
}
|
|
1990
|
-
export interface DescribeTrialComponentResponse {
|
|
1991
|
-
TrialComponentName?: string;
|
|
1992
|
-
TrialComponentArn?: string;
|
|
1993
|
-
DisplayName?: string;
|
|
1994
|
-
Source?: TrialComponentSource;
|
|
1995
|
-
Status?: TrialComponentStatus;
|
|
1996
|
-
StartTime?: Date;
|
|
1997
|
-
EndTime?: Date;
|
|
1998
|
-
CreationTime?: Date;
|
|
1999
|
-
CreatedBy?: UserContext;
|
|
2000
|
-
LastModifiedTime?: Date;
|
|
2001
|
-
LastModifiedBy?: UserContext;
|
|
2002
|
-
Parameters?: Record<string, TrialComponentParameterValue>;
|
|
2003
|
-
InputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
2004
|
-
OutputArtifacts?: Record<string, TrialComponentArtifact>;
|
|
2005
|
-
MetadataProperties?: MetadataProperties;
|
|
2006
|
-
Metrics?: TrialComponentMetricSummary[];
|
|
2007
|
-
LineageGroupArn?: string;
|
|
2008
|
-
Sources?: TrialComponentSource[];
|
|
2009
|
-
}
|
|
2010
|
-
export interface DescribeUserProfileRequest {
|
|
2011
|
-
DomainId: string | undefined;
|
|
2012
|
-
UserProfileName: string | undefined;
|
|
2013
|
-
}
|
|
2014
|
-
export declare const UserProfileStatus: {
|
|
2015
|
-
readonly Delete_Failed: "Delete_Failed";
|
|
2016
|
-
readonly Deleting: "Deleting";
|
|
2017
|
-
readonly Failed: "Failed";
|
|
2018
|
-
readonly InService: "InService";
|
|
2019
|
-
readonly Pending: "Pending";
|
|
2020
|
-
readonly Update_Failed: "Update_Failed";
|
|
2021
|
-
readonly Updating: "Updating";
|
|
2022
|
-
};
|
|
2023
|
-
export type UserProfileStatus =
|
|
2024
|
-
(typeof UserProfileStatus)[keyof typeof UserProfileStatus];
|
|
2025
|
-
export interface DescribeUserProfileResponse {
|
|
2026
|
-
DomainId?: string;
|
|
2027
|
-
UserProfileArn?: string;
|
|
2028
|
-
UserProfileName?: string;
|
|
2029
|
-
HomeEfsFileSystemUid?: string;
|
|
2030
|
-
Status?: UserProfileStatus;
|
|
2031
|
-
LastModifiedTime?: Date;
|
|
2032
|
-
CreationTime?: Date;
|
|
2033
|
-
FailureReason?: string;
|
|
2034
|
-
SingleSignOnUserIdentifier?: string;
|
|
2035
|
-
SingleSignOnUserValue?: string;
|
|
2036
|
-
UserSettings?: UserSettings;
|
|
2037
|
-
}
|
|
2038
|
-
export interface DescribeWorkforceRequest {
|
|
2039
|
-
WorkforceName: string | undefined;
|
|
2040
|
-
}
|
|
2041
|
-
export interface OidcConfigForResponse {
|
|
2042
|
-
ClientId?: string;
|
|
2043
|
-
Issuer?: string;
|
|
2044
|
-
AuthorizationEndpoint?: string;
|
|
2045
|
-
TokenEndpoint?: string;
|
|
2046
|
-
UserInfoEndpoint?: string;
|
|
2047
|
-
LogoutEndpoint?: string;
|
|
2048
|
-
JwksUri?: string;
|
|
2049
|
-
}
|
|
2050
|
-
export declare const WorkforceStatus: {
|
|
2051
|
-
readonly ACTIVE: "Active";
|
|
2052
|
-
readonly DELETING: "Deleting";
|
|
2053
|
-
readonly FAILED: "Failed";
|
|
2054
|
-
readonly INITIALIZING: "Initializing";
|
|
2055
|
-
readonly UPDATING: "Updating";
|
|
2056
|
-
};
|
|
2057
|
-
export type WorkforceStatus =
|
|
2058
|
-
(typeof WorkforceStatus)[keyof typeof WorkforceStatus];
|
|
2059
|
-
export interface WorkforceVpcConfigResponse {
|
|
2060
|
-
VpcId: string | undefined;
|
|
2061
|
-
SecurityGroupIds: string[] | undefined;
|
|
2062
|
-
Subnets: string[] | undefined;
|
|
2063
|
-
VpcEndpointId?: string;
|
|
2064
|
-
}
|
|
2065
|
-
export interface Workforce {
|
|
2066
|
-
WorkforceName: string | undefined;
|
|
2067
|
-
WorkforceArn: string | undefined;
|
|
2068
|
-
LastUpdatedDate?: Date;
|
|
2069
|
-
SourceIpConfig?: SourceIpConfig;
|
|
2070
|
-
SubDomain?: string;
|
|
2071
|
-
CognitoConfig?: CognitoConfig;
|
|
2072
|
-
OidcConfig?: OidcConfigForResponse;
|
|
2073
|
-
CreateDate?: Date;
|
|
2074
|
-
WorkforceVpcConfig?: WorkforceVpcConfigResponse;
|
|
2075
|
-
Status?: WorkforceStatus;
|
|
2076
|
-
FailureReason?: string;
|
|
2077
|
-
}
|
|
2078
|
-
export interface DescribeWorkforceResponse {
|
|
2079
|
-
Workforce: Workforce | undefined;
|
|
2080
|
-
}
|
|
2081
|
-
export interface DescribeWorkteamRequest {
|
|
2082
|
-
WorkteamName: string | undefined;
|
|
2083
|
-
}
|
|
2084
|
-
export interface Workteam {
|
|
2085
|
-
WorkteamName: string | undefined;
|
|
2086
|
-
MemberDefinitions: MemberDefinition[] | undefined;
|
|
2087
|
-
WorkteamArn: string | undefined;
|
|
2088
|
-
WorkforceArn?: string;
|
|
2089
|
-
ProductListingIds?: string[];
|
|
2090
|
-
Description: string | undefined;
|
|
2091
|
-
SubDomain?: string;
|
|
2092
|
-
CreateDate?: Date;
|
|
2093
|
-
LastUpdatedDate?: Date;
|
|
2094
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
2095
|
-
}
|
|
2096
|
-
export interface DescribeWorkteamResponse {
|
|
2097
|
-
Workteam: Workteam | undefined;
|
|
2098
|
-
}
|
|
2099
|
-
export interface ProductionVariantServerlessUpdateConfig {
|
|
2100
|
-
MaxConcurrency?: number;
|
|
2101
|
-
ProvisionedConcurrency?: number;
|
|
2102
|
-
}
|
|
2103
|
-
export interface DesiredWeightAndCapacity {
|
|
2104
|
-
VariantName: string | undefined;
|
|
2105
|
-
DesiredWeight?: number;
|
|
2106
|
-
DesiredInstanceCount?: number;
|
|
2107
|
-
ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig;
|
|
2108
|
-
}
|
|
2109
|
-
export interface Device {
|
|
2110
|
-
DeviceName: string | undefined;
|
|
2111
|
-
Description?: string;
|
|
2112
|
-
IotThingName?: string;
|
|
2113
|
-
}
|
|
2114
|
-
export declare const DeviceDeploymentStatus: {
|
|
2115
|
-
readonly Deployed: "DEPLOYED";
|
|
2116
|
-
readonly Failed: "FAILED";
|
|
2117
|
-
readonly InProgress: "INPROGRESS";
|
|
2118
|
-
readonly ReadyToDeploy: "READYTODEPLOY";
|
|
2119
|
-
readonly Stopped: "STOPPED";
|
|
2120
|
-
readonly Stopping: "STOPPING";
|
|
2121
|
-
};
|
|
2122
|
-
export type DeviceDeploymentStatus =
|
|
2123
|
-
(typeof DeviceDeploymentStatus)[keyof typeof DeviceDeploymentStatus];
|
|
2124
|
-
export interface DeviceDeploymentSummary {
|
|
2125
|
-
EdgeDeploymentPlanArn: string | undefined;
|
|
2126
|
-
EdgeDeploymentPlanName: string | undefined;
|
|
2127
|
-
StageName: string | undefined;
|
|
2128
|
-
DeployedStageName?: string;
|
|
2129
|
-
DeviceFleetName?: string;
|
|
2130
|
-
DeviceName: string | undefined;
|
|
2131
|
-
DeviceArn: string | undefined;
|
|
2132
|
-
DeviceDeploymentStatus?: DeviceDeploymentStatus;
|
|
2133
|
-
DeviceDeploymentStatusMessage?: string;
|
|
2134
|
-
Description?: string;
|
|
2135
|
-
DeploymentStartTime?: Date;
|
|
2136
|
-
}
|
|
2137
|
-
export interface DeviceFleetSummary {
|
|
2138
|
-
DeviceFleetArn: string | undefined;
|
|
2139
|
-
DeviceFleetName: string | undefined;
|
|
2140
|
-
CreationTime?: Date;
|
|
2141
|
-
LastModifiedTime?: Date;
|
|
2142
|
-
}
|
|
2143
|
-
export interface DeviceStats {
|
|
2144
|
-
ConnectedDeviceCount: number | undefined;
|
|
2145
|
-
RegisteredDeviceCount: number | undefined;
|
|
2146
|
-
}
|
|
2147
|
-
export interface EdgeModelSummary {
|
|
2148
|
-
ModelName: string | undefined;
|
|
2149
|
-
ModelVersion: string | undefined;
|
|
2150
|
-
}
|
|
2151
|
-
export interface DeviceSummary {
|
|
2152
|
-
DeviceName: string | undefined;
|
|
2153
|
-
DeviceArn: string | undefined;
|
|
2154
|
-
Description?: string;
|
|
2155
|
-
DeviceFleetName?: string;
|
|
2156
|
-
IotThingName?: string;
|
|
2157
|
-
RegistrationTime?: Date;
|
|
2158
|
-
LatestHeartbeat?: Date;
|
|
2159
|
-
Models?: EdgeModelSummary[];
|
|
2160
|
-
AgentVersion?: string;
|
|
2161
|
-
}
|
|
2162
|
-
export declare const Direction: {
|
|
2163
|
-
readonly ASCENDANTS: "Ascendants";
|
|
2164
|
-
readonly BOTH: "Both";
|
|
2165
|
-
readonly DESCENDANTS: "Descendants";
|
|
2166
|
-
};
|
|
2167
|
-
export type Direction = (typeof Direction)[keyof typeof Direction];
|
|
2168
|
-
export interface DisableSagemakerServicecatalogPortfolioInput {}
|
|
2169
|
-
export interface DisableSagemakerServicecatalogPortfolioOutput {}
|
|
2170
|
-
export interface DisassociateTrialComponentRequest {
|
|
2171
|
-
TrialComponentName: string | undefined;
|
|
2172
|
-
TrialName: string | undefined;
|
|
2173
|
-
}
|
|
2174
|
-
export interface DisassociateTrialComponentResponse {
|
|
2175
|
-
TrialComponentArn?: string;
|
|
2176
|
-
TrialArn?: string;
|
|
2177
|
-
}
|
|
2178
|
-
export interface DomainDetails {
|
|
2179
|
-
DomainArn?: string;
|
|
2180
|
-
DomainId?: string;
|
|
2181
|
-
DomainName?: string;
|
|
2182
|
-
Status?: DomainStatus;
|
|
2183
|
-
CreationTime?: Date;
|
|
2184
|
-
LastModifiedTime?: Date;
|
|
2185
|
-
Url?: string;
|
|
2186
|
-
}
|
|
2187
|
-
export interface RStudioServerProDomainSettingsForUpdate {
|
|
2188
|
-
DomainExecutionRoleArn: string | undefined;
|
|
2189
|
-
DefaultResourceSpec?: ResourceSpec;
|
|
2190
|
-
RStudioConnectUrl?: string;
|
|
2191
|
-
RStudioPackageManagerUrl?: string;
|
|
2192
|
-
}
|
|
2193
|
-
export interface DomainSettingsForUpdate {
|
|
2194
|
-
RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
|
|
2195
|
-
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
|
|
2196
|
-
SecurityGroupIds?: string[];
|
|
2197
|
-
}
|
|
2198
|
-
export interface PredefinedMetricSpecification {
|
|
2199
|
-
PredefinedMetricType?: string;
|
|
2200
|
-
}
|
|
2201
|
-
export type MetricSpecification =
|
|
2202
|
-
| MetricSpecification.CustomizedMember
|
|
2203
|
-
| MetricSpecification.PredefinedMember
|
|
2204
|
-
| MetricSpecification.$UnknownMember;
|
|
2205
|
-
export declare namespace MetricSpecification {
|
|
2206
|
-
interface PredefinedMember {
|
|
2207
|
-
Predefined: PredefinedMetricSpecification;
|
|
2208
|
-
Customized?: never;
|
|
2209
|
-
$unknown?: never;
|
|
2210
|
-
}
|
|
2211
|
-
interface CustomizedMember {
|
|
2212
|
-
Predefined?: never;
|
|
2213
|
-
Customized: CustomizedMetricSpecification;
|
|
2214
|
-
$unknown?: never;
|
|
2215
|
-
}
|
|
2216
|
-
interface $UnknownMember {
|
|
2217
|
-
Predefined?: never;
|
|
2218
|
-
Customized?: never;
|
|
2219
|
-
$unknown: [string, any];
|
|
2220
|
-
}
|
|
2221
|
-
interface Visitor<T> {
|
|
2222
|
-
Predefined: (value: PredefinedMetricSpecification) => T;
|
|
2223
|
-
Customized: (value: CustomizedMetricSpecification) => T;
|
|
2224
|
-
_: (name: string, value: any) => T;
|
|
2225
|
-
}
|
|
2226
|
-
const visit: <T>(value: MetricSpecification, visitor: Visitor<T>) => T;
|
|
2227
|
-
}
|
|
2228
|
-
export interface TargetTrackingScalingPolicyConfiguration {
|
|
2229
|
-
MetricSpecification?: MetricSpecification;
|
|
2230
|
-
TargetValue?: number;
|
|
2231
|
-
}
|
|
2232
|
-
export type ScalingPolicy =
|
|
2233
|
-
| ScalingPolicy.TargetTrackingMember
|
|
2234
|
-
| ScalingPolicy.$UnknownMember;
|
|
2235
|
-
export declare namespace ScalingPolicy {
|
|
2236
|
-
interface TargetTrackingMember {
|
|
2237
|
-
TargetTracking: TargetTrackingScalingPolicyConfiguration;
|
|
2238
|
-
$unknown?: never;
|
|
2239
|
-
}
|
|
2240
|
-
interface $UnknownMember {
|
|
2241
|
-
TargetTracking?: never;
|
|
2242
|
-
$unknown: [string, any];
|
|
2243
|
-
}
|
|
2244
|
-
interface Visitor<T> {
|
|
2245
|
-
TargetTracking: (value: TargetTrackingScalingPolicyConfiguration) => T;
|
|
2246
|
-
_: (name: string, value: any) => T;
|
|
2247
|
-
}
|
|
2248
|
-
const visit: <T>(value: ScalingPolicy, visitor: Visitor<T>) => T;
|
|
2249
|
-
}
|
|
2250
|
-
export interface DynamicScalingConfiguration {
|
|
2251
|
-
MinCapacity?: number;
|
|
2252
|
-
MaxCapacity?: number;
|
|
2253
|
-
ScaleInCooldown?: number;
|
|
2254
|
-
ScaleOutCooldown?: number;
|
|
2255
|
-
ScalingPolicies?: ScalingPolicy[];
|
|
2256
|
-
}
|
|
2257
|
-
export interface Edge {
|
|
2258
|
-
SourceArn?: string;
|
|
2259
|
-
DestinationArn?: string;
|
|
2260
|
-
AssociationType?: AssociationEdgeType;
|
|
2261
|
-
}
|
|
2262
|
-
export interface EdgeDeploymentPlanSummary {
|
|
2263
|
-
EdgeDeploymentPlanArn: string | undefined;
|
|
2264
|
-
EdgeDeploymentPlanName: string | undefined;
|
|
2265
|
-
DeviceFleetName: string | undefined;
|
|
2266
|
-
EdgeDeploymentSuccess: number | undefined;
|
|
2267
|
-
EdgeDeploymentPending: number | undefined;
|
|
2268
|
-
EdgeDeploymentFailed: number | undefined;
|
|
2269
|
-
CreationTime?: Date;
|
|
2270
|
-
LastModifiedTime?: Date;
|
|
2271
|
-
}
|
|
2272
|
-
export interface EdgeModelStat {
|
|
2273
|
-
ModelName: string | undefined;
|
|
2274
|
-
ModelVersion: string | undefined;
|
|
2275
|
-
OfflineDeviceCount: number | undefined;
|
|
2276
|
-
ConnectedDeviceCount: number | undefined;
|
|
2277
|
-
ActiveDeviceCount: number | undefined;
|
|
2278
|
-
SamplingDeviceCount: number | undefined;
|
|
2279
|
-
}
|
|
2280
|
-
export interface EdgePackagingJobSummary {
|
|
2281
|
-
EdgePackagingJobArn: string | undefined;
|
|
2282
|
-
EdgePackagingJobName: string | undefined;
|
|
2283
|
-
EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
|
|
2284
|
-
CompilationJobName?: string;
|
|
2285
|
-
ModelName?: string;
|
|
2286
|
-
ModelVersion?: string;
|
|
2287
|
-
CreationTime?: Date;
|
|
2288
|
-
LastModifiedTime?: Date;
|
|
2289
|
-
}
|
|
2290
|
-
export interface EMRStepMetadata {
|
|
2291
|
-
ClusterId?: string;
|
|
2292
|
-
StepId?: string;
|
|
2293
|
-
StepName?: string;
|
|
2294
|
-
LogFilePath?: string;
|
|
2295
|
-
}
|
|
2296
|
-
export interface EnableSagemakerServicecatalogPortfolioInput {}
|
|
2297
|
-
export interface EnableSagemakerServicecatalogPortfolioOutput {}
|
|
2192
|
+
export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
|
|
2193
|
+
export declare const CreateWorkforceRequestFilterSensitiveLog: (
|
|
2194
|
+
obj: CreateWorkforceRequest
|
|
2195
|
+
) => any;
|
|
2298
2196
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2299
2197
|
obj: DescribeModelCardResponse
|
|
2300
2198
|
) => any;
|