aws-sdk-sagemaker 1.352.0 → 1.353.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: f2779d60bb1d94beaf08e7d082f1b0d5415f447890d92677ac78d5201ea241c6
4
- data.tar.gz: bfe47cc761934a43250a7cb2825593a7ae13766656faeff2c3caaef4e009164b
3
+ metadata.gz: a0be4780702f08a2e76c697e94cb3a7c73a60a175a45bff25c0e20ce38af111e
4
+ data.tar.gz: 5030027d22c467dc811023c55953810b10a89e963682eb1e55ea80f41a6139d1
5
5
  SHA512:
6
- metadata.gz: f12540461d50b289c0622dfc84adec5da103480734f5a74b7fb8b67786a87b8f2db979cf4ab6340035f7f4cf6b170e8d6a4f41260313727e66b5d2f4403574f1
7
- data.tar.gz: 3655be2317477b0ab93f777f22cef63d9e98703cd0478776329f49aaea657291722d632a7a72a4e931fe6efd8844fce6f0075e118ebaf1d42cb48aa71f5dc3a7
6
+ metadata.gz: 17921bcd075e05991c915377c0d50046771d50025e53b0d0121db748453f44f50d30e3ce078a174657e6e38b4eef1378a48f51e27083913c5da563b33fa3c42f
7
+ data.tar.gz: 26f8522eabb01a3558426efbb1b7f055b7511c23b84cd928cbf23ab5c74584a8f12dd05a53ee1af42a9c1b6aa3fe6d40bdac359dc4c88234ba3f417991519d55
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.353.0 (2026-03-05)
5
+ ------------------
6
+
7
+ * Feature - Adds support for S3 Bucket Ownership validation for SageMaker Managed MLflow.
8
+
4
9
  1.352.0 (2026-03-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.352.0
1
+ 1.353.0
@@ -6796,6 +6796,16 @@ module Aws::SageMaker
6796
6796
  # Tags consisting of key-value pairs used to manage metadata for the
6797
6797
  # tracking server.
6798
6798
  #
6799
+ # @option params [String] :s3_bucket_owner_account_id
6800
+ # Expected Amazon Web Services account ID that owns the Amazon S3 bucket
6801
+ # for artifact storage. Defaults to caller's account ID if not
6802
+ # provided.
6803
+ #
6804
+ # @option params [Boolean] :s3_bucket_owner_verification
6805
+ # Enable Amazon S3 Ownership checks when interacting with Amazon S3
6806
+ # buckets from a SageMaker Managed MLflow Tracking Server. Defaults to
6807
+ # `True` if not provided.
6808
+ #
6799
6809
  # @return [Types::CreateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6800
6810
  #
6801
6811
  # * {Types::CreateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
@@ -6816,6 +6826,8 @@ module Aws::SageMaker
6816
6826
  # value: "TagValue", # required
6817
6827
  # },
6818
6828
  # ],
6829
+ # s3_bucket_owner_account_id: "AccountId",
6830
+ # s3_bucket_owner_verification: false,
6819
6831
  # })
6820
6832
  #
6821
6833
  # @example Response structure
@@ -16930,6 +16942,8 @@ module Aws::SageMaker
16930
16942
  # * {Types::DescribeMlflowTrackingServerResponse#created_by #created_by} => Types::UserContext
16931
16943
  # * {Types::DescribeMlflowTrackingServerResponse#last_modified_time #last_modified_time} => Time
16932
16944
  # * {Types::DescribeMlflowTrackingServerResponse#last_modified_by #last_modified_by} => Types::UserContext
16945
+ # * {Types::DescribeMlflowTrackingServerResponse#s3_bucket_owner_account_id #s3_bucket_owner_account_id} => String
16946
+ # * {Types::DescribeMlflowTrackingServerResponse#s3_bucket_owner_verification #s3_bucket_owner_verification} => Boolean
16933
16947
  #
16934
16948
  # @example Request syntax with placeholder values
16935
16949
  #
@@ -16965,6 +16979,8 @@ module Aws::SageMaker
16965
16979
  # resp.last_modified_by.iam_identity.arn #=> String
16966
16980
  # resp.last_modified_by.iam_identity.principal_id #=> String
16967
16981
  # resp.last_modified_by.iam_identity.source_identity #=> String
16982
+ # resp.s3_bucket_owner_account_id #=> String
16983
+ # resp.s3_bucket_owner_verification #=> Boolean
16968
16984
  #
16969
16985
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServer AWS API Documentation
16970
16986
  #
@@ -30429,6 +30445,14 @@ module Aws::SageMaker
30429
30445
  # maintenance window day and time should be in Coordinated Universal
30430
30446
  # Time (UTC) 24-hour standard time. For example: TUE:03:30.
30431
30447
  #
30448
+ # @option params [String] :s3_bucket_owner_account_id
30449
+ # The new expected Amazon Web Services account ID that owns the Amazon
30450
+ # S3 bucket for artifact storage.
30451
+ #
30452
+ # @option params [Boolean] :s3_bucket_owner_verification
30453
+ # Whether to enable or disable Amazon S3 Bucket Owenrship Verifaction
30454
+ # whenever the MLflow Tracking Server interacts with Amazon Amazon S3.
30455
+ #
30432
30456
  # @return [Types::UpdateMlflowTrackingServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
30433
30457
  #
30434
30458
  # * {Types::UpdateMlflowTrackingServerResponse#tracking_server_arn #tracking_server_arn} => String
@@ -30441,6 +30465,8 @@ module Aws::SageMaker
30441
30465
  # tracking_server_size: "Small", # accepts Small, Medium, Large
30442
30466
  # automatic_model_registration: false,
30443
30467
  # weekly_maintenance_window_start: "WeeklyMaintenanceWindowStart",
30468
+ # s3_bucket_owner_account_id: "AccountId",
30469
+ # s3_bucket_owner_verification: false,
30444
30470
  # })
30445
30471
  #
30446
30472
  # @example Response structure
@@ -32347,7 +32373,7 @@ module Aws::SageMaker
32347
32373
  tracer: tracer
32348
32374
  )
