aws-sdk-sagemaker 1.100.0 → 1.101.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d84918a03225dc0d1b9c709bb0a939b30cc445ed2882bf6ecbe6d32887b58f8
4
- data.tar.gz: cd6b44b4b47895338cd73449d520235a280018a81ae88b694aa85f688b83d6d4
3
+ metadata.gz: d68b52ff175bb17ce59d762c185ebf1cb0822e98565b10c6e5ca31108f8d0013
4
+ data.tar.gz: 3576fd7d2bed584f296999fc57fdd3ec50c7fe0eb4fb44d915a4390ba435eed2
5
5
  SHA512:
6
- metadata.gz: d16bb84d8d9f03be37116ca39983a6657abb08ff802175463a9f0c1d98e0ddaa92c05b58924568db5a48be15dc2280335cb01834d9c24413e50fa47ead910e32
7
- data.tar.gz: 0ad2a789fc14cb6b71cbd9640edf8c0d6ae292f42f54eb97f2bfe4dcd1c821d59c0e608949656c77744fe3a3ef47c5affedd54fc842cb177b137dcc8a8661a92
6
+ metadata.gz: b09b3641a5b879d3fe3f0ae125d4ba2e4b08c0668059abc1d922befb77aab8983f43b3e78fa01b03f63e4d42e39afec8eecda3756114205fdd54344de4457bac
7
+ data.tar.gz: 05f8404813b263b36bef2d076b25447acad0ba614130fbab237c45b479dec550e146e1f1e3f1ba84b73611852bd2cbfffac83c7bfef75c92fb4c04cefdedbcc3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.101.0 (2021-09-16)
5
+ ------------------
6
+
7
+ * Feature - Add API for users to retry a failed pipeline execution or resume a stopped one.
8
+
4
9
  1.100.0 (2021-09-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.101.0
@@ -15213,6 +15213,43 @@ module Aws::SageMaker
15213
15213
  req.send_request(options)
15214
15214
  end
15215
15215
 
15216
+ # Retry the execution of the pipeline.
15217
+ #
15218
+ # @option params [required, String] :pipeline_execution_arn
15219
+ # The Amazon Resource Name (ARN) of the pipeline execution.
15220
+ #
15221
+ # @option params [required, String] :client_request_token
15222
+ # A unique, case-sensitive identifier that you provide to ensure the
15223
+ # idempotency of the operation. An idempotent operation completes no
15224
+ # more than once.
15225
+ #
15226
+ # **A suitable default value is auto-generated.** You should normally
15227
+ # not need to pass this option.**
15228
+ #
15229
+ # @return [Types::RetryPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15230
+ #
15231
+ # * {Types::RetryPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
15232
+ #
15233
+ # @example Request syntax with placeholder values
15234
+ #
15235
+ # resp = client.retry_pipeline_execution({
15236
+ # pipeline_execution_arn: "PipelineExecutionArn", # required
15237
+ # client_request_token: "IdempotencyToken", # required
15238
+ # })
15239
+ #
15240
+ # @example Response structure
15241
+ #
15242
+ # resp.pipeline_execution_arn #=> String
15243
+ #
15244
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecution AWS API Documentation
15245
+ #
15246
+ # @overload retry_pipeline_execution(params = {})
15247
+ # @param [Hash] params ({})
15248
+ def retry_pipeline_execution(params = {}, options = {})
15249
+ req = build_request(:retry_pipeline_execution, params)
15250
+ req.send_request(options)
15251
+ end
15252
+
15216
15253
  # Finds Amazon SageMaker resources that match a search query. Matching
15217
15254
  # resources are returned as a list of `SearchRecord` objects in the
15218
15255
  # response. You can sort the search results by any resource property in
@@ -16150,7 +16187,7 @@ module Aws::SageMaker
16150
16187
  # @option params [required, String] :client_request_token
16151
16188
  # A unique, case-sensitive identifier that you provide to ensure the
16152
16189
  # idempotency of the operation. An idempotent operation completes no
16153
- # more than one time.
16190
+ # more than once.
16154
16191
  #
16155
16192
  # **A suitable default value is auto-generated.** You should normally
16156
16193
  # not need to pass this option.**
@@ -16404,7 +16441,7 @@ module Aws::SageMaker
16404
16441
  # @option params [required, String] :client_request_token
16405
16442
  # A unique, case-sensitive identifier that you provide to ensure the
16406
16443
  # idempotency of the operation. An idempotent operation completes no
16407
- # more than one time.
16444
+ # more than once.
16408
16445
  #
16409
16446
  # **A suitable default value is auto-generated.** You should normally
16410
16447
  # not need to pass this option.**
@@ -17995,7 +18032,7 @@ module Aws::SageMaker
17995
18032
  params: params,
17996
18033
  config: config)
