aws-sdk-sagemaker 1.225.0 → 1.226.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 91b7ed4d617d70a063772f2e26a07858a21c4a5087a6a194da30bf82eb75e7b8
4
- data.tar.gz: 46f11aeed82390f9b5f6ea78a4cc060fd5c7501eb3bbab35d8a4caad76e251a4
3
+ metadata.gz: 935411c60796f0ac8b54410e4d58b170a7031bdce44386a1efe118c9deeaae0b
4
+ data.tar.gz: a4e838e05a9e396d10e276fd53388ac73dcd89c8de70d1d4130e32def2150499
5
5
  SHA512:
6
- metadata.gz: 8410989a6721f35604ee7fd4cd9e1454f7ceb091df03eb910aacd9332a4ddbaacbd71c054feea17626ee8e8a182d118163eb8cc23ff1e192a71df67fcf7982aa
7
- data.tar.gz: 59bd544055fe070b94d3d13bebc4932dab14c78e297a7c81e629fdf8217b67e636d03874f2b5eb8cd68263dcfacc3506afe01853a863c3f7cf90a7b58fab811d
6
+ metadata.gz: 24e4ee829a076565797fce6e4d7ae77f74fdbb40fadf989d2adf4bb390dd8eec0bd923bef4ca5b7089aff1757e1b92a317843cf6c91c82a97d5f73f641505a8d
7
+ data.tar.gz: 766234afeccec68d8edee8803ea2e18acf4ff15749f64b1e7a6c45505009c386a5eda14c1723efe7fca9e0d302b4e85d7cb0a8cb9b1706491777c70ed58a2643
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.226.0 (2023-12-21)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Training now provides model training container access for debugging purposes. Amazon SageMaker Search now provides the ability to use visibility conditions to limit resource access to a single domain or multiple domains.
8
+
4
9
  1.225.0 (2023-12-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.225.0
1
+ 1.226.0
@@ -7900,6 +7900,16 @@ module Aws::SageMaker
7900
7900
  # The number of times to retry the job when the job fails due to an
7901
7901
  # `InternalServerError`.
7902
7902
  #
7903
+ # @option params [Types::RemoteDebugConfig] :remote_debug_config
7904
+ # Configuration for remote debugging. To learn more about the remote
7905
+ # debugging functionality of SageMaker, see [Access a training container
7906
+ # through Amazon Web Services Systems Manager (SSM) for remote
7907
+ # debugging][1].
7908
+ #
7909
+ #
7910
+ #
7911
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html
7912
+ #
7903
7913
  # @option params [Types::InfraCheckConfig] :infra_check_config
7904
7914
  # Contains information about the infrastructure health check
7905
7915
  # configuration for the training job.
@@ -8069,6 +8079,9 @@ module Aws::SageMaker
8069
8079
  # retry_strategy: {
8070
8080
  # maximum_retry_attempts: 1, # required
8071
8081
  # },
8082
+ # remote_debug_config: {
8083
+ # enable_remote_debug: false,
8084
+ # },
8072
8085
  # infra_check_config: {
8073
8086
  # enable_infra_check: false,
8074
8087
  # },
@@ -15026,6 +15039,7 @@ module Aws::SageMaker
15026
15039
  # * {Types::DescribeTrainingJobResponse#profiling_status #profiling_status} => String
15027
15040
  # * {Types::DescribeTrainingJobResponse#environment #environment} => Hash<String,String>
15028
15041
  # * {Types::DescribeTrainingJobResponse#retry_strategy #retry_strategy} => Types::RetryStrategy
15042
+ # * {Types::DescribeTrainingJobResponse#remote_debug_config #remote_debug_config} => Types::RemoteDebugConfig
15029
15043
  # * {Types::DescribeTrainingJobResponse#infra_check_config #infra_check_config} => Types::InfraCheckConfig
15030
15044
  #
15031
15045
  # @example Request syntax with placeholder values
@@ -15174,6 +15188,7 @@ module Aws::SageMaker
15174
15188
  # resp.environment #=> Hash
15175
15189
  # resp.environment["TrainingEnvironmentKey"] #=> String
15176
15190
  # resp.retry_strategy.maximum_retry_attempts #=> Integer
15191
+ # resp.remote_debug_config.enable_remote_debug #=> Boolean
15177
15192
  # resp.infra_check_config.enable_infra_check #=> Boolean
15178
15193
  #
15179
15194
  #
@@ -22248,6 +22263,10 @@ module Aws::SageMaker
22248
22263
  #
22249
22264
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html
22250
22265
  #
22266
+ # @option params [Array<Types::VisibilityConditions>] :visibility_conditions
22267
+ # Limits the results of your search request to the resources that you
22268
+ # can access.
22269
+ #
22251
22270
  # @return [Types::SearchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
22252
22271
  #
22253
22272
  # * {Types::SearchResponse#results #results} => Array&lt;Types::SearchRecord&gt;
@@ -22291,6 +22310,12 @@ module Aws::SageMaker
22291
22310
  # next_token: "NextToken",
22292
22311
  # max_results: 1,
22293
22312
  # cross_account_filter_option: "SameAccount", # accepts SameAccount, CrossAccount
22313
+ # visibility_conditions: [
22314
+ # {
22315
+ # key: "VisibilityConditionsKey",
22316
+ # value: "VisibilityConditionsValue",
22317
+ # },
22318
+ # ],
22294
22319
  # })
22295
22320
  #
22296
22321
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
@@ -25203,6 +25228,18 @@ module Aws::SageMaker
25203
25228
  # The training job `ResourceConfig` to update warm pool retention
25204
25229
  # length.
25205
25230
  #
25231
+ # @option params [Types::RemoteDebugConfigForUpdate] :remote_debug_config
25232
+ # Configuration for remote debugging while the training job is running.
25233
+ # You can update the remote debugging configuration when the
25234
+ # `SecondaryStatus` of the job is `Downloading` or `Training`.To learn
25235
+ # more about the remote debugging functionality of SageMaker, see
25236
+ # [Access a training container through Amazon Web Services Systems
25237
+ # Manager (SSM) for remote debugging][1].
25238
+ #
25239
+ #
25240
+ #
25241
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html
25242
+ #
25206
25243
  # @return [Types::UpdateTrainingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
25207
25244
  #
25208
25245
  # * {Types::UpdateTrainingJobResponse#training_job_arn #training_job_arn} => String
@@ -25235,6 +25272,9 @@ module Aws::SageMaker
25235
25272
  # resource_config: {
25236
25273
  # keep_alive_period_in_seconds: 1, # required
25237
25274
  # },
25275
+ # remote_debug_config: {
25276
+ # enable_remote_debug: false,
25277
+ # },
25238
25278
  # })
25239
25279
  #
25240
25280
  # @example Response structure
@@ -25804,7 +25844,7 @@ module Aws::SageMaker
25804
25844
  params: params,
25805
25845
  config: config)
