aws-sdk-sagemaker 1.315.0 → 1.316.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: a347b64ed5a1d30230f3329a6f46835a2d43ff5222de8c89c34b43da7106e4af
4
- data.tar.gz: 5b2e0583342fc2810c793079c434f1afa206f06758cd098a8bf8d20470e83719
3
+ metadata.gz: 14db74ca75bab44a1a53a6df60ecaa47a1c5d8bac9a6ebcbee8c2b8eca524032
4
+ data.tar.gz: adbfeb06f4beffed4b1a54fc4b3ba4440e8173bce6dbbd90bfa5690b14f6ca04
5
5
  SHA512:
6
- metadata.gz: d7dc822ea241ecfa75924476027e71d17b975469b7af05e1e5d87347baf7b49a0b2e8e148f8f45bbd4762b3aee1c8efaffa94385213adc9a02dac67ebf5e4085
7
- data.tar.gz: bd57f78c0aee984fd79783e6ccbfd813602eb80b531d9712c7b3661d466c88dccfcc471b7d006f616e7451b24a9d4ae4fe763ffbde1ebfe9f637e9ff033c1acc
6
+ metadata.gz: 206d8bc4ccf14a49605e757f4ab498ec0358c88903543e66af3520b0ffef51634ca9e23b8ccd5aad3b85612ebb0b8323cb6f4f723e2fd305830b8e84fc6dc1ac
7
+ data.tar.gz: 0ed8527d60c26bf7eb0ef58bfb4edc4ff9959a58444eb9c7874c0c2443f49dbc93282d725f526cdfaa266eee6b6f084581739aef1b6338d40ad6f0cb33a478ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.316.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - This release adds 1/ Support for S3FileSystem in CustomFileSystems 2/ The ability for a customer to select their preferred IpAddressType for use with private Workforces 3/ Support for p4de instance type in SageMaker Training Plans
8
+
4
9
  1.315.0 (2025-07-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.315.0
1
+ 1.316.0
@@ -95,7 +95,7 @@ module Aws::SageMaker
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::SageMaker
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::SageMaker
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::SageMaker
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -374,7 +384,7 @@ module Aws::SageMaker
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
387
+ # Your Bearer token used for authentication. This can be an instance of any one of the
378
388
  # following classes:
379
389
  #
380
390
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -2065,7 +2075,7 @@ module Aws::SageMaker
2065
2075
  # instance_storage_configs: [
2066
2076
  # {
2067
2077
  # ebs_volume_config: {
2068
- # volume_size_in_gb: 1, # required
2078
+ # volume_size_in_gb: 1,
2069
2079
  # },
2070
2080
  # },
2071
2081
  # ],
@@ -2108,7 +2118,7 @@ module Aws::SageMaker
2108
2118
  # instance_storage_configs: [
2109
2119
  # {
2110
2120
  # ebs_volume_config: {
2111
- # volume_size_in_gb: 1, # required
2121
+ # volume_size_in_gb: 1,
2112
2122
  # },
2113
2123
  # },
2114
2124
  # ],
@@ -2517,7 +2527,7 @@ module Aws::SageMaker
2517
2527
  # compute_quota_resources: [
2518
2528
  # {
2519
2529
  # instance_type: "ml.p4d.24xlarge", # required, accepts ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.c5n.large, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.g6.xlarge, ml.g6.2xlarge, ml.g6.4xlarge, ml.g6.8xlarge, ml.g6.16xlarge, ml.g6.12xlarge, ml.g6.24xlarge, ml.g6.48xlarge, ml.gr6.4xlarge, ml.gr6.8xlarge, ml.g6e.xlarge, ml.g6e.2xlarge, ml.g6e.4xlarge, ml.g6e.8xlarge, ml.g6e.16xlarge, ml.g6e.12xlarge, ml.g6e.24xlarge, ml.g6e.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.p6-b200.48xlarge, ml.trn2.48xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.m6i.large, ml.m6i.xlarge, ml.m6i.2xlarge, ml.m6i.4xlarge, ml.m6i.8xlarge, ml.m6i.12xlarge, ml.m6i.16xlarge, ml.m6i.24xlarge, ml.m6i.32xlarge, ml.r6i.large, ml.r6i.xlarge, ml.r6i.2xlarge, ml.r6i.4xlarge, ml.r6i.8xlarge, ml.r6i.12xlarge, ml.r6i.16xlarge, ml.r6i.24xlarge, ml.r6i.32xlarge, ml.i3en.large, ml.i3en.xlarge, ml.i3en.2xlarge, ml.i3en.3xlarge, ml.i3en.6xlarge, ml.i3en.12xlarge, ml.i3en.24xlarge, ml.m7i.large, ml.m7i.xlarge, ml.m7i.2xlarge, ml.m7i.4xlarge, ml.m7i.8xlarge, ml.m7i.12xlarge, ml.m7i.16xlarge, ml.m7i.24xlarge, ml.m7i.48xlarge, ml.r7i.large, ml.r7i.xlarge, ml.r7i.2xlarge, ml.r7i.4xlarge, ml.r7i.8xlarge, ml.r7i.12xlarge, ml.r7i.16xlarge, ml.r7i.24xlarge, ml.r7i.48xlarge
2520
- # count: 1, # required
2530
+ # count: 1,
2521
2531
  # },
2522
2532
  # ],
2523
2533
  # resource_sharing_config: {
@@ -2918,10 +2928,18 @@ module Aws::SageMaker
2918
2928
  # @option params [Array<String>] :subnet_ids
2919
2929
  # The VPC subnets that the domain uses for communication.
2920
2930
  #
2931
+ # The field is optional when the `AppNetworkAccessType` parameter is set
2932
+ # to `PublicInternetOnly` for domains created from Amazon SageMaker
2933
+ # Unified Studio.
2934
+ #
2921
2935
  # @option params [String] :vpc_id
2922
2936
  # The ID of the Amazon Virtual Private Cloud (VPC) that the domain uses
2923
2937
  # for communication.
2924
2938
  #
2939
+ # The field is optional when the `AppNetworkAccessType` parameter is set
2940
+ # to `PublicInternetOnly` for domains created from Amazon SageMaker
2941
+ # Unified Studio.
2942
+ #
2925
2943
  # @option params [Array<Types::Tag>] :tags
2926
2944
  # Tags to associated with the Domain. Each tag consists of a key and an
2927
2945
  # optional value. Tag keys must be unique per resource. Tags are
@@ -3160,6 +3178,10 @@ module Aws::SageMaker
3160
3178
  # file_system_id: "FileSystemId", # required
3161
3179
  # file_system_path: "FileSystemPath",
3162
3180
  # },
3181
+ # s3_file_system_config: {
3182
+ # mount_path: "String1024",
3183
+ # s3_uri: "S3SchemaUri",
3184
+ # },
3163
3185
  # },
3164
3186
  # ],
3165
3187
  # studio_web_portal_settings: {
@@ -3312,6 +3334,10 @@ module Aws::SageMaker
3312
3334
  # file_system_id: "FileSystemId", # required
3313
3335
  # file_system_path: "FileSystemPath",
3314
3336
  # },
3337
+ # s3_file_system_config: {
3338
+ # mount_path: "String1024",
3339
+ # s3_uri: "S3SchemaUri",
3340
+ # },
3315
3341
  # },
3316
3342
  # ],
3317
3343
  # },
@@ -9059,6 +9085,9 @@ module Aws::SageMaker
9059
9085
  # f_sx_lustre_file_system: {
9060
9086
  # file_system_id: "FileSystemId", # required
9061
9087
  # },
9088
+ # s3_file_system: {
9089
+ # s3_uri: "S3SchemaUri",
9090
+ # },
9062
9091
  # },
9063
9092
  # ],
9064
9093
  # remote_access: "ENABLED", # accepts ENABLED, DISABLED
@@ -10419,6 +10448,10 @@ module Aws::SageMaker
10419
10448
  # file_system_id: "FileSystemId", # required
10420
10449
  # file_system_path: "FileSystemPath",
10421
10450
  # },
10451
+ # s3_file_system_config: {
10452
+ # mount_path: "String1024",
10453
+ # s3_uri: "S3SchemaUri",
10454
+ # },
10422
10455
  # },
10423
10456
  # ],
10424
10457
  # studio_web_portal_settings: {
@@ -10514,6 +10547,10 @@ module Aws::SageMaker
10514
10547
  # @option params [Types::WorkforceVpcConfigRequest] :workforce_vpc_config
10515
10548
  # Use this parameter to configure a workforce using VPC.
10516
10549
  #
10550
+ # @option params [String] :ip_address_type
10551
+ # Use this parameter to specify whether you want `IPv4` only or
10552
+ # `dualstack` (`IPv4` and `IPv6`) to support your labeling workforce.
10553
+ #
10517
10554
  # @return [Types::CreateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10518
10555
  #
10519
10556
  # * {Types::CreateWorkforceResponse#workforce_arn #workforce_arn} => String
@@ -10554,6 +10591,7 @@ module Aws::SageMaker
10554
10591
  # security_group_ids: ["WorkforceSecurityGroupId"],
10555
10592
  # subnets: ["WorkforceSubnetId"],
10556
10593
  # },
10594
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack
10557
10595
  # })
10558
10596
  #
10559
10597
  # @example Response structure
@@ -13883,6 +13921,8 @@ module Aws::SageMaker
13883
13921
  # resp.default_user_settings.custom_file_system_configs[0].efs_file_system_config.file_system_path #=> String
13884
13922
  # resp.default_user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_id #=> String
13885
13923
  # resp.default_user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_path #=> String
13924
+ # resp.default_user_settings.custom_file_system_configs[0].s3_file_system_config.mount_path #=> String
13925
+ # resp.default_user_settings.custom_file_system_configs[0].s3_file_system_config.s3_uri #=> String
13886
13926
  # resp.default_user_settings.studio_web_portal_settings.hidden_ml_tools #=> Array
13887
13927
  # resp.default_user_settings.studio_web_portal_settings.hidden_ml_tools[0] #=> String, one of "DataWrangler", "FeatureStore", "EmrClusters", "AutoMl", "Experiments", "Training", "ModelEvaluation", "Pipelines", "Models", "JumpStart", "InferenceRecommender", "Endpoints", "Projects", "InferenceOptimization", "PerformanceEvaluation", "LakeraGuard", "Comet", "DeepchecksLLMEvaluation", "Fiddler", "HyperPodClusters"
13888
13928
  # resp.default_user_settings.studio_web_portal_settings.hidden_app_types #=> Array
@@ -13981,6 +14021,8 @@ module Aws::SageMaker
13981
14021
  # resp.default_space_settings.custom_file_system_configs[0].efs_file_system_config.file_system_path #=> String
13982
14022
  # resp.default_space_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_id #=> String
13983
14023
  # resp.default_space_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_path #=> String
14024
+ # resp.default_space_settings.custom_file_system_configs[0].s3_file_system_config.mount_path #=> String
14025
+ # resp.default_space_settings.custom_file_system_configs[0].s3_file_system_config.s3_uri #=> String
13984
14026
  #
13985
14027
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomain AWS API Documentation
13986
14028
  #
@@ -17469,6 +17511,7 @@ module Aws::SageMaker
17469
17511
  # resp.space_settings.custom_file_systems #=> Array
17470
17512
  # resp.space_settings.custom_file_systems[0].efs_file_system.file_system_id #=> String
17471
17513
  # resp.space_settings.custom_file_systems[0].f_sx_lustre_file_system.file_system_id #=> String
17514
+ # resp.space_settings.custom_file_systems[0].s3_file_system.s3_uri #=> String
17472
17515
  # resp.space_settings.remote_access #=> String, one of "ENABLED", "DISABLED"
17473
17516
  # resp.ownership_settings.owner_user_profile_name #=> String
17474
17517
  # resp.space_sharing_settings.sharing_type #=> String, one of "Private", "Shared"
@@ -17829,7 +17872,7 @@ module Aws::SageMaker
17829
17872
  # resp.target_resources[0] #=> String, one of "training-job", "hyperpod-cluster"
17830
17873
  # resp.reserved_capacity_summaries #=> Array
17831
17874
  # resp.reserved_capacity_summaries[0].reserved_capacity_arn #=> String
17832
- # resp.reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge"
17875
+ # resp.reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge", "ml.p4de.24xlarge"
17833
17876
  # resp.reserved_capacity_summaries[0].total_instance_count #=> Integer
17834
17877
  # resp.reserved_capacity_summaries[0].status #=> String, one of "Pending", "Active", "Scheduled", "Expired", "Failed"
17835
17878
  # resp.reserved_capacity_summaries[0].availability_zone #=> String
@@ -18241,6 +18284,8 @@ module Aws::SageMaker
18241
18284
  # resp.user_settings.custom_file_system_configs[0].efs_file_system_config.file_system_path #=> String
18242
18285
  # resp.user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_id #=> String
18243
18286
  # resp.user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_path #=> String
18287
+ # resp.user_settings.custom_file_system_configs[0].s3_file_system_config.mount_path #=> String
18288
+ # resp.user_settings.custom_file_system_configs[0].s3_file_system_config.s3_uri #=> String
18244
18289
  # resp.user_settings.studio_web_portal_settings.hidden_ml_tools #=> Array
18245
18290
  # resp.user_settings.studio_web_portal_settings.hidden_ml_tools[0] #=> String, one of "DataWrangler", "FeatureStore", "EmrClusters", "AutoMl", "Experiments", "Training", "ModelEvaluation", "Pipelines", "Models", "JumpStart", "InferenceRecommender", "Endpoints", "Projects", "InferenceOptimization", "PerformanceEvaluation", "LakeraGuard", "Comet", "DeepchecksLLMEvaluation", "Fiddler", "HyperPodClusters"
18246
18291
  # resp.user_settings.studio_web_portal_settings.hidden_app_types #=> Array
@@ -18317,6 +18362,7 @@ module Aws::SageMaker
18317
18362
  # resp.workforce.workforce_vpc_config.vpc_endpoint_id #=> String
18318
18363
  # resp.workforce.status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
18319
18364
  # resp.workforce.failure_reason #=> String
18365
+ # resp.workforce.ip_address_type #=> String, one of "ipv4", "dualstack"
18320
18366
  #
18321
18367
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeWorkforce AWS API Documentation
18322
18368
  #
@@ -24715,7 +24761,7 @@ module Aws::SageMaker
24715
24761
  # resp.training_plan_summaries[0].target_resources[0] #=> String, one of "training-job", "hyperpod-cluster"
24716
24762
  # resp.training_plan_summaries[0].reserved_capacity_summaries #=> Array
24717
24763
  # resp.training_plan_summaries[0].reserved_capacity_summaries[0].reserved_capacity_arn #=> String
24718
- # resp.training_plan_summaries[0].reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge"
24764
+ # resp.training_plan_summaries[0].reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge", "ml.p4de.24xlarge"
24719
24765
  # resp.training_plan_summaries[0].reserved_capacity_summaries[0].total_instance_count #=> Integer
24720
24766
  # resp.training_plan_summaries[0].reserved_capacity_summaries[0].status #=> String, one of "Pending", "Active", "Scheduled", "Expired", "Failed"
24721
24767
  # resp.training_plan_summaries[0].reserved_capacity_summaries[0].availability_zone #=> String
@@ -25133,6 +25179,7 @@ module Aws::SageMaker
25133
25179
  # resp.workforces[0].workforce_vpc_config.vpc_endpoint_id #=> String
25134
25180
  # resp.workforces[0].status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
25135
25181
  # resp.workforces[0].failure_reason #=> String
25182
+ # resp.workforces[0].ip_address_type #=> String, one of "ipv4", "dualstack"
25136
25183
  # resp.next_token #=> String
25137
25184
  #
25138
25185
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListWorkforces AWS API Documentation
@@ -25687,7 +25734,7 @@ module Aws::SageMaker
25687
25734
  # @example Request syntax with placeholder values
25688
25735
  #
25689
25736
  # resp = client.search_training_plan_offerings({
25690
- # instance_type: "ml.p4d.24xlarge", # accepts ml.p4d.24xlarge, ml.p5.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.trn1.32xlarge, ml.trn2.48xlarge, ml.p6-b200.48xlarge
25737
+ # instance_type: "ml.p4d.24xlarge", # accepts ml.p4d.24xlarge, ml.p5.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.trn1.32xlarge, ml.trn2.48xlarge, ml.p6-b200.48xlarge, ml.p4de.24xlarge
25691
25738
  # instance_count: 1,
25692
25739
  # start_time_after: Time.now,
25693
25740
  # end_time_before: Time.now,
@@ -25708,7 +25755,7 @@ module Aws::SageMaker
25708
25755
  # resp.training_plan_offerings[0].upfront_fee #=> String
25709
25756
  # resp.training_plan_offerings[0].currency_code #=> String
25710
25757
  # resp.training_plan_offerings[0].reserved_capacity_offerings #=> Array
25711
- # resp.training_plan_offerings[0].reserved_capacity_offerings[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge"
25758
+ # resp.training_plan_offerings[0].reserved_capacity_offerings[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge", "ml.p4de.24xlarge"
25712
25759
  # resp.training_plan_offerings[0].reserved_capacity_offerings[0].instance_count #=> Integer
25713
25760
  # resp.training_plan_offerings[0].reserved_capacity_offerings[0].availability_zone #=> String
25714
25761
  # resp.training_plan_offerings[0].reserved_capacity_offerings[0].duration_hours #=> Integer
@@ -26768,7 +26815,7 @@ module Aws::SageMaker
26768
26815
  # instance_storage_configs: [
26769
26816
  # {
26770
26817
  # ebs_volume_config: {
26771
- # volume_size_in_gb: 1, # required
26818
+ # volume_size_in_gb: 1,
26772
26819
  # },
26773
26820
  # },
26774
26821
  # ],
@@ -26811,7 +26858,7 @@ module Aws::SageMaker
26811
26858
  # instance_storage_configs: [
26812
26859
  # {
26813
26860
  # ebs_volume_config: {
26814
- # volume_size_in_gb: 1, # required
26861
+ # volume_size_in_gb: 1,
26815
26862
  # },
26816
26863
  # },
26817
26864
  # ],
@@ -27064,7 +27111,7 @@ module Aws::SageMaker
27064
27111
  # compute_quota_resources: [
27065
27112
  # {
27066
27113
  # instance_type: "ml.p4d.24xlarge", # required, accepts ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.c5n.large, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.g6.xlarge, ml.g6.2xlarge, ml.g6.4xlarge, ml.g6.8xlarge, ml.g6.16xlarge, ml.g6.12xlarge, ml.g6.24xlarge, ml.g6.48xlarge, ml.gr6.4xlarge, ml.gr6.8xlarge, ml.g6e.xlarge, ml.g6e.2xlarge, ml.g6e.4xlarge, ml.g6e.8xlarge, ml.g6e.16xlarge, ml.g6e.12xlarge, ml.g6e.24xlarge, ml.g6e.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.p6-b200.48xlarge, ml.trn2.48xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.m6i.large, ml.m6i.xlarge, ml.m6i.2xlarge, ml.m6i.4xlarge, ml.m6i.8xlarge, ml.m6i.12xlarge, ml.m6i.16xlarge, ml.m6i.24xlarge, ml.m6i.32xlarge, ml.r6i.large, ml.r6i.xlarge, ml.r6i.2xlarge, ml.r6i.4xlarge, ml.r6i.8xlarge, ml.r6i.12xlarge, ml.r6i.16xlarge, ml.r6i.24xlarge, ml.r6i.32xlarge, ml.i3en.large, ml.i3en.xlarge, ml.i3en.2xlarge, ml.i3en.3xlarge, ml.i3en.6xlarge, ml.i3en.12xlarge, ml.i3en.24xlarge, ml.m7i.large, ml.m7i.xlarge, ml.m7i.2xlarge, ml.m7i.4xlarge, ml.m7i.8xlarge, ml.m7i.12xlarge, ml.m7i.16xlarge, ml.m7i.24xlarge, ml.m7i.48xlarge, ml.r7i.large, ml.r7i.xlarge, ml.r7i.2xlarge, ml.r7i.4xlarge, ml.r7i.8xlarge, ml.r7i.12xlarge, ml.r7i.16xlarge, ml.r7i.24xlarge, ml.r7i.48xlarge
27067
- # count: 1, # required
27114
+ # count: 1,
27068
27115
  # },
27069
27116
  # ],
27070
27117
  # resource_sharing_config: {
@@ -27461,6 +27508,10 @@ module Aws::SageMaker
27461
27508
  # file_system_id: "FileSystemId", # required
27462
27509
  # file_system_path: "FileSystemPath",
27463
27510
  # },
27511
+ # s3_file_system_config: {
27512
+ # mount_path: "String1024",
27513
+ # s3_uri: "S3SchemaUri",
27514
+ # },
27464
27515
  # },
27465
27516
  # ],
27466
27517
  # studio_web_portal_settings: {
@@ -27601,6 +27652,10 @@ module Aws::SageMaker
27601
27652
  # file_system_id: "FileSystemId", # required
27602
27653
  # file_system_path: "FileSystemPath",
27603
27654
  # },
27655
+ # s3_file_system_config: {
27656
+ # mount_path: "String1024",
27657
+ # s3_uri: "S3SchemaUri",
27658
+ # },
27604
27659
  # },
27605
27660
  # ],
27606
27661
  # },
@@ -29662,6 +29717,9 @@ module Aws::SageMaker
29662
29717
  # f_sx_lustre_file_system: {
29663
29718
  # file_system_id: "FileSystemId", # required
29664
29719
  # },
29720
+ # s3_file_system: {
29721
+ # s3_uri: "S3SchemaUri",
29722
+ # },
29665
29723
  # },
29666
29724
  # ],
29667
29725
  # remote_access: "ENABLED", # accepts ENABLED, DISABLED
@@ -30099,6 +30157,10 @@ module Aws::SageMaker
30099
30157
  # file_system_id: "FileSystemId", # required
30100
30158
  # file_system_path: "FileSystemPath",
30101
30159
  # },
30160
+ # s3_file_system_config: {
30161
+ # mount_path: "String1024",
30162
+ # s3_uri: "S3SchemaUri",
30163
+ # },
30102
30164
  # },
30103
30165
  # ],
30104
30166
  # studio_web_portal_settings: {
@@ -30194,6 +30256,10 @@ module Aws::SageMaker
30194
30256
  # @option params [Types::WorkforceVpcConfigRequest] :workforce_vpc_config
30195
30257
  # Use this parameter to update your VPC configuration for a workforce.
30196
30258
  #
30259
+ # @option params [String] :ip_address_type
30260
+ # Use this parameter to specify whether you want `IPv4` only or
30261
+ # `dualstack` (`IPv4` and `IPv6`) to support your labeling workforce.
30262
+ #
30197
30263
  # @return [Types::UpdateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
30198
30264
  #
30199
30265
  # * {Types::UpdateWorkforceResponse#workforce #workforce} => Types::Workforce
@@ -30224,6 +30290,7 @@ module Aws::SageMaker
30224
30290
  # security_group_ids: ["WorkforceSecurityGroupId"],
30225
30291
  # subnets: ["WorkforceSubnetId"],
30226
30292
  # },
30293
+ # ip_address_type: "ipv4", # accepts ipv4, dualstack
30227
30294
  # })
30228
30295
  #
30229
30296
  # @example Response structure
@@ -30255,6 +30322,7 @@ module Aws::SageMaker
30255
30322
  # resp.workforce.workforce_vpc_config.vpc_endpoint_id #=> String
30256
30323
  # resp.workforce.status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
30257
30324
  # resp.workforce.failure_reason #=> String
30325
+ # resp.workforce.ip_address_type #=> String, one of "ipv4", "dualstack"
30258
30326
  #
30259
30327
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkforce AWS API Documentation
30260
30328
  #
@@ -30397,7 +30465,7 @@ module Aws::SageMaker
30397
30465
  tracer: tracer
30398
30466
  )