32349
32375
  context[:gem_name] = 'aws-sdk-sagemaker'
32350
- context[:gem_version] = '1.352.0'
32376
+ context[:gem_version] = '1.353.0'
32351
32377
  Seahorse::Client::Request.new(handlers, context)
32352
32378
  end
32353
32379
 
@@ -4526,6 +4526,8 @@ module Aws::SageMaker
4526
4526
  CreateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration", metadata: {"box" => true}))
4527
4527
  CreateMlflowTrackingServerRequest.add_member(:weekly_maintenance_window_start, Shapes::ShapeRef.new(shape: WeeklyMaintenanceWindowStart, location_name: "WeeklyMaintenanceWindowStart"))
4528
4528
  CreateMlflowTrackingServerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
4529
+ CreateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "S3BucketOwnerAccountId"))
4530
+ CreateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_verification, Shapes::ShapeRef.new(shape: Boolean, location_name: "S3BucketOwnerVerification", metadata: {"box" => true}))
4529
4531
  CreateMlflowTrackingServerRequest.struct_class = Types::CreateMlflowTrackingServerRequest
4530
4532
 
4531
4533
  CreateMlflowTrackingServerResponse.add_member(:tracking_server_arn, Shapes::ShapeRef.new(shape: TrackingServerArn, location_name: "TrackingServerArn"))
@@ -6122,6 +6124,8 @@ module Aws::SageMaker
6122
6124
  DescribeMlflowTrackingServerResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
6123
6125
  DescribeMlflowTrackingServerResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
6124
6126
  DescribeMlflowTrackingServerResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
6127
+ DescribeMlflowTrackingServerResponse.add_member(:s3_bucket_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "S3BucketOwnerAccountId"))
6128
+ DescribeMlflowTrackingServerResponse.add_member(:s3_bucket_owner_verification, Shapes::ShapeRef.new(shape: Boolean, location_name: "S3BucketOwnerVerification", metadata: {"box" => true}))
6125
6129
  DescribeMlflowTrackingServerResponse.struct_class = Types::DescribeMlflowTrackingServerResponse
6126
6130
 
6127
6131
  DescribeModelBiasJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionName, required: true, location_name: "JobDefinitionName"))
@@ -12081,6 +12085,8 @@ module Aws::SageMaker
12081
12085
  UpdateMlflowTrackingServerRequest.add_member(:tracking_server_size, Shapes::ShapeRef.new(shape: TrackingServerSize, location_name: "TrackingServerSize"))