25806
25846
  context[:gem_name] = 'aws-sdk-sagemaker'
25807
- context[:gem_version] = '1.225.0'
25847
+ context[:gem_version] = '1.226.0'
25808
25848
  Seahorse::Client::Request.new(handlers, context)
25809
25849
  end
25810
25850
 
@@ -775,6 +775,7 @@ module Aws::SageMaker
775
775
  EnableCapture = Shapes::BooleanShape.new(name: 'EnableCapture')
776
776
  EnableInfraCheck = Shapes::BooleanShape.new(name: 'EnableInfraCheck')
777
777
  EnableIotRoleAlias = Shapes::BooleanShape.new(name: 'EnableIotRoleAlias')
778
+ EnableRemoteDebug = Shapes::BooleanShape.new(name: 'EnableRemoteDebug')
778
779
  EnableSagemakerServicecatalogPortfolioInput = Shapes::StructureShape.new(name: 'EnableSagemakerServicecatalogPortfolioInput')
779
780
  EnableSagemakerServicecatalogPortfolioOutput = Shapes::StructureShape.new(name: 'EnableSagemakerServicecatalogPortfolioOutput')
780
781
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
@@ -1776,6 +1777,8 @@ module Aws::SageMaker
1776
1777
  RegisterDevicesRequest = Shapes::StructureShape.new(name: 'RegisterDevicesRequest')