30399
30467
  context[:gem_name] = 'aws-sdk-sagemaker'
30400
- context[:gem_version] = '1.315.0'
30468
+ context[:gem_version] = '1.316.0'
30401
30469
  Seahorse::Client::Request.new(handlers, context)
30402
30470
  end
30403
30471
 
@@ -2094,11 +2094,14 @@ module Aws::SageMaker
2094
2094
  S3DataDistribution = Shapes::StringShape.new(name: 'S3DataDistribution')
2095
2095
  S3DataSource = Shapes::StructureShape.new(name: 'S3DataSource')
2096
2096
  S3DataType = Shapes::StringShape.new(name: 'S3DataType')
2097
+ S3FileSystem = Shapes::StructureShape.new(name: 'S3FileSystem')
2098
+ S3FileSystemConfig = Shapes::StructureShape.new(name: 'S3FileSystemConfig')
2097
2099
  S3ModelDataSource = Shapes::StructureShape.new(name: 'S3ModelDataSource')
2098
2100
  S3ModelDataType = Shapes::StringShape.new(name: 'S3ModelDataType')
2099
2101
  S3ModelUri = Shapes::StringShape.new(name: 'S3ModelUri')
2100
2102
  S3OutputPath = Shapes::StringShape.new(name: 'S3OutputPath')
