@aws-sdk/client-sagemaker 3.403.0 → 3.406.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.
@@ -386,8 +386,9 @@ export type FailureHandlingPolicy = (typeof FailureHandlingPolicy)[keyof typeof
386
386
  export interface EdgeDeploymentConfig {
387
387
  /**
388
388
  * @public
389
- * <p>Toggle that determines whether to rollback to previous configuration if the current deployment fails.
390
- * By default this is turned on. You may turn this off if you want to investigate the errors yourself.</p>
389
+ * <p>Toggle that determines whether to rollback to previous configuration if the current
390
+ * deployment fails. By default this is turned on. You may turn this off if you want to
391
+ * investigate the errors yourself.</p>
391
392
  */
392
393
  FailureHandlingPolicy: FailureHandlingPolicy | string | undefined;
393
394
  }
@@ -472,7 +473,8 @@ export interface CreateEdgeDeploymentPlanRequest {
472
473
  DeviceFleetName: string | undefined;
473
474
  /**
474
475
  * @public
475
- * <p>List of stages of the edge deployment plan. The number of stages is limited to 10 per deployment.</p>
476
+ * <p>List of stages of the edge deployment plan. The number of stages is limited to 10 per
477
+ * deployment.</p>
476
478
  */
477
479
  Stages?: DeploymentStage[];
478
480
  /**
@@ -4346,7 +4348,8 @@ export type FlatInvocations = (typeof FlatInvocations)[keyof typeof FlatInvocati
4346
4348
  export interface ModelLatencyThreshold {
4347
4349
  /**
4348
4350
  * @public
4349
- * <p>The model latency percentile threshold. For custom load tests, specify the value as <code>P95</code>.</p>
4351
+ * <p>The model latency percentile threshold. Acceptable values are <code>P95</code> and <code>P99</code>.
4352
+ * For custom load tests, specify the value as <code>P95</code>.</p>
4350
4353
  */
4351
4354
  Percentile?: string;
4352
4355
  /**
@@ -562,7 +562,8 @@ export interface EdgeDeploymentStatus {
562
562
  EdgeDeploymentSuccessInStage: number | undefined;
563
563
  /**
564
564
  * @public
565
- * <p>The number of edge devices yet to pick up the deployment in current stage, or in progress.</p>
565
+ * <p>The number of edge devices yet to pick up the deployment in current stage, or in
566
+ * progress.</p>
566
567
  */
567
568
  EdgeDeploymentPendingInStage: number | undefined;
568
569
  /**
@@ -622,6 +623,19 @@ export interface DeregisterDevicesRequest {
622
623
  */
623
624
  DeviceNames: string[] | undefined;
624
625
  }
626
+ /**
627
+ * @public
628
+ * <p>Information that SageMaker Neo automatically derived about the model.</p>
629
+ */
630
+ export interface DerivedInformation {
631
+ /**
632
+ * @public
633
+ * <p>The data input configuration that SageMaker Neo automatically derived for the model.
634
+ * When SageMaker Neo derives this information, you don't need to specify the data input
635
+ * configuration when you create a compilation job.</p>
636
+ */
637
+ DerivedDataInputConfig?: string;
638
+ }
625
639
  /**
626
640
  * @public
627
641
  */
@@ -1379,9 +1393,10 @@ export interface DescribeCompilationJobResponse {
1379
1393
  * @public
1380
1394
  * <p>The time when the model compilation job started the <code>CompilationJob</code>
1381
1395
  * instances. </p>
1382
- * <p>You are billed for the time between this timestamp and the timestamp in the <code>CompilationEndTime</code> field. In Amazon CloudWatch Logs,
1383
- * the start time might be later than this time. That's because it takes time to download
1384
- * the compilation job, which depends on the size of the compilation job container. </p>
1396
+ * <p>You are billed for the time between this timestamp and the timestamp in the
1397
+ * <code>CompilationEndTime</code> field. In Amazon CloudWatch Logs, the start time might be later
1398
+ * than this time. That's because it takes time to download the compilation job, which
1399
+ * depends on the size of the compilation job container. </p>
1385
1400
  */
1386
1401
  CompilationStartTime?: Date;
1387
1402
  /**
@@ -1400,8 +1415,8 @@ export interface DescribeCompilationJobResponse {
1400
1415
  StoppingCondition: StoppingCondition | undefined;
1401
1416
  /**
1402
1417
  * @public
1403
- * <p>The inference image to use when compiling a model.
1404
- * Specify an image only if the target device is a cloud instance.</p>
1418
+ * <p>The inference image to use when compiling a model. Specify an image only if the target
1419
+ * device is a cloud instance.</p>
1405
1420
  */
1406
1421
  InferenceImage?: string;
1407
1422
  /**
@@ -1435,7 +1450,8 @@ export interface DescribeCompilationJobResponse {
1435
1450
  ModelArtifacts: ModelArtifacts | undefined;
1436
1451
  /**
1437
1452
  * @public
1438
- * <p>Provides a BLAKE2 hash value that identifies the compiled model artifacts in Amazon S3.</p>
1453
+ * <p>Provides a BLAKE2 hash value that identifies the compiled model artifacts in
1454
+ * Amazon S3.</p>
1439
1455
  */
1440
1456
  ModelDigests?: ModelDigests;
1441
1457
  /**
@@ -1459,12 +1475,16 @@ export interface DescribeCompilationJobResponse {
1459
1475
  OutputConfig: OutputConfig | undefined;
1460
1476
  /**
1461
1477
  * @public
1462
- * <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your
1463
- * compilation job to connect to. Control access to your models by
1464
- * configuring the VPC. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html">Protect Compilation Jobs by Using an Amazon
1465
- * Virtual Private Cloud</a>.</p>
1478
+ * <p>A <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_VpcConfig.html">VpcConfig</a> object that specifies the VPC that you want your compilation job
1479
+ * to connect to. Control access to your models by configuring the VPC. For more
1480
+ * information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html">Protect Compilation Jobs by Using an Amazon Virtual Private Cloud</a>.</p>
1466
1481
  */
1467
1482
  VpcConfig?: NeoVpcConfig;
1483
+ /**
1484
+ * @public
1485
+ * <p>Information that SageMaker Neo automatically derived about the model.</p>
1486
+ */
1487
+ DerivedInformation?: DerivedInformation;
1468
1488
  }
1469
1489
  /**
1470
1490
  * @public
@@ -1941,7 +1961,8 @@ export interface DescribeEdgeDeploymentPlanRequest {
1941
1961
  EdgeDeploymentPlanName: string | undefined;
1942
1962
  /**
1943
1963
  * @public
1944
- * <p>If the edge deployment plan has enough stages to require tokening, then this is the response from the last list of stages returned.</p>
1964
+ * <p>If the edge deployment plan has enough stages to require tokening, then this is the
1965
+ * response from the last list of stages returned.</p>
1945
1966
  */
1946
1967
  NextToken?: string;
1947
1968
  /**
@@ -9623,53 +9644,6 @@ export interface FeatureGroupSummary {
9623
9644
  */
9624
9645
  OfflineStoreStatus?: OfflineStoreStatus;
9625
9646
  }