1777
1778
  RegisterModelStepMetadata = Shapes::StructureShape.new(name: 'RegisterModelStepMetadata')
1778
1779
  ReleaseNotes = Shapes::StringShape.new(name: 'ReleaseNotes')
1780
+ RemoteDebugConfig = Shapes::StructureShape.new(name: 'RemoteDebugConfig')
1781
+ RemoteDebugConfigForUpdate = Shapes::StructureShape.new(name: 'RemoteDebugConfigForUpdate')
1779
1782
  RenderUiTemplateRequest = Shapes::StructureShape.new(name: 'RenderUiTemplateRequest')
1780
1783
  RenderUiTemplateResponse = Shapes::StructureShape.new(name: 'RenderUiTemplateResponse')
1781
1784
  RenderableTask = Shapes::StructureShape.new(name: 'RenderableTask')
@@ -2208,6 +2211,10 @@ module Aws::SageMaker
2208
2211
  VersionedArnOrName = Shapes::StringShape.new(name: 'VersionedArnOrName')
2209
2212
  Vertex = Shapes::StructureShape.new(name: 'Vertex')
2210
2213
  Vertices = Shapes::ListShape.new(name: 'Vertices')
2214
+ VisibilityConditions = Shapes::StructureShape.new(name: 'VisibilityConditions')
2215
+ VisibilityConditionsKey = Shapes::StringShape.new(name: 'VisibilityConditionsKey')
2216
+ VisibilityConditionsList = Shapes::ListShape.new(name: 'VisibilityConditionsList')
2217
+ VisibilityConditionsValue = Shapes::StringShape.new(name: 'VisibilityConditionsValue')
2211
2218
  VolumeSizeInGB = Shapes::IntegerShape.new(name: 'VolumeSizeInGB')
2212
2219
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
2213
2220
  VpcId = Shapes::StringShape.new(name: 'VpcId')
@@ -3584,6 +3591,7 @@ module Aws::SageMaker
3584
3591
  CreateTrainingJobRequest.add_member(:profiler_rule_configurations, Shapes::ShapeRef.new(shape: ProfilerRuleConfigurations, location_name: "ProfilerRuleConfigurations"))
3585
3592
  CreateTrainingJobRequest.add_member(:environment, Shapes::ShapeRef.new(shape: TrainingEnvironmentMap, location_name: "Environment"))
3586
3593
  CreateTrainingJobRequest.add_member(:retry_strategy, Shapes::ShapeRef.new(shape: RetryStrategy, location_name: "RetryStrategy"))
3594
+ CreateTrainingJobRequest.add_member(:remote_debug_config, Shapes::ShapeRef.new(shape: RemoteDebugConfig, location_name: "RemoteDebugConfig"))
3587
3595
  CreateTrainingJobRequest.add_member(:infra_check_config, Shapes::ShapeRef.new(shape: InfraCheckConfig, location_name: "InfraCheckConfig"))
3588
3596
  CreateTrainingJobRequest.struct_class = Types::CreateTrainingJobRequest
3589
3597
 
@@ -5023,6 +5031,7 @@ module Aws::SageMaker
5023
5031
  DescribeTrainingJobResponse.add_member(:profiling_status, Shapes::ShapeRef.new(shape: ProfilingStatus, location_name: "ProfilingStatus"))
5024
5032
  DescribeTrainingJobResponse.add_member(:environment, Shapes::ShapeRef.new(shape: TrainingEnvironmentMap, location_name: "Environment"))
5025
5033
  DescribeTrainingJobResponse.add_member(:retry_strategy, Shapes::ShapeRef.new(shape: RetryStrategy, location_name: "RetryStrategy"))
5034
+ DescribeTrainingJobResponse.add_member(:remote_debug_config, Shapes::ShapeRef.new(shape: RemoteDebugConfig, location_name: "RemoteDebugConfig"))
5026
5035
  DescribeTrainingJobResponse.add_member(:infra_check_config, Shapes::ShapeRef.new(shape: InfraCheckConfig, location_name: "InfraCheckConfig"))
5027
5036
  DescribeTrainingJobResponse.struct_class = Types::DescribeTrainingJobResponse
5028
5037
 