2101
2103
  S3Presign = Shapes::StructureShape.new(name: 'S3Presign')
2104
+ S3SchemaUri = Shapes::StringShape.new(name: 'S3SchemaUri')
2102
2105
  S3StorageConfig = Shapes::StructureShape.new(name: 'S3StorageConfig')
2103
2106
  S3Uri = Shapes::StringShape.new(name: 'S3Uri')
2104
2107
  SageMakerImageName = Shapes::StringShape.new(name: 'SageMakerImageName')
@@ -2589,6 +2592,7 @@ module Aws::SageMaker
2589
2592
  Workforce = Shapes::StructureShape.new(name: 'Workforce')
2590
2593
  WorkforceArn = Shapes::StringShape.new(name: 'WorkforceArn')
2591
2594
  WorkforceFailureReason = Shapes::StringShape.new(name: 'WorkforceFailureReason')
2595
+ WorkforceIpAddressType = Shapes::StringShape.new(name: 'WorkforceIpAddressType')
2592
2596
  WorkforceName = Shapes::StringShape.new(name: 'WorkforceName')
2593
2597
  WorkforceSecurityGroupId = Shapes::StringShape.new(name: 'WorkforceSecurityGroupId')
2594
2598
  WorkforceSecurityGroupIds = Shapes::ListShape.new(name: 'WorkforceSecurityGroupIds')