17997
18034
  context[:gem_name] = 'aws-sdk-sagemaker'
17998
- context[:gem_version] = '1.100.0'
18035
+ context[:gem_version] = '1.101.0'
17999
18036
  Seahorse::Client::Request.new(handlers, context)
18000
18037
  end
18001
18038
 
@@ -1193,6 +1193,8 @@ module Aws::SageMaker
1193
1193
  ResponseMIMETypes = Shapes::ListShape.new(name: 'ResponseMIMETypes')
1194
1194
  RetentionPolicy = Shapes::StructureShape.new(name: 'RetentionPolicy')
1195
1195
  RetentionType = Shapes::StringShape.new(name: 'RetentionType')
1196
+ RetryPipelineExecutionRequest = Shapes::StructureShape.new(name: 'RetryPipelineExecutionRequest')
1197
+ RetryPipelineExecutionResponse = Shapes::StructureShape.new(name: 'RetryPipelineExecutionResponse')
1196
1198
  RetryStrategy = Shapes::StructureShape.new(name: 'RetryStrategy')
1197
1199
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
1198
1200
  RootAccess = Shapes::StringShape.new(name: 'RootAccess')
@@ -5677,6 +5679,13 @@ module Aws::SageMaker
5677
5679
  RetentionPolicy.add_member(:home_efs_file_system, Shapes::ShapeRef.new(shape: RetentionType, location_name: "HomeEfsFileSystem"))
5678
5680
  RetentionPolicy.struct_class = Types::RetentionPolicy
5679
5681
 
5682
+ RetryPipelineExecutionRequest.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, required: true, location_name: "PipelineExecutionArn"))
5683
+ RetryPipelineExecutionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
5684
+ RetryPipelineExecutionRequest.struct_class = Types::RetryPipelineExecutionRequest
5685
+
5686
+ RetryPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
5687
+ RetryPipelineExecutionResponse.struct_class = Types::RetryPipelineExecutionResponse
5688
+
5680
5689
  RetryStrategy.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttempts, required: true, location_name: "MaximumRetryAttempts"))
5681
5690
  RetryStrategy.struct_class = Types::RetryStrategy
5682
5691
 
@@ -8543,6 +8552,17 @@ module Aws::SageMaker
8543
8552
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
8544
8553
  end)
8545
8554
 