@@ -8569,6 +8578,12 @@ module Aws::SageMaker
8569
8578
  RegisterModelStepMetadata.add_member(:arn, Shapes::ShapeRef.new(shape: String256, location_name: "Arn"))
8570
8579
  RegisterModelStepMetadata.struct_class = Types::RegisterModelStepMetadata
8571
8580
 
8581
+ RemoteDebugConfig.add_member(:enable_remote_debug, Shapes::ShapeRef.new(shape: EnableRemoteDebug, location_name: "EnableRemoteDebug"))
8582
+ RemoteDebugConfig.struct_class = Types::RemoteDebugConfig
8583
+
8584
+ RemoteDebugConfigForUpdate.add_member(:enable_remote_debug, Shapes::ShapeRef.new(shape: EnableRemoteDebug, location_name: "EnableRemoteDebug"))
8585
+ RemoteDebugConfigForUpdate.struct_class = Types::RemoteDebugConfigForUpdate
8586
+
8572
8587
  RenderUiTemplateRequest.add_member(:ui_template, Shapes::ShapeRef.new(shape: UiTemplate, location_name: "UiTemplate"))
8573
8588
  RenderUiTemplateRequest.add_member(:task, Shapes::ShapeRef.new(shape: RenderableTask, required: true, location_name: "Task"))
8574
8589
  RenderUiTemplateRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
@@ -8734,6 +8749,7 @@ module Aws::SageMaker
8734
8749
  SearchRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
8735
8750
  SearchRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
8736
8751
  SearchRequest.add_member(:cross_account_filter_option, Shapes::ShapeRef.new(shape: CrossAccountFilterOption, location_name: "CrossAccountFilterOption"))
8752
+ SearchRequest.add_member(:visibility_conditions, Shapes::ShapeRef.new(shape: VisibilityConditionsList, location_name: "VisibilityConditions"))
8737
8753
  SearchRequest.struct_class = Types::SearchRequest
8738
8754
 
8739
8755
  SearchResponse.add_member(:results, Shapes::ShapeRef.new(shape: SearchResultsList, location_name: "Results"))
@@ -9670,6 +9686,7 @@ module Aws::SageMaker
9670
9686
  UpdateTrainingJobRequest.add_member(:profiler_config, Shapes::ShapeRef.new(shape: ProfilerConfigForUpdate, location_name: "ProfilerConfig"))
9671
9687
  UpdateTrainingJobRequest.add_member(:profiler_rule_configurations, Shapes::ShapeRef.new(shape: ProfilerRuleConfigurations, location_name: "ProfilerRuleConfigurations"))
9672
9688
  UpdateTrainingJobRequest.add_member(:resource_config, Shapes::ShapeRef.new(shape: ResourceConfigForUpdate, location_name: "ResourceConfig"))
9689
+ UpdateTrainingJobRequest.add_member(:remote_debug_config, Shapes::ShapeRef.new(shape: RemoteDebugConfigForUpdate, location_name: "RemoteDebugConfig"))
9673
9690
  UpdateTrainingJobRequest.struct_class = Types::UpdateTrainingJobRequest
9674
9691
 
9675
9692
  UpdateTrainingJobResponse.add_member(:training_job_arn, Shapes::ShapeRef.new(shape: TrainingJobArn, required: true, location_name: "TrainingJobArn"))
@@ -9772,6 +9789,12 @@ module Aws::SageMaker
9772
9789
 
9773
9790
  Vertices.member = Shapes::ShapeRef.new(shape: Vertex)
9774
9791
 
9792
+ VisibilityConditions.add_member(:key, Shapes::ShapeRef.new(shape: VisibilityConditionsKey, location_name: "Key"))
9793
+ VisibilityConditions.add_member(:value, Shapes::ShapeRef.new(shape: VisibilityConditionsValue, location_name: "Value"))
9794
+ VisibilityConditions.struct_class = Types::VisibilityConditions
9795
+
9796
+ VisibilityConditionsList.member = Shapes::ShapeRef.new(shape: VisibilityConditions)
9797
+
9775
9798
  VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIds, required: true, location_name: "SecurityGroupIds"))
9776
9799
  VpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: Subnets, required: true, location_name: "Subnets"))
9777
9800
  VpcConfig.struct_class = Types::VpcConfig