@@ -3262,7 +3266,7 @@ module Aws::SageMaker
3262
3266
  ClarifyTextConfig.add_member(:granularity, Shapes::ShapeRef.new(shape: ClarifyTextGranularity, required: true, location_name: "Granularity"))
3263
3267
  ClarifyTextConfig.struct_class = Types::ClarifyTextConfig
3264
3268
 
3265
- ClusterEbsVolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: ClusterEbsVolumeSizeInGB, required: true, location_name: "VolumeSizeInGB"))
3269
+ ClusterEbsVolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: ClusterEbsVolumeSizeInGB, location_name: "VolumeSizeInGB"))
3266
3270
  ClusterEbsVolumeConfig.struct_class = Types::ClusterEbsVolumeConfig
3267
3271
 
3268
3272
  ClusterInstanceGroupDetails.add_member(:current_count, Shapes::ShapeRef.new(shape: ClusterNonNegativeInstanceCount, location_name: "CurrentCount"))
@@ -3480,7 +3484,7 @@ module Aws::SageMaker
3480
3484
  ComputeQuotaConfig.struct_class = Types::ComputeQuotaConfig
3481
3485
 
3482
3486
  ComputeQuotaResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: ClusterInstanceType, required: true, location_name: "InstanceType"))
3483
- ComputeQuotaResourceConfig.add_member(:count, Shapes::ShapeRef.new(shape: InstanceCount, required: true, location_name: "Count"))
3487
+ ComputeQuotaResourceConfig.add_member(:count, Shapes::ShapeRef.new(shape: InstanceCount, location_name: "Count"))
3484
3488
  ComputeQuotaResourceConfig.struct_class = Types::ComputeQuotaResourceConfig
3485
3489
 
3486
3490
  ComputeQuotaResourceConfigList.member = Shapes::ShapeRef.new(shape: ComputeQuotaResourceConfig)
@@ -4385,6 +4389,7 @@ module Aws::SageMaker
4385
4389
  CreateWorkforceRequest.add_member(:workforce_name, Shapes::ShapeRef.new(shape: WorkforceName, required: true, location_name: "WorkforceName"))