8555
+ api.add_operation(:retry_pipeline_execution, Seahorse::Model::Operation.new.tap do |o|
8556
+ o.name = "RetryPipelineExecution"
8557
+ o.http_method = "POST"
8558
+ o.http_request_uri = "/"
8559
+ o.input = Shapes::ShapeRef.new(shape: RetryPipelineExecutionRequest)
8560
+ o.output = Shapes::ShapeRef.new(shape: RetryPipelineExecutionResponse)
8561
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
8562
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
8563
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
8564
+ end)
8565
+
8546
8566
  api.add_operation(:search, Seahorse::Model::Operation.new.tap do |o|
8547
8567
  o.name = "Search"
8548
8568
  o.http_method = "POST"
@@ -1622,7 +1622,7 @@ module Aws::SageMaker
1622
1622
  #
1623
1623
  # @!attribute [rw] created_by
1624
1624
  # Information about the user who created or modified an experiment,
1625
- # trial, or trial component.
1625
+ # trial, trial component, or project.
1626
1626
  # @return [Types::UserContext]
1627
1627
  #
1628
1628
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AssociationSummary AWS API Documentation
@@ -10936,7 +10936,7 @@ module Aws::SageMaker
10936
10936
  #
10937
10937
  # @!attribute [rw] created_by
10938
10938
  # Information about the user who created or modified an experiment,
10939
- # trial, or trial component.
10939
+ # trial, trial component, or project.
10940
10940
  # @return [Types::UserContext]
10941
10941
  #
10942
10942
  # @!attribute [rw] last_modified_time
@@ -10945,7 +10945,7 @@ module Aws::SageMaker
10945
10945
  #
10946
10946
  # @!attribute [rw] last_modified_by
10947
10947
  # Information about the user who created or modified an experiment,
10948
- # trial, or trial component.
10948
+ # trial, trial component, or project.
10949
10949
  # @return [Types::UserContext]
10950
10950
  #
10951
10951
  # @!attribute [rw] metadata_properties
@@ -11251,7 +11251,7 @@ module Aws::SageMaker
11251
11251
  #
11252
11252
  # @!attribute [rw] created_by
11253
11253
  # Information about the user who created or modified an experiment,
11254
- # trial, or trial component.
11254
+ # trial, trial component, or project.
11255
11255
  # @return [Types::UserContext]
11256
11256
  #
11257
11257
  # @!attribute [rw] last_modified_time
@@ -11260,7 +11260,7 @@ module Aws::SageMaker
11260
11260
  #
11261
11261
  # @!attribute [rw] last_modified_by
11262
11262
  # Information about the user who created or modified an experiment,
11263
- # trial, or trial component.
11263
+ # trial, trial component, or project.
11264
11264
  # @return [Types::UserContext]
11265
11265
  #
11266
11266
  # @!attribute [rw] metadata_properties
@@ -11662,7 +11662,7 @@ module Aws::SageMaker
11662
11662
  #
11663
11663
  # @!attribute [rw] created_by
11664
11664
  # Information about the user who created or modified an experiment,
11665
- # trial, or trial component.
11665
+ # trial, trial component, or project.
11666
11666
  # @return [Types::UserContext]
11667
11667
  #
11668
11668
  # @!attribute [rw] last_modified_time
@@ -11671,7 +11671,7 @@ module Aws::SageMaker
11671
11671
  #
11672
11672
  # @!attribute [rw] last_modified_by
11673
11673
  # Information about the user who created or modified an experiment,
11674
- # trial, or trial component.
11674
+ # trial, trial component, or project.
11675
11675
  # @return [Types::UserContext]
11676
11676
  #
11677
11677
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContextResponse AWS API Documentation
@@ -13419,7 +13419,7 @@ module Aws::SageMaker
13419
13419
  #
13420
13420
  # @!attribute [rw] created_by
13421
13421
  # Information about the user who created or modified an experiment,
13422
- # trial, or trial component.
13422
+ # trial, trial component, or project.
13423
13423
  # @return [Types::UserContext]
13424
13424
  #
13425
13425
  # @!attribute [rw] model_package_group_status
@@ -13521,7 +13521,7 @@ module Aws::SageMaker
13521
13521
  #
13522
13522
  # @!attribute [rw] created_by
13523
13523
  # Information about the user who created or modified an experiment,
13524
- # trial, or trial component.
13524
+ # trial, trial component, or project.
13525
13525
  # @return [Types::UserContext]
13526
13526
  #
13527
13527
  # @!attribute [rw] metadata_properties
@@ -13539,7 +13539,7 @@ module Aws::SageMaker
13539
13539
  #
13540
13540
  # @!attribute [rw] last_modified_by
13541
13541
  # Information about the user who created or modified an experiment,
13542
- # trial, or trial component.
13542
+ # trial, trial component, or project.
13543
13543
  # @return [Types::UserContext]
13544
13544
  #
13545
13545
  # @!attribute [rw] approval_description
@@ -14098,12 +14098,12 @@ module Aws::SageMaker
14098
14098
  #
14099
14099
  # @!attribute [rw] created_by
14100
14100
  # Information about the user who created or modified an experiment,
14101
- # trial, or trial component.
14101
+ # trial, trial component, or project.
14102
14102
  # @return [Types::UserContext]
14103
14103
  #
14104
14104
  # @!attribute [rw] last_modified_by
14105
14105
  # Information about the user who created or modified an experiment,
14106
- # trial, or trial component.
14106
+ # trial, trial component, or project.
14107
14107
  # @return [Types::UserContext]
14108
14108
  #
14109
14109
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
@@ -14185,12 +14185,12 @@ module Aws::SageMaker
14185
14185
  #
14186
14186
  # @!attribute [rw] created_by
14187
14187
  # Information about the user who created or modified an experiment,
14188
- # trial, or trial component.
14188
+ # trial, trial component, or project.
14189
14189
  # @return [Types::UserContext]
14190
14190
  #
14191
14191
  # @!attribute [rw] last_modified_by
14192
14192
  # Information about the user who created or modified an experiment,
14193
- # trial, or trial component.
14193
+ # trial, trial component, or project.
14194
14194
  # @return [Types::UserContext]
14195
14195
  #
14196
14196
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
@@ -14405,7 +14405,7 @@ module Aws::SageMaker
14405
14405
  #
14406
14406
  # @!attribute [rw] created_by
14407
14407
  # Information about the user who created or modified an experiment,
14408
- # trial, or trial component.
14408
+ # trial, trial component, or project.
14409
14409
  # @return [Types::UserContext]
14410
14410
  #
14411
14411
  # @!attribute [rw] creation_time
@@ -15127,7 +15127,7 @@ module Aws::SageMaker
15127
15127
  # @return [Time]
15128
15128
  #
15129
15129
  # @!attribute [rw] created_by
15130
- # Who created the component.
15130
+ # Who created the trial component.
15131
15131
  # @return [Types::UserContext]
15132
15132
  #
15133
15133
  # @!attribute [rw] last_modified_time
@@ -16235,8 +16235,7 @@ module Aws::SageMaker
16235
16235
  # @return [Time]
16236
16236
  #
16237
16237
  # @!attribute [rw] created_by
16238
- # Information about the user who created or modified an experiment,
16239
- # trial, or trial component.
16238
+ # Who created the experiment.
16240
16239
  # @return [Types::UserContext]
16241
16240
  #
16242
16241
  # @!attribute [rw] last_modified_time
@@ -16245,7 +16244,7 @@ module Aws::SageMaker
16245
16244
  #
16246
16245
  # @!attribute [rw] last_modified_by
16247
16246
  # Information about the user who created or modified an experiment,
16248
- # trial, or trial component.
16247
+ # trial, trial component, or project.
16249
16248
  # @return [Types::UserContext]
16250
16249
  #
16251
16250
  # @!attribute [rw] tags
@@ -25824,7 +25823,7 @@ module Aws::SageMaker
25824
25823
  #
25825
25824
  # @!attribute [rw] created_by
25826
25825
  # Information about the user who created or modified an experiment,
25827
- # trial, or trial component.
25826
+ # trial, trial component, or project.
25828
25827
  # @return [Types::UserContext]
25829
25828
  #
25830
25829
  # @!attribute [rw] metadata_properties
@@ -25842,7 +25841,7 @@ module Aws::SageMaker
25842
25841
  #
25843
25842
  # @!attribute [rw] last_modified_by
25844
25843
  # Information about the user who created or modified an experiment,
25845
- # trial, or trial component.
25844
+ # trial, trial component, or project.
25846
25845
  # @return [Types::UserContext]
25847
25846
  #
25848
25847
  # @!attribute [rw] approval_description
@@ -25981,7 +25980,7 @@ module Aws::SageMaker
25981
25980
  #
25982
25981
  # @!attribute [rw] created_by
25983
25982
  # Information about the user who created or modified an experiment,
25984
- # trial, or trial component.
25983
+ # trial, trial component, or project.
25985
25984
  # @return [Types::UserContext]
25986
25985
  #
25987
25986
  # @!attribute [rw] model_package_group_status
@@ -28654,12 +28653,12 @@ module Aws::SageMaker
28654
28653
  #
28655
28654
  # @!attribute [rw] created_by
28656
28655
  # Information about the user who created or modified an experiment,
28657
- # trial, or trial component.
28656
+ # trial, trial component, or project.
28658
28657
  # @return [Types::UserContext]
28659
28658
  #
28660
28659
  # @!attribute [rw] last_modified_by
28661
28660
  # Information about the user who created or modified an experiment,
28662
- # trial, or trial component.
28661
+ # trial, trial component, or project.
28663
28662
  # @return [Types::UserContext]
28664
28663
  #
28665
28664
  # @!attribute [rw] tags
@@ -28726,12 +28725,12 @@ module Aws::SageMaker
28726
28725
  #
28727
28726
  # @!attribute [rw] created_by
28728
28727
  # Information about the user who created or modified an experiment,
28729
- # trial, or trial component.
28728
+ # trial, trial component, or project.
28730
28729
  # @return [Types::UserContext]
28731
28730
  #
28732
28731
  # @!attribute [rw] last_modified_by
28733
28732
  # Information about the user who created or modified an experiment,
28734
- # trial, or trial component.
28733
+ # trial, trial component, or project.
28735
28734
  # @return [Types::UserContext]
28736
28735
  #
28737
28736
  # @!attribute [rw] pipeline_parameters
@@ -30042,7 +30041,7 @@ module Aws::SageMaker
30042
30041
  #
30043
30042
  # @!attribute [rw] service_catalog_provisioning_details
30044
30043
  # Details that you specify to provision a service catalog product. For
30045
- # information about service catalog, see .[What is Amazon Web Services
30044
+ # information about service catalog, see [What is Amazon Web Services
30046
30045
  # Service Catalog][1].
30047
30046
  #
30048
30047
  #
@@ -30065,8 +30064,7 @@ module Aws::SageMaker
30065
30064
  # @return [String]
30066
30065
  #
30067
30066
  # @!attribute [rw] created_by
30068
- # Information about the user who created or modified an experiment,
30069
- # trial, or trial component.
30067
+ # Who created the project.
30070
30068
  # @return [Types::UserContext]
30071
30069
  #
30072
30070
  # @!attribute [rw] creation_time
@@ -31016,6 +31014,48 @@ module Aws::SageMaker
31016
31014
  include Aws::Structure
31017
31015
  end
31018
31016
 
31017
+ # @note When making an API call, you may pass RetryPipelineExecutionRequest
31018
+ # data as a hash:
31019
+ #
31020
+ # {
31021
+ # pipeline_execution_arn: "PipelineExecutionArn", # required
31022
+ # client_request_token: "IdempotencyToken", # required
31023
+ # }
31024
+ #
31025
+ # @!attribute [rw] pipeline_execution_arn
31026
+ # The Amazon Resource Name (ARN) of the pipeline execution.
31027
+ # @return [String]
31028
+ #
31029
+ # @!attribute [rw] client_request_token
31030
+ # A unique, case-sensitive identifier that you provide to ensure the
31031
+ # idempotency of the operation. An idempotent operation completes no
31032
+ # more than once.
31033
+ #
31034
+ # **A suitable default value is auto-generated.** You should normally
31035
+ # not need to pass this option.
31036
+ # @return [String]
31037
+ #
31038
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecutionRequest AWS API Documentation
31039
+ #
31040
+ class RetryPipelineExecutionRequest < Struct.new(
31041
+ :pipeline_execution_arn,
31042
+ :client_request_token)
31043
+ SENSITIVE = []
31044
+ include Aws::Structure
31045
+ end
31046
+
31047
+ # @!attribute [rw] pipeline_execution_arn
31048
+ # The Amazon Resource Name (ARN) of the pipeline execution.
31049
+ # @return [String]
31050
+ #
31051
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecutionResponse AWS API Documentation
31052
+ #
31053
+ class RetryPipelineExecutionResponse < Struct.new(
31054
+ :pipeline_execution_arn)
31055
+ SENSITIVE = []
31056
+ include Aws::Structure
31057
+ end
31058
+
31019
31059
  # The retry strategy to use when a training job fails due to an
31020
31060
  # `InternalServerError`. `RetryStrategy` is specified as part of the
31021
31061
  # `CreateTrainingJob` and `CreateHyperParameterTuningJob` requests. You
@@ -31812,7 +31852,7 @@ module Aws::SageMaker
31812
31852
  end
31813
31853
 
31814
31854
  # Details that you specify to provision a service catalog product. For
31815
- # information about service catalog, see .[What is Amazon Web Services
31855
+ # information about service catalog, see [What is Amazon Web Services
31816
31856
  # Service Catalog][1].
31817
31857
  #
31818
31858
  #
@@ -32120,7 +32160,7 @@ module Aws::SageMaker
32120
32160
  # @!attribute [rw] client_request_token
32121
32161
  # A unique, case-sensitive identifier that you provide to ensure the
32122
32162
  # idempotency of the operation. An idempotent operation completes no
32123
- # more than one time.
32163
+ # more than once.
32124
32164
  #
32125
32165
  # **A suitable default value is auto-generated.** You should normally
32126
32166
  # not need to pass this option.
@@ -32298,7 +32338,7 @@ module Aws::SageMaker
32298
32338
  # @!attribute [rw] client_request_token
32299
32339
  # A unique, case-sensitive identifier that you provide to ensure the
32300
32340
  # idempotency of the operation. An idempotent operation completes no
32301
- # more than one time.
32341
+ # more than once.
32302
32342
  #
32303
32343
  # **A suitable default value is auto-generated.** You should normally
32304
32344
  # not need to pass this option.
@@ -34110,8 +34150,7 @@ module Aws::SageMaker
34110
34150
  # @return [Time]
34111
34151
  #
34112
34152
  # @!attribute [rw] created_by
34113
- # Information about the user who created or modified an experiment,
34114
- # trial, or trial component.
34153
+ # Who created the trial.
34115
34154
  # @return [Types::UserContext]
34116
34155
  #
34117
34156
  # @!attribute [rw] last_modified_time
@@ -34120,7 +34159,7 @@ module Aws::SageMaker
34120
34159
  #
34121
34160
  # @!attribute [rw] last_modified_by
34122
34161
  # Information about the user who created or modified an experiment,
34123
- # trial, or trial component.
34162
+ # trial, trial component, or project.
34124
34163
  # @return [Types::UserContext]
34125
34164
  #
34126
34165
  # @!attribute [rw] metadata_properties
@@ -34194,8 +34233,7 @@ module Aws::SageMaker
34194
34233
  # @return [Time]
34195
34234
  #
34196
34235
  # @!attribute [rw] created_by
34197
- # Information about the user who created or modified an experiment,
34198
- # trial, or trial component.
34236
+ # Who created the trial component.
34199
34237
  # @return [Types::UserContext]
34200
34238
  #
34201
34239
  # @!attribute [rw] last_modified_time
@@ -34204,7 +34242,7 @@ module Aws::SageMaker
34204
34242
  #
34205
34243
  # @!attribute [rw] last_modified_by
34206
34244
  # Information about the user who created or modified an experiment,
34207
- # trial, or trial component.
34245
+ # trial, trial component, or project.
34208
34246
  # @return [Types::UserContext]
34209
34247
  #
34210
34248
  # @!attribute [rw] parameters
@@ -34415,7 +34453,7 @@ module Aws::SageMaker
34415
34453
  #
34416
34454
  # @!attribute [rw] created_by
34417
34455
  # Information about the user who created or modified an experiment,
34418
- # trial, or trial component.
34456
+ # trial, trial component, or project.
34419
34457
  # @return [Types::UserContext]
34420
34458
  #
34421
34459
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrialComponentSimpleSummary AWS API Documentation
@@ -34555,7 +34593,7 @@ module Aws::SageMaker
34555
34593
  # @return [Time]
34556
34594
  #
34557
34595
  # @!attribute [rw] created_by
34558
- # Who created the component.
34596
+ # Who created the trial component.
34559
34597
  # @return [Types::UserContext]
34560
34598
  #
34561
34599
  # @!attribute [rw] last_modified_time
@@ -36442,7 +36480,7 @@ module Aws::SageMaker
36442
36480
  end
36443
36481
 
36444
36482
  # Information about the user who created or modified an experiment,
36445
- # trial, or trial component.
36483
+ # trial, trial component, or project.
36446
36484
  #
36447
36485
  # @!attribute [rw] user_profile_arn
36448
36486
  # The Amazon Resource Name (ARN) of the user's profile.
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.100.0'
52
+ GEM_VERSION = '1.101.0'
53
53
 
54
54
  end
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.100.0
4
+ version: 1.101.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-09-14 00:00:00.000000000 Z
11
+ date: 2021-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core