12082
12086
  UpdateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration", metadata: {"box" => true}))
12083
12087
  UpdateMlflowTrackingServerRequest.add_member(:weekly_maintenance_window_start, Shapes::ShapeRef.new(shape: WeeklyMaintenanceWindowStart, location_name: "WeeklyMaintenanceWindowStart"))
12088
+ UpdateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "S3BucketOwnerAccountId"))
12089
+ UpdateMlflowTrackingServerRequest.add_member(:s3_bucket_owner_verification, Shapes::ShapeRef.new(shape: Boolean, location_name: "S3BucketOwnerVerification", metadata: {"box" => true}))
12084
12090
  UpdateMlflowTrackingServerRequest.struct_class = Types::UpdateMlflowTrackingServerRequest
12085
12091
 
12086
12092
  UpdateMlflowTrackingServerResponse.add_member(:tracking_server_arn, Shapes::ShapeRef.new(shape: TrackingServerArn, location_name: "TrackingServerArn"))
@@ -10700,6 +10700,18 @@ module Aws::SageMaker
10700
10700
  # tracking server.
10701
10701
  # @return [Array<Types::Tag>]
10702
10702
  #
10703
+ # @!attribute [rw] s3_bucket_owner_account_id
10704
+ # Expected Amazon Web Services account ID that owns the Amazon S3
10705
+ # bucket for artifact storage. Defaults to caller's account ID if not
10706
+ # provided.
10707
+ # @return [String]
10708
+ #
10709
+ # @!attribute [rw] s3_bucket_owner_verification
10710
+ # Enable Amazon S3 Ownership checks when interacting with Amazon S3
10711
+ # buckets from a SageMaker Managed MLflow Tracking Server. Defaults to
10712
+ # `True` if not provided.
10713
+ # @return [Boolean]
10714
+ #
10703
10715
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServerRequest AWS API Documentation
10704
10716
  #
10705
10717
  class CreateMlflowTrackingServerRequest < Struct.new(
@@ -10710,7 +10722,9 @@ module Aws::SageMaker
10710
10722
  :role_arn,
10711
10723
  :automatic_model_registration,
10712
10724
  :weekly_maintenance_window_start,
10713
- :tags)
10725
+ :tags,
10726
+ :s3_bucket_owner_account_id,
10727
+ :s3_bucket_owner_verification)
10714
10728
  SENSITIVE = []
10715
10729
  include Aws::Structure
10716
10730
  end
@@ -19343,6 +19357,16 @@ module Aws::SageMaker
19343
19357
  # resource.
19344
19358
  # @return [Types::UserContext]
19345
19359
  #
19360
+ # @!attribute [rw] s3_bucket_owner_account_id
19361
+ # Expected Amazon Web Services account ID that owns the Amazon S3
19362
+ # bucket for artifact storage.
19363
+ # @return [String]
19364
+ #
19365
+ # @!attribute [rw] s3_bucket_owner_verification
19366
+ # Whether Amazon S3 Bucket Ownership checks are enabled whenever the
19367
+ # tracking server interacts with Amazon Amazon S3.
19368
+ # @return [Boolean]
19369
+ #
19346
19370
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerResponse AWS API Documentation
19347
19371
  #
19348
19372
  class DescribeMlflowTrackingServerResponse < Struct.new(
@@ -19361,7 +19385,9 @@ module Aws::SageMaker
19361
19385
  :creation_time,
19362
19386
  :created_by,
19363
19387
  :last_modified_time,
19364
- :last_modified_by)
19388
+ :last_modified_by,
19389
+ :s3_bucket_owner_account_id,
19390
+ :s3_bucket_owner_verification)
19365
19391
  SENSITIVE = []
19366
19392
  include Aws::Structure
19367
19393
  end
@@ -53942,6 +53968,16 @@ module Aws::SageMaker
53942
53968
  # Time (UTC) 24-hour standard time. For example: TUE:03:30.
53943
53969
  # @return [String]
53944
53970
  #
