aws-sdk-sagemaker 1.87.0 → 1.88.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +116 -12
- data/lib/aws-sdk-sagemaker/client_api.rb +66 -0
- data/lib/aws-sdk-sagemaker/types.rb +239 -25
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08aa015687aed885049b6d88001b8df5c20b6f94eacd16571db42fedafde4211'
|
|
4
|
+
data.tar.gz: e980e0c862d4e72783e764c0a57793bb9762a59e9522fa600b9705685769753d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c69ef72d9f4b00633219e5cdaa853893377a929289bf9b911a2970a8ad45b70c2c62e9693070c6b6a946bf6b18a32303ed2234f38fb0caecf47f89d5b33fa00
|
|
7
|
+
data.tar.gz: e5896a529d93d0128d494905c3706948b7514ea1133abb567f0065b9269338cc1d8841be31fb34626d1452e81653172f3f44b86bd1332ce5d42762affc836a9f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.88.0 (2021-06-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS SageMaker - Releasing new APIs related to Callback steps in model building pipelines. Adds experiment integration to model building pipelines.
|
|
8
|
+
|
|
4
9
|
1.87.0 (2021-05-05)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.88.0
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
|
@@ -1075,10 +1075,6 @@ module Aws::SageMaker
|
|
|
1075
1075
|
# needed to store artifacts from an AutoML job. Format(s) supported:
|
|
1076
1076
|
# CSV.
|
|
1077
1077
|
#
|
|
1078
|
-
# <para>Specifies whether to automatically deploy the best
|
|
1079
|
-
# &ATP; model to an endpoint and the name of that endpoint if
|
|
1080
|
-
# deployed automatically.</para>
|
|
1081
|
-
#
|
|
1082
1078
|
# @option params [String] :problem_type
|
|
1083
1079
|
# Defines the type of supervised learning available for the candidates.
|
|
1084
1080
|
# Options include: `BinaryClassification`, `MulticlassClassification`,
|
|
@@ -1101,10 +1097,6 @@ module Aws::SageMaker
|
|
|
1101
1097
|
# @option params [required, String] :role_arn
|
|
1102
1098
|
# The ARN of the role that is used to access the data.
|
|
1103
1099
|
#
|
|
1104
|
-
# <para>Specifies whether to automatically deploy the best
|
|
1105
|
-
# &ATP; model to an endpoint and the name of that endpoint if
|
|
1106
|
-
# deployed automatically.</para>
|
|
1107
|
-
#
|
|
1108
1100
|
# @option params [Boolean] :generate_candidate_definitions_only
|
|
1109
1101
|
# Generates possible candidates without training the models. A candidate
|
|
1110
1102
|
# is a combination of data preprocessors, algorithms, and algorithm
|
|
@@ -6754,8 +6746,10 @@ module Aws::SageMaker
|
|
|
6754
6746
|
# Marketplace to create models in Amazon SageMaker.
|
|
6755
6747
|
#
|
|
6756
6748
|
# @option params [required, String] :model_package_name
|
|
6757
|
-
# The name
|
|
6758
|
-
#
|
|
6749
|
+
# The name or Amazon Resource Name (ARN) of the model package to delete.
|
|
6750
|
+
#
|
|
6751
|
+
# When you specify a name, the name must have 1 to 63 characters. Valid
|
|
6752
|
+
# characters are a-z, A-Z, 0-9, and - (hyphen).
|
|
6759
6753
|
#
|
|
6760
6754
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
6761
6755
|
#
|
|
@@ -9124,7 +9118,11 @@ module Aws::SageMaker
|
|
|
9124
9118
|
# packages listed on AWS Marketplace.
|
|
9125
9119
|
#
|
|
9126
9120
|
# @option params [required, String] :model_package_name
|
|
9127
|
-
# The name of the model package to
|
|
9121
|
+
# The name or Amazon Resource Name (ARN) of the model package to
|
|
9122
|
+
# describe.
|
|
9123
|
+
#
|
|
9124
|
+
# When you specify a name, the name must have 1 to 63 characters. Valid
|
|
9125
|
+
# characters are a-z, A-Z, 0-9, and - (hyphen).
|
|
9128
9126
|
#
|
|
9129
9127
|
# @return [Types::DescribeModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9130
9128
|
#
|
|
@@ -9687,6 +9685,8 @@ module Aws::SageMaker
|
|
|
9687
9685
|
# * {Types::DescribePipelineExecutionResponse#pipeline_execution_display_name #pipeline_execution_display_name} => String
|
|
9688
9686
|
# * {Types::DescribePipelineExecutionResponse#pipeline_execution_status #pipeline_execution_status} => String
|
|
9689
9687
|
# * {Types::DescribePipelineExecutionResponse#pipeline_execution_description #pipeline_execution_description} => String
|
|
9688
|
+
# * {Types::DescribePipelineExecutionResponse#pipeline_experiment_config #pipeline_experiment_config} => Types::PipelineExperimentConfig
|
|
9689
|
+
# * {Types::DescribePipelineExecutionResponse#failure_reason #failure_reason} => String
|
|
9690
9690
|
# * {Types::DescribePipelineExecutionResponse#creation_time #creation_time} => Time
|
|
9691
9691
|
# * {Types::DescribePipelineExecutionResponse#last_modified_time #last_modified_time} => Time
|
|
9692
9692
|
# * {Types::DescribePipelineExecutionResponse#created_by #created_by} => Types::UserContext
|
|
@@ -9705,6 +9705,9 @@ module Aws::SageMaker
|
|
|
9705
9705
|
# resp.pipeline_execution_display_name #=> String
|
|
9706
9706
|
# resp.pipeline_execution_status #=> String, one of "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
|
|
9707
9707
|
# resp.pipeline_execution_description #=> String
|
|
9708
|
+
# resp.pipeline_experiment_config.experiment_name #=> String
|
|
9709
|
+
# resp.pipeline_experiment_config.trial_name #=> String
|
|
9710
|
+
# resp.failure_reason #=> String
|
|
9708
9711
|
# resp.creation_time #=> Time
|
|
9709
9712
|
# resp.last_modified_time #=> Time
|
|
9710
9713
|
# resp.created_by.user_profile_arn #=> String
|
|
@@ -13627,6 +13630,11 @@ module Aws::SageMaker
|
|
|
13627
13630
|
# resp.pipeline_execution_steps[0].metadata.model.arn #=> String
|
|
13628
13631
|
# resp.pipeline_execution_steps[0].metadata.register_model.arn #=> String
|
|
13629
13632
|
# resp.pipeline_execution_steps[0].metadata.condition.outcome #=> String, one of "True", "False"
|
|
13633
|
+
# resp.pipeline_execution_steps[0].metadata.callback.callback_token #=> String
|
|
13634
|
+
# resp.pipeline_execution_steps[0].metadata.callback.sqs_queue_url #=> String
|
|
13635
|
+
# resp.pipeline_execution_steps[0].metadata.callback.output_parameters #=> Array
|
|
13636
|
+
# resp.pipeline_execution_steps[0].metadata.callback.output_parameters[0].name #=> String
|
|
13637
|
+
# resp.pipeline_execution_steps[0].metadata.callback.output_parameters[0].value #=> String
|
|
13630
13638
|
# resp.next_token #=> String
|
|
13631
13639
|
#
|
|
13632
13640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
|
|
@@ -15533,6 +15541,9 @@ module Aws::SageMaker
|
|
|
15533
15541
|
# resp.results[0].pipeline_execution.pipeline_execution_display_name #=> String
|
|
15534
15542
|
# resp.results[0].pipeline_execution.pipeline_execution_status #=> String, one of "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
|
|
15535
15543
|
# resp.results[0].pipeline_execution.pipeline_execution_description #=> String
|
|
15544
|
+
# resp.results[0].pipeline_execution.pipeline_experiment_config.experiment_name #=> String
|
|
15545
|
+
# resp.results[0].pipeline_execution.pipeline_experiment_config.trial_name #=> String
|
|
15546
|
+
# resp.results[0].pipeline_execution.failure_reason #=> String
|
|
15536
15547
|
# resp.results[0].pipeline_execution.creation_time #=> Time
|
|
15537
15548
|
# resp.results[0].pipeline_execution.last_modified_time #=> Time
|
|
15538
15549
|
# resp.results[0].pipeline_execution.created_by.user_profile_arn #=> String
|
|
@@ -15581,6 +15592,99 @@ module Aws::SageMaker
|
|
|
15581
15592
|
req.send_request(options)
|
|
15582
15593
|
end
|
|
15583
15594
|
|
|
15595
|
+
# Notifies the pipeline that the execution of a callback step failed,
|
|
15596
|
+
# along with a message describing why. When a callback step is run, the
|
|
15597
|
+
# pipeline generates a callback token and includes the token in a
|
|
15598
|
+
# message sent to Amazon Simple Queue Service (Amazon SQS).
|
|
15599
|
+
#
|
|
15600
|
+
# @option params [required, String] :callback_token
|
|
15601
|
+
# The pipeline generated token from the Amazon SQS queue.
|
|
15602
|
+
#
|
|
15603
|
+
# @option params [String] :failure_reason
|
|
15604
|
+
# A message describing why the step failed.
|
|
15605
|
+
#
|
|
15606
|
+
# @option params [String] :client_request_token
|
|
15607
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
15608
|
+
# idempotency of the operation. An idempotent operation completes no
|
|
15609
|
+
# more than one time.
|
|
15610
|
+
#
|
|
15611
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
15612
|
+
# not need to pass this option.**
|
|
15613
|
+
#
|
|
15614
|
+
# @return [Types::SendPipelineExecutionStepFailureResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
15615
|
+
#
|
|
15616
|
+
# * {Types::SendPipelineExecutionStepFailureResponse#pipeline_execution_arn #pipeline_execution_arn} => String
|
|
15617
|
+
#
|
|
15618
|
+
# @example Request syntax with placeholder values
|
|
15619
|
+
#
|
|
15620
|
+
# resp = client.send_pipeline_execution_step_failure({
|
|
15621
|
+
# callback_token: "CallbackToken", # required
|
|
15622
|
+
# failure_reason: "String256",
|
|
15623
|
+
# client_request_token: "IdempotencyToken",
|
|
15624
|
+
# })
|
|
15625
|
+
#
|
|
15626
|
+
# @example Response structure
|
|
15627
|
+
#
|
|
15628
|
+
# resp.pipeline_execution_arn #=> String
|
|
15629
|
+
#
|
|
15630
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SendPipelineExecutionStepFailure AWS API Documentation
|
|
15631
|
+
#
|
|
15632
|
+
# @overload send_pipeline_execution_step_failure(params = {})
|
|
15633
|
+
# @param [Hash] params ({})
|
|
15634
|
+
def send_pipeline_execution_step_failure(params = {}, options = {})
|
|
15635
|
+
req = build_request(:send_pipeline_execution_step_failure, params)
|
|
15636
|
+
req.send_request(options)
|
|
15637
|
+
end
|
|
15638
|
+
|
|
15639
|
+
# Notifies the pipeline that the execution of a callback step succeeded
|
|
15640
|
+
# and provides a list of the step's output parameters. When a callback
|
|
15641
|
+
# step is run, the pipeline generates a callback token and includes the
|
|
15642
|
+
# token in a message sent to Amazon Simple Queue Service (Amazon SQS).
|
|
15643
|
+
#
|
|
15644
|
+
# @option params [required, String] :callback_token
|
|
15645
|
+
# The pipeline generated token from the Amazon SQS queue.
|
|
15646
|
+
#
|
|
15647
|
+
# @option params [Array<Types::OutputParameter>] :output_parameters
|
|
15648
|
+
# A list of the output parameters of the callback step.
|
|
15649
|
+
#
|
|
15650
|
+
# @option params [String] :client_request_token
|
|
15651
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
15652
|
+
# idempotency of the operation. An idempotent operation completes no
|
|
15653
|
+
# more than one time.
|
|
15654
|
+
#
|
|
15655
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
15656
|
+
# not need to pass this option.**
|
|
15657
|
+
#
|
|
15658
|
+
# @return [Types::SendPipelineExecutionStepSuccessResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
15659
|
+
#
|
|
15660
|
+
# * {Types::SendPipelineExecutionStepSuccessResponse#pipeline_execution_arn #pipeline_execution_arn} => String
|
|
15661
|
+
#
|
|
15662
|
+
# @example Request syntax with placeholder values
|
|
15663
|
+
#
|
|
15664
|
+
# resp = client.send_pipeline_execution_step_success({
|
|
15665
|
+
# callback_token: "CallbackToken", # required
|
|
15666
|
+
# output_parameters: [
|
|
15667
|
+
# {
|
|
15668
|
+
# name: "String256", # required
|
|
15669
|
+
# value: "String1024", # required
|
|
15670
|
+
# },
|
|
15671
|
+
# ],
|
|
15672
|
+
# client_request_token: "IdempotencyToken",
|
|
15673
|
+
# })
|
|
15674
|
+
#
|
|
15675
|
+
# @example Response structure
|
|
15676
|
+
#
|
|
15677
|
+
# resp.pipeline_execution_arn #=> String
|
|
15678
|
+
#
|
|
15679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SendPipelineExecutionStepSuccess AWS API Documentation
|
|
15680
|
+
#
|
|
15681
|
+
# @overload send_pipeline_execution_step_success(params = {})
|
|
15682
|
+
# @param [Hash] params ({})
|
|
15683
|
+
def send_pipeline_execution_step_success(params = {}, options = {})
|
|
15684
|
+
req = build_request(:send_pipeline_execution_step_success, params)
|
|
15685
|
+
req.send_request(options)
|
|
15686
|
+
end
|
|
15687
|
+
|
|
15584
15688
|
# Starts a previously stopped monitoring schedule.
|
|
15585
15689
|
#
|
|
15586
15690
|
# <note markdown="1"> By default, when you successfully create a new schedule, the status of
|
|
@@ -17446,7 +17550,7 @@ module Aws::SageMaker
|
|
|
17446
17550
|
params: params,
|
|
17447
17551
|
config: config)
|
|
17448
17552
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
17449
|
-
context[:gem_version] = '1.
|
|
17553
|
+
context[:gem_version] = '1.88.0'
|
|
17450
17554
|
Seahorse::Client::Request.new(handlers, context)
|
|
17451
17555
|
end
|
|
17452
17556
|
|
|
@@ -130,6 +130,8 @@ module Aws::SageMaker
|
|
|
130
130
|
BooleanOperator = Shapes::StringShape.new(name: 'BooleanOperator')
|
|
131
131
|
Branch = Shapes::StringShape.new(name: 'Branch')
|
|
132
132
|
CacheHitResult = Shapes::StructureShape.new(name: 'CacheHitResult')
|
|
133
|
+
CallbackStepMetadata = Shapes::StructureShape.new(name: 'CallbackStepMetadata')
|
|
134
|
+
CallbackToken = Shapes::StringShape.new(name: 'CallbackToken')
|
|
133
135
|
CandidateArtifactLocations = Shapes::StructureShape.new(name: 'CandidateArtifactLocations')
|
|
134
136
|
CandidateDefinitionNotebookLocation = Shapes::StringShape.new(name: 'CandidateDefinitionNotebookLocation')
|
|
135
137
|
CandidateName = Shapes::StringShape.new(name: 'CandidateName')
|
|
@@ -1016,6 +1018,8 @@ module Aws::SageMaker
|
|
|
1016
1018
|
OrderKey = Shapes::StringShape.new(name: 'OrderKey')
|
|
1017
1019
|
OutputConfig = Shapes::StructureShape.new(name: 'OutputConfig')
|
|
1018
1020
|
OutputDataConfig = Shapes::StructureShape.new(name: 'OutputDataConfig')
|
|
1021
|
+
OutputParameter = Shapes::StructureShape.new(name: 'OutputParameter')
|
|
1022
|
+
OutputParameterList = Shapes::ListShape.new(name: 'OutputParameterList')
|
|
1019
1023
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
|
1020
1024
|
Parameter = Shapes::StructureShape.new(name: 'Parameter')
|
|
1021
1025
|
ParameterKey = Shapes::StringShape.new(name: 'ParameterKey')
|
|
@@ -1037,6 +1041,7 @@ module Aws::SageMaker
|
|
|
1037
1041
|
PipelineExecution = Shapes::StructureShape.new(name: 'PipelineExecution')
|
|
1038
1042
|
PipelineExecutionArn = Shapes::StringShape.new(name: 'PipelineExecutionArn')
|
|
1039
1043
|
PipelineExecutionDescription = Shapes::StringShape.new(name: 'PipelineExecutionDescription')
|
|
1044
|
+
PipelineExecutionFailureReason = Shapes::StringShape.new(name: 'PipelineExecutionFailureReason')
|
|
1040
1045
|
PipelineExecutionName = Shapes::StringShape.new(name: 'PipelineExecutionName')
|
|
1041
1046
|
PipelineExecutionStatus = Shapes::StringShape.new(name: 'PipelineExecutionStatus')
|
|
1042
1047
|
PipelineExecutionStep = Shapes::StructureShape.new(name: 'PipelineExecutionStep')
|
|
@@ -1044,6 +1049,7 @@ module Aws::SageMaker
|
|
|
1044
1049
|
PipelineExecutionStepMetadata = Shapes::StructureShape.new(name: 'PipelineExecutionStepMetadata')
|
|
1045
1050
|
PipelineExecutionSummary = Shapes::StructureShape.new(name: 'PipelineExecutionSummary')
|
|
1046
1051
|
PipelineExecutionSummaryList = Shapes::ListShape.new(name: 'PipelineExecutionSummaryList')
|
|
1052
|
+
PipelineExperimentConfig = Shapes::StructureShape.new(name: 'PipelineExperimentConfig')
|
|
1047
1053
|
PipelineName = Shapes::StringShape.new(name: 'PipelineName')
|
|
1048
1054
|
PipelineParameterName = Shapes::StringShape.new(name: 'PipelineParameterName')
|
|
1049
1055
|
PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
|
|
@@ -1186,6 +1192,10 @@ module Aws::SageMaker
|
|
|
1186
1192
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
1187
1193
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
1188
1194
|
Seed = Shapes::IntegerShape.new(name: 'Seed')
|
|
1195
|
+
SendPipelineExecutionStepFailureRequest = Shapes::StructureShape.new(name: 'SendPipelineExecutionStepFailureRequest')
|
|
1196
|
+
SendPipelineExecutionStepFailureResponse = Shapes::StructureShape.new(name: 'SendPipelineExecutionStepFailureResponse')
|
|
1197
|
+
SendPipelineExecutionStepSuccessRequest = Shapes::StructureShape.new(name: 'SendPipelineExecutionStepSuccessRequest')
|
|
1198
|
+
SendPipelineExecutionStepSuccessResponse = Shapes::StructureShape.new(name: 'SendPipelineExecutionStepSuccessResponse')
|
|
1189
1199
|
ServiceCatalogEntityId = Shapes::StringShape.new(name: 'ServiceCatalogEntityId')
|
|
1190
1200
|
ServiceCatalogProvisionedProductDetails = Shapes::StructureShape.new(name: 'ServiceCatalogProvisionedProductDetails')
|
|
1191
1201
|
ServiceCatalogProvisioningDetails = Shapes::StructureShape.new(name: 'ServiceCatalogProvisioningDetails')
|
|
@@ -1686,6 +1696,11 @@ module Aws::SageMaker
|
|
|
1686
1696
|
CacheHitResult.add_member(:source_pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "SourcePipelineExecutionArn"))
|
|
1687
1697
|
CacheHitResult.struct_class = Types::CacheHitResult
|
|
1688
1698
|
|
|
1699
|
+
CallbackStepMetadata.add_member(:callback_token, Shapes::ShapeRef.new(shape: CallbackToken, location_name: "CallbackToken"))
|
|
1700
|
+
CallbackStepMetadata.add_member(:sqs_queue_url, Shapes::ShapeRef.new(shape: String256, location_name: "SqsQueueUrl"))
|
|
1701
|
+
CallbackStepMetadata.add_member(:output_parameters, Shapes::ShapeRef.new(shape: OutputParameterList, location_name: "OutputParameters"))
|
|
1702
|
+
CallbackStepMetadata.struct_class = Types::CallbackStepMetadata
|
|
1703
|
+
|
|
1689
1704
|
CandidateArtifactLocations.add_member(:explainability, Shapes::ShapeRef.new(shape: ExplainabilityLocation, required: true, location_name: "Explainability"))
|
|
1690
1705
|
CandidateArtifactLocations.struct_class = Types::CandidateArtifactLocations
|
|
1691
1706
|
|
|
@@ -3181,6 +3196,8 @@ module Aws::SageMaker
|
|
|
3181
3196
|
DescribePipelineExecutionResponse.add_member(:pipeline_execution_display_name, Shapes::ShapeRef.new(shape: PipelineExecutionName, location_name: "PipelineExecutionDisplayName"))
|
|
3182
3197
|
DescribePipelineExecutionResponse.add_member(:pipeline_execution_status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "PipelineExecutionStatus"))
|
|
3183
3198
|
DescribePipelineExecutionResponse.add_member(:pipeline_execution_description, Shapes::ShapeRef.new(shape: PipelineExecutionDescription, location_name: "PipelineExecutionDescription"))
|
|
3199
|
+
DescribePipelineExecutionResponse.add_member(:pipeline_experiment_config, Shapes::ShapeRef.new(shape: PipelineExperimentConfig, location_name: "PipelineExperimentConfig"))
|
|
3200
|
+
DescribePipelineExecutionResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: PipelineExecutionFailureReason, location_name: "FailureReason"))
|
|
3184
3201
|
DescribePipelineExecutionResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
|
3185
3202
|
DescribePipelineExecutionResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
|
3186
3203
|
DescribePipelineExecutionResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
|
@@ -5138,6 +5155,12 @@ module Aws::SageMaker
|
|
|
5138
5155
|
OutputDataConfig.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3OutputPath"))
|
|
5139
5156
|
OutputDataConfig.struct_class = Types::OutputDataConfig
|
|
5140
5157
|
|
|
5158
|
+
OutputParameter.add_member(:name, Shapes::ShapeRef.new(shape: String256, required: true, location_name: "Name"))
|
|
5159
|
+
OutputParameter.add_member(:value, Shapes::ShapeRef.new(shape: String1024, required: true, location_name: "Value"))
|
|
5160
|
+
OutputParameter.struct_class = Types::OutputParameter
|
|
5161
|
+
|
|
5162
|
+
OutputParameterList.member = Shapes::ShapeRef.new(shape: OutputParameter)
|
|
5163
|
+
|
|
5141
5164
|
Parameter.add_member(:name, Shapes::ShapeRef.new(shape: PipelineParameterName, required: true, location_name: "Name"))
|
|
5142
5165
|
Parameter.add_member(:value, Shapes::ShapeRef.new(shape: String1024, required: true, location_name: "Value"))
|
|
5143
5166
|
Parameter.struct_class = Types::Parameter
|
|
@@ -5186,6 +5209,8 @@ module Aws::SageMaker
|
|
|
5186
5209
|
PipelineExecution.add_member(:pipeline_execution_display_name, Shapes::ShapeRef.new(shape: PipelineExecutionName, location_name: "PipelineExecutionDisplayName"))
|
|
5187
5210
|
PipelineExecution.add_member(:pipeline_execution_status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "PipelineExecutionStatus"))
|
|
5188
5211
|
PipelineExecution.add_member(:pipeline_execution_description, Shapes::ShapeRef.new(shape: PipelineExecutionDescription, location_name: "PipelineExecutionDescription"))
|
|
5212
|
+
PipelineExecution.add_member(:pipeline_experiment_config, Shapes::ShapeRef.new(shape: PipelineExperimentConfig, location_name: "PipelineExperimentConfig"))
|
|
5213
|
+
PipelineExecution.add_member(:failure_reason, Shapes::ShapeRef.new(shape: PipelineExecutionFailureReason, location_name: "FailureReason"))
|
|
5189
5214
|
PipelineExecution.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
|
5190
5215
|
PipelineExecution.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
|
5191
5216
|
PipelineExecution.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
|
@@ -5210,6 +5235,7 @@ module Aws::SageMaker
|
|
|
5210
5235
|
PipelineExecutionStepMetadata.add_member(:model, Shapes::ShapeRef.new(shape: ModelStepMetadata, location_name: "Model"))
|
|
5211
5236
|
PipelineExecutionStepMetadata.add_member(:register_model, Shapes::ShapeRef.new(shape: RegisterModelStepMetadata, location_name: "RegisterModel"))
|
|
5212
5237
|
PipelineExecutionStepMetadata.add_member(:condition, Shapes::ShapeRef.new(shape: ConditionStepMetadata, location_name: "Condition"))
|
|
5238
|
+
PipelineExecutionStepMetadata.add_member(:callback, Shapes::ShapeRef.new(shape: CallbackStepMetadata, location_name: "Callback"))
|
|
5213
5239
|
PipelineExecutionStepMetadata.struct_class = Types::PipelineExecutionStepMetadata
|
|
5214
5240
|
|
|
5215
5241
|
PipelineExecutionSummary.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
|
@@ -5221,6 +5247,10 @@ module Aws::SageMaker
|
|
|
5221
5247
|
|
|
5222
5248
|
PipelineExecutionSummaryList.member = Shapes::ShapeRef.new(shape: PipelineExecutionSummary)
|
|
5223
5249
|
|
|
5250
|
+
PipelineExperimentConfig.add_member(:experiment_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "ExperimentName"))
|
|
5251
|
+
PipelineExperimentConfig.add_member(:trial_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "TrialName"))
|
|
5252
|
+
PipelineExperimentConfig.struct_class = Types::PipelineExperimentConfig
|
|
5253
|
+
|
|
5224
5254
|
PipelineSummary.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
|
|
5225
5255
|
PipelineSummary.add_member(:pipeline_name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "PipelineName"))
|
|
5226
5256
|
PipelineSummary.add_member(:pipeline_display_name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "PipelineDisplayName"))
|
|
@@ -5559,6 +5589,22 @@ module Aws::SageMaker
|
|
|
5559
5589
|
|
|
5560
5590
|
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
5561
5591
|
|
|
5592
|
+
SendPipelineExecutionStepFailureRequest.add_member(:callback_token, Shapes::ShapeRef.new(shape: CallbackToken, required: true, location_name: "CallbackToken"))
|
|
5593
|
+
SendPipelineExecutionStepFailureRequest.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String256, location_name: "FailureReason"))
|
|
5594
|
+
SendPipelineExecutionStepFailureRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
5595
|
+
SendPipelineExecutionStepFailureRequest.struct_class = Types::SendPipelineExecutionStepFailureRequest
|
|
5596
|
+
|
|
5597
|
+
SendPipelineExecutionStepFailureResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
|
5598
|
+
SendPipelineExecutionStepFailureResponse.struct_class = Types::SendPipelineExecutionStepFailureResponse
|
|
5599
|
+
|
|
5600
|
+
SendPipelineExecutionStepSuccessRequest.add_member(:callback_token, Shapes::ShapeRef.new(shape: CallbackToken, required: true, location_name: "CallbackToken"))
|
|
5601
|
+
SendPipelineExecutionStepSuccessRequest.add_member(:output_parameters, Shapes::ShapeRef.new(shape: OutputParameterList, location_name: "OutputParameters"))
|
|
5602
|
+
SendPipelineExecutionStepSuccessRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
5603
|
+
SendPipelineExecutionStepSuccessRequest.struct_class = Types::SendPipelineExecutionStepSuccessRequest
|
|
5604
|
+
|
|
5605
|
+
SendPipelineExecutionStepSuccessResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
|
5606
|
+
SendPipelineExecutionStepSuccessResponse.struct_class = Types::SendPipelineExecutionStepSuccessResponse
|
|
5607
|
+
|
|
5562
5608
|
ServiceCatalogProvisionedProductDetails.add_member(:provisioned_product_id, Shapes::ShapeRef.new(shape: ServiceCatalogEntityId, location_name: "ProvisionedProductId"))
|
|
5563
5609
|
ServiceCatalogProvisionedProductDetails.add_member(:provisioned_product_status_message, Shapes::ShapeRef.new(shape: ProvisionedProductStatusMessage, location_name: "ProvisionedProductStatusMessage"))
|
|
5564
5610
|
ServiceCatalogProvisionedProductDetails.struct_class = Types::ServiceCatalogProvisionedProductDetails
|
|
@@ -8300,6 +8346,26 @@ module Aws::SageMaker
|
|
|
8300
8346
|
)
|
|
8301
8347
|
end)
|
|
8302
8348
|
|
|
8349
|
+
api.add_operation(:send_pipeline_execution_step_failure, Seahorse::Model::Operation.new.tap do |o|
|
|
8350
|
+
o.name = "SendPipelineExecutionStepFailure"
|
|
8351
|
+
o.http_method = "POST"
|
|
8352
|
+
o.http_request_uri = "/"
|
|
8353
|
+
o.input = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepFailureRequest)
|
|
8354
|
+
o.output = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepFailureResponse)
|
|
8355
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
8356
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
|
8357
|
+
end)
|
|
8358
|
+
|
|
8359
|
+
api.add_operation(:send_pipeline_execution_step_success, Seahorse::Model::Operation.new.tap do |o|
|
|
8360
|
+
o.name = "SendPipelineExecutionStepSuccess"
|
|
8361
|
+
o.http_method = "POST"
|
|
8362
|
+
o.http_request_uri = "/"
|
|
8363
|
+
o.input = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepSuccessRequest)
|
|
8364
|
+
o.output = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepSuccessResponse)
|
|
8365
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
8366
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
|
8367
|
+
end)
|
|
8368
|
+
|
|
8303
8369
|
api.add_operation(:start_monitoring_schedule, Seahorse::Model::Operation.new.tap do |o|
|
|
8304
8370
|
o.name = "StartMonitoringSchedule"
|
|
8305
8371
|
o.http_method = "POST"
|
|
@@ -1926,13 +1926,12 @@ module Aws::SageMaker
|
|
|
1926
1926
|
# @return [Integer]
|
|
1927
1927
|
#
|
|
1928
1928
|
# @!attribute [rw] max_runtime_per_training_job_in_seconds
|
|
1929
|
-
# The maximum time, in seconds, a job is allowed to run
|
|
1929
|
+
# The maximum time, in seconds, a training job is allowed to run as
|
|
1930
|
+
# part of an AutoML job.
|
|
1930
1931
|
# @return [Integer]
|
|
1931
1932
|
#
|
|
1932
1933
|
# @!attribute [rw] max_auto_ml_job_runtime_in_seconds
|
|
1933
|
-
# The maximum
|
|
1934
|
-
# trial to complete. It must be equal to or greater than
|
|
1935
|
-
# `MaxRuntimePerTrainingJobInSeconds`.
|
|
1934
|
+
# The maximum runtime, in seconds, an AutoML job has to complete.
|
|
1936
1935
|
# @return [Integer]
|
|
1937
1936
|
#
|
|
1938
1937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLJobCompletionCriteria AWS API Documentation
|
|
@@ -2340,6 +2339,31 @@ module Aws::SageMaker
|
|
|
2340
2339
|
include Aws::Structure
|
|
2341
2340
|
end
|
|
2342
2341
|
|
|
2342
|
+
# Metadata about a callback step.
|
|
2343
|
+
#
|
|
2344
|
+
# @!attribute [rw] callback_token
|
|
2345
|
+
# The pipeline generated token from the Amazon SQS queue.
|
|
2346
|
+
# @return [String]
|
|
2347
|
+
#
|
|
2348
|
+
# @!attribute [rw] sqs_queue_url
|
|
2349
|
+
# The URL of the Amazon Simple Queue Service (Amazon SQS) queue used
|
|
2350
|
+
# by the callback step.
|
|
2351
|
+
# @return [String]
|
|
2352
|
+
#
|
|
2353
|
+
# @!attribute [rw] output_parameters
|
|
2354
|
+
# A list of the output parameters of the callback step.
|
|
2355
|
+
# @return [Array<Types::OutputParameter>]
|
|
2356
|
+
#
|
|
2357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CallbackStepMetadata AWS API Documentation
|
|
2358
|
+
#
|
|
2359
|
+
class CallbackStepMetadata < Struct.new(
|
|
2360
|
+
:callback_token,
|
|
2361
|
+
:sqs_queue_url,
|
|
2362
|
+
:output_parameters)
|
|
2363
|
+
SENSITIVE = []
|
|
2364
|
+
include Aws::Structure
|
|
2365
|
+
end
|
|
2366
|
+
|
|
2343
2367
|
# The location of artifacts for an AutoML candidate job.
|
|
2344
2368
|
#
|
|
2345
2369
|
# @!attribute [rw] explainability
|
|
@@ -3877,10 +3901,6 @@ module Aws::SageMaker
|
|
|
3877
3901
|
# Provides information about encryption and the Amazon S3 output path
|
|
3878
3902
|
# needed to store artifacts from an AutoML job. Format(s) supported:
|
|
3879
3903
|
# CSV.
|
|
3880
|
-
#
|
|
3881
|
-
# <para>Specifies whether to automatically deploy the best
|
|
3882
|
-
# &ATP; model to an endpoint and the name of that endpoint if
|
|
3883
|
-
# deployed automatically.</para>
|
|
3884
3904
|
# @return [Types::AutoMLOutputDataConfig]
|
|
3885
3905
|
#
|
|
3886
3906
|
# @!attribute [rw] problem_type
|
|
@@ -3908,10 +3928,6 @@ module Aws::SageMaker
|
|
|
3908
3928
|
#
|
|
3909
3929
|
# @!attribute [rw] role_arn
|
|
3910
3930
|
# The ARN of the role that is used to access the data.
|
|
3911
|
-
#
|
|
3912
|
-
# <para>Specifies whether to automatically deploy the best
|
|
3913
|
-
# &ATP; model to an endpoint and the name of that endpoint if
|
|
3914
|
-
# deployed automatically.</para>
|
|
3915
3931
|
# @return [String]
|
|
3916
3932
|
#
|
|
3917
3933
|
# @!attribute [rw] generate_candidate_definitions_only
|
|
@@ -10103,8 +10119,11 @@ module Aws::SageMaker
|
|
|
10103
10119
|
# }
|
|
10104
10120
|
#
|
|
10105
10121
|
# @!attribute [rw] model_package_name
|
|
10106
|
-
# The name
|
|
10107
|
-
#
|
|
10122
|
+
# The name or Amazon Resource Name (ARN) of the model package to
|
|
10123
|
+
# delete.
|
|
10124
|
+
#
|
|
10125
|
+
# When you specify a name, the name must have 1 to 63 characters.
|
|
10126
|
+
# Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
|
10108
10127
|
# @return [String]
|
|
10109
10128
|
#
|
|
10110
10129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelPackageInput AWS API Documentation
|
|
@@ -13044,7 +13063,11 @@ module Aws::SageMaker
|
|
|
13044
13063
|
# }
|
|
13045
13064
|
#
|
|
13046
13065
|
# @!attribute [rw] model_package_name
|
|
13047
|
-
# The name of the model package to
|
|
13066
|
+
# The name or Amazon Resource Name (ARN) of the model package to
|
|
13067
|
+
# describe.
|
|
13068
|
+
#
|
|
13069
|
+
# When you specify a name, the name must have 1 to 63 characters.
|
|
13070
|
+
# Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
|
13048
13071
|
# @return [String]
|
|
13049
13072
|
#
|
|
13050
13073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageInput AWS API Documentation
|
|
@@ -13662,6 +13685,15 @@ module Aws::SageMaker
|
|
|
13662
13685
|
# The description of the pipeline execution.
|
|
13663
13686
|
# @return [String]
|
|
13664
13687
|
#
|
|
13688
|
+
# @!attribute [rw] pipeline_experiment_config
|
|
13689
|
+
# Specifies the names of the experiment and trial created by a
|
|
13690
|
+
# pipeline.
|
|
13691
|
+
# @return [Types::PipelineExperimentConfig]
|
|
13692
|
+
#
|
|
13693
|
+
# @!attribute [rw] failure_reason
|
|
13694
|
+
# If the execution failed, a message describing why.
|
|
13695
|
+
# @return [String]
|
|
13696
|
+
#
|
|
13665
13697
|
# @!attribute [rw] creation_time
|
|
13666
13698
|
# The time when the pipeline execution was created.
|
|
13667
13699
|
# @return [Time]
|
|
@@ -13688,6 +13720,8 @@ module Aws::SageMaker
|
|
|
13688
13720
|
:pipeline_execution_display_name,
|
|
13689
13721
|
:pipeline_execution_status,
|
|
13690
13722
|
:pipeline_execution_description,
|
|
13723
|
+
:pipeline_experiment_config,
|
|
13724
|
+
:failure_reason,
|
|
13691
13725
|
:creation_time,
|
|
13692
13726
|
:last_modified_time,
|
|
13693
13727
|
:created_by,
|
|
@@ -19262,7 +19296,8 @@ module Aws::SageMaker
|
|
|
19262
19296
|
# }
|
|
19263
19297
|
#
|
|
19264
19298
|
# @!attribute [rw] name
|
|
19265
|
-
# The name of the kernel.
|
|
19299
|
+
# The name of the Jupyter kernel in the image. This value is case
|
|
19300
|
+
# sensitive.
|
|
19266
19301
|
# @return [String]
|
|
19267
19302
|
#
|
|
19268
19303
|
# @!attribute [rw] display_name
|
|
@@ -24764,7 +24799,7 @@ module Aws::SageMaker
|
|
|
24764
24799
|
# @!attribute [rw] auto_generate_endpoint_name
|
|
24765
24800
|
# Set to `True` to automatically generate an endpoint name for a
|
|
24766
24801
|
# one-click Autopilot model deployment; set to `False` otherwise. The
|
|
24767
|
-
# default value is `
|
|
24802
|
+
# default value is `False`.
|
|
24768
24803
|
#
|
|
24769
24804
|
# <note markdown="1"> If you set `AutoGenerateEndpointName` to `True`, do not specify the
|
|
24770
24805
|
# `EndpointName`; otherwise a 400 error is thrown.
|
|
@@ -27607,6 +27642,33 @@ module Aws::SageMaker
|
|
|
27607
27642
|
include Aws::Structure
|
|
27608
27643
|
end
|
|
27609
27644
|
|
|
27645
|
+
# An output parameter of a pipeline step.
|
|
27646
|
+
#
|
|
27647
|
+
# @note When making an API call, you may pass OutputParameter
|
|
27648
|
+
# data as a hash:
|
|
27649
|
+
#
|
|
27650
|
+
# {
|
|
27651
|
+
# name: "String256", # required
|
|
27652
|
+
# value: "String1024", # required
|
|
27653
|
+
# }
|
|
27654
|
+
#
|
|
27655
|
+
# @!attribute [rw] name
|
|
27656
|
+
# The name of the output parameter.
|
|
27657
|
+
# @return [String]
|
|
27658
|
+
#
|
|
27659
|
+
# @!attribute [rw] value
|
|
27660
|
+
# The value of the output parameter.
|
|
27661
|
+
# @return [String]
|
|
27662
|
+
#
|
|
27663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OutputParameter AWS API Documentation
|
|
27664
|
+
#
|
|
27665
|
+
class OutputParameter < Struct.new(
|
|
27666
|
+
:name,
|
|
27667
|
+
:value)
|
|
27668
|
+
SENSITIVE = []
|
|
27669
|
+
include Aws::Structure
|
|
27670
|
+
end
|
|
27671
|
+
|
|
27610
27672
|
# Assigns a value to a named Pipeline parameter.
|
|
27611
27673
|
#
|
|
27612
27674
|
# @note When making an API call, you may pass Parameter
|
|
@@ -27886,6 +27948,15 @@ module Aws::SageMaker
|
|
|
27886
27948
|
# The description of the pipeline execution.
|
|
27887
27949
|
# @return [String]
|
|
27888
27950
|
#
|
|
27951
|
+
# @!attribute [rw] pipeline_experiment_config
|
|
27952
|
+
# Specifies the names of the experiment and trial created by a
|
|
27953
|
+
# pipeline.
|
|
27954
|
+
# @return [Types::PipelineExperimentConfig]
|
|
27955
|
+
#
|
|
27956
|
+
# @!attribute [rw] failure_reason
|
|
27957
|
+
# If the execution failed, a message describing why.
|
|
27958
|
+
# @return [String]
|
|
27959
|
+
#
|
|
27889
27960
|
# @!attribute [rw] creation_time
|
|
27890
27961
|
# The creation time of the pipeline execution.
|
|
27891
27962
|
# @return [Time]
|
|
@@ -27916,6 +27987,8 @@ module Aws::SageMaker
|
|
|
27916
27987
|
:pipeline_execution_display_name,
|
|
27917
27988
|
:pipeline_execution_status,
|
|
27918
27989
|
:pipeline_execution_description,
|
|
27990
|
+
:pipeline_experiment_config,
|
|
27991
|
+
:failure_reason,
|
|
27919
27992
|
:creation_time,
|
|
27920
27993
|
:last_modified_time,
|
|
27921
27994
|
:created_by,
|
|
@@ -27954,7 +28027,7 @@ module Aws::SageMaker
|
|
|
27954
28027
|
# @return [String]
|
|
27955
28028
|
#
|
|
27956
28029
|
# @!attribute [rw] metadata
|
|
27957
|
-
#
|
|
28030
|
+
# Metadata for the step execution.
|
|
27958
28031
|
# @return [Types::PipelineExecutionStepMetadata]
|
|
27959
28032
|
#
|
|
27960
28033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStep AWS API Documentation
|
|
@@ -28001,6 +28074,10 @@ module Aws::SageMaker
|
|
|
28001
28074
|
# condition.
|
|
28002
28075
|
# @return [Types::ConditionStepMetadata]
|
|
28003
28076
|
#
|
|
28077
|
+
# @!attribute [rw] callback
|
|
28078
|
+
# Metadata about a callback step.
|
|
28079
|
+
# @return [Types::CallbackStepMetadata]
|
|
28080
|
+
#
|
|
28004
28081
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
|
|
28005
28082
|
#
|
|
28006
28083
|
class PipelineExecutionStepMetadata < Struct.new(
|
|
@@ -28009,7 +28086,8 @@ module Aws::SageMaker
|
|
|
28009
28086
|
:transform_job,
|
|
28010
28087
|
:model,
|
|
28011
28088
|
:register_model,
|
|
28012
|
-
:condition
|
|
28089
|
+
:condition,
|
|
28090
|
+
:callback)
|
|
28013
28091
|
SENSITIVE = []
|
|
28014
28092
|
include Aws::Structure
|
|
28015
28093
|
end
|
|
@@ -28048,6 +28126,25 @@ module Aws::SageMaker
|
|
|
28048
28126
|
include Aws::Structure
|
|
28049
28127
|
end
|
|
28050
28128
|
|
|
28129
|
+
# Specifies the names of the experiment and trial created by a pipeline.
|
|
28130
|
+
#
|
|
28131
|
+
# @!attribute [rw] experiment_name
|
|
28132
|
+
# The name of the experiment.
|
|
28133
|
+
# @return [String]
|
|
28134
|
+
#
|
|
28135
|
+
# @!attribute [rw] trial_name
|
|
28136
|
+
# The name of the trial.
|
|
28137
|
+
# @return [String]
|
|
28138
|
+
#
|
|
28139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExperimentConfig AWS API Documentation
|
|
28140
|
+
#
|
|
28141
|
+
class PipelineExperimentConfig < Struct.new(
|
|
28142
|
+
:experiment_name,
|
|
28143
|
+
:trial_name)
|
|
28144
|
+
SENSITIVE = []
|
|
28145
|
+
include Aws::Structure
|
|
28146
|
+
end
|
|
28147
|
+
|
|
28051
28148
|
# A summary of a pipeline.
|
|
28052
28149
|
#
|
|
28053
28150
|
# @!attribute [rw] pipeline_arn
|
|
@@ -28717,10 +28814,10 @@ module Aws::SageMaker
|
|
|
28717
28814
|
include Aws::Structure
|
|
28718
28815
|
end
|
|
28719
28816
|
|
|
28720
|
-
# Identifies a model that you want to host and the resources to
|
|
28721
|
-
# for hosting it. If you are deploying multiple models, tell
|
|
28722
|
-
# SageMaker how to distribute traffic among the models by
|
|
28723
|
-
# variant weights.
|
|
28817
|
+
# Identifies a model that you want to host and the resources chosen to
|
|
28818
|
+
# deploy for hosting it. If you are deploying multiple models, tell
|
|
28819
|
+
# Amazon SageMaker how to distribute traffic among the models by
|
|
28820
|
+
# specifying variant weights.
|
|
28724
28821
|
#
|
|
28725
28822
|
# @note When making an API call, you may pass ProductionVariant
|
|
28726
28823
|
# data as a hash:
|
|
@@ -30659,6 +30756,107 @@ module Aws::SageMaker
|
|
|
30659
30756
|
include Aws::Structure
|
|
30660
30757
|
end
|
|
30661
30758
|
|
|
30759
|
+
# @note When making an API call, you may pass SendPipelineExecutionStepFailureRequest
|
|
30760
|
+
# data as a hash:
|
|
30761
|
+
#
|
|
30762
|
+
# {
|
|
30763
|
+
# callback_token: "CallbackToken", # required
|
|
30764
|
+
# failure_reason: "String256",
|
|
30765
|
+
# client_request_token: "IdempotencyToken",
|
|
30766
|
+
# }
|
|
30767
|
+
#
|
|
30768
|
+
# @!attribute [rw] callback_token
|
|
30769
|
+
# The pipeline generated token from the Amazon SQS queue.
|
|
30770
|
+
# @return [String]
|
|
30771
|
+
#
|
|
30772
|
+
# @!attribute [rw] failure_reason
|
|
30773
|
+
# A message describing why the step failed.
|
|
30774
|
+
# @return [String]
|
|
30775
|
+
#
|
|
30776
|
+
# @!attribute [rw] client_request_token
|
|
30777
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
30778
|
+
# idempotency of the operation. An idempotent operation completes no
|
|
30779
|
+
# more than one time.
|
|
30780
|
+
#
|
|
30781
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
30782
|
+
# not need to pass this option.
|
|
30783
|
+
# @return [String]
|
|
30784
|
+
#
|
|
30785
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SendPipelineExecutionStepFailureRequest AWS API Documentation
|
|
30786
|
+
#
|
|
30787
|
+
class SendPipelineExecutionStepFailureRequest < Struct.new(
|
|
30788
|
+
:callback_token,
|
|
30789
|
+
:failure_reason,
|
|
30790
|
+
:client_request_token)
|
|
30791
|
+
SENSITIVE = []
|
|
30792
|
+
include Aws::Structure
|
|
30793
|
+
end
|
|
30794
|
+
|
|
30795
|
+
# @!attribute [rw] pipeline_execution_arn
|
|
30796
|
+
# The Amazon Resource Name (ARN) of the pipeline execution.
|
|
30797
|
+
# @return [String]
|
|
30798
|
+
#
|
|
30799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SendPipelineExecutionStepFailureResponse AWS API Documentation
|
|
30800
|
+
#
|
|
30801
|
+
class SendPipelineExecutionStepFailureResponse < Struct.new(
|
|
30802
|
+
:pipeline_execution_arn)
|
|
30803
|
+
SENSITIVE = []
|
|
30804
|
+
include Aws::Structure
|
|
30805
|
+
end
|
|
30806
|
+
|
|
30807
|
+
# @note When making an API call, you may pass SendPipelineExecutionStepSuccessRequest
|
|
30808
|
+
# data as a hash:
|
|
30809
|
+
#
|
|
30810
|
+
# {
|
|
30811
|
+
# callback_token: "CallbackToken", # required
|
|
30812
|
+
# output_parameters: [
|
|
30813
|
+
# {
|
|
30814
|
+
# name: "String256", # required
|
|
30815
|
+
# value: "String1024", # required
|
|
30816
|
+
# },
|
|
30817
|
+
# ],
|
|
30818
|
+
# client_request_token: "IdempotencyToken",
|
|
30819
|
+
# }
|
|
30820
|
+
#
|
|
30821
|
+
# @!attribute [rw] callback_token
|
|
30822
|
+
# The pipeline generated token from the Amazon SQS queue.
|
|
30823
|
+
# @return [String]
|
|
30824
|
+
#
|
|
30825
|
+
# @!attribute [rw] output_parameters
|
|
30826
|
+
# A list of the output parameters of the callback step.
|
|
30827
|
+
# @return [Array<Types::OutputParameter>]
|
|
30828
|
+
#
|
|
30829
|
+
# @!attribute [rw] client_request_token
|
|
30830
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
30831
|
+
# idempotency of the operation. An idempotent operation completes no
|
|
30832
|
+
# more than one time.
|
|
30833
|
+
#
|
|
30834
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
30835
|
+
# not need to pass this option.
|
|
30836
|
+
# @return [String]
|
|
30837
|
+
#
|
|
30838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SendPipelineExecutionStepSuccessRequest AWS API Documentation
|
|
30839
|
+
#
|
|
30840
|
+
class SendPipelineExecutionStepSuccessRequest < Struct.new(
|
|
30841
|
+
:callback_token,
|
|
30842
|
+
:output_parameters,
|
|
30843
|
+
:client_request_token)
|
|
30844
|
+
SENSITIVE = []
|
|
30845
|
+
include Aws::Structure
|
|
30846
|
+
end
|
|
30847
|
+
|
|
30848
|
+
# @!attribute [rw] pipeline_execution_arn
|
|
30849
|
+
# The Amazon Resource Name (ARN) of the pipeline execution.
|
|
30850
|
+
# @return [String]
|
|
30851
|
+
#
|
|
30852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SendPipelineExecutionStepSuccessResponse AWS API Documentation
|
|
30853
|
+
#
|
|
30854
|
+
class SendPipelineExecutionStepSuccessResponse < Struct.new(
|
|
30855
|
+
:pipeline_execution_arn)
|
|
30856
|
+
SENSITIVE = []
|
|
30857
|
+
include Aws::Structure
|
|
30858
|
+
end
|
|
30859
|
+
|
|
30662
30860
|
# Details of a provisioned service catalog product. For information
|
|
30663
30861
|
# about service catalog, see [What is AWS Service Catalog][1].
|
|
30664
30862
|
#
|
|
@@ -31404,7 +31602,23 @@ module Aws::SageMaker
|
|
|
31404
31602
|
include Aws::Structure
|
|
31405
31603
|
end
|
|
31406
31604
|
|
|
31407
|
-
#
|
|
31605
|
+
# A tag object that consists of a key and an optional value, used to
|
|
31606
|
+
# manage metadata for Amazon SageMaker AWS resources.
|
|
31607
|
+
#
|
|
31608
|
+
# You can add tags to notebook instances, training jobs, hyperparameter
|
|
31609
|
+
# tuning jobs, batch transform jobs, models, labeling jobs, work teams,
|
|
31610
|
+
# endpoint configurations, and endpoints. For more information on adding
|
|
31611
|
+
# tags to Amazon SageMaker resources, see AddTags.
|
|
31612
|
+
#
|
|
31613
|
+
# For more information on adding metadata to your AWS resources with
|
|
31614
|
+
# tagging, see [Tagging AWS resources][1]. For advice on best practices
|
|
31615
|
+
# for managing AWS resources with tagging, see [Tagging Best Practices:
|
|
31616
|
+
# Implement an Effective AWS Resource Tagging Strategy][2].
|
|
31617
|
+
#
|
|
31618
|
+
#
|
|
31619
|
+
#
|
|
31620
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
|
31621
|
+
# [2]: https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf
|
|
31408
31622
|
#
|
|
31409
31623
|
# @note When making an API call, you may pass Tag
|
|
31410
31624
|
# data as a hash:
|
|
@@ -31415,7 +31629,7 @@ module Aws::SageMaker
|
|
|
31415
31629
|
# }
|
|
31416
31630
|
#
|
|
31417
31631
|
# @!attribute [rw] key
|
|
31418
|
-
# The tag key.
|
|
31632
|
+
# The tag key. Tag keys must be unique per resource.
|
|
31419
31633
|
# @return [String]
|
|
31420
31634
|
#
|
|
31421
31635
|
# @!attribute [rw] value
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-sagemaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.88.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|