9626
- /**
9627
- * @public
9628
- * <p>The metadata for a feature. It can either be metadata that you specify, or metadata that
9629
- * is updated automatically.</p>
9630
- */
9631
- export interface FeatureMetadata {
9632
- /**
9633
- * @public
9634
- * <p>The Amazon Resource Number (ARN) of the feature group.</p>
9635
- */
9636
- FeatureGroupArn?: string;
9637
- /**
9638
- * @public
9639
- * <p>The name of the feature group containing the feature.</p>
9640
- */
9641
- FeatureGroupName?: string;
9642
- /**
9643
- * @public
9644
- * <p>The name of feature.</p>
9645
- */
9646
- FeatureName?: string;
9647
- /**
9648
- * @public
9649
- * <p>The data type of the feature.</p>
9650
- */
9651
- FeatureType?: FeatureType | string;
9652
- /**
9653
- * @public
9654
- * <p>A timestamp indicating when the feature was created.</p>
9655
- */
9656
- CreationTime?: Date;
9657
- /**
9658
- * @public
9659
- * <p>A timestamp indicating when the feature was last modified.</p>
9660
- */
9661
- LastModifiedTime?: Date;
9662
- /**
9663
- * @public
9664
- * <p>An optional description that you specify to better describe the feature.</p>
9665
- */
9666
- Description?: string;
9667
- /**
9668
- * @public
9669
- * <p>Optional key-value pairs that you specify to better describe the feature.</p>
9670
- */
9671
- Parameters?: FeatureParameter[];
9672
- }
9673
9647
  /**
9674
9648
  * @internal
9675
9649
  */
