@aws-sdk/client-sagemaker 3.499.0 → 3.501.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 +8 -0
- package/dist-cjs/commands/DeleteHyperParameterTuningJobCommand.js +1 -0
- package/dist-cjs/index.js +49 -0
- package/dist-es/SageMaker.js +2 -0
- package/dist-es/commands/DeleteHyperParameterTuningJobCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +29 -0
- package/dist-types/SageMaker.d.ts +7 -0
- package/dist-types/SageMakerClient.d.ts +3 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +25 -26
- package/dist-types/commands/DeleteDomainCommand.d.ts +4 -5
- package/dist-types/commands/DeleteHyperParameterTuningJobCommand.d.ts +59 -0
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEndpointCommand.d.ts +7 -3
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +38 -18
- package/dist-types/models/models_1.d.ts +24 -24
- package/dist-types/models/models_2.d.ts +47 -73
- package/dist-types/models/models_3.d.ts +49 -78
- package/dist-types/models/models_4.d.ts +80 -15
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/SageMaker.d.ts +17 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteHyperParameterTuningJobCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +3 -9
- package/dist-types/ts3.4/models/models_3.d.ts +9 -12
- package/dist-types/ts3.4/models/models_4.d.ts +12 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +3 -3
|
@@ -1119,7 +1119,7 @@ export interface S3DataSource {
|
|
|
1119
1119
|
* <ul>
|
|
1120
1120
|
* <li>
|
|
1121
1121
|
* <p> A key name prefix might look like this:
|
|
1122
|
-
*
|
|
1122
|
+
* <code>s3://bucketname/exampleprefix/</code>
|
|
1123
1123
|
* </p>
|
|
1124
1124
|
* </li>
|
|
1125
1125
|
* <li>
|
|
@@ -1665,7 +1665,8 @@ export interface StoppingCondition {
|
|
|
1665
1665
|
MaxWaitTimeInSeconds?: number;
|
|
1666
1666
|
/**
|
|
1667
1667
|
* @public
|
|
1668
|
-
* <p>The maximum length of time, in seconds, that a training or compilation job can be
|
|
1668
|
+
* <p>The maximum length of time, in seconds, that a training or compilation job can be
|
|
1669
|
+
* pending before it is stopped.</p>
|
|
1669
1670
|
*/
|
|
1670
1671
|
MaxPendingTimeInSeconds?: number;
|
|
1671
1672
|
}
|
|
@@ -1783,7 +1784,7 @@ export interface TransformS3DataSource {
|
|
|
1783
1784
|
* <ul>
|
|
1784
1785
|
* <li>
|
|
1785
1786
|
* <p> A key name prefix might look like this:
|
|
1786
|
-
*
|
|
1787
|
+
* <code>s3://bucketname/exampleprefix/</code>. </p>
|
|
1787
1788
|
* </li>
|
|
1788
1789
|
* <li>
|
|
1789
1790
|
* <p> A manifest might look like this:
|
|
@@ -5778,16 +5779,26 @@ export interface TextClassificationJobConfig {
|
|
|
5778
5779
|
}
|
|
5779
5780
|
/**
|
|
5780
5781
|
* @public
|
|
5781
|
-
* <p>The access configuration file
|
|
5782
|
-
* end-user license agreement (EULA) within the <code>ModelAccessConfig</code
|
|
5783
|
-
*
|
|
5782
|
+
* <p>The access configuration file to control access to the ML model. You can explicitly accept the model
|
|
5783
|
+
* end-user license agreement (EULA) within the <code>ModelAccessConfig</code>.</p>
|
|
5784
|
+
* <ul>
|
|
5785
|
+
* <li>
|
|
5786
|
+
* <p>If you are a Jumpstart user, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-foundation-models-choose.html#jumpstart-foundation-models-choose-eula">End-user license agreements</a> section for more details on accepting the EULA.</p>
|
|
5787
|
+
* </li>
|
|
5788
|
+
* <li>
|
|
5789
|
+
* <p>If you are an AutoML user, see the <i>Optional Parameters</i> section of
|
|
5790
|
+
* <i>Create an AutoML job to fine-tune text generation models using the
|
|
5791
|
+
* API</i> for details on <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-create-experiment-finetune-llms.html#autopilot-llms-finetuning-api-optional-params">How to set the EULA acceptance when fine-tuning a model using the AutoML
|
|
5792
|
+
* API</a>.</p>
|
|
5793
|
+
* </li>
|
|
5794
|
+
* </ul>
|
|
5784
5795
|
*/
|
|
5785
5796
|
export interface ModelAccessConfig {
|
|
5786
5797
|
/**
|
|
5787
5798
|
* @public
|
|
5788
5799
|
* <p>Specifies agreement to the model end-user license agreement (EULA). The
|
|
5789
|
-
*
|
|
5790
|
-
*
|
|
5800
|
+
* <code>AcceptEula</code> value must be explicitly defined as <code>True</code> in order
|
|
5801
|
+
* to accept the EULA that this model requires. You are responsible for reviewing and
|
|
5791
5802
|
* complying with any applicable license terms and making sure they are acceptable for your
|
|
5792
5803
|
* use case before downloading or using a model.</p>
|
|
5793
5804
|
*/
|
|
@@ -5807,8 +5818,8 @@ export interface TextGenerationJobConfig {
|
|
|
5807
5818
|
/**
|
|
5808
5819
|
* @public
|
|
5809
5820
|
* <p>How long a fine-tuning job is allowed to run. For <code>TextGenerationJobConfig</code>
|
|
5810
|
-
* problem types, the <code>MaxRuntimePerTrainingJobInSeconds</code> attribute of
|
|
5811
|
-
*
|
|
5821
|
+
* problem types, the <code>MaxRuntimePerTrainingJobInSeconds</code> attribute of
|
|
5822
|
+
* <code>AutoMLJobCompletionCriteria</code> defaults to 72h (259200s).</p>
|
|
5812
5823
|
*/
|
|
5813
5824
|
CompletionCriteria?: AutoMLJobCompletionCriteria;
|
|
5814
5825
|
/**
|
|
@@ -5860,9 +5871,19 @@ export interface TextGenerationJobConfig {
|
|
|
5860
5871
|
TextGenerationHyperParameters?: Record<string, string>;
|
|
5861
5872
|
/**
|
|
5862
5873
|
* @public
|
|
5863
|
-
* <p>The access configuration file
|
|
5864
|
-
* end-user license agreement (EULA) within the <code>ModelAccessConfig</code
|
|
5865
|
-
*
|
|
5874
|
+
* <p>The access configuration file to control access to the ML model. You can explicitly accept the model
|
|
5875
|
+
* end-user license agreement (EULA) within the <code>ModelAccessConfig</code>.</p>
|
|
5876
|
+
* <ul>
|
|
5877
|
+
* <li>
|
|
5878
|
+
* <p>If you are a Jumpstart user, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-foundation-models-choose.html#jumpstart-foundation-models-choose-eula">End-user license agreements</a> section for more details on accepting the EULA.</p>
|
|
5879
|
+
* </li>
|
|
5880
|
+
* <li>
|
|
5881
|
+
* <p>If you are an AutoML user, see the <i>Optional Parameters</i> section of
|
|
5882
|
+
* <i>Create an AutoML job to fine-tune text generation models using the
|
|
5883
|
+
* API</i> for details on <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-create-experiment-finetune-llms.html#autopilot-llms-finetuning-api-optional-params">How to set the EULA acceptance when fine-tuning a model using the AutoML
|
|
5884
|
+
* API</a>.</p>
|
|
5885
|
+
* </li>
|
|
5886
|
+
* </ul>
|
|
5866
5887
|
*/
|
|
5867
5888
|
ModelAccessConfig?: ModelAccessConfig;
|
|
5868
5889
|
}
|
|
@@ -8754,11 +8775,10 @@ export interface S3ModelDataSource {
|
|
|
8754
8775
|
CompressionType: ModelCompressionType | undefined;
|
|
8755
8776
|
/**
|
|
8756
8777
|
* @public
|
|
8757
|
-
* <p>Specifies the access configuration file for the ML model. You can explicitly accept
|
|
8758
|
-
*
|
|
8759
|
-
*
|
|
8760
|
-
*
|
|
8761
|
-
* model.</p>
|
|
8778
|
+
* <p>Specifies the access configuration file for the ML model. You can explicitly accept the
|
|
8779
|
+
* model end-user license agreement (EULA) within the <code>ModelAccessConfig</code>. You are
|
|
8780
|
+
* responsible for reviewing and complying with any applicable license terms and making sure
|
|
8781
|
+
* they are acceptable for your use case before downloading or using a model.</p>
|
|
8762
8782
|
*/
|
|
8763
8783
|
ModelAccessConfig?: ModelAccessConfig;
|
|
8764
8784
|
}
|
|
@@ -1134,26 +1134,25 @@ export interface RStudioServerProDomainSettings {
|
|
|
1134
1134
|
}
|
|
1135
1135
|
/**
|
|
1136
1136
|
* @public
|
|
1137
|
-
* <p>A collection of settings that apply to the <code>SageMaker Domain</code>. These
|
|
1138
|
-
*
|
|
1137
|
+
* <p>A collection of settings that apply to the <code>SageMaker Domain</code>. These settings
|
|
1138
|
+
* are specified through the <code>CreateDomain</code> API call.</p>
|
|
1139
1139
|
*/
|
|
1140
1140
|
export interface DomainSettings {
|
|
1141
1141
|
/**
|
|
1142
1142
|
* @public
|
|
1143
|
-
* <p>The security groups for the Amazon Virtual Private Cloud that the <code>Domain</code> uses for
|
|
1144
|
-
*
|
|
1143
|
+
* <p>The security groups for the Amazon Virtual Private Cloud that the <code>Domain</code> uses for communication
|
|
1144
|
+
* between Domain-level apps and user apps.</p>
|
|
1145
1145
|
*/
|
|
1146
1146
|
SecurityGroupIds?: string[];
|
|
1147
1147
|
/**
|
|
1148
1148
|
* @public
|
|
1149
1149
|
* <p>A collection of settings that configure the <code>RStudioServerPro</code> Domain-level
|
|
1150
|
-
*
|
|
1150
|
+
* app.</p>
|
|
1151
1151
|
*/
|
|
1152
1152
|
RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* @public
|
|
1155
|
-
* <p>The configuration for attaching a SageMaker user profile name to the execution role as a
|
|
1156
|
-
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">sts:SourceIdentity key</a>.</p>
|
|
1155
|
+
* <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">sts:SourceIdentity key</a>.</p>
|
|
1157
1156
|
*/
|
|
1158
1157
|
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
|
|
1159
1158
|
/**
|
|
@@ -1178,12 +1177,12 @@ export interface CreateDomainRequest {
|
|
|
1178
1177
|
AuthMode: AuthMode | undefined;
|
|
1179
1178
|
/**
|
|
1180
1179
|
* @public
|
|
1181
|
-
* <p>The default settings to use to create a user profile when <code>UserSettings</code> isn't
|
|
1182
|
-
*
|
|
1180
|
+
* <p>The default settings to use to create a user profile when <code>UserSettings</code> isn't
|
|
1181
|
+
* specified in the call to the <code>CreateUserProfile</code> API.</p>
|
|
1183
1182
|
* <p>
|
|
1184
1183
|
* <code>SecurityGroups</code> is aggregated when specified in both calls. For all other
|
|
1185
|
-
*
|
|
1186
|
-
*
|
|
1184
|
+
* settings in <code>UserSettings</code>, the values specified in <code>CreateUserProfile</code>
|
|
1185
|
+
* take precedence over those specified in <code>CreateDomain</code>.</p>
|
|
1187
1186
|
*/
|
|
1188
1187
|
DefaultUserSettings: UserSettings | undefined;
|
|
1189
1188
|
/**
|
|
@@ -1203,11 +1202,11 @@ export interface CreateDomainRequest {
|
|
|
1203
1202
|
VpcId: string | undefined;
|
|
1204
1203
|
/**
|
|
1205
1204
|
* @public
|
|
1206
|
-
* <p>Tags to associated with the Domain. Each tag consists of a key and an optional value.
|
|
1207
|
-
*
|
|
1208
|
-
*
|
|
1209
|
-
* <p>Tags that you specify for the Domain are also added to all Apps that the
|
|
1210
|
-
*
|
|
1205
|
+
* <p>Tags to associated with the Domain. Each tag consists of a key and an optional value. Tag
|
|
1206
|
+
* keys must be unique per resource. Tags are searchable using the <code>Search</code>
|
|
1207
|
+
* API.</p>
|
|
1208
|
+
* <p>Tags that you specify for the Domain are also added to all Apps that the Domain
|
|
1209
|
+
* launches.</p>
|
|
1211
1210
|
*/
|
|
1212
1211
|
Tags?: Tag[];
|
|
1213
1212
|
/**
|
|
@@ -1218,7 +1217,7 @@ export interface CreateDomainRequest {
|
|
|
1218
1217
|
* <li>
|
|
1219
1218
|
* <p>
|
|
1220
1219
|
* <code>PublicInternetOnly</code> - Non-EFS traffic is through a VPC managed by
|
|
1221
|
-
*
|
|
1220
|
+
* Amazon SageMaker, which allows direct internet access</p>
|
|
1222
1221
|
* </li>
|
|
1223
1222
|
* <li>
|
|
1224
1223
|
* <p>
|
|
@@ -1236,18 +1235,19 @@ export interface CreateDomainRequest {
|
|
|
1236
1235
|
HomeEfsFileSystemKmsKeyId?: string;
|
|
1237
1236
|
/**
|
|
1238
1237
|
* @public
|
|
1239
|
-
* <p>SageMaker uses Amazon Web Services KMS to encrypt the EFS volume attached to the domain with an
|
|
1240
|
-
*
|
|
1238
|
+
* <p>SageMaker uses Amazon Web Services KMS to encrypt the EFS volume attached to the domain with an
|
|
1239
|
+
* Amazon Web Services managed key by default. For more control, specify a customer managed
|
|
1240
|
+
* key.</p>
|
|
1241
1241
|
*/
|
|
1242
1242
|
KmsKeyId?: string;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* @public
|
|
1245
1245
|
* <p>The entity that creates and manages the required security groups for inter-app
|
|
1246
|
-
*
|
|
1247
|
-
*
|
|
1248
|
-
*
|
|
1249
|
-
*
|
|
1250
|
-
*
|
|
1246
|
+
* communication in <code>VPCOnly</code> mode. Required when
|
|
1247
|
+
* <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and
|
|
1248
|
+
* <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is
|
|
1249
|
+
* provided. If setting up the domain for use with RStudio, this value must be set to
|
|
1250
|
+
* <code>Service</code>.</p>
|
|
1251
1251
|
*/
|
|
1252
1252
|
AppSecurityGroupManagement?: AppSecurityGroupManagement;
|
|
1253
1253
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CognitoConfig, CognitoMemberDefinition, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, NeoVpcConfig, ObjectiveStatus, OutputConfig, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DebugHookConfig, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, ParallelismConfiguration, ProcessingInput, ProcessingInstanceType, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceSharingSettings,
|
|
2
|
+
import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DebugHookConfig, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, ParallelismConfiguration, ProcessingInput, ProcessingInstanceType, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceSharingSettings, ThroughputMode, UserSettings, VendorGuidance } from "./models_1";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
* <p>Configuration information for SageMaker Debugger rules for debugging. To learn more about
|
|
@@ -1537,9 +1537,9 @@ export interface DeleteDomainRequest {
|
|
|
1537
1537
|
DomainId: string | undefined;
|
|
1538
1538
|
/**
|
|
1539
1539
|
* @public
|
|
1540
|
-
* <p>The retention policy for this domain, which specifies whether resources will be retained
|
|
1541
|
-
*
|
|
1542
|
-
*
|
|
1540
|
+
* <p>The retention policy for this domain, which specifies whether resources will be retained
|
|
1541
|
+
* after the Domain is deleted. By default, all resources are retained (not automatically
|
|
1542
|
+
* deleted). </p>
|
|
1543
1543
|
*/
|
|
1544
1544
|
RetentionPolicy?: RetentionPolicy;
|
|
1545
1545
|
}
|
|
@@ -1696,6 +1696,16 @@ export interface DeleteHumanTaskUiRequest {
|
|
|
1696
1696
|
*/
|
|
1697
1697
|
export interface DeleteHumanTaskUiResponse {
|
|
1698
1698
|
}
|
|
1699
|
+
/**
|
|
1700
|
+
* @public
|
|
1701
|
+
*/
|
|
1702
|
+
export interface DeleteHyperParameterTuningJobRequest {
|
|
1703
|
+
/**
|
|
1704
|
+
* @public
|
|
1705
|
+
* <p>The name of the hyperparameter tuning job that you want to delete.</p>
|
|
1706
|
+
*/
|
|
1707
|
+
HyperParameterTuningJobName: string | undefined;
|
|
1708
|
+
}
|
|
1699
1709
|
/**
|
|
1700
1710
|
* @public
|
|
1701
1711
|
*/
|
|
@@ -3530,7 +3540,7 @@ export interface DescribeDomainResponse {
|
|
|
3530
3540
|
DomainName?: string;
|
|
3531
3541
|
/**
|
|
3532
3542
|
* @public
|
|
3533
|
-
* <p>The ID of the Amazon Elastic File System
|
|
3543
|
+
* <p>The ID of the Amazon Elastic File System managed by this Domain.</p>
|
|
3534
3544
|
*/
|
|
3535
3545
|
HomeEfsFileSystemId?: string;
|
|
3536
3546
|
/**
|
|
@@ -3540,7 +3550,8 @@ export interface DescribeDomainResponse {
|
|
|
3540
3550
|
SingleSignOnManagedApplicationInstanceId?: string;
|
|
3541
3551
|
/**
|
|
3542
3552
|
* @public
|
|
3543
|
-
* <p>The ARN of the application managed by SageMaker in IAM Identity Center. This value is
|
|
3553
|
+
* <p>The ARN of the application managed by SageMaker in IAM Identity Center. This value is
|
|
3554
|
+
* only returned for domains created after October 1, 2023.</p>
|
|
3544
3555
|
*/
|
|
3545
3556
|
SingleSignOnApplicationArn?: string;
|
|
3546
3557
|
/**
|
|
@@ -3566,7 +3577,7 @@ export interface DescribeDomainResponse {
|
|
|
3566
3577
|
/**
|
|
3567
3578
|
* @public
|
|
3568
3579
|
* <p>The ID of the security group that authorizes traffic between the
|
|
3569
|
-
*
|
|
3580
|
+
* <code>RSessionGateway</code> apps and the <code>RStudioServerPro</code> app.</p>
|
|
3570
3581
|
*/
|
|
3571
3582
|
SecurityGroupIdForDomainBoundary?: string;
|
|
3572
3583
|
/**
|
|
@@ -3576,9 +3587,8 @@ export interface DescribeDomainResponse {
|
|
|
3576
3587
|
AuthMode?: AuthMode;
|
|
3577
3588
|
/**
|
|
3578
3589
|
* @public
|
|
3579
|
-
* <p>Settings which are applied to UserProfiles in this domain if settings are not explicitly
|
|
3580
|
-
*
|
|
3581
|
-
* </p>
|
|
3590
|
+
* <p>Settings which are applied to UserProfiles in this domain if settings are not explicitly
|
|
3591
|
+
* specified in a given UserProfile. </p>
|
|
3582
3592
|
*/
|
|
3583
3593
|
DefaultUserSettings?: UserSettings;
|
|
3584
3594
|
/**
|
|
@@ -3594,7 +3604,7 @@ export interface DescribeDomainResponse {
|
|
|
3594
3604
|
* <li>
|
|
3595
3605
|
* <p>
|
|
3596
3606
|
* <code>PublicInternetOnly</code> - Non-EFS traffic is through a VPC managed by
|
|
3597
|
-
*
|
|
3607
|
+
* Amazon SageMaker, which allows direct internet access</p>
|
|
3598
3608
|
* </li>
|
|
3599
3609
|
* <li>
|
|
3600
3610
|
* <p>
|
|
@@ -3627,17 +3637,17 @@ export interface DescribeDomainResponse {
|
|
|
3627
3637
|
VpcId?: string;
|
|
3628
3638
|
/**
|
|
3629
3639
|
* @public
|
|
3630
|
-
* <p>The Amazon Web Services KMS customer managed key used to encrypt
|
|
3631
|
-
*
|
|
3640
|
+
* <p>The Amazon Web Services KMS customer managed key used to encrypt the EFS volume attached to
|
|
3641
|
+
* the domain.</p>
|
|
3632
3642
|
*/
|
|
3633
3643
|
KmsKeyId?: string;
|
|
3634
3644
|
/**
|
|
3635
3645
|
* @public
|
|
3636
3646
|
* <p>The entity that creates and manages the required security groups for inter-app
|
|
3637
|
-
*
|
|
3638
|
-
*
|
|
3639
|
-
*
|
|
3640
|
-
*
|
|
3647
|
+
* communication in <code>VPCOnly</code> mode. Required when
|
|
3648
|
+
* <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and
|
|
3649
|
+
* <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is
|
|
3650
|
+
* provided.</p>
|
|
3641
3651
|
*/
|
|
3642
3652
|
AppSecurityGroupManagement?: AppSecurityGroupManagement;
|
|
3643
3653
|
/**
|
|
@@ -4542,15 +4552,15 @@ export interface OfflineStoreStatus {
|
|
|
4542
4552
|
}
|
|
4543
4553
|
/**
|
|
4544
4554
|
* @public
|
|
4545
|
-
* <p>Active throughput configuration of the feature group.
|
|
4546
|
-
*
|
|
4547
|
-
*
|
|
4548
|
-
*
|
|
4549
|
-
*
|
|
4550
|
-
*
|
|
4551
|
-
*
|
|
4552
|
-
*
|
|
4553
|
-
*
|
|
4555
|
+
* <p>Active throughput configuration of the feature group. There are two modes:
|
|
4556
|
+
* <code>ON_DEMAND</code> and <code>PROVISIONED</code>. With on-demand mode, you are
|
|
4557
|
+
* charged for data reads and writes that your application performs on your feature group. You
|
|
4558
|
+
* do not need to specify read and write throughput because Feature Store accommodates your
|
|
4559
|
+
* workloads as they ramp up and down. You can switch a feature group to on-demand only once
|
|
4560
|
+
* in a 24 hour period. With provisioned throughput mode, you specify the read and write
|
|
4561
|
+
* capacity per second that you expect your application to require, and you are billed based
|
|
4562
|
+
* on those limits. Exceeding provisioned throughput will result in your requests being
|
|
4563
|
+
* throttled. </p>
|
|
4554
4564
|
* <p>Note: <code>PROVISIONED</code> throughput mode is supported only for feature groups that
|
|
4555
4565
|
* are offline-only, or use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType">
|
|
4556
4566
|
* <code>Standard</code>
|
|
@@ -4654,15 +4664,15 @@ export interface DescribeFeatureGroupResponse {
|
|
|
4654
4664
|
OfflineStoreConfig?: OfflineStoreConfig;
|
|
4655
4665
|
/**
|
|
4656
4666
|
* @public
|
|
4657
|
-
* <p>Active throughput configuration of the feature group.
|
|
4658
|
-
*
|
|
4659
|
-
*
|
|
4660
|
-
*
|
|
4661
|
-
*
|
|
4662
|
-
*
|
|
4663
|
-
*
|
|
4664
|
-
*
|
|
4665
|
-
*
|
|
4667
|
+
* <p>Active throughput configuration of the feature group. There are two modes:
|
|
4668
|
+
* <code>ON_DEMAND</code> and <code>PROVISIONED</code>. With on-demand mode, you are
|
|
4669
|
+
* charged for data reads and writes that your application performs on your feature group. You
|
|
4670
|
+
* do not need to specify read and write throughput because Feature Store accommodates your
|
|
4671
|
+
* workloads as they ramp up and down. You can switch a feature group to on-demand only once
|
|
4672
|
+
* in a 24 hour period. With provisioned throughput mode, you specify the read and write
|
|
4673
|
+
* capacity per second that you expect your application to require, and you are billed based
|
|
4674
|
+
* on those limits. Exceeding provisioned throughput will result in your requests being
|
|
4675
|
+
* throttled. </p>
|
|
4666
4676
|
* <p>Note: <code>PROVISIONED</code> throughput mode is supported only for feature groups that
|
|
4667
4677
|
* are offline-only, or use the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OnlineStoreConfig.html#sagemaker-Type-OnlineStoreConfig-StorageType">
|
|
4668
4678
|
* <code>Standard</code>
|
|
@@ -5483,8 +5493,7 @@ export interface DescribeHyperParameterTuningJobResponse {
|
|
|
5483
5493
|
TrainingJobDefinitions?: HyperParameterTrainingJobDefinition[];
|
|
5484
5494
|
/**
|
|
5485
5495
|
* @public
|
|
5486
|
-
* <p>The status of the tuning job
|
|
5487
|
-
* Stopped.</p>
|
|
5496
|
+
* <p>The status of the tuning job.</p>
|
|
5488
5497
|
*/
|
|
5489
5498
|
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus | undefined;
|
|
5490
5499
|
/**
|
|
@@ -7504,7 +7513,7 @@ export interface DescribeModelPackageOutput {
|
|
|
7504
7513
|
export interface DescribeModelPackageGroupInput {
|
|
7505
7514
|
/**
|
|
7506
7515
|
* @public
|
|
7507
|
-
* <p>The name of
|
|
7516
|
+
* <p>The name of the model group to describe.</p>
|
|
7508
7517
|
*/
|
|
7509
7518
|
ModelPackageGroupName: string | undefined;
|
|
7510
7519
|
}
|
|
@@ -8696,41 +8705,6 @@ export interface DescribeStudioLifecycleConfigRequest {
|
|
|
8696
8705
|
*/
|
|
8697
8706
|
StudioLifecycleConfigName: string | undefined;
|
|
8698
8707
|
}
|
|
8699
|
-
/**
|
|
8700
|
-
* @public
|
|
8701
|
-
*/
|
|
8702
|
-
export interface DescribeStudioLifecycleConfigResponse {
|
|
8703
|
-
/**
|
|
8704
|
-
* @public
|
|
8705
|
-
* <p>The ARN of the Lifecycle Configuration to describe.</p>
|
|
8706
|
-
*/
|
|
8707
|
-
StudioLifecycleConfigArn?: string;
|
|
8708
|
-
/**
|
|
8709
|
-
* @public
|
|
8710
|
-
* <p>The name of the Amazon SageMaker Studio Lifecycle Configuration that is described.</p>
|
|
8711
|
-
*/
|
|
8712
|
-
StudioLifecycleConfigName?: string;
|
|
8713
|
-
/**
|
|
8714
|
-
* @public
|
|
8715
|
-
* <p>The creation time of the Amazon SageMaker Studio Lifecycle Configuration.</p>
|
|
8716
|
-
*/
|
|
8717
|
-
CreationTime?: Date;
|
|
8718
|
-
/**
|
|
8719
|
-
* @public
|
|
8720
|
-
* <p>This value is equivalent to CreationTime because Amazon SageMaker Studio Lifecycle Configurations are immutable.</p>
|
|
8721
|
-
*/
|
|
8722
|
-
LastModifiedTime?: Date;
|
|
8723
|
-
/**
|
|
8724
|
-
* @public
|
|
8725
|
-
* <p>The content of your Amazon SageMaker Studio Lifecycle Configuration script.</p>
|
|
8726
|
-
*/
|
|
8727
|
-
StudioLifecycleConfigContent?: string;
|
|
8728
|
-
/**
|
|
8729
|
-
* @public
|
|
8730
|
-
* <p>The App type that the Lifecycle Configuration is attached to.</p>
|
|
8731
|
-
*/
|
|
8732
|
-
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
8733
|
-
}
|
|
8734
8708
|
/**
|
|
8735
8709
|
* @internal
|
|
8736
8710
|
*/
|
|
@@ -1,6 +1,41 @@
|
|
|
1
1
|
import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClusterNodeSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContextSummary, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DebugHookConfig, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, RecommendationJobType, ResourceLimits, RetryStrategy, UserSettings } from "./models_1";
|
|
2
|
+
import { _InstanceType, DebugHookConfig, DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, RecommendationJobType, ResourceLimits, RetryStrategy, StudioLifecycleConfigAppType, UserSettings } from "./models_1";
|
|
3
3
|
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, PipelineExecutionStatus, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeStudioLifecycleConfigResponse {
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
* <p>The ARN of the Lifecycle Configuration to describe.</p>
|
|
11
|
+
*/
|
|
12
|
+
StudioLifecycleConfigArn?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* <p>The name of the Amazon SageMaker Studio Lifecycle Configuration that is described.</p>
|
|
16
|
+
*/
|
|
17
|
+
StudioLifecycleConfigName?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
* <p>The creation time of the Amazon SageMaker Studio Lifecycle Configuration.</p>
|
|
21
|
+
*/
|
|
22
|
+
CreationTime?: Date;
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
* <p>This value is equivalent to CreationTime because Amazon SageMaker Studio Lifecycle Configurations are immutable.</p>
|
|
26
|
+
*/
|
|
27
|
+
LastModifiedTime?: Date;
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* <p>The content of your Amazon SageMaker Studio Lifecycle Configuration script.</p>
|
|
31
|
+
*/
|
|
32
|
+
StudioLifecycleConfigContent?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
* <p>The App type that the Lifecycle Configuration is attached to.</p>
|
|
36
|
+
*/
|
|
37
|
+
StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
|
|
38
|
+
}
|
|
4
39
|
/**
|
|
5
40
|
* @public
|
|
6
41
|
*/
|
|
@@ -2020,20 +2055,19 @@ export interface DomainSettingsForUpdate {
|
|
|
2020
2055
|
/**
|
|
2021
2056
|
* @public
|
|
2022
2057
|
* <p>A collection of <code>RStudioServerPro</code> Domain-level app settings to update. A
|
|
2023
|
-
*
|
|
2058
|
+
* single <code>RStudioServerPro</code> application is created for a domain.</p>
|
|
2024
2059
|
*/
|
|
2025
2060
|
RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
|
|
2026
2061
|
/**
|
|
2027
2062
|
* @public
|
|
2028
|
-
* <p>The configuration for attaching a SageMaker user profile name to the execution role as a
|
|
2029
|
-
*
|
|
2030
|
-
* are no apps in the <code>InService</code> or <code>Pending</code> state.</p>
|
|
2063
|
+
* <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">sts:SourceIdentity key</a>. This configuration can only be modified if there are no
|
|
2064
|
+
* apps in the <code>InService</code> or <code>Pending</code> state.</p>
|
|
2031
2065
|
*/
|
|
2032
2066
|
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
|
|
2033
2067
|
/**
|
|
2034
2068
|
* @public
|
|
2035
|
-
* <p>The security groups for the Amazon Virtual Private Cloud that the <code>Domain</code> uses for
|
|
2036
|
-
*
|
|
2069
|
+
* <p>The security groups for the Amazon Virtual Private Cloud that the <code>Domain</code> uses for communication
|
|
2070
|
+
* between Domain-level apps and user apps.</p>
|
|
2037
2071
|
*/
|
|
2038
2072
|
SecurityGroupIds?: string[];
|
|
2039
2073
|
/**
|
|
@@ -5914,16 +5948,16 @@ export interface ListDevicesResponse {
|
|
|
5914
5948
|
export interface ListDomainsRequest {
|
|
5915
5949
|
/**
|
|
5916
5950
|
* @public
|
|
5917
|
-
* <p>If the previous response was truncated, you will receive this token.
|
|
5918
|
-
*
|
|
5951
|
+
* <p>If the previous response was truncated, you will receive this token. Use it in your next
|
|
5952
|
+
* request to receive the next set of results.</p>
|
|
5919
5953
|
*/
|
|
5920
5954
|
NextToken?: string;
|
|
5921
5955
|
/**
|
|
5922
5956
|
* @public
|
|
5923
|
-
* <p>The total number of items to return in the response. If the total
|
|
5924
|
-
*
|
|
5925
|
-
*
|
|
5926
|
-
*
|
|
5957
|
+
* <p>The total number of items to return in the response. If the total number of items
|
|
5958
|
+
* available is more than the value specified, a <code>NextToken</code> is provided in the
|
|
5959
|
+
* response. To resume pagination, provide the <code>NextToken</code> value in the as part of a
|
|
5960
|
+
* subsequent call. The default value is 10.</p>
|
|
5927
5961
|
*/
|
|
5928
5962
|
MaxResults?: number;
|
|
5929
5963
|
}
|
|
@@ -5938,8 +5972,8 @@ export interface ListDomainsResponse {
|
|
|
5938
5972
|
Domains?: DomainDetails[];
|
|
5939
5973
|
/**
|
|
5940
5974
|
* @public
|
|
5941
|
-
* <p>If the previous response was truncated, you will receive this token.
|
|
5942
|
-
*
|
|
5975
|
+
* <p>If the previous response was truncated, you will receive this token. Use it in your next
|
|
5976
|
+
* request to receive the next set of results.</p>
|
|
5943
5977
|
*/
|
|
5944
5978
|
NextToken?: string;
|
|
5945
5979
|
}
|
|
@@ -9561,66 +9595,3 @@ export interface ProcessingJobStepMetadata {
|
|
|
9561
9595
|
*/
|
|
9562
9596
|
Arn?: string;
|
|
9563
9597
|
}
|
|
9564
|
-
/**
|
|
9565
|
-
* @public
|
|
9566
|
-
* <p>Container for the metadata for a Quality check step. For more information, see
|
|
9567
|
-
* the topic on <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/build-and-manage-steps.html#step-type-quality-check">QualityCheck step</a> in the <i>Amazon SageMaker Developer Guide</i>.
|
|
9568
|
-
* </p>
|
|
9569
|
-
*/
|
|
9570
|
-
export interface QualityCheckStepMetadata {
|
|
9571
|
-
/**
|
|
9572
|
-
* @public
|
|
9573
|
-
* <p>The type of the Quality check step.</p>
|
|
9574
|
-
*/
|
|
9575
|
-
CheckType?: string;
|
|
9576
|
-
/**
|
|
9577
|
-
* @public
|
|
9578
|
-
* <p>The Amazon S3 URI of the baseline statistics file used for the drift check.</p>
|
|
9579
|
-
*/
|
|
9580
|
-
BaselineUsedForDriftCheckStatistics?: string;
|
|
9581
|
-
/**
|
|
9582
|
-
* @public
|
|
9583
|
-
* <p>The Amazon S3 URI of the baseline constraints file used for the drift check.</p>
|
|
9584
|
-
*/
|
|
9585
|
-
BaselineUsedForDriftCheckConstraints?: string;
|
|
9586
|
-
/**
|
|
9587
|
-
* @public
|
|
9588
|
-
* <p>The Amazon S3 URI of the newly calculated baseline statistics file.</p>
|
|
9589
|
-
*/
|
|
9590
|
-
CalculatedBaselineStatistics?: string;
|
|
9591
|
-
/**
|
|
9592
|
-
* @public
|
|
9593
|
-
* <p>The Amazon S3 URI of the newly calculated baseline constraints file.</p>
|
|
9594
|
-
*/
|
|
9595
|
-
CalculatedBaselineConstraints?: string;
|
|
9596
|
-
/**
|
|
9597
|
-
* @public
|
|
9598
|
-
* <p>The model package group name.</p>
|
|
9599
|
-
*/
|
|
9600
|
-
ModelPackageGroupName?: string;
|
|
9601
|
-
/**
|
|
9602
|
-
* @public
|
|
9603
|
-
* <p>The Amazon S3 URI of violation report if violations are detected.</p>
|
|
9604
|
-
*/
|
|
9605
|
-
ViolationReport?: string;
|
|
9606
|
-
/**
|
|
9607
|
-
* @public
|
|
9608
|
-
* <p>The Amazon Resource Name (ARN) of the Quality check processing job that was run by this step execution.</p>
|
|
9609
|
-
*/
|
|
9610
|
-
CheckJobArn?: string;
|
|
9611
|
-
/**
|
|
9612
|
-
* @public
|
|
9613
|
-
* <p>This flag indicates if the drift check against the previous baseline will be skipped or not.
|
|
9614
|
-
* If it is set to <code>False</code>, the previous baseline of the configured check type must be available.</p>
|
|
9615
|
-
*/
|
|
9616
|
-
SkipCheck?: boolean;
|
|
9617
|
-
/**
|
|
9618
|
-
* @public
|
|
9619
|
-
* <p>This flag indicates if a newly calculated baseline can be accessed through step properties
|
|
9620
|
-
* <code>BaselineUsedForDriftCheckConstraints</code> and <code>BaselineUsedForDriftCheckStatistics</code>.
|
|
9621
|
-
* If it is set to <code>False</code>, the previous baseline of the configured check type must also be available.
|
|
9622
|
-
* These can be accessed through the <code>BaselineUsedForDriftCheckConstraints</code> and <code>
|
|
9623
|
-
* BaselineUsedForDriftCheckStatistics</code> properties. </p>
|
|
9624
|
-
*/
|
|
9625
|
-
RegisterNewBaseline?: boolean;
|
|
9626
|
-
}
|