@aws-sdk/client-sagemaker 3.398.0 → 3.403.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.
Files changed (29) hide show
  1. package/dist-cjs/models/models_0.js +5 -5
  2. package/dist-cjs/models/models_1.js +5 -1
  3. package/dist-cjs/models/models_2.js +1 -14
  4. package/dist-cjs/models/models_3.js +14 -2
  5. package/dist-es/models/models_0.js +4 -4
  6. package/dist-es/models/models_1.js +4 -0
  7. package/dist-es/models/models_2.js +0 -12
  8. package/dist-es/models/models_3.js +12 -0
  9. package/dist-types/commands/CreateDomainCommand.d.ts +7 -0
  10. package/dist-types/commands/CreateUserProfileCommand.d.ts +7 -0
  11. package/dist-types/commands/DeleteExperimentCommand.d.ts +2 -1
  12. package/dist-types/commands/DeleteFeatureGroupCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
  14. package/dist-types/commands/DescribeUserProfileCommand.d.ts +7 -0
  15. package/dist-types/commands/UpdateDomainCommand.d.ts +7 -0
  16. package/dist-types/commands/UpdateUserProfileCommand.d.ts +7 -0
  17. package/dist-types/models/models_0.d.ts +41 -29
  18. package/dist-types/models/models_1.d.ts +31 -23
  19. package/dist-types/models/models_2.d.ts +21 -221
  20. package/dist-types/models/models_3.d.ts +224 -180
  21. package/dist-types/models/models_4.d.ts +181 -4
  22. package/dist-types/ts3.4/commands/DeleteExperimentCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/commands/DeleteFeatureGroupCommand.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +12 -10
  25. package/dist-types/ts3.4/models/models_1.d.ts +11 -8
  26. package/dist-types/ts3.4/models/models_2.d.ts +6 -18
  27. package/dist-types/ts3.4/models/models_3.d.ts +18 -37
  28. package/dist-types/ts3.4/models/models_4.d.ts +38 -3
  29. package/package.json +1 -1
@@ -1,5 +1,26 @@
1
1
  import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, Channel, CheckpointConfig, CognitoConfig, CompilationJobStatus, ContainerDefinition, ContextSource, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, EdgeOutputConfig, EdgePresetDeploymentType, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, ObjectiveStatus, OutputConfig, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, CustomizedMetricSpecification, DataCaptureConfig, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EndpointInfo, ExecutionRoleIdentityConfig, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreConfig, OnlineStoreConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantServerlessConfig, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UserSettings, VendorGuidance } from "./models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface DeleteExperimentResponse {
7
+ /**
8
+ * @public
9
+ * <p>The Amazon Resource Name (ARN) of the experiment that is being deleted.</p>
10
+ */
11
+ ExperimentArn?: string;
12
+ }
13
+ /**
14
+ * @public
15
+ */
16
+ export interface DeleteFeatureGroupRequest {
17
+ /**
18
+ * @public
19
+ * <p>The name of the <code>FeatureGroup</code> you want to delete. The name must be unique
20
+ * within an Amazon Web Services Region in an Amazon Web Services account. </p>
21
+ */
22
+ FeatureGroupName: string | undefined;
23
+ }
3
24
  /**
4
25
  * @public
5
26
  */
@@ -9649,227 +9670,6 @@ export interface FeatureMetadata {
9649
9670
  */
9650
9671
  Parameters?: FeatureParameter[];
9651
9672
  }