@@ -8936,6 +8936,17 @@ module Aws::SageMaker
8936
8936
  # `InternalServerError`.
8937
8937
  # @return [Types::RetryStrategy]
8938
8938
  #
8939
+ # @!attribute [rw] remote_debug_config
8940
+ # Configuration for remote debugging. To learn more about the remote
8941
+ # debugging functionality of SageMaker, see [Access a training
8942
+ # container through Amazon Web Services Systems Manager (SSM) for
8943
+ # remote debugging][1].
8944
+ #
8945
+ #
8946
+ #
8947
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html
8948
+ # @return [Types::RemoteDebugConfig]
8949
+ #
8939
8950
  # @!attribute [rw] infra_check_config
8940
8951
  # Contains information about the infrastructure health check
8941
8952
  # configuration for the training job.
@@ -8966,6 +8977,7 @@ module Aws::SageMaker
8966
8977
  :profiler_rule_configurations,
8967
8978
  :environment,
8968
8979
  :retry_strategy,
8980
+ :remote_debug_config,
8969
8981
  :infra_check_config)
8970
8982
  SENSITIVE = []
8971
8983
  include Aws::Structure
@@ -16568,6 +16580,17 @@ module Aws::SageMaker
16568
16580
  # `InternalServerError`.
16569
16581
  # @return [Types::RetryStrategy]
16570
16582
  #
16583
+ # @!attribute [rw] remote_debug_config
16584
+ # Configuration for remote debugging. To learn more about the remote
16585
+ # debugging functionality of SageMaker, see [Access a training
16586
+ # container through Amazon Web Services Systems Manager (SSM) for
16587
+ # remote debugging][1].
16588
+ #
16589
+ #
16590
+ #
16591
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html
16592
+ # @return [Types::RemoteDebugConfig]
16593
+ #
16571
16594
  # @!attribute [rw] infra_check_config
16572
16595
  # Contains information about the infrastructure health check
16573
16596
  # configuration for the training job.
@@ -16617,6 +16640,7 @@ module Aws::SageMaker
16617
16640
  :profiling_status,
16618
16641
  :environment,
16619
16642
  :retry_strategy,
16643
+ :remote_debug_config,
16620
16644
  :infra_check_config)
16621
16645
  SENSITIVE = []
16622
16646
  include Aws::Structure
@@ -36996,6 +37020,50 @@ module Aws::SageMaker
36996
37020
  include Aws::Structure
36997
37021
  end
36998
37022
 
37023
+ # Configuration for remote debugging for the [CreateTrainingJob][1] API.
37024
+ # To learn more about the remote debugging functionality of SageMaker,
37025
+ # see [Access a training container through Amazon Web Services Systems
37026
+ # Manager (SSM) for remote debugging][2].
37027
+ #
37028
+ #
37029
+ #
37030
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html
37031
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html
37032
+ #
37033
+ # @!attribute [rw] enable_remote_debug
37034
+ # If set to True, enables remote debugging.
37035
+ # @return [Boolean]
37036
+ #
37037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RemoteDebugConfig AWS API Documentation
37038
+ #
37039
+ class RemoteDebugConfig < Struct.new(
37040
+ :enable_remote_debug)
37041
+ SENSITIVE = []
37042
+ include Aws::Structure
37043
+ end
37044
+
37045
+ # Configuration for remote debugging for the [UpdateTrainingJob][1] API.
37046
+ # To learn more about the remote debugging functionality of SageMaker,
37047
+ # see [Access a training container through Amazon Web Services Systems
37048
+ # Manager (SSM) for remote debugging][2].
37049
+ #
37050
+ #
37051
+ #
37052
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateTrainingJob.html
37053
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html
37054
+ #
37055
+ # @!attribute [rw] enable_remote_debug
37056
+ # If set to True, enables remote debugging.
37057
+ # @return [Boolean]
37058
+ #
37059
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RemoteDebugConfigForUpdate AWS API Documentation
37060
+ #
37061
+ class RemoteDebugConfigForUpdate < Struct.new(
37062
+ :enable_remote_debug)
37063
+ SENSITIVE = []
37064
+ include Aws::Structure
37065
+ end
37066
+
36999
37067
  # @!attribute [rw] ui_template
