@aws-sdk/client-sagemaker 3.45.0 → 3.47.2
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/CHANGELOG.md +45 -0
- package/dist-cjs/commands/DescribeModelBiasJobDefinitionCommand.js +1 -2
- package/dist-cjs/commands/DescribeModelCommand.js +2 -1
- package/dist-cjs/commands/ListTrainingJobsForHyperParameterTuningJobCommand.js +2 -1
- package/dist-cjs/commands/ListTransformJobsCommand.js +1 -2
- package/dist-cjs/endpoints.js +0 -20
- package/dist-cjs/models/models_0.js +14 -30
- package/dist-cjs/models/models_1.js +17 -17
- package/dist-cjs/models/models_2.js +24 -24
- package/dist-cjs/models/models_3.js +21 -3
- package/dist-cjs/protocols/Aws_json1_1.js +71 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/commands/DescribeModelBiasJobDefinitionCommand.js +1 -2
- package/dist-es/commands/DescribeModelCommand.js +2 -1
- package/dist-es/commands/ListTrainingJobsForHyperParameterTuningJobCommand.js +2 -1
- package/dist-es/commands/ListTransformJobsCommand.js +1 -2
- package/dist-es/endpoints.js +0 -20
- package/dist-es/models/models_0.js +8 -16
- package/dist-es/models/models_1.js +8 -8
- package/dist-es/models/models_2.js +12 -12
- package/dist-es/models/models_3.js +12 -0
- package/dist-es/protocols/Aws_json1_1.js +65 -7
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/SageMaker.d.ts +4 -4
- package/dist-types/SageMakerClient.d.ts +5 -1
- package/dist-types/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -2
- package/dist-types/commands/DescribeModelCommand.d.ts +2 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +2 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -2
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +2 -2
- package/dist-types/commands/StopTransformJobCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +14 -31
- package/dist-types/models/models_1.d.ts +54 -66
- package/dist-types/models/models_2.d.ts +120 -125
- package/dist-types/models/models_3.d.ts +157 -3
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +3 -1
- package/dist-types/ts3.4/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DescribeModelCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +8 -16
- package/dist-types/ts3.4/models/models_1.d.ts +27 -33
- package/dist-types/ts3.4/models/models_2.d.ts +60 -59
- package/dist-types/ts3.4/models/models_3.d.ts +73 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +40 -47
|
@@ -3959,6 +3959,48 @@ export declare namespace CreateNotebookInstanceLifecycleConfigOutput {
|
|
|
3959
3959
|
*/
|
|
3960
3960
|
const filterSensitiveLog: (obj: CreateNotebookInstanceLifecycleConfigOutput) => any;
|
|
3961
3961
|
}
|
|
3962
|
+
/**
|
|
3963
|
+
* <p>Configuration that controls the parallelism of the pipeline.
|
|
3964
|
+
* By default, the parallelism configuration specified applies to all
|
|
3965
|
+
* executions of the pipeline unless overridden.</p>
|
|
3966
|
+
*/
|
|
3967
|
+
export interface ParallelismConfiguration {
|
|
3968
|
+
/**
|
|
3969
|
+
* <p>The max number of steps that can be executed in parallel. </p>
|
|
3970
|
+
*/
|
|
3971
|
+
MaxParallelExecutionSteps: number | undefined;
|
|
3972
|
+
}
|
|
3973
|
+
export declare namespace ParallelismConfiguration {
|
|
3974
|
+
/**
|
|
3975
|
+
* @internal
|
|
3976
|
+
*/
|
|
3977
|
+
const filterSensitiveLog: (obj: ParallelismConfiguration) => any;
|
|
3978
|
+
}
|
|
3979
|
+
/**
|
|
3980
|
+
* <p>The location of the pipeline definition stored in Amazon S3.</p>
|
|
3981
|
+
*/
|
|
3982
|
+
export interface PipelineDefinitionS3Location {
|
|
3983
|
+
/**
|
|
3984
|
+
* <p>Name of the S3 bucket.</p>
|
|
3985
|
+
*/
|
|
3986
|
+
Bucket: string | undefined;
|
|
3987
|
+
/**
|
|
3988
|
+
* <p>The object key (or key name) uniquely identifies the
|
|
3989
|
+
* object in an S3 bucket. </p>
|
|
3990
|
+
*/
|
|
3991
|
+
ObjectKey: string | undefined;
|
|
3992
|
+
/**
|
|
3993
|
+
* <p>Version Id of the pipeline definition file. If not specified, Amazon SageMaker
|
|
3994
|
+
* will retrieve the latest version.</p>
|
|
3995
|
+
*/
|
|
3996
|
+
VersionId?: string;
|
|
3997
|
+
}
|
|
3998
|
+
export declare namespace PipelineDefinitionS3Location {
|
|
3999
|
+
/**
|
|
4000
|
+
* @internal
|
|
4001
|
+
*/
|
|
4002
|
+
const filterSensitiveLog: (obj: PipelineDefinitionS3Location) => any;
|
|
4003
|
+
}
|
|
3962
4004
|
export interface CreatePipelineRequest {
|
|
3963
4005
|
/**
|
|
3964
4006
|
* <p>The name of the pipeline.</p>
|
|
@@ -3971,7 +4013,12 @@ export interface CreatePipelineRequest {
|
|
|
3971
4013
|
/**
|
|
3972
4014
|
* <p>The JSON pipeline definition of the pipeline.</p>
|
|
3973
4015
|
*/
|
|
3974
|
-
PipelineDefinition
|
|
4016
|
+
PipelineDefinition?: string;
|
|
4017
|
+
/**
|
|
4018
|
+
* <p>The location of the pipeline definition stored in Amazon S3. If specified,
|
|
4019
|
+
* SageMaker will retrieve the pipeline definition from this location.</p>
|
|
4020
|
+
*/
|
|
4021
|
+
PipelineDefinitionS3Location?: PipelineDefinitionS3Location;
|
|
3975
4022
|
/**
|
|
3976
4023
|
* <p>A description of the pipeline.</p>
|
|
3977
4024
|
*/
|
|
@@ -3989,6 +4036,11 @@ export interface CreatePipelineRequest {
|
|
|
3989
4036
|
* <p>A list of tags to apply to the created pipeline.</p>
|
|
3990
4037
|
*/
|
|
3991
4038
|
Tags?: Tag[];
|
|
4039
|
+
/**
|
|
4040
|
+
* <p>This is the configuration that controls the parallelism of the pipeline.
|
|
4041
|
+
* If specified, it applies to all runs of this pipeline by default.</p>
|
|
4042
|
+
*/
|
|
4043
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
3992
4044
|
}
|
|
3993
4045
|
export declare namespace CreatePipelineRequest {
|
|
3994
4046
|
/**
|
|
@@ -7666,7 +7718,7 @@ export interface DescribeDomainResponse {
|
|
|
7666
7718
|
/**
|
|
7667
7719
|
* @deprecated
|
|
7668
7720
|
*
|
|
7669
|
-
* <p>
|
|
7721
|
+
* <p>Use <code>KmsKeyId</code>.</p>
|
|
7670
7722
|
*/
|
|
7671
7723
|
HomeEfsFileSystemKmsKeyId?: string;
|
|
7672
7724
|
/**
|
|
@@ -9506,67 +9558,3 @@ export declare namespace DescribeModelInput {
|
|
|
9506
9558
|
*/
|
|
9507
9559
|
const filterSensitiveLog: (obj: DescribeModelInput) => any;
|
|
9508
9560
|
}
|
|
9509
|
-
export interface DescribeModelOutput {
|
|
9510
|
-
/**
|
|
9511
|
-
* <p>Name of the Amazon SageMaker model.</p>
|
|
9512
|
-
*/
|
|
9513
|
-
ModelName: string | undefined;
|
|
9514
|
-
/**
|
|
9515
|
-
* <p>The location of the primary inference code, associated artifacts, and custom
|
|
9516
|
-
* environment map that the inference code uses when it is deployed in production.
|
|
9517
|
-
* </p>
|
|
9518
|
-
*/
|
|
9519
|
-
PrimaryContainer?: ContainerDefinition;
|
|
9520
|
-
/**
|
|
9521
|
-
* <p>The containers in the inference pipeline.</p>
|
|
9522
|
-
*/
|
|
9523
|
-
Containers?: ContainerDefinition[];
|
|
9524
|
-
/**
|
|
9525
|
-
* <p>Specifies details of how containers in a multi-container endpoint are called.</p>
|
|
9526
|
-
*/
|
|
9527
|
-
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
9528
|
-
/**
|
|
9529
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the
|
|
9530
|
-
* model.</p>
|
|
9531
|
-
*/
|
|
9532
|
-
ExecutionRoleArn: string | undefined;
|
|
9533
|
-
/**
|
|
9534
|
-
* <p>A <a>VpcConfig</a> object that specifies the VPC that this model has access
|
|
9535
|
-
* to. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html">Protect Endpoints by Using an Amazon Virtual
|
|
9536
|
-
* Private Cloud</a>
|
|
9537
|
-
* </p>
|
|
9538
|
-
*/
|
|
9539
|
-
VpcConfig?: VpcConfig;
|
|
9540
|
-
/**
|
|
9541
|
-
* <p>A timestamp that shows when the model was created.</p>
|
|
9542
|
-
*/
|
|
9543
|
-
CreationTime: Date | undefined;
|
|
9544
|
-
/**
|
|
9545
|
-
* <p>The Amazon Resource Name (ARN) of the model.</p>
|
|
9546
|
-
*/
|
|
9547
|
-
ModelArn: string | undefined;
|
|
9548
|
-
/**
|
|
9549
|
-
* <p>If <code>True</code>, no inbound or outbound network calls can be made to or from the
|
|
9550
|
-
* model container.</p>
|
|
9551
|
-
*/
|
|
9552
|
-
EnableNetworkIsolation?: boolean;
|
|
9553
|
-
}
|
|
9554
|
-
export declare namespace DescribeModelOutput {
|
|
9555
|
-
/**
|
|
9556
|
-
* @internal
|
|
9557
|
-
*/
|
|
9558
|
-
const filterSensitiveLog: (obj: DescribeModelOutput) => any;
|
|
9559
|
-
}
|
|
9560
|
-
export interface DescribeModelBiasJobDefinitionRequest {
|
|
9561
|
-
/**
|
|
9562
|
-
* <p>The name of the model bias job definition. The name must be unique within an Amazon Web Services Region
|
|
9563
|
-
* in the Amazon Web Services account.</p>
|
|
9564
|
-
*/
|
|
9565
|
-
JobDefinitionName: string | undefined;
|
|
9566
|
-
}
|
|
9567
|
-
export declare namespace DescribeModelBiasJobDefinitionRequest {
|
|
9568
|
-
/**
|
|
9569
|
-
* @internal
|
|
9570
|
-
*/
|
|
9571
|
-
const filterSensitiveLog: (obj: DescribeModelBiasJobDefinitionRequest) => any;
|
|
9572
|
-
}
|
|
@@ -1,5 +1,69 @@
|
|
|
1
|
-
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContextSummary, EdgeOutputConfig, FeatureDefinition, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ResourceConfig, ResourceLimits, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus,
|
|
1
|
+
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ResourceConfig, ResourceLimits, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, LabelCounters, LabelingJobInputConfig, LabelingJobOutput, LabelingJobStatus, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationJobType, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
export interface DescribeModelOutput {
|
|
4
|
+
/**
|
|
5
|
+
* <p>Name of the Amazon SageMaker model.</p>
|
|
6
|
+
*/
|
|
7
|
+
ModelName: string | undefined;
|
|
8
|
+
/**
|
|
9
|
+
* <p>The location of the primary inference code, associated artifacts, and custom
|
|
10
|
+
* environment map that the inference code uses when it is deployed in production.
|
|
11
|
+
* </p>
|
|
12
|
+
*/
|
|
13
|
+
PrimaryContainer?: ContainerDefinition;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The containers in the inference pipeline.</p>
|
|
16
|
+
*/
|
|
17
|
+
Containers?: ContainerDefinition[];
|
|
18
|
+
/**
|
|
19
|
+
* <p>Specifies details of how containers in a multi-container endpoint are called.</p>
|
|
20
|
+
*/
|
|
21
|
+
InferenceExecutionConfig?: InferenceExecutionConfig;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the
|
|
24
|
+
* model.</p>
|
|
25
|
+
*/
|
|
26
|
+
ExecutionRoleArn: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>A <a>VpcConfig</a> object that specifies the VPC that this model has access
|
|
29
|
+
* to. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html">Protect Endpoints by Using an Amazon Virtual
|
|
30
|
+
* Private Cloud</a>
|
|
31
|
+
* </p>
|
|
32
|
+
*/
|
|
33
|
+
VpcConfig?: VpcConfig;
|
|
34
|
+
/**
|
|
35
|
+
* <p>A timestamp that shows when the model was created.</p>
|
|
36
|
+
*/
|
|
37
|
+
CreationTime: Date | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The Amazon Resource Name (ARN) of the model.</p>
|
|
40
|
+
*/
|
|
41
|
+
ModelArn: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>If <code>True</code>, no inbound or outbound network calls can be made to or from the
|
|
44
|
+
* model container.</p>
|
|
45
|
+
*/
|
|
46
|
+
EnableNetworkIsolation?: boolean;
|
|
47
|
+
}
|
|
48
|
+
export declare namespace DescribeModelOutput {
|
|
49
|
+
/**
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
const filterSensitiveLog: (obj: DescribeModelOutput) => any;
|
|
53
|
+
}
|
|
54
|
+
export interface DescribeModelBiasJobDefinitionRequest {
|
|
55
|
+
/**
|
|
56
|
+
* <p>The name of the model bias job definition. The name must be unique within an Amazon Web Services Region
|
|
57
|
+
* in the Amazon Web Services account.</p>
|
|
58
|
+
*/
|
|
59
|
+
JobDefinitionName: string | undefined;
|
|
60
|
+
}
|
|
61
|
+
export declare namespace DescribeModelBiasJobDefinitionRequest {
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
65
|
+
const filterSensitiveLog: (obj: DescribeModelBiasJobDefinitionRequest) => any;
|
|
66
|
+
}
|
|
3
67
|
export interface DescribeModelBiasJobDefinitionResponse {
|
|
4
68
|
/**
|
|
5
69
|
* <p>The Amazon Resource Name (ARN) of the model bias job.</p>
|
|
@@ -833,6 +897,10 @@ export interface DescribePipelineResponse {
|
|
|
833
897
|
* component, lineage group, or project.</p>
|
|
834
898
|
*/
|
|
835
899
|
LastModifiedBy?: UserContext;
|
|
900
|
+
/**
|
|
901
|
+
* <p>Lists the parallelism configuration applied to the pipeline.</p>
|
|
902
|
+
*/
|
|
903
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
836
904
|
}
|
|
837
905
|
export declare namespace DescribePipelineResponse {
|
|
838
906
|
/**
|
|
@@ -953,6 +1021,10 @@ export interface DescribePipelineExecutionResponse {
|
|
|
953
1021
|
* component, lineage group, or project.</p>
|
|
954
1022
|
*/
|
|
955
1023
|
LastModifiedBy?: UserContext;
|
|
1024
|
+
/**
|
|
1025
|
+
* <p>The parallelism configuration applied to the pipeline.</p>
|
|
1026
|
+
*/
|
|
1027
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
956
1028
|
}
|
|
957
1029
|
export declare namespace DescribePipelineExecutionResponse {
|
|
958
1030
|
/**
|
|
@@ -3046,6 +3118,34 @@ export declare namespace EdgePackagingJobSummary {
|
|
|
3046
3118
|
*/
|
|
3047
3119
|
const filterSensitiveLog: (obj: EdgePackagingJobSummary) => any;
|
|
3048
3120
|
}
|
|
3121
|
+
/**
|
|
3122
|
+
* <p>The configurations and outcomes of an Amazon EMR step execution.</p>
|
|
3123
|
+
*/
|
|
3124
|
+
export interface EMRStepMetadata {
|
|
3125
|
+
/**
|
|
3126
|
+
* <p>The identifier of the EMR cluster.</p>
|
|
3127
|
+
*/
|
|
3128
|
+
ClusterId?: string;
|
|
3129
|
+
/**
|
|
3130
|
+
* <p>The identifier of the EMR cluster step.</p>
|
|
3131
|
+
*/
|
|
3132
|
+
StepId?: string;
|
|
3133
|
+
/**
|
|
3134
|
+
* <p>The name of the EMR cluster step.</p>
|
|
3135
|
+
*/
|
|
3136
|
+
StepName?: string;
|
|
3137
|
+
/**
|
|
3138
|
+
* <p>The path to the log file where the cluster step's failure root cause
|
|
3139
|
+
* is recorded.</p>
|
|
3140
|
+
*/
|
|
3141
|
+
LogFilePath?: string;
|
|
3142
|
+
}
|
|
3143
|
+
export declare namespace EMRStepMetadata {
|
|
3144
|
+
/**
|
|
3145
|
+
* @internal
|
|
3146
|
+
*/
|
|
3147
|
+
const filterSensitiveLog: (obj: EMRStepMetadata) => any;
|
|
3148
|
+
}
|
|
3049
3149
|
export interface EnableSagemakerServicecatalogPortfolioInput {
|
|
3050
3150
|
}
|
|
3051
3151
|
export declare namespace EnableSagemakerServicecatalogPortfolioInput {
|
|
@@ -7823,6 +7923,10 @@ export interface PipelineExecutionStepMetadata {
|
|
|
7823
7923
|
* </ul>
|
|
7824
7924
|
*/
|
|
7825
7925
|
ClarifyCheck?: ClarifyCheckStepMetadata;
|
|
7926
|
+
/**
|
|
7927
|
+
* <p>The configurations and outcomes of an EMR step execution.</p>
|
|
7928
|
+
*/
|
|
7929
|
+
EMR?: EMRStepMetadata;
|
|
7826
7930
|
}
|
|
7827
7931
|
export declare namespace PipelineExecutionStepMetadata {
|
|
7828
7932
|
/**
|
|
@@ -7846,6 +7950,14 @@ export interface PipelineExecutionStep {
|
|
|
7846
7950
|
* <p>The name of the step that is executed.</p>
|
|
7847
7951
|
*/
|
|
7848
7952
|
StepName?: string;
|
|
7953
|
+
/**
|
|
7954
|
+
* <p>The display name of the step.</p>
|
|
7955
|
+
*/
|
|
7956
|
+
StepDisplayName?: string;
|
|
7957
|
+
/**
|
|
7958
|
+
* <p>The description of the step.</p>
|
|
7959
|
+
*/
|
|
7960
|
+
StepDescription?: string;
|
|
7849
7961
|
/**
|
|
7850
7962
|
* <p>The time that the step started executing.</p>
|
|
7851
7963
|
*/
|
|
@@ -7862,6 +7974,9 @@ export interface PipelineExecutionStep {
|
|
|
7862
7974
|
* <p>If this pipeline execution step was cached, details on the cache hit.</p>
|
|
7863
7975
|
*/
|
|
7864
7976
|
CacheHitResult?: CacheHitResult;
|
|
7977
|
+
/**
|
|
7978
|
+
* <p>The current attempt of the execution step. For more information, see <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html">Retry Policy for Amazon SageMaker Pipelines steps</a>.</p>
|
|
7979
|
+
*/
|
|
7865
7980
|
AttemptCount?: number;
|
|
7866
7981
|
/**
|
|
7867
7982
|
* <p>The reason why the step failed execution. This is only returned if the step failed its execution.</p>
|
|
@@ -7924,7 +8039,9 @@ export declare namespace ListPipelineParametersForExecutionRequest {
|
|
|
7924
8039
|
*/
|
|
7925
8040
|
export interface Parameter {
|
|
7926
8041
|
/**
|
|
7927
|
-
* <p>The name of the parameter to assign a value to. This
|
|
8042
|
+
* <p>The name of the parameter to assign a value to. This
|
|
8043
|
+
* parameter name must match a named parameter in the
|
|
8044
|
+
* pipeline definition.</p>
|
|
7928
8045
|
*/
|
|
7929
8046
|
Name: string | undefined;
|
|
7930
8047
|
/**
|
|
@@ -8614,125 +8731,3 @@ export declare namespace ListTrainingJobsForHyperParameterTuningJobRequest {
|
|
|
8614
8731
|
*/
|
|
8615
8732
|
const filterSensitiveLog: (obj: ListTrainingJobsForHyperParameterTuningJobRequest) => any;
|
|
8616
8733
|
}
|
|
8617
|
-
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
8618
|
-
/**
|
|
8619
|
-
* <p>A list of <a>TrainingJobSummary</a> objects that
|
|
8620
|
-
* describe
|
|
8621
|
-
* the training jobs that the
|
|
8622
|
-
* <code>ListTrainingJobsForHyperParameterTuningJob</code> request returned.</p>
|
|
8623
|
-
*/
|
|
8624
|
-
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
8625
|
-
/**
|
|
8626
|
-
* <p>If the result of this <code>ListTrainingJobsForHyperParameterTuningJob</code> request
|
|
8627
|
-
* was truncated, the response includes a <code>NextToken</code>. To retrieve the next set
|
|
8628
|
-
* of training jobs, use the token in the next request.</p>
|
|
8629
|
-
*/
|
|
8630
|
-
NextToken?: string;
|
|
8631
|
-
}
|
|
8632
|
-
export declare namespace ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
8633
|
-
/**
|
|
8634
|
-
* @internal
|
|
8635
|
-
*/
|
|
8636
|
-
const filterSensitiveLog: (obj: ListTrainingJobsForHyperParameterTuningJobResponse) => any;
|
|
8637
|
-
}
|
|
8638
|
-
export interface ListTransformJobsRequest {
|
|
8639
|
-
/**
|
|
8640
|
-
* <p>A filter that returns only transform jobs created after the specified time.</p>
|
|
8641
|
-
*/
|
|
8642
|
-
CreationTimeAfter?: Date;
|
|
8643
|
-
/**
|
|
8644
|
-
* <p>A filter that returns only transform jobs created before the specified time.</p>
|
|
8645
|
-
*/
|
|
8646
|
-
CreationTimeBefore?: Date;
|
|
8647
|
-
/**
|
|
8648
|
-
* <p>A filter that returns only transform jobs modified after the specified time.</p>
|
|
8649
|
-
*/
|
|
8650
|
-
LastModifiedTimeAfter?: Date;
|
|
8651
|
-
/**
|
|
8652
|
-
* <p>A filter that returns only transform jobs modified before the specified time.</p>
|
|
8653
|
-
*/
|
|
8654
|
-
LastModifiedTimeBefore?: Date;
|
|
8655
|
-
/**
|
|
8656
|
-
* <p>A string in the transform job name. This filter returns only transform jobs whose name
|
|
8657
|
-
* contains the specified string.</p>
|
|
8658
|
-
*/
|
|
8659
|
-
NameContains?: string;
|
|
8660
|
-
/**
|
|
8661
|
-
* <p>A filter that retrieves only transform jobs with a specific status.</p>
|
|
8662
|
-
*/
|
|
8663
|
-
StatusEquals?: TransformJobStatus | string;
|
|
8664
|
-
/**
|
|
8665
|
-
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
8666
|
-
*/
|
|
8667
|
-
SortBy?: SortBy | string;
|
|
8668
|
-
/**
|
|
8669
|
-
* <p>The sort order for results. The default is <code>Descending</code>.</p>
|
|
8670
|
-
*/
|
|
8671
|
-
SortOrder?: SortOrder | string;
|
|
8672
|
-
/**
|
|
8673
|
-
* <p>If the result of the previous <code>ListTransformJobs</code> request was truncated,
|
|
8674
|
-
* the response includes a <code>NextToken</code>. To retrieve the next set of transform
|
|
8675
|
-
* jobs, use the token in the next request.</p>
|
|
8676
|
-
*/
|
|
8677
|
-
NextToken?: string;
|
|
8678
|
-
/**
|
|
8679
|
-
* <p>The maximum number of transform jobs to return in the response. The default value is <code>10</code>.</p>
|
|
8680
|
-
*/
|
|
8681
|
-
MaxResults?: number;
|
|
8682
|
-
}
|
|
8683
|
-
export declare namespace ListTransformJobsRequest {
|
|
8684
|
-
/**
|
|
8685
|
-
* @internal
|
|
8686
|
-
*/
|
|
8687
|
-
const filterSensitiveLog: (obj: ListTransformJobsRequest) => any;
|
|
8688
|
-
}
|
|
8689
|
-
/**
|
|
8690
|
-
* <p>Provides a
|
|
8691
|
-
* summary
|
|
8692
|
-
* of a transform job. Multiple <code>TransformJobSummary</code> objects are returned as a
|
|
8693
|
-
* list after in response to a <a>ListTransformJobs</a> call.</p>
|
|
8694
|
-
*/
|
|
8695
|
-
export interface TransformJobSummary {
|
|
8696
|
-
/**
|
|
8697
|
-
* <p>The name of the transform job.</p>
|
|
8698
|
-
*/
|
|
8699
|
-
TransformJobName: string | undefined;
|
|
8700
|
-
/**
|
|
8701
|
-
* <p>The Amazon Resource Name (ARN) of the transform job.</p>
|
|
8702
|
-
*/
|
|
8703
|
-
TransformJobArn: string | undefined;
|
|
8704
|
-
/**
|
|
8705
|
-
* <p>A timestamp that shows when the transform Job was created.</p>
|
|
8706
|
-
*/
|
|
8707
|
-
CreationTime: Date | undefined;
|
|
8708
|
-
/**
|
|
8709
|
-
* <p>Indicates when the transform
|
|
8710
|
-
* job
|
|
8711
|
-
* ends on compute instances. For successful jobs and stopped jobs, this
|
|
8712
|
-
* is the exact time
|
|
8713
|
-
* recorded
|
|
8714
|
-
* after the results are uploaded. For failed jobs, this is when Amazon SageMaker
|
|
8715
|
-
* detected that the job failed.</p>
|
|
8716
|
-
*/
|
|
8717
|
-
TransformEndTime?: Date;
|
|
8718
|
-
/**
|
|
8719
|
-
* <p>Indicates when the transform job was last modified.</p>
|
|
8720
|
-
*/
|
|
8721
|
-
LastModifiedTime?: Date;
|
|
8722
|
-
/**
|
|
8723
|
-
* <p>The status of the transform job.</p>
|
|
8724
|
-
*/
|
|
8725
|
-
TransformJobStatus: TransformJobStatus | string | undefined;
|
|
8726
|
-
/**
|
|
8727
|
-
* <p>If the transform job failed,
|
|
8728
|
-
* the
|
|
8729
|
-
* reason it failed.</p>
|
|
8730
|
-
*/
|
|
8731
|
-
FailureReason?: string;
|
|
8732
|
-
}
|
|
8733
|
-
export declare namespace TransformJobSummary {
|
|
8734
|
-
/**
|
|
8735
|
-
* @internal
|
|
8736
|
-
*/
|
|
8737
|
-
const filterSensitiveLog: (obj: TransformJobSummary) => any;
|
|
8738
|
-
}
|
|
@@ -1,6 +1,128 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, Channel, CheckpointConfig, DeploymentConfig, EdgeOutputConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
-
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortOrder, TransformJobStatus,
|
|
2
|
+
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
5
|
+
/**
|
|
6
|
+
* <p>A list of <a>TrainingJobSummary</a> objects that
|
|
7
|
+
* describe
|
|
8
|
+
* the training jobs that the
|
|
9
|
+
* <code>ListTrainingJobsForHyperParameterTuningJob</code> request returned.</p>
|
|
10
|
+
*/
|
|
11
|
+
TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>If the result of this <code>ListTrainingJobsForHyperParameterTuningJob</code> request
|
|
14
|
+
* was truncated, the response includes a <code>NextToken</code>. To retrieve the next set
|
|
15
|
+
* of training jobs, use the token in the next request.</p>
|
|
16
|
+
*/
|
|
17
|
+
NextToken?: string;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace ListTrainingJobsForHyperParameterTuningJobResponse {
|
|
20
|
+
/**
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
const filterSensitiveLog: (obj: ListTrainingJobsForHyperParameterTuningJobResponse) => any;
|
|
24
|
+
}
|
|
25
|
+
export interface ListTransformJobsRequest {
|
|
26
|
+
/**
|
|
27
|
+
* <p>A filter that returns only transform jobs created after the specified time.</p>
|
|
28
|
+
*/
|
|
29
|
+
CreationTimeAfter?: Date;
|
|
30
|
+
/**
|
|
31
|
+
* <p>A filter that returns only transform jobs created before the specified time.</p>
|
|
32
|
+
*/
|
|
33
|
+
CreationTimeBefore?: Date;
|
|
34
|
+
/**
|
|
35
|
+
* <p>A filter that returns only transform jobs modified after the specified time.</p>
|
|
36
|
+
*/
|
|
37
|
+
LastModifiedTimeAfter?: Date;
|
|
38
|
+
/**
|
|
39
|
+
* <p>A filter that returns only transform jobs modified before the specified time.</p>
|
|
40
|
+
*/
|
|
41
|
+
LastModifiedTimeBefore?: Date;
|
|
42
|
+
/**
|
|
43
|
+
* <p>A string in the transform job name. This filter returns only transform jobs whose name
|
|
44
|
+
* contains the specified string.</p>
|
|
45
|
+
*/
|
|
46
|
+
NameContains?: string;
|
|
47
|
+
/**
|
|
48
|
+
* <p>A filter that retrieves only transform jobs with a specific status.</p>
|
|
49
|
+
*/
|
|
50
|
+
StatusEquals?: TransformJobStatus | string;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
|
|
53
|
+
*/
|
|
54
|
+
SortBy?: SortBy | string;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The sort order for results. The default is <code>Descending</code>.</p>
|
|
57
|
+
*/
|
|
58
|
+
SortOrder?: SortOrder | string;
|
|
59
|
+
/**
|
|
60
|
+
* <p>If the result of the previous <code>ListTransformJobs</code> request was truncated,
|
|
61
|
+
* the response includes a <code>NextToken</code>. To retrieve the next set of transform
|
|
62
|
+
* jobs, use the token in the next request.</p>
|
|
63
|
+
*/
|
|
64
|
+
NextToken?: string;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The maximum number of transform jobs to return in the response. The default value is <code>10</code>.</p>
|
|
67
|
+
*/
|
|
68
|
+
MaxResults?: number;
|
|
69
|
+
}
|
|
70
|
+
export declare namespace ListTransformJobsRequest {
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
const filterSensitiveLog: (obj: ListTransformJobsRequest) => any;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>Provides a
|
|
78
|
+
* summary
|
|
79
|
+
* of a transform job. Multiple <code>TransformJobSummary</code> objects are returned as a
|
|
80
|
+
* list after in response to a <a>ListTransformJobs</a> call.</p>
|
|
81
|
+
*/
|
|
82
|
+
export interface TransformJobSummary {
|
|
83
|
+
/**
|
|
84
|
+
* <p>The name of the transform job.</p>
|
|
85
|
+
*/
|
|
86
|
+
TransformJobName: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The Amazon Resource Name (ARN) of the transform job.</p>
|
|
89
|
+
*/
|
|
90
|
+
TransformJobArn: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>A timestamp that shows when the transform Job was created.</p>
|
|
93
|
+
*/
|
|
94
|
+
CreationTime: Date | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>Indicates when the transform
|
|
97
|
+
* job
|
|
98
|
+
* ends on compute instances. For successful jobs and stopped jobs, this
|
|
99
|
+
* is the exact time
|
|
100
|
+
* recorded
|
|
101
|
+
* after the results are uploaded. For failed jobs, this is when Amazon SageMaker
|
|
102
|
+
* detected that the job failed.</p>
|
|
103
|
+
*/
|
|
104
|
+
TransformEndTime?: Date;
|
|
105
|
+
/**
|
|
106
|
+
* <p>Indicates when the transform job was last modified.</p>
|
|
107
|
+
*/
|
|
108
|
+
LastModifiedTime?: Date;
|
|
109
|
+
/**
|
|
110
|
+
* <p>The status of the transform job.</p>
|
|
111
|
+
*/
|
|
112
|
+
TransformJobStatus: TransformJobStatus | string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>If the transform job failed,
|
|
115
|
+
* the
|
|
116
|
+
* reason it failed.</p>
|
|
117
|
+
*/
|
|
118
|
+
FailureReason?: string;
|
|
119
|
+
}
|
|
120
|
+
export declare namespace TransformJobSummary {
|
|
121
|
+
/**
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
124
|
+
const filterSensitiveLog: (obj: TransformJobSummary) => any;
|
|
125
|
+
}
|
|
4
126
|
export interface ListTransformJobsResponse {
|
|
5
127
|
/**
|
|
6
128
|
* <p>An array of
|
|
@@ -787,6 +909,10 @@ export interface Pipeline {
|
|
|
787
909
|
* component, lineage group, or project.</p>
|
|
788
910
|
*/
|
|
789
911
|
LastModifiedBy?: UserContext;
|
|
912
|
+
/**
|
|
913
|
+
* <p>The parallelism configuration applied to the pipeline.</p>
|
|
914
|
+
*/
|
|
915
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
790
916
|
/**
|
|
791
917
|
* <p>A list of tags that apply to the pipeline.</p>
|
|
792
918
|
*/
|
|
@@ -848,6 +974,10 @@ export interface PipelineExecution {
|
|
|
848
974
|
* component, lineage group, or project.</p>
|
|
849
975
|
*/
|
|
850
976
|
LastModifiedBy?: UserContext;
|
|
977
|
+
/**
|
|
978
|
+
* <p>The parallelism configuration applied to the pipeline execution.</p>
|
|
979
|
+
*/
|
|
980
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
851
981
|
/**
|
|
852
982
|
* <p>Contains a list of pipeline parameters. This list can be empty. </p>
|
|
853
983
|
*/
|
|
@@ -1378,6 +1508,11 @@ export interface RetryPipelineExecutionRequest {
|
|
|
1378
1508
|
* operation. An idempotent operation completes no more than once.</p>
|
|
1379
1509
|
*/
|
|
1380
1510
|
ClientRequestToken?: string;
|
|
1511
|
+
/**
|
|
1512
|
+
* <p>This configuration, if specified, overrides the parallelism configuration
|
|
1513
|
+
* of the parent pipeline.</p>
|
|
1514
|
+
*/
|
|
1515
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
1381
1516
|
}
|
|
1382
1517
|
export declare namespace RetryPipelineExecutionRequest {
|
|
1383
1518
|
/**
|
|
@@ -2321,6 +2456,11 @@ export interface StartPipelineExecutionRequest {
|
|
|
2321
2456
|
* operation. An idempotent operation completes no more than once.</p>
|
|
2322
2457
|
*/
|
|
2323
2458
|
ClientRequestToken?: string;
|
|
2459
|
+
/**
|
|
2460
|
+
* <p>This configuration, if specified, overrides the parallelism configuration
|
|
2461
|
+
* of the parent pipeline for this specific run.</p>
|
|
2462
|
+
*/
|
|
2463
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
2324
2464
|
}
|
|
2325
2465
|
export declare namespace StartPipelineExecutionRequest {
|
|
2326
2466
|
/**
|
|
@@ -2491,7 +2631,7 @@ export declare namespace StopTrainingJobRequest {
|
|
|
2491
2631
|
}
|
|
2492
2632
|
export interface StopTransformJobRequest {
|
|
2493
2633
|
/**
|
|
2494
|
-
* <p>The name of the transform job to stop.</p>
|
|
2634
|
+
* <p>The name of the batch transform job to stop.</p>
|
|
2495
2635
|
*/
|
|
2496
2636
|
TransformJobName: string | undefined;
|
|
2497
2637
|
}
|
|
@@ -3193,6 +3333,11 @@ export interface UpdatePipelineRequest {
|
|
|
3193
3333
|
* <p>The JSON pipeline definition.</p>
|
|
3194
3334
|
*/
|
|
3195
3335
|
PipelineDefinition?: string;
|
|
3336
|
+
/**
|
|
3337
|
+
* <p>The location of the pipeline definition stored in Amazon S3. If specified,
|
|
3338
|
+
* SageMaker will retrieve the pipeline definition from this location.</p>
|
|
3339
|
+
*/
|
|
3340
|
+
PipelineDefinitionS3Location?: PipelineDefinitionS3Location;
|
|
3196
3341
|
/**
|
|
3197
3342
|
* <p>The description of the pipeline.</p>
|
|
3198
3343
|
*/
|
|
@@ -3201,6 +3346,10 @@ export interface UpdatePipelineRequest {
|
|
|
3201
3346
|
* <p>The Amazon Resource Name (ARN) that the pipeline uses to execute.</p>
|
|
3202
3347
|
*/
|
|
3203
3348
|
RoleArn?: string;
|
|
3349
|
+
/**
|
|
3350
|
+
* <p>If specified, it applies to all executions of this pipeline by default.</p>
|
|
3351
|
+
*/
|
|
3352
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
3204
3353
|
}
|
|
3205
3354
|
export declare namespace UpdatePipelineRequest {
|
|
3206
3355
|
/**
|
|
@@ -3233,6 +3382,11 @@ export interface UpdatePipelineExecutionRequest {
|
|
|
3233
3382
|
* <p>The display name of the pipeline execution.</p>
|
|
3234
3383
|
*/
|
|
3235
3384
|
PipelineExecutionDisplayName?: string;
|
|
3385
|
+
/**
|
|
3386
|
+
* <p>This configuration, if specified, overrides the parallelism configuration
|
|
3387
|
+
* of the parent pipeline for this specific run.</p>
|
|
3388
|
+
*/
|
|
3389
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
3236
3390
|
}
|
|
3237
3391
|
export declare namespace UpdatePipelineExecutionRequest {
|
|
3238
3392
|
/**
|