9652
- /**
9653
- * @public
9654
- * @enum
9655
- */
9656
- export declare const Operator: {
9657
- readonly CONTAINS: "Contains";
9658
- readonly EQUALS: "Equals";
9659
- readonly EXISTS: "Exists";
9660
- readonly GREATER_THAN: "GreaterThan";
9661
- readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
9662
- readonly IN: "In";
9663
- readonly LESS_THAN: "LessThan";
9664
- readonly LESS_THAN_OR_EQUAL_TO: "LessThanOrEqualTo";
9665
- readonly NOT_EQUALS: "NotEquals";
9666
- readonly NOT_EXISTS: "NotExists";
9667
- };
9668
- /**
9669
- * @public
9670
- */
9671
- export type Operator = (typeof Operator)[keyof typeof Operator];
9672
- /**
9673
- * @public
9674
- * <p>A conditional statement for a search expression that includes a resource property, a
9675
- * Boolean operator, and a value. Resources that match the statement are returned in the
9676
- * results from the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API.</p>
9677
- * <p>If you specify a <code>Value</code>, but not an <code>Operator</code>, SageMaker uses the
9678
- * equals operator.</p>
9679
- * <p>In search, there are several property types:</p>
9680
- * <dl>
9681
- * <dt>Metrics</dt>
9682
- * <dd>
9683
- * <p>To define a metric filter, enter a value using the form
9684
- * <code>"Metrics.<name>"</code>, where <code><name></code> is
9685
- * a metric name. For example, the following filter searches for training jobs
9686
- * with an <code>"accuracy"</code> metric greater than
9687
- * <code>"0.9"</code>:</p>
9688
- * <p>
9689
- * <code>\{</code>
9690
- * </p>
9691
- * <p>
9692
- * <code>"Name": "Metrics.accuracy",</code>
9693
- * </p>
9694
- * <p>
9695
- * <code>"Operator": "GreaterThan",</code>
9696
- * </p>
9697
- * <p>
9698
- * <code>"Value": "0.9"</code>
9699
- * </p>
9700
- * <p>
9701
- * <code>\}</code>
9702
- * </p>
9703
- * </dd>
9704
- * <dt>HyperParameters</dt>
9705
- * <dd>
9706
- * <p>To define a hyperparameter filter, enter a value with the form
9707
- * <code>"HyperParameters.<name>"</code>. Decimal hyperparameter
9708
- * values are treated as a decimal in a comparison if the specified
9709
- * <code>Value</code> is also a decimal value. If the specified
9710
- * <code>Value</code> is an integer, the decimal hyperparameter values are
9711
- * treated as integers. For example, the following filter is satisfied by
9712
- * training jobs with a <code>"learning_rate"</code> hyperparameter that is
9713
- * less than <code>"0.5"</code>:</p>
9714
- * <p>
9715
- * <code> \{</code>
9716
- * </p>
9717
- * <p>
9718
- * <code> "Name": "HyperParameters.learning_rate",</code>
9719
- * </p>
9720
- * <p>
9721
- * <code> "Operator": "LessThan",</code>
9722
- * </p>
9723
- * <p>
9724
- * <code> "Value": "0.5"</code>
9725
- * </p>
9726
- * <p>
9727
- * <code> \}</code>
9728
- * </p>
9729
- * </dd>
9730
- * <dt>Tags</dt>
9731
- * <dd>
9732
- * <p>To define a tag filter, enter a value with the form
9733
- * <code>Tags.<key></code>.</p>
9734
- * </dd>
9735
- * </dl>
9736
- */
9737
- export interface Filter {
9738
- /**
9739
- * @public
9740
- * <p>A resource property name. For example, <code>TrainingJobName</code>. For
9741
- * valid property names, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_SearchRecord.html">SearchRecord</a>.
9742
- * You must specify a valid property for the resource.</p>
9743
- */
9744
- Name: string | undefined;
9745
- /**
9746
- * @public
9747
- * <p>A Boolean binary operator that is used to evaluate the filter. The operator field
9748
- * contains one of the following values:</p>
9749
- * <dl>
9750
- * <dt>Equals</dt>
9751
- * <dd>
9752
- * <p>The value of <code>Name</code> equals <code>Value</code>.</p>
9753
- * </dd>
9754
- * <dt>NotEquals</dt>
9755
- * <dd>
9756
- * <p>The value of <code>Name</code> doesn't equal <code>Value</code>.</p>
9757
- * </dd>
9758
- * <dt>Exists</dt>
9759
- * <dd>
9760
- * <p>The <code>Name</code> property exists.</p>
9761
- * </dd>
9762
- * <dt>NotExists</dt>
9763
- * <dd>
9764
- * <p>The <code>Name</code> property does not exist.</p>
9765
- * </dd>
9766
- * <dt>GreaterThan</dt>
9767
- * <dd>
9768
- * <p>The value of <code>Name</code> is greater than <code>Value</code>.
9769
- * Not supported for text properties.</p>
9770
- * </dd>
9771
- * <dt>GreaterThanOrEqualTo</dt>
9772
- * <dd>
9773
- * <p>The value of <code>Name</code> is greater than or equal to <code>Value</code>.
9774
- * Not supported for text properties.</p>
9775
- * </dd>
9776
- * <dt>LessThan</dt>
9777
- * <dd>
9778
- * <p>The value of <code>Name</code> is less than <code>Value</code>.
9779
- * Not supported for text properties.</p>
9780
- * </dd>
9781
- * <dt>LessThanOrEqualTo</dt>
9782
- * <dd>
9783
- * <p>The value of <code>Name</code> is less than or equal to <code>Value</code>.
9784
- * Not supported for text properties.</p>
9785
- * </dd>
9786
- * <dt>In</dt>
9787
- * <dd>
9788
- * <p>The value of <code>Name</code> is one of the comma delimited strings in
9789
- * <code>Value</code>. Only supported for text properties.</p>
9790
- * </dd>
9791
- * <dt>Contains</dt>
9792
- * <dd>
9793
- * <p>The value of <code>Name</code> contains the string <code>Value</code>.
9794
- * Only supported for text properties.</p>
9795
- * <p>A <code>SearchExpression</code> can include the <code>Contains</code> operator
9796
- * multiple times when the value of <code>Name</code> is one of the following:</p>
9797
- * <ul>
9798
- * <li>
9799
- * <p>
9800
- * <code>Experiment.DisplayName</code>
9801
- * </p>
9802
- * </li>
9803
- * <li>
9804
- * <p>
9805
- * <code>Experiment.ExperimentName</code>
9806
- * </p>
9807
- * </li>
9808
- * <li>
9809
- * <p>
9810
- * <code>Experiment.Tags</code>
9811
- * </p>
9812
- * </li>
9813
- * <li>
9814
- * <p>
9815
- * <code>Trial.DisplayName</code>
9816
- * </p>
9817
- * </li>
9818
- * <li>
9819
- * <p>
9820
- * <code>Trial.TrialName</code>
9821
- * </p>
9822
- * </li>
9823
- * <li>
9824
- * <p>
9825
- * <code>Trial.Tags</code>
9826
- * </p>
9827
- * </li>
9828
- * <li>
9829
- * <p>
9830
- * <code>TrialComponent.DisplayName</code>
9831
- * </p>
9832
- * </li>
9833
- * <li>
9834
- * <p>
9835
- * <code>TrialComponent.TrialComponentName</code>
9836
- * </p>
9837
- * </li>
9838
- * <li>
9839
- * <p>
9840
- * <code>TrialComponent.Tags</code>
9841
- * </p>
9842
- * </li>
9843
- * <li>
9844
- * <p>
9845
- * <code>TrialComponent.InputArtifacts</code>
9846
- * </p>
9847
- * </li>
9848
- * <li>
9849
- * <p>
9850
- * <code>TrialComponent.OutputArtifacts</code>
9851
- * </p>
9852
- * </li>
9853
- * </ul>
9854
- * <p>A <code>SearchExpression</code> can include only one <code>Contains</code> operator
9855
- * for all other values of <code>Name</code>. In these cases, if you include multiple
9856
- * <code>Contains</code> operators in the <code>SearchExpression</code>, the result is
9857
- * the following error message: "<code>'CONTAINS' operator usage limit of 1
9858
- * exceeded.</code>"</p>
9859
- * </dd>
9860
- * </dl>
9861
- */
9862
- Operator?: Operator | string;
9863
- /**
9864
- * @public
9865
- * <p>A value used with <code>Name</code> and <code>Operator</code> to determine which
9866
- * resources satisfy the filter's condition. For numerical properties, <code>Value</code>
9867
- * must be an integer or floating-point decimal. For timestamp properties,
9868
- * <code>Value</code> must be an ISO 8601 date-time string of the following format:
9869
- * <code>YYYY-mm-dd'T'HH:MM:SS</code>.</p>
9870
- */
9871
- Value?: string;
9872
- }
9873
9673
  /**
9874
9674
  * @internal
9875
9675
  */