4386
4390
  CreateWorkforceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
4387
4391
  CreateWorkforceRequest.add_member(:workforce_vpc_config, Shapes::ShapeRef.new(shape: WorkforceVpcConfigRequest, location_name: "WorkforceVpcConfig"))
4392
+ CreateWorkforceRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WorkforceIpAddressType, location_name: "IpAddressType"))
4388
4393
  CreateWorkforceRequest.struct_class = Types::CreateWorkforceRequest
4389
4394
 
4390
4395
  CreateWorkforceResponse.add_member(:workforce_arn, Shapes::ShapeRef.new(shape: WorkforceArn, required: true, location_name: "WorkforceArn"))
@@ -4406,17 +4411,21 @@ module Aws::SageMaker
4406
4411
 
4407
4412
  CustomFileSystem.add_member(:efs_file_system, Shapes::ShapeRef.new(shape: EFSFileSystem, location_name: "EFSFileSystem"))
4408
4413
  CustomFileSystem.add_member(:f_sx_lustre_file_system, Shapes::ShapeRef.new(shape: FSxLustreFileSystem, location_name: "FSxLustreFileSystem"))
4414
+ CustomFileSystem.add_member(:s3_file_system, Shapes::ShapeRef.new(shape: S3FileSystem, location_name: "S3FileSystem"))
4409
4415
  CustomFileSystem.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
4410
4416
  CustomFileSystem.add_member_subclass(:efs_file_system, Types::CustomFileSystem::EfsFileSystem)
4411
4417
  CustomFileSystem.add_member_subclass(:f_sx_lustre_file_system, Types::CustomFileSystem::FSxLustreFileSystem)
4418
+ CustomFileSystem.add_member_subclass(:s3_file_system, Types::CustomFileSystem::S3FileSystem)
4412
4419
  CustomFileSystem.add_member_subclass(:unknown, Types::CustomFileSystem::Unknown)
4413
4420
  CustomFileSystem.struct_class = Types::CustomFileSystem
4414
4421
 
4415
4422
  CustomFileSystemConfig.add_member(:efs_file_system_config, Shapes::ShapeRef.new(shape: EFSFileSystemConfig, location_name: "EFSFileSystemConfig"))
4416
4423
  CustomFileSystemConfig.add_member(:f_sx_lustre_file_system_config, Shapes::ShapeRef.new(shape: FSxLustreFileSystemConfig, location_name: "FSxLustreFileSystemConfig"))
4424
+ CustomFileSystemConfig.add_member(:s3_file_system_config, Shapes::ShapeRef.new(shape: S3FileSystemConfig, location_name: "S3FileSystemConfig"))
4417
4425
  CustomFileSystemConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
4418
4426
  CustomFileSystemConfig.add_member_subclass(:efs_file_system_config, Types::CustomFileSystemConfig::EfsFileSystemConfig)
4419
4427
  CustomFileSystemConfig.add_member_subclass(:f_sx_lustre_file_system_config, Types::CustomFileSystemConfig::FSxLustreFileSystemConfig)
4428
+ CustomFileSystemConfig.add_member_subclass(:s3_file_system_config, Types::CustomFileSystemConfig::S3FileSystemConfig)
4420
4429
  CustomFileSystemConfig.add_member_subclass(:unknown, Types::CustomFileSystemConfig::Unknown)
4421
4430
  CustomFileSystemConfig.struct_class = Types::CustomFileSystemConfig
4422
4431
 
@@ -10011,6 +10020,13 @@ module Aws::SageMaker
10011
10020
  S3DataSource.add_member(:hub_access_config, Shapes::ShapeRef.new(shape: HubAccessConfig, location_name: "HubAccessConfig"))
10012
10021
  S3DataSource.struct_class = Types::S3DataSource
10013
10022
 
10023
+ S3FileSystem.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
10024
+ S3FileSystem.struct_class = Types::S3FileSystem
10025
+
10026
+ S3FileSystemConfig.add_member(:mount_path, Shapes::ShapeRef.new(shape: String1024, location_name: "MountPath"))
10027
+ S3FileSystemConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
10028
+ S3FileSystemConfig.struct_class = Types::S3FileSystemConfig
10029
+
10014
10030
  S3ModelDataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3ModelUri, required: true, location_name: "S3Uri"))
10015
10031
  S3ModelDataSource.add_member(:s3_data_type, Shapes::ShapeRef.new(shape: S3ModelDataType, required: true, location_name: "S3DataType"))
10016
10032
  S3ModelDataSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: ModelCompressionType, required: true, location_name: "CompressionType"))
@@ -11331,6 +11347,7 @@ module Aws::SageMaker
11331
11347
  UpdateWorkforceRequest.add_member(:source_ip_config, Shapes::ShapeRef.new(shape: SourceIpConfig, location_name: "SourceIpConfig"))
11332
11348
  UpdateWorkforceRequest.add_member(:oidc_config, Shapes::ShapeRef.new(shape: OidcConfig, location_name: "OidcConfig"))
11333
11349
  UpdateWorkforceRequest.add_member(:workforce_vpc_config, Shapes::ShapeRef.new(shape: WorkforceVpcConfigRequest, location_name: "WorkforceVpcConfig"))
11350
+ UpdateWorkforceRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WorkforceIpAddressType, location_name: "IpAddressType"))
11334
11351
  UpdateWorkforceRequest.struct_class = Types::UpdateWorkforceRequest
11335
11352
 
11336
11353
  UpdateWorkforceResponse.add_member(:workforce, Shapes::ShapeRef.new(shape: Workforce, required: true, location_name: "Workforce"))
@@ -11431,6 +11448,7 @@ module Aws::SageMaker
11431
11448
  Workforce.add_member(:workforce_vpc_config, Shapes::ShapeRef.new(shape: WorkforceVpcConfigResponse, location_name: "WorkforceVpcConfig"))
11432
11449
  Workforce.add_member(:status, Shapes::ShapeRef.new(shape: WorkforceStatus, location_name: "Status"))
11433
11450
  Workforce.add_member(:failure_reason, Shapes::ShapeRef.new(shape: WorkforceFailureReason, location_name: "FailureReason"))
11451
+ Workforce.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WorkforceIpAddressType, location_name: "IpAddressType"))
11434
11452
  Workforce.struct_class = Types::Workforce
11435
11453
 
11436
11454
  WorkforceSecurityGroupIds.member = Shapes::ShapeRef.new(shape: WorkforceSecurityGroupId)
@@ -1307,6 +1307,33 @@ module Aws::SageMaker
1307
1307
  #
1308
1308
  # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1309
1309
  #