37000
37068
  # A `Template` object containing the worker UI template to render.
37001
37069
  # @return [Types::UiTemplate]
@@ -38176,6 +38244,11 @@ module Aws::SageMaker
38176
38244
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html
38177
38245
  # @return [String]
38178
38246
  #
38247
+ # @!attribute [rw] visibility_conditions
38248
+ # Limits the results of your search request to the resources that you
38249
+ # can access.
38250
+ # @return [Array<Types::VisibilityConditions>]
38251
+ #
38179
38252
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRequest AWS API Documentation
38180
38253
  #
38181
38254
  class SearchRequest < Struct.new(
@@ -38185,7 +38258,8 @@ module Aws::SageMaker
38185
38258
  :sort_order,
38186
38259
  :next_token,
38187
38260
  :max_results,
38188
- :cross_account_filter_option)
38261
+ :cross_account_filter_option,
38262
+ :visibility_conditions)
38189
38263
  SENSITIVE = []
38190
38264
  include Aws::Structure
38191
38265
  end
@@ -38304,9 +38378,9 @@ module Aws::SageMaker
38304
38378
  # * Preparing the instances for training.
38305
38379
  #
38306
38380
  # Training
38307
- # : * Downloading the training image.
38381
+ # : * Training image download completed. Training in progress.
38308
38382
  #
38309
- # * Training image download completed. Training in progress.
38383
+ # ^
38310
38384
  #
38311
38385
  # Status messages are subject to change. Therefore, we recommend not
38312
38386
  # including them in code that programmatically initiates actions. For
@@ -43792,13 +43866,27 @@ module Aws::SageMaker
43792
43866
  # length.
43793
43867
  # @return [Types::ResourceConfigForUpdate]
43794
43868
  #
43869
+ # @!attribute [rw] remote_debug_config
43870
+ # Configuration for remote debugging while the training job is
43871
+ # running. You can update the remote debugging configuration when the
43872
+ # `SecondaryStatus` of the job is `Downloading` or `Training`.To learn
43873
+ # more about the remote debugging functionality of SageMaker, see
43874
+ # [Access a training container through Amazon Web Services Systems
43875
+ # Manager (SSM) for remote debugging][1].
43876
+ #
43877
+ #
43878
+ #
43879
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html
43880
+ # @return [Types::RemoteDebugConfigForUpdate]
43881
+ #
43795
43882
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateTrainingJobRequest AWS API Documentation
43796
43883
  #
43797
43884
  class UpdateTrainingJobRequest < Struct.new(
43798
43885
  :training_job_name,
43799
43886
  :profiler_config,
43800
43887
  :profiler_rule_configurations,
43801
- :resource_config)
43888
+ :resource_config,
43889
+ :remote_debug_config)
43802
43890
  SENSITIVE = []
43803
43891
  include Aws::Structure
43804
43892
  end
@@ -44357,6 +44445,27 @@ module Aws::SageMaker
44357
44445
  include Aws::Structure
44358
44446
  end
44359
44447
 
44448
+ # The list of key-value pairs that you specify for your resources.
44449
+ #
44450
+ # @!attribute [rw] key
44451
+ # The key for that specifies the tag that you're using to filter the
44452
+ # search results. The key must start with `Tags.`.
44453
+ # @return [String]
44454
+ #
44455
+ # @!attribute [rw] value
44456
+ # The value for the tag that you're using to filter the search
44457
+ # results.
44458
+ # @return [String]
44459
+ #
44460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/VisibilityConditions AWS API Documentation
44461
+ #
44462
+ class VisibilityConditions < Struct.new(
44463
+ :key,
44464
+ :value)
44465
+ SENSITIVE = []
44466
+ include Aws::Structure
44467
+ end
44468
+
44360
44469
  # Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
44361
44470
  # jobs, hosted models, and compute resources have access to. You can
44362
44471
  # control access to and from your resources by configuring a VPC. For
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.225.0'
56
+ GEM_VERSION = '1.226.0'
57
57
 
58
58
  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.225.0
4
+ version: 1.226.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: 2023-12-15 00:00:00.000000000 Z
11
+ date: 2023-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core