@@ -1,6 +1,53 @@
1
1
  import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, EdgeOutputConfig, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputParameter, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
2
- import { _InstanceType, DataProcessing, DriftCheckBaselines, ExperimentConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, MonitoringType, ParallelismConfiguration, RecommendationJobType, ResourceLimits, SourceAlgorithmSpecification, StudioLifecycleConfigAppType, TrialComponentStatus, TtlDuration } from "./models_1";
3
- import { DeploymentRecommendation, DeviceDeploymentSummary, DeviceFleetSummary, DeviceStats, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgeModelStat, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointSummary, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExperimentStatus, InferenceMetrics, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ScheduleStatus, SelectiveExecutionConfig, SpaceStatus, SubscribedWorkteam, TrainingJobStatus, TrainingJobStatusCounters, TransformJobStatus, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
2
+ import { _InstanceType, DataProcessing, DriftCheckBaselines, ExperimentConfig, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, MonitoringType, ParallelismConfiguration, RecommendationJobType, ResourceLimits, SourceAlgorithmSpecification, StudioLifecycleConfigAppType, TrialComponentStatus, TtlDuration } from "./models_1";
3
+ import { DeploymentRecommendation, DeviceDeploymentSummary, DeviceFleetSummary, DeviceStats, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgeModelStat, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointSummary, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExperimentStatus, InferenceMetrics, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, PipelineExecutionStatus, PipelineStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ScheduleStatus, SpaceStatus, SubscribedWorkteam, TrainingJobStatus, TrainingJobStatusCounters, TransformJobStatus, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
4
+ /**
5
+ * @public
6
+ * <p>The metadata for a feature. It can either be metadata that you specify, or metadata that
7
+ * is updated automatically.</p>
8
+ */
9
+ export interface FeatureMetadata {
10
+ /**
11
+ * @public
12
+ * <p>The Amazon Resource Number (ARN) of the feature group.</p>
13
+ */
14
+ FeatureGroupArn?: string;
15
+ /**
16
+ * @public
17
+ * <p>The name of the feature group containing the feature.</p>
18
+ */
19
+ FeatureGroupName?: string;
20
+ /**
21
+ * @public
22
+ * <p>The name of feature.</p>
23
+ */
24
+ FeatureName?: string;
25
+ /**
26
+ * @public
27
+ * <p>The data type of the feature.</p>
28
+ */
29
+ FeatureType?: FeatureType | string;
30
+ /**
31
+ * @public
32
+ * <p>A timestamp indicating when the feature was created.</p>
33
+ */
34
+ CreationTime?: Date;
35
+ /**
36
+ * @public
37
+ * <p>A timestamp indicating when the feature was last modified.</p>
38
+ */
39
+ LastModifiedTime?: Date;
40
+ /**
41
+ * @public
42
+ * <p>An optional description that you specify to better describe the feature.</p>
43
+ */
44
+ Description?: string;
45
+ /**
46
+ * @public
47
+ * <p>Optional key-value pairs that you specify to better describe the feature.</p>
48
+ */
49
+ Parameters?: FeatureParameter[];
50
+ }
4
51
  /**
5
52
  * @public
6
53
  * @enum
@@ -2352,7 +2399,8 @@ export interface ListCompilationJobsRequest {
2352
2399
  NameContains?: string;
2353
2400
  /**
2354
2401
  * @public
2355
- * <p>A filter that retrieves model compilation jobs with a specific <code>CompilationJobStatus</code> status.</p>
2402
+ * <p>A filter that retrieves model compilation jobs with a specific
2403
+ * <code>CompilationJobStatus</code> status.</p>
2356
2404
  */
2357
2405
  StatusEquals?: CompilationJobStatus | string;
2358
2406
  /**
@@ -2372,8 +2420,8 @@ export interface ListCompilationJobsRequest {
2372
2420
  export interface ListCompilationJobsResponse {
2373
2421
  /**
2374
2422
  * @public
2375
- * <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CompilationJobSummary.html">CompilationJobSummary</a> objects, each describing a model
2376
- * compilation job. </p>
2423
+ * <p>An array of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CompilationJobSummary.html">CompilationJobSummary</a> objects, each describing a model compilation job.
2424
+ * </p>
2377
2425
  */
2378
2426
  CompilationJobSummaries: CompilationJobSummary[] | undefined;
2379
2427
  /**
@@ -2741,7 +2789,8 @@ export type ListEdgeDeploymentPlansSortBy = (typeof ListEdgeDeploymentPlansSortB
2741
2789
  export interface ListEdgeDeploymentPlansRequest {
2742
2790
  /**
2743
2791
  * @public
2744
- * <p>The response from the last list when returning a list large enough to need tokening.</p>
2792
+ * <p>The response from the last list when returning a list large enough to need
2793
+ * tokening.</p>
2745
2794
  */
2746
2795
  NextToken?: string;
2747
2796
  /**
@@ -2781,7 +2830,9 @@ export interface ListEdgeDeploymentPlansRequest {
2781
2830
  DeviceFleetNameContains?: string;
2782
2831
  /**
2783
2832
  * @public
2784
- * <p>The column by which to sort the edge deployment plans. Can be one of <code>NAME</code>, <code>DEVICEFLEETNAME</code>, <code>CREATIONTIME</code>, <code>LASTMODIFIEDTIME</code>.</p>
2833
+ * <p>The column by which to sort the edge deployment plans. Can be one of
2834
+ * <code>NAME</code>, <code>DEVICEFLEETNAME</code>, <code>CREATIONTIME</code>,
2835
+ * <code>LASTMODIFIEDTIME</code>.</p>
2785
2836
  */
2786
2837
  SortBy?: ListEdgeDeploymentPlansSortBy | string;
2787
2838
  /**
@@ -7223,7 +7274,8 @@ export interface ListSpacesResponse {
7223
7274
  export interface ListStageDevicesRequest {
7224
7275
  /**
7225
7276
  * @public
7226
- * <p>The response from the last list when returning a list large enough to neeed tokening.</p>
7277
+ * <p>The response from the last list when returning a list large enough to neeed
7278
+ * tokening.</p>
7227
7279
  */
7228
7280
  NextToken?: string;
7229
7281
  /**
@@ -9223,84 +9275,6 @@ export interface Pipeline {
9223
9275
  */
9224
9276
  Tags?: Tag[];
9225
9277
  }
9226
- /**
9227
- * @public
9228
- * <p>An execution of a pipeline.</p>
9229
- */
9230
- export interface PipelineExecution {
9231
- /**
9232
- * @public
9233
- * <p>The Amazon Resource Name (ARN) of the pipeline that was executed.</p>
9234
- */
9235
- PipelineArn?: string;
9236
- /**
9237
- * @public
9238
- * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
9239
- */
9240
- PipelineExecutionArn?: string;
9241
- /**
9242
- * @public
9243
- * <p>The display name of the pipeline execution.</p>
9244
- */
9245
- PipelineExecutionDisplayName?: string;
9246
- /**
9247
- * @public
9248
- * <p>The status of the pipeline status.</p>
9249
- */
9250
- PipelineExecutionStatus?: PipelineExecutionStatus | string;
9251
- /**
9252
- * @public
9253
- * <p>The description of the pipeline execution.</p>
9254
- */
9255
- PipelineExecutionDescription?: string;
9256
- /**
9257
- * @public
9258
- * <p>Specifies the names of the experiment and trial created by a pipeline.</p>
9259
- */
9260
- PipelineExperimentConfig?: PipelineExperimentConfig;
9261
- /**
9262
- * @public
9263
- * <p>If the execution failed, a message describing why.</p>
9264
- */
9265
- FailureReason?: string;
9266
- /**
9267
- * @public
9268
- * <p>The creation time of the pipeline execution.</p>
9269
- */
9270
- CreationTime?: Date;
9271
- /**
9272
- * @public
9273
- * <p>The time that the pipeline execution was last modified.</p>
9274
- */
9275
- LastModifiedTime?: Date;
9276
- /**
9277
- * @public
9278
- * <p>Information about the user who created or modified an experiment, trial, trial
9279
- * component, lineage group, project, or model card.</p>
9280
- */
9281
- CreatedBy?: UserContext;
9282
- /**
9283
- * @public
9284
- * <p>Information about the user who created or modified an experiment, trial, trial
9285
- * component, lineage group, project, or model card.</p>
9286
- */
9287
- LastModifiedBy?: UserContext;
9288
- /**
9289
- * @public
9290
- * <p>The parallelism configuration applied to the pipeline execution.</p>
9291
- */
9292
- ParallelismConfiguration?: ParallelismConfiguration;
9293
- /**
9294
- * @public
9295
- * <p>Contains a list of pipeline parameters. This list can be empty. </p>
9296
- */
9297
- PipelineParameters?: Parameter[];
9298
- /**
9299
- * @public
9300
- * <p>The selective execution configuration applied to the pipeline run.</p>
9301
- */
9302
- SelectiveExecutionConfig?: SelectiveExecutionConfig;
9303
- }
9304
9278
  /**
9305
9279
  * @internal
9306
9280
  */
@@ -1,7 +1,85 @@
1
1
  import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSecurityGroupManagement, AppSpecification, BooleanOperator, Channel, CheckpointConfig, DefaultSpaceSettings, EdgeOutputConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, UserContext, VpcConfig } from "./models_0";