1310
+ # **Generative AI/Custom** - Direct passthrough of output data without
1311
+ # any transformation.
1312
+ #
1313
+ # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-PassThrough`
1314
+ #
1315
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-PassThrough`
1316
+ #
1317
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-PassThrough`
1318
+ #
1319
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-PassThrough`
1320
+ #
1321
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-PassThrough`
1322
+ #
1323
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-PassThrough`
1324
+ #
1325
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-PassThrough`
1326
+ #
1327
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-PassThrough`
1328
+ #
1329
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-PassThrough`
1330
+ #
1331
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-PassThrough`
1332
+ #
1333
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-PassThrough`
1334
+ #
1335
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-PassThrough`
1336
+ #
1310
1337
  #
1311
1338
  #
1312
1339
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-annotation-consolidation.html
@@ -7230,11 +7257,19 @@ module Aws::SageMaker
7230
7257
  #
7231
7258
  # @!attribute [rw] subnet_ids
7232
7259
  # The VPC subnets that the domain uses for communication.
7260
+ #
7261
+ # The field is optional when the `AppNetworkAccessType` parameter is
7262
+ # set to `PublicInternetOnly` for domains created from Amazon
7263
+ # SageMaker Unified Studio.
7233
7264
  # @return [Array<String>]
7234
7265
  #
7235
7266
  # @!attribute [rw] vpc_id
7236
7267
  # The ID of the Amazon Virtual Private Cloud (VPC) that the domain
7237
7268
  # uses for communication.
7269
+ #
7270
+ # The field is optional when the `AppNetworkAccessType` parameter is
7271
+ # set to `PublicInternetOnly` for domains created from Amazon
7272
+ # SageMaker Unified Studio.
7238
7273
  # @return [String]
7239
7274
  #
7240
7275
  # @!attribute [rw] tags
@@ -11537,6 +11572,11 @@ module Aws::SageMaker
11537
11572
  # Use this parameter to configure a workforce using VPC.
11538
11573
  # @return [Types::WorkforceVpcConfigRequest]
11539
11574
  #
11575
+ # @!attribute [rw] ip_address_type
11576
+ # Use this parameter to specify whether you want `IPv4` only or
11577
+ # `dualstack` (`IPv4` and `IPv6`) to support your labeling workforce.
11578
+ # @return [String]
11579
+ #
11540
11580
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateWorkforceRequest AWS API Documentation
11541
11581
  #
11542
11582
  class CreateWorkforceRequest < Struct.new(
@@ -11545,7 +11585,8 @@ module Aws::SageMaker
11545
11585
  :source_ip_config,
11546
11586
  :workforce_name,
11547
11587
  :tags,
11548
- :workforce_vpc_config)
11588
+ :workforce_vpc_config,
11589
+ :ip_address_type)
11549
11590
  SENSITIVE = []
11550
11591
  include Aws::Structure
11551
11592
  end
@@ -11669,11 +11710,17 @@ module Aws::SageMaker
11669
11710
  # A custom file system in Amazon FSx for Lustre.
11670
11711
  # @return [Types::FSxLustreFileSystem]
11671
11712
  #
11713
+ # @!attribute [rw] s3_file_system
11714
+ # A custom file system in Amazon S3. This is only supported in Amazon
11715
+ # SageMaker Unified Studio.
11716
+ # @return [Types::S3FileSystem]
11717
+ #
11672
11718
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystem AWS API Documentation
11673
11719
  #
11674
11720
  class CustomFileSystem < Struct.new(
11675
11721
  :efs_file_system,
11676
11722
  :f_sx_lustre_file_system,
11723
+ :s3_file_system,
11677
11724
  :unknown)
11678
11725
  SENSITIVE = []
11679
11726
  include Aws::Structure
@@ -11681,6 +11728,7 @@ module Aws::SageMaker
11681
11728
 
11682
11729
  class EfsFileSystem < CustomFileSystem; end
11683
11730
  class FSxLustreFileSystem < CustomFileSystem; end
11731
+ class S3FileSystem < CustomFileSystem; end
11684
11732
  class Unknown < CustomFileSystem; end
11685
11733
  end
11686
11734
 
@@ -11700,11 +11748,16 @@ module Aws::SageMaker
11700
11748
  # The settings for a custom Amazon FSx for Lustre file system.
11701
11749
  # @return [Types::FSxLustreFileSystemConfig]
11702
11750
  #
11751
+ # @!attribute [rw] s3_file_system_config
11752
+ # Configuration settings for a custom Amazon S3 file system.
11753
+ # @return [Types::S3FileSystemConfig]
11754
+ #
11703
11755
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystemConfig AWS API Documentation
11704
11756
  #
11705
11757
  class CustomFileSystemConfig < Struct.new(
11706
11758
  :efs_file_system_config,
11707
11759
  :f_sx_lustre_file_system_config,
11760
+ :s3_file_system_config,
11708
11761
  :unknown)
11709
11762
  SENSITIVE = []
11710
11763
  include Aws::Structure
@@ -11712,6 +11765,7 @@ module Aws::SageMaker
11712
11765
 
11713
11766
  class EfsFileSystemConfig < CustomFileSystemConfig; end
11714
11767
  class FSxLustreFileSystemConfig < CustomFileSystemConfig; end
11768
+ class S3FileSystemConfig < CustomFileSystemConfig; end
11715
11769
  class Unknown < CustomFileSystemConfig; end
11716
11770
  end
11717
11771
 
@@ -24639,6 +24693,33 @@ module Aws::SageMaker
24639
24693
  #
24640
24694
  # * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudSemanticSegmentation`
24641
24695
  #
24696
+ # **Generative AI/Custom** - Direct passthrough of input data without
24697
+ # any transformation.
24698
+ #
24699
+ # * `arn:aws:lambda:us-east-1:432418664414:function:PRE-PassThrough`
24700
+ #
24701
+ # * `arn:aws:lambda:us-east-2:266458841044:function:PRE-PassThrough`
24702
+ #
24703
+ # * `arn:aws:lambda:us-west-2:081040173940:function:PRE-PassThrough`
24704
+ #
24705
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-PassThrough`
24706
+ #
24707
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-PassThrough`
24708
+ #
24709
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-PassThrough`
24710
+ #
24711
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-PassThrough`
24712
+ #
24713
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-PassThrough`
24714
+ #
24715
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-PassThrough`
24716
+ #
24717
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-PassThrough`
24718
+ #
24719
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-PassThrough`
24720
+ #
24721
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-PassThrough`
24722
+ #
24642
24723
  #
24643
24724
  #
24644
24725
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-task-types.html
@@ -43213,6 +43294,43 @@ module Aws::SageMaker
43213
43294
  include Aws::Structure
43214
43295
  end
43215
43296
 
43297
+ # A custom file system in Amazon S3. This is only supported in Amazon
43298
+ # SageMaker Unified Studio.
43299
+ #
43300
+ # @!attribute [rw] s3_uri
43301
+ # The Amazon S3 URI that specifies the location in S3 where files are
43302
+ # stored, which is mounted within the Studio environment. For example:
43303
+ # `s3://<bucket-name>/<prefix>/`.
43304
+ # @return [String]
43305
+ #
43306
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3FileSystem AWS API Documentation
43307
+ #
43308
+ class S3FileSystem < Struct.new(
43309
+ :s3_uri)
43310
+ SENSITIVE = []
43311
+ include Aws::Structure
43312
+ end
43313
+
43314
+ # Configuration for the custom Amazon S3 file system.
43315
+ #
43316
+ # @!attribute [rw] mount_path
43317
+ # The file system path where the Amazon S3 storage location will be
43318
+ # mounted within the Amazon SageMaker Studio environment.
43319
+ # @return [String]
43320
+ #
43321
+ # @!attribute [rw] s3_uri
43322
+ # The Amazon S3 URI of the S3 file system configuration.
43323
+ # @return [String]
43324
+ #
43325
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3FileSystemConfig AWS API Documentation
43326
+ #
43327
+ class S3FileSystemConfig < Struct.new(
43328
+ :mount_path,
43329
+ :s3_uri)
43330
+ SENSITIVE = []
43331
+ include Aws::Structure
43332
+ end
43333
+
43216
43334
  # Specifies the S3 location of ML model data to deploy.