53971
+ # @!attribute [rw] s3_bucket_owner_account_id
53972
+ # The new expected Amazon Web Services account ID that owns the Amazon
53973
+ # S3 bucket for artifact storage.
53974
+ # @return [String]
53975
+ #
53976
+ # @!attribute [rw] s3_bucket_owner_verification
53977
+ # Whether to enable or disable Amazon S3 Bucket Owenrship Verifaction
53978
+ # whenever the MLflow Tracking Server interacts with Amazon Amazon S3.
53979
+ # @return [Boolean]
53980
+ #
53945
53981
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServerRequest AWS API Documentation
53946
53982
  #
53947
53983
  class UpdateMlflowTrackingServerRequest < Struct.new(
@@ -53949,7 +53985,9 @@ module Aws::SageMaker
53949
53985
  :artifact_store_uri,
53950
53986
  :tracking_server_size,
53951
53987
  :automatic_model_registration,
53952
- :weekly_maintenance_window_start)
53988
+ :weekly_maintenance_window_start,
53989
+ :s3_bucket_owner_account_id,
53990
+ :s3_bucket_owner_verification)
53953
53991
  SENSITIVE = []
53954
53992
  include Aws::Structure
53955
53993
  end
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.352.0'
58
+ GEM_VERSION = '1.353.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -2895,7 +2895,9 @@ module Aws
2895
2895
  key: ::String,
2896
2896
  value: ::String
2897
2897
  },
2898
- ]
2898
+ ],
2899
+ ?s3_bucket_owner_account_id: ::String,
2900
+ ?s3_bucket_owner_verification: bool
2899
2901
  ) -> _CreateMlflowTrackingServerResponseSuccess
2900
2902
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMlflowTrackingServerResponseSuccess
2901
2903
 
@@ -6352,6 +6354,8 @@ module Aws
6352
6354
  def created_by: () -> Types::UserContext
6353
6355
  def last_modified_time: () -> ::Time
6354
6356
  def last_modified_by: () -> Types::UserContext
6357
+ def s3_bucket_owner_account_id: () -> ::String
6358
+ def s3_bucket_owner_verification: () -> bool
6355
6359
  end
6356
6360
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_mlflow_tracking_server-instance_method
6357
6361
  def describe_mlflow_tracking_server: (
@@ -10240,7 +10244,9 @@ module Aws
10240
10244
  ?artifact_store_uri: ::String,
10241
10245
  ?tracking_server_size: ("Small" | "Medium" | "Large"),
10242
10246
  ?automatic_model_registration: bool,
10243
- ?weekly_maintenance_window_start: ::String
10247
+ ?weekly_maintenance_window_start: ::String,
10248
+ ?s3_bucket_owner_account_id: ::String,
10249
+ ?s3_bucket_owner_verification: bool
10244
10250
  ) -> _UpdateMlflowTrackingServerResponseSuccess
10245
10251
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMlflowTrackingServerResponseSuccess
10246
10252
 
data/sig/types.rbs CHANGED
@@ -2033,6 +2033,8 @@ module Aws::SageMaker
2033
2033
  attr_accessor automatic_model_registration: bool
2034
2034
  attr_accessor weekly_maintenance_window_start: ::String
2035
2035
  attr_accessor tags: ::Array[Types::Tag]
2036
+ attr_accessor s3_bucket_owner_account_id: ::String
2037
+ attr_accessor s3_bucket_owner_verification: bool
2036
2038
  SENSITIVE: []
2037
2039
  end
2038
2040
 
@@ -4101,6 +4103,8 @@ module Aws::SageMaker
4101
4103
  attr_accessor created_by: Types::UserContext
4102
4104
  attr_accessor last_modified_time: ::Time
4103
4105
  attr_accessor last_modified_by: Types::UserContext
4106
+ attr_accessor s3_bucket_owner_account_id: ::String
4107
+ attr_accessor s3_bucket_owner_verification: bool
4104
4108
  SENSITIVE: []
4105
4109
  end
4106
4110
 
@@ -11342,6 +11346,8 @@ module Aws::SageMaker
11342
11346
  attr_accessor tracking_server_size: ("Small" | "Medium" | "Large")
11343
11347
  attr_accessor automatic_model_registration: bool
11344
11348
  attr_accessor weekly_maintenance_window_start: ::String
11349
+ attr_accessor s3_bucket_owner_account_id: ::String
11350
+ attr_accessor s3_bucket_owner_verification: bool
11345
11351
  SENSITIVE: []
11346
11352
  end
11347
11353
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.352.0
4
+ version: 1.353.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services