2
2
  import { _InstanceType, CrossAccountFilterOption, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentConfig, ExperimentConfig, FeatureDefinition, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, MemberDefinition, ModelCardStatus, ModelVariantConfig, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceIpConfig, SpaceSettings, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UiTemplate, UserSettings, VendorGuidance, WorkforceVpcConfigRequest } from "./models_1";
3
- import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, FeatureMetadata, FeatureParameter, MetricData, ModelArtifacts, ProcessingJobStatus, ProjectStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, TrainingJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, Workforce, Workteam } from "./models_2";
4
- import { Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, ModelCard, ModelDashboardModel, ModelPackage, ModelPackageGroup, ModelVariantAction, NestedFilters, OnlineStoreConfigUpdate, Parameter, Parent, Pipeline, PipelineExecution, ResourceType, TransformJob } from "./models_3";
3
+ import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, FeatureParameter, MetricData, ModelArtifacts, PipelineExecutionStatus, PipelineExperimentConfig, ProcessingJobStatus, ProjectStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, TrainingJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, Workforce, Workteam } from "./models_2";
4
+ import { FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, ModelCard, ModelDashboardModel, ModelPackage, ModelPackageGroup, ModelVariantAction, NestedFilters, OnlineStoreConfigUpdate, Parameter, Parent, Pipeline, ResourceType, TransformJob } from "./models_3";
5
+ /**
6
+ * @public
7
+ * <p>An execution of a pipeline.</p>
8
+ */
9
+ export interface PipelineExecution {
10
+ /**
11
+ * @public
12
+ * <p>The Amazon Resource Name (ARN) of the pipeline that was executed.</p>
13
+ */
14
+ PipelineArn?: string;
15
+ /**
16
+ * @public
17
+ * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
18
+ */
19
+ PipelineExecutionArn?: string;
20
+ /**
21
+ * @public
22
+ * <p>The display name of the pipeline execution.</p>
23
+ */
24
+ PipelineExecutionDisplayName?: string;
25
+ /**
26
+ * @public
27
+ * <p>The status of the pipeline status.</p>
28
+ */
29
+ PipelineExecutionStatus?: PipelineExecutionStatus | string;
30
+ /**
31
+ * @public
32
+ * <p>The description of the pipeline execution.</p>
33
+ */
34
+ PipelineExecutionDescription?: string;
35
+ /**
36
+ * @public
37
+ * <p>Specifies the names of the experiment and trial created by a pipeline.</p>
38
+ */
39
+ PipelineExperimentConfig?: PipelineExperimentConfig;
40
+ /**
41
+ * @public
42
+ * <p>If the execution failed, a message describing why.</p>
43
+ */
44
+ FailureReason?: string;
45
+ /**
46
+ * @public
47
+ * <p>The creation time of the pipeline execution.</p>
48
+ */
49
+ CreationTime?: Date;
50
+ /**
51
+ * @public
52
+ * <p>The time that the pipeline execution was last modified.</p>
53
+ */
54
+ LastModifiedTime?: Date;
55
+ /**
56
+ * @public
57
+ * <p>Information about the user who created or modified an experiment, trial, trial
58
+ * component, lineage group, project, or model card.</p>
59
+ */
60
+ CreatedBy?: UserContext;
61
+ /**
62
+ * @public
63
+ * <p>Information about the user who created or modified an experiment, trial, trial
64
+ * component, lineage group, project, or model card.</p>
65
+ */
66
+ LastModifiedBy?: UserContext;
67
+ /**
68
+ * @public
69
+ * <p>The parallelism configuration applied to the pipeline execution.</p>
70
+ */
71
+ ParallelismConfiguration?: ParallelismConfiguration;
72
+ /**
73
+ * @public
74
+ * <p>Contains a list of pipeline parameters. This list can be empty. </p>
75
+ */
76
+ PipelineParameters?: Parameter[];
77
+ /**
78
+ * @public
79
+ * <p>The selective execution configuration applied to the pipeline run.</p>
80
+ */
81
+ SelectiveExecutionConfig?: SelectiveExecutionConfig;
82
+ }
5
83
  /**
6
84
  * @public
7
85
  * <p>An Amazon SageMaker processing job that is used to analyze data and evaluate models. For more information,
@@ -2061,7 +2061,7 @@ export declare const Framework: {
2061
2061
  export type Framework = (typeof Framework)[keyof typeof Framework];
2062
2062
  export interface InputConfig {
2063
2063
  S3Uri: string | undefined;
2064
- DataInputConfig: string | undefined;
2064
+ DataInputConfig?: string;
2065
2065
  Framework: Framework | string | undefined;
2066
2066
  FrameworkVersion?: string;
2067
2067
  }
@@ -349,6 +349,9 @@ export interface DeregisterDevicesRequest {
349
349
  DeviceFleetName: string | undefined;
350
350
  DeviceNames: string[] | undefined;
351
351
  }
352
+ export interface DerivedInformation {
353
+ DerivedDataInputConfig?: string;
354
+ }
352
355
  export interface DescribeActionRequest {
353
356
  ActionName: string | undefined;
354
357
  }
@@ -528,6 +531,7 @@ export interface DescribeCompilationJobResponse {
528
531
  InputConfig: InputConfig | undefined;
529
532
  OutputConfig: OutputConfig | undefined;
530
533
  VpcConfig?: NeoVpcConfig;
534
+ DerivedInformation?: DerivedInformation;
531
535
  }
532
536
  export interface DescribeContextRequest {
533
537
  ContextName: string | undefined;
@@ -2362,16 +2366,6 @@ export interface FeatureGroupSummary {
2362
2366
  FeatureGroupStatus?: FeatureGroupStatus | string;
2363
2367
  OfflineStoreStatus?: OfflineStoreStatus;
2364
2368
  }
2365
- export interface FeatureMetadata {
2366
- FeatureGroupArn?: string;
2367
- FeatureGroupName?: string;
2368
- FeatureName?: string;
2369
- FeatureType?: FeatureType | string;
2370
- CreationTime?: Date;
2371
- LastModifiedTime?: Date;
2372
- Description?: string;
2373
- Parameters?: FeatureParameter[];
2374
- }
2375
2369
  export declare const DescribeModelCardResponseFilterSensitiveLog: (
2376
2370
  obj: DescribeModelCardResponse
2377
2371
  ) => any;
@@ -50,6 +50,7 @@ import {
50
50
  DataProcessing,
51
51
  DriftCheckBaselines,
52
52
  ExperimentConfig,
53
+ FeatureType,
53
54
  HyperParameterTrainingJobDefinition,
54
55
  HyperParameterTuningJobConfig,
55
56
  HyperParameterTuningJobStrategyType,
@@ -99,6 +100,7 @@ import {
99
100
  FeatureGroupSortOrder,
100
101
  FeatureGroupStatus,
101
102
  FeatureGroupSummary,
103
+ FeatureParameter,
102
104
  FlowDefinitionStatus,
103
105
  HubContentStatus,
104
106
  HubContentType,
@@ -123,14 +125,12 @@ import {
123
125
  ObjectiveStatusCounters,
124
126
  OfflineStoreStatusValue,
125
127
  PipelineExecutionStatus,
126
- PipelineExperimentConfig,
127
128
  PipelineStatus,
128
129
  ProcessingJobStatus,
129
130
  ProjectStatus,
130
131
  RecommendationJobStatus,
131
132
  RecommendationMetrics,
132
133
  ScheduleStatus,
133
- SelectiveExecutionConfig,
134
134
  SpaceStatus,
135
135
  SubscribedWorkteam,
136
136
  TrainingJobStatus,
@@ -144,6 +144,16 @@ import {
144
144
  Workforce,
145
145
  Workteam,
146
146
  } from "./models_2";
147
+ export interface FeatureMetadata {
148
+ FeatureGroupArn?: string;
149
+ FeatureGroupName?: string;
150
+ FeatureName?: string;
151
+ FeatureType?: FeatureType | string;
152
+ CreationTime?: Date;
153
+ LastModifiedTime?: Date;
154
+ Description?: string;
155
+ Parameters?: FeatureParameter[];
156
+ }
147
157
  export declare const Operator: {
148
158
  readonly CONTAINS: "Contains";
149
159
  readonly EQUALS: "Equals";
@@ -2271,20 +2281,4 @@ export interface Pipeline {
2271
2281
  ParallelismConfiguration?: ParallelismConfiguration;
2272
2282
  Tags?: Tag[];
2273
2283
  }
2274
- export interface PipelineExecution {
2275
- PipelineArn?: string;
2276
- PipelineExecutionArn?: string;
2277
- PipelineExecutionDisplayName?: string;
2278
- PipelineExecutionStatus?: PipelineExecutionStatus | string;
2279
- PipelineExecutionDescription?: string;
2280
- PipelineExperimentConfig?: PipelineExperimentConfig;
2281
- FailureReason?: string;
2282
- CreationTime?: Date;
2283
- LastModifiedTime?: Date;
2284
- CreatedBy?: UserContext;
2285
- LastModifiedBy?: UserContext;
2286
- ParallelismConfiguration?: ParallelismConfiguration;
2287
- PipelineParameters?: Parameter[];
2288
- SelectiveExecutionConfig?: SelectiveExecutionConfig;
2289
- }
2290
2284
  export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
@@ -76,10 +76,11 @@ import {
76
76
  Endpoint,
77
77
  Experiment,
78
78
  FeatureGroup,
79
- FeatureMetadata,
80
79
  FeatureParameter,
81
80
  MetricData,
82
81
  ModelArtifacts,
82
+ PipelineExecutionStatus,
83
+ PipelineExperimentConfig,
83
84
  ProcessingJobStatus,
84
85
  ProjectStatus,
85
86
  SecondaryStatus,
@@ -94,6 +95,7 @@ import {
94
95
  Workteam,
95
96
  } from "./models_2";
96
97
  import {
98
+ FeatureMetadata,
97
99
  Filter,
98
100
  GitConfigForUpdate,
99
101
  HyperParameterTuningJobSearchEntity,
@@ -109,10 +111,25 @@ import {
109
111
  Parameter,
110
112
  Parent,
111
113
  Pipeline,
112
- PipelineExecution,
113
114
  ResourceType,
114
115
  TransformJob,
115
116
  } from "./models_3";
117
+ export interface PipelineExecution {
118
+ PipelineArn?: string;
119
+ PipelineExecutionArn?: string;
120
+ PipelineExecutionDisplayName?: string;
121
+ PipelineExecutionStatus?: PipelineExecutionStatus | string;
122
+ PipelineExecutionDescription?: string;
123
+ PipelineExperimentConfig?: PipelineExperimentConfig;
124
+ FailureReason?: string;
125
+ CreationTime?: Date;
126
+ LastModifiedTime?: Date;
127
+ CreatedBy?: UserContext;
128
+ LastModifiedBy?: UserContext;
129
+ ParallelismConfiguration?: ParallelismConfiguration;
130
+ PipelineParameters?: Parameter[];
131
+ SelectiveExecutionConfig?: SelectiveExecutionConfig;
132
+ }
116
133
  export interface ProcessingJob {
117
134
  ProcessingInputs?: ProcessingInput[];
118
135
  ProcessingOutputConfig?: ProcessingOutputConfig;