43217
43335
  #
43218
43336
  # @!attribute [rw] s3_uri
@@ -51131,13 +51249,19 @@ module Aws::SageMaker
51131
51249
  # Use this parameter to update your VPC configuration for a workforce.
51132
51250
  # @return [Types::WorkforceVpcConfigRequest]
51133
51251
  #
51252
+ # @!attribute [rw] ip_address_type
51253
+ # Use this parameter to specify whether you want `IPv4` only or
51254
+ # `dualstack` (`IPv4` and `IPv6`) to support your labeling workforce.
51255
+ # @return [String]
51256
+ #
51134
51257
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkforceRequest AWS API Documentation
51135
51258
  #
51136
51259
  class UpdateWorkforceRequest < Struct.new(
51137
51260
  :workforce_name,
51138
51261
  :source_ip_config,
51139
51262
  :oidc_config,
51140
- :workforce_vpc_config)
51263
+ :workforce_vpc_config,
51264
+ :ip_address_type)
51141
51265
  SENSITIVE = []
51142
51266
  include Aws::Structure
51143
51267
  end
@@ -51751,6 +51875,11 @@ module Aws::SageMaker
51751
51875
  # The reason your workforce failed.
51752
51876
  # @return [String]
51753
51877
  #
51878
+ # @!attribute [rw] ip_address_type
51879
+ # The IP address type you specify - either `IPv4` only or `dualstack`
51880
+ # (`IPv4` and `IPv6`) - to support your labeling workforce.
51881
+ # @return [String]
51882
+ #
51754
51883
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Workforce AWS API Documentation
51755
51884
  #
51756
51885
  class Workforce < Struct.new(
@@ -51764,7 +51893,8 @@ module Aws::SageMaker
51764
51893
  :create_date,
51765
51894
  :workforce_vpc_config,
51766
51895
  :status,
51767
- :failure_reason)
51896
+ :failure_reason,
51897
+ :ip_address_type)
51768
51898
  SENSITIVE = []
51769
51899
  include Aws::Structure
51770
51900
  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.315.0'
58
+ GEM_VERSION = '1.316.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -739,7 +740,7 @@ module Aws
739
740
  instance_storage_configs: Array[
740
741
  {
741
742
  ebs_volume_config: {
742
- volume_size_in_gb: ::Integer
743
+ volume_size_in_gb: ::Integer?
743
744
  }?
744
745
  },
745
746
  ]?,
@@ -782,7 +783,7 @@ module Aws
782
783
  instance_storage_configs: Array[
783
784
  {
784
785
  ebs_volume_config: {
785
- volume_size_in_gb: ::Integer
786
+ volume_size_in_gb: ::Integer?
786
787
  }?
787
788
  },
788
789
  ]?,
@@ -947,7 +948,7 @@ module Aws
947
948
  compute_quota_resources: Array[
948
949
  {
949
950
  instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge"),
950
- count: ::Integer
951
+ count: ::Integer?
951
952
  },
952
953
  ]?,
953
954
  resource_sharing_config: {
@@ -1313,6 +1314,10 @@ module Aws
1313
1314
  f_sx_lustre_file_system_config: {
1314
1315
  file_system_id: ::String,
1315
1316
  file_system_path: ::String?
1317
+ }?,
1318
+ s3_file_system_config: {
1319
+ mount_path: ::String?,
1320
+ s3_uri: ::String?
1316
1321
  }?
1317
1322
  },
1318
1323
  ]?,
@@ -1465,6 +1470,10 @@ module Aws
1465
1470
  f_sx_lustre_file_system_config: {
1466
1471
  file_system_id: ::String,
1467
1472
  file_system_path: ::String?
1473
+ }?,
1474
+ s3_file_system_config: {
1475
+ mount_path: ::String?,
1476
+ s3_uri: ::String?
1468
1477
  }?
1469
1478
  },
1470
1479
  ]?
@@ -4043,6 +4052,9 @@ module Aws
4043
4052
  }?,
4044
4053
  f_sx_lustre_file_system: {
4045
4054
  file_system_id: ::String
4055
+ }?,
4056
+ s3_file_system: {
4057
+ s3_uri: ::String?
4046
4058
  }?
4047
4059
  },
4048
4060
  ]?,
@@ -4592,6 +4604,10 @@ module Aws
4592
4604
  f_sx_lustre_file_system_config: {
4593
4605
  file_system_id: ::String,
4594
4606
  file_system_path: ::String?
4607
+ }?,
4608
+ s3_file_system_config: {
4609
+ mount_path: ::String?,
4610
+ s3_uri: ::String?
4595
4611
  }?
4596
4612
  },
4597
4613
  ]?,
@@ -4647,7 +4663,8 @@ module Aws
4647
4663
  vpc_id: ::String?,
4648
4664
  security_group_ids: Array[::String]?,
4649
4665
  subnets: Array[::String]?
4650
- }
4666
+ },
4667
+ ?ip_address_type: ("ipv4" | "dualstack")
4651
4668
  ) -> _CreateWorkforceResponseSuccess
4652
4669
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkforceResponseSuccess
4653
4670
 
@@ -8377,7 +8394,7 @@ module Aws
8377
8394
  end
8378
8395
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#search_training_plan_offerings-instance_method
8379
8396
  def search_training_plan_offerings: (
8380
- ?instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge"),
8397
+ ?instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge" | "ml.p4de.24xlarge"),
8381
8398
  ?instance_count: ::Integer,
8382
8399
  ?start_time_after: ::Time,
8383
8400
  ?end_time_before: ::Time,
@@ -8718,7 +8735,7 @@ module Aws
8718
8735
  instance_storage_configs: Array[
8719
8736
  {
8720
8737
  ebs_volume_config: {
8721
- volume_size_in_gb: ::Integer
8738
+ volume_size_in_gb: ::Integer?
8722
8739
  }?
8723
8740
  },
8724
8741
  ]?,
@@ -8761,7 +8778,7 @@ module Aws
8761
8778
  instance_storage_configs: Array[
8762
8779
  {
8763
8780
  ebs_volume_config: {
8764
- volume_size_in_gb: ::Integer
8781
+ volume_size_in_gb: ::Integer?
8765
8782
  }?
8766
8783
  },
8767
8784
  ]?,
@@ -8886,7 +8903,7 @@ module Aws
8886
8903
  compute_quota_resources: Array[
8887
8904
  {
8888
8905
  instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge"),
8889
- count: ::Integer
8906
+ count: ::Integer?
8890
8907
  },
8891
8908
  ]?,
8892
8909
  resource_sharing_config: {
@@ -9137,6 +9154,10 @@ module Aws
9137
9154
  f_sx_lustre_file_system_config: {
9138
9155
  file_system_id: ::String,
9139
9156
  file_system_path: ::String?
9157
+ }?,
9158
+ s3_file_system_config: {
9159
+ mount_path: ::String?,
9160
+ s3_uri: ::String?
9140
9161
  }?
9141
9162
  },
9142
9163
  ]?,
@@ -9277,6 +9298,10 @@ module Aws
9277
9298
  f_sx_lustre_file_system_config: {
9278
9299
  file_system_id: ::String,
9279
9300
  file_system_path: ::String?
9301
+ }?,
9302
+ s3_file_system_config: {
9303
+ mount_path: ::String?,
9304
+ s3_uri: ::String?
9280
9305
  }?
9281
9306
  },
9282
9307
  ]?
@@ -10133,6 +10158,9 @@ module Aws
10133
10158
  }?,
10134
10159
  f_sx_lustre_file_system: {
10135
10160
  file_system_id: ::String
10161
+ }?,
10162
+ s3_file_system: {
10163
+ s3_uri: ::String?
10136
10164
  }?
10137
10165
  },
10138
10166
  ]?,
@@ -10411,6 +10439,10 @@ module Aws
10411
10439
  f_sx_lustre_file_system_config: {
10412
10440
  file_system_id: ::String,
10413
10441
  file_system_path: ::String?
10442
+ }?,
10443
+ s3_file_system_config: {
10444
+ mount_path: ::String?,
10445
+ s3_uri: ::String?
10414
10446
  }?
10415
10447
  },
10416
10448
  ]?,
@@ -10456,7 +10488,8 @@ module Aws
10456
10488
  vpc_id: ::String?,
10457
10489
  security_group_ids: Array[::String]?,
10458
10490
  subnets: Array[::String]?
10459
- }
10491
+ },
10492
+ ?ip_address_type: ("ipv4" | "dualstack")
10460
10493
  ) -> _UpdateWorkforceResponseSuccess
10461
10494
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkforceResponseSuccess
10462
10495
 
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -2185,6 +2185,7 @@ module Aws::SageMaker
2185
2185
  attr_accessor workforce_name: ::String
2186
2186
  attr_accessor tags: ::Array[Types::Tag]
2187
2187
  attr_accessor workforce_vpc_config: Types::WorkforceVpcConfigRequest
2188
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
2188
2189
  SENSITIVE: []
2189
2190
  end
2190
2191
 
@@ -2212,6 +2213,7 @@ module Aws::SageMaker
2212
2213
  class CustomFileSystem
2213
2214
  attr_accessor efs_file_system: Types::EFSFileSystem
2214
2215
  attr_accessor f_sx_lustre_file_system: Types::FSxLustreFileSystem
2216
+ attr_accessor s3_file_system: Types::S3FileSystem
2215
2217
  attr_accessor unknown: untyped
2216
2218
  SENSITIVE: []
2217
2219
 
@@ -2219,6 +2221,8 @@ module Aws::SageMaker
2219
2221
  end
2220
2222
  class FSxLustreFileSystem < CustomFileSystem
2221
2223
  end
2224
+ class S3FileSystem < CustomFileSystem
2225
+ end
2222
2226
  class Unknown < CustomFileSystem
2223
2227
  end
2224
2228
  end
@@ -2226,6 +2230,7 @@ module Aws::SageMaker
2226
2230
  class CustomFileSystemConfig
2227
2231
  attr_accessor efs_file_system_config: Types::EFSFileSystemConfig
2228
2232
  attr_accessor f_sx_lustre_file_system_config: Types::FSxLustreFileSystemConfig
2233
+ attr_accessor s3_file_system_config: Types::S3FileSystemConfig
2229
2234
  attr_accessor unknown: untyped
2230
2235
  SENSITIVE: []
2231
2236
 
@@ -2233,6 +2238,8 @@ module Aws::SageMaker
2233
2238
  end
2234
2239
  class FSxLustreFileSystemConfig < CustomFileSystemConfig
2235
2240
  end
2241
+ class S3FileSystemConfig < CustomFileSystemConfig
2242
+ end
2236
2243
  class Unknown < CustomFileSystemConfig
2237
2244
  end
2238
2245
  end
@@ -8923,7 +8930,7 @@ module Aws::SageMaker
8923
8930
  end
8924
8931
 
8925
8932
  class ReservedCapacityOffering
8926
- attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge")
8933
+ attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge" | "ml.p4de.24xlarge")
8927
8934
  attr_accessor instance_count: ::Integer
8928
8935
  attr_accessor availability_zone: ::String
8929
8936
  attr_accessor duration_hours: ::Integer
@@ -8935,7 +8942,7 @@ module Aws::SageMaker
8935
8942
 
8936
8943
  class ReservedCapacitySummary
8937
8944
  attr_accessor reserved_capacity_arn: ::String
8938
- attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge")
8945
+ attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge" | "ml.p4de.24xlarge")
8939
8946
  attr_accessor total_instance_count: ::Integer
8940
8947
  attr_accessor status: ("Pending" | "Active" | "Scheduled" | "Expired" | "Failed")
8941
8948
  attr_accessor availability_zone: ::String
@@ -9061,6 +9068,17 @@ module Aws::SageMaker
9061
9068
  SENSITIVE: []
9062
9069
  end
9063
9070
 
9071
+ class S3FileSystem
9072
+ attr_accessor s3_uri: ::String
9073
+ SENSITIVE: []
9074
+ end
9075
+
9076
+ class S3FileSystemConfig
9077
+ attr_accessor mount_path: ::String
9078
+ attr_accessor s3_uri: ::String
9079
+ SENSITIVE: []
9080
+ end
9081
+
9064
9082
  class S3ModelDataSource
9065
9083
  attr_accessor s3_uri: ::String
9066
9084
  attr_accessor s3_data_type: ("S3Prefix" | "S3Object")
@@ -9175,7 +9193,7 @@ module Aws::SageMaker
9175
9193
  end
9176
9194
 
9177
9195
  class SearchTrainingPlanOfferingsRequest
9178
- attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge")
9196
+ attr_accessor instance_type: ("ml.p4d.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.trn1.32xlarge" | "ml.trn2.48xlarge" | "ml.p6-b200.48xlarge" | "ml.p4de.24xlarge")
9179
9197
  attr_accessor instance_count: ::Integer
9180
9198
  attr_accessor start_time_after: ::Time
9181
9199
  attr_accessor end_time_before: ::Time
@@ -10746,6 +10764,7 @@ module Aws::SageMaker
10746
10764
  attr_accessor source_ip_config: Types::SourceIpConfig
10747
10765
  attr_accessor oidc_config: Types::OidcConfig
10748
10766
  attr_accessor workforce_vpc_config: Types::WorkforceVpcConfigRequest
10767
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
10749
10768
  SENSITIVE: []
10750
10769
  end
10751
10770
 
@@ -10860,6 +10879,7 @@ module Aws::SageMaker
10860
10879
  attr_accessor workforce_vpc_config: Types::WorkforceVpcConfigResponse
10861
10880
  attr_accessor status: ("Initializing" | "Updating" | "Deleting" | "Failed" | "Active")
10862
10881
  attr_accessor failure_reason: ::String
10882
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
10863
10883
  SENSITIVE: []
10864
10884
  end
10865
10885
 
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.315.0
4
+ version: 1.316.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement