aws-sdk-sagemaker 1.197.0 → 1.199.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: 5263799b9b8aaff4946d32cbdf6b14c5288760859c970b9a3c0ce525d05a436a
4
- data.tar.gz: 36a41ac8656c3f3d9fac8c1a651a37fef24e79487114f4d373e56faf17095fd1
3
+ metadata.gz: 55a40709dad4cb7d7f92dca2f6f7c54d0feba2316cc933d32ae27d8c9359ed32
4
+ data.tar.gz: 72c93a25800ae16a8e3836c8d947c0a04487da21098239f7474edfe12920e332
5
5
  SHA512:
6
- metadata.gz: 1aa07bd76e3d9c4c7cfc336f914df4699a9e513ae8a22f2312d0d6071b845c171bd35072151553fcbfe12b3b7ff937a2dc82055119cc6ca327d234ad6d0a219d
7
- data.tar.gz: 5ae3a6275bcde92b10d4e2b1793e1c821d31d47ec4c681d2275c69ebbdfd150737b77f36c69903569877124817f0217efd22a9e7f07e10a6681e54c9606e8529
6
+ metadata.gz: fb198732848c365bcb7784983e574b94f5d17f00301ba0f05b4ef85dfff75c5fe4ddbc4dee28fb77fd0666ed15a3df81d510b2e9f7d208b302d7e0684fd6382c
7
+ data.tar.gz: c42e5500b682e8be793b55d85d4685294e93742c80b9ccb5cc1a9227bf641f8be6f4b38dc3e47ac3e1540b23ead1a6ee72a9b5e69db3e8b4734599c3cafe9300
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.199.0 (2023-07-25)
5
+ ------------------
6
+
7
+ * Feature - Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API
8
+
9
+ 1.198.0 (2023-07-20)
10
+ ------------------
11
+
12
+ * Feature - Cross account support for SageMaker Feature Store
13
+
4
14
  1.197.0 (2023-07-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.197.0
1
+ 1.199.0
@@ -1532,8 +1532,8 @@ module Aws::SageMaker
1532
1532
  # max_runtime_per_training_job_in_seconds: 1,
1533
1533
  # max_auto_ml_job_runtime_in_seconds: 1,
1534
1534
  # },
1535
- # content_column: "ContentColumn",
1536
- # target_label_column: "TargetLabelColumn",
1535
+ # content_column: "ContentColumn", # required
1536
+ # target_label_column: "TargetLabelColumn", # required
1537
1537
  # },
1538
1538
  # tabular_job_config: {
1539
1539
  # candidate_generation_config: {
@@ -11427,7 +11427,8 @@ module Aws::SageMaker
11427
11427
  # identifier for each `FeatureGroup`, and more.
11428
11428
  #
11429
11429
  # @option params [required, String] :feature_group_name
11430
- # The name of the `FeatureGroup` you want described.
11430
+ # The name or Amazon Resource Name (ARN) of the `FeatureGroup` you want
11431
+ # described.
11431
11432
  #
11432
11433
  # @option params [String] :next_token
11433
11434
  # A token to resume pagination of the list of `Features`
@@ -11456,7 +11457,7 @@ module Aws::SageMaker
11456
11457
  # @example Request syntax with placeholder values
11457
11458
  #
11458
11459
  # resp = client.describe_feature_group({
11459
- # feature_group_name: "FeatureGroupName", # required
11460
+ # feature_group_name: "FeatureGroupNameOrArn", # required
11460
11461
  # next_token: "NextToken",
11461
11462
  # })
11462
11463
  #
@@ -11506,7 +11507,8 @@ module Aws::SageMaker
11506
11507
  # Shows the metadata for a feature within a feature group.
11507
11508
  #
11508
11509
  # @option params [required, String] :feature_group_name
11509
- # The name of the feature group containing the feature.
11510
+ # The name or Amazon Resource Name (ARN) of the feature group containing
11511
+ # the feature.
11510
11512
  #
11511
11513
  # @option params [required, String] :feature_name
11512
11514
  # The name of the feature.
@@ -11525,7 +11527,7 @@ module Aws::SageMaker
11525
11527
  # @example Request syntax with placeholder values
11526
11528
  #
11527
11529
  # resp = client.describe_feature_metadata({
11528
- # feature_group_name: "FeatureGroupName", # required
11530
+ # feature_group_name: "FeatureGroupNameOrArn", # required
11529
11531
  # feature_name: "FeatureName", # required
11530
11532
  # })
11531
11533
  #
@@ -19433,6 +19435,70 @@ module Aws::SageMaker
19433
19435
  req.send_request(options)
19434
19436
  end
19435
19437
 
19438
+ # Lists Amazon SageMaker Catalogs based on given filters and orders. The
19439
+ # maximum number of `ResourceCatalog`s viewable is 1000.
19440
+ #
19441
+ # @option params [String] :name_contains
19442
+ # A string that partially matches one or more `ResourceCatalog`s names.
19443
+ # Filters `ResourceCatalog` by name.
19444
+ #
19445
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
19446
+ # Use this parameter to search for `ResourceCatalog`s created after a
19447
+ # specific date and time.
19448
+ #
19449
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
19450
+ # Use this parameter to search for `ResourceCatalog`s created before a
19451
+ # specific date and time.
19452
+ #
19453
+ # @option params [String] :sort_order
19454
+ # The order in which the resource catalogs are listed.
19455
+ #
19456
+ # @option params [String] :sort_by
19457
+ # The value on which the resource catalog list is sorted.
19458
+ #
19459
+ # @option params [Integer] :max_results
19460
+ # The maximum number of results returned by `ListResourceCatalogs`.
19461
+ #
19462
+ # @option params [String] :next_token
19463
+ # A token to resume pagination of `ListResourceCatalogs` results.
19464
+ #
19465
+ # @return [Types::ListResourceCatalogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
19466
+ #
19467
+ # * {Types::ListResourceCatalogsResponse#resource_catalogs #resource_catalogs} => Array<Types::ResourceCatalog>
19468
+ # * {Types::ListResourceCatalogsResponse#next_token #next_token} => String
19469
+ #
19470
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
19471
+ #
19472
+ # @example Request syntax with placeholder values
19473
+ #
19474
+ # resp = client.list_resource_catalogs({
19475
+ # name_contains: "ResourceCatalogName",
19476
+ # creation_time_after: Time.now,
19477
+ # creation_time_before: Time.now,
19478
+ # sort_order: "Ascending", # accepts Ascending, Descending
19479
+ # sort_by: "CreationTime", # accepts CreationTime
19480
+ # max_results: 1,
19481
+ # next_token: "NextToken",
19482
+ # })
19483
+ #
19484
+ # @example Response structure
19485
+ #
19486
+ # resp.resource_catalogs #=> Array
19487
+ # resp.resource_catalogs[0].resource_catalog_arn #=> String
19488
+ # resp.resource_catalogs[0].resource_catalog_name #=> String
19489
+ # resp.resource_catalogs[0].description #=> String
19490
+ # resp.resource_catalogs[0].creation_time #=> Time
19491
+ # resp.next_token #=> String
19492
+ #
19493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListResourceCatalogs AWS API Documentation
19494
+ #
19495
+ # @overload list_resource_catalogs(params = {})
19496
+ # @param [Hash] params ({})
19497
+ def list_resource_catalogs(params = {}, options = {})
19498
+ req = build_request(:list_resource_catalogs, params)
19499
+ req.send_request(options)
19500
+ end
19501
+
19436
19502
  # Lists spaces.
19437
19503
  #
19438
19504
  # @option params [String] :next_token
@@ -20740,6 +20806,20 @@ module Aws::SageMaker
20740
20806
  # @option params [Integer] :max_results
20741
20807
  # The maximum number of results to return.
20742
20808
  #
20809
+ # @option params [String] :cross_account_filter_option
20810
+ # A cross account filter option. When the value is `"CrossAccount"` the
20811
+ # search results will only include resources made discoverable to you
20812
+ # from other accounts. When the value is `"SameAccount"` or `null` the
20813
+ # search results will only include resources from your account. Default
20814
+ # is `null`. For more information on searching for resources made
20815
+ # discoverable to your account, see [ Search discoverable resources][1]
20816
+ # in the SageMaker Developer Guide. The maximum number of
20817
+ # `ResourceCatalog`s viewable is 1000.
20818
+ #
20819
+ #
20820
+ #
20821
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html
20822
+ #
20743
20823
  # @return [Types::SearchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
20744
20824
  #
20745
20825
  # * {Types::SearchResponse#results #results} => Array<Types::SearchRecord>
@@ -20782,6 +20862,7 @@ module Aws::SageMaker
20782
20862
  # sort_order: "Ascending", # accepts Ascending, Descending
20783
20863
  # next_token: "NextToken",
20784
20864
  # max_results: 1,
20865
+ # cross_account_filter_option: "SameAccount", # accepts SameAccount, CrossAccount
20785
20866
  # })
20786
20867
  #
20787
20868
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
@@ -22203,10 +22284,25 @@ module Aws::SageMaker
22203
22284
  req.send_request(options)
22204
22285
  end
22205
22286
 
22206
- # Updates the feature group.
22287
+ # Updates the feature group by either adding features or updating the
22288
+ # online store configuration. Use one of the following request
22289
+ # parameters at a time while using the `UpdateFeatureGroup` API.
22290
+ #
22291
+ # You can add features for your feature group using the
22292
+ # `FeatureAdditions` request parameter. Features cannot be removed from
22293
+ # a feature group.
22294
+ #
22295
+ # You can update the online store configuration by using the
22296
+ # `OnlineStoreConfig` request parameter. If a `TtlDuration` is
22297
+ # specified, the default `TtlDuration` applies for all records added to
22298
+ # the feature group *after the feature group is updated*. If a record
22299
+ # level `TtlDuration` exists from using the `PutRecord` API, the record
22300
+ # level `TtlDuration` applies to that record instead of the default
22301
+ # `TtlDuration`.
22207
22302
  #
22208
22303
  # @option params [required, String] :feature_group_name
22209
- # The name of the feature group that you're updating.
22304
+ # The name or Amazon Resource Name (ARN) of the feature group that
22305
+ # you're updating.
22210
22306
  #
22211
22307
  # @option params [Array<Types::FeatureDefinition>] :feature_additions
22212
22308
  # Updates the feature group. Updating a feature group is an asynchronous
@@ -22224,7 +22320,7 @@ module Aws::SageMaker
22224
22320
  # @example Request syntax with placeholder values
22225
22321
  #
22226
22322
  # resp = client.update_feature_group({
22227
- # feature_group_name: "FeatureGroupName", # required
22323
+ # feature_group_name: "FeatureGroupNameOrArn", # required
22228
22324
  # feature_additions: [
22229
22325
  # {
22230
22326
  # feature_name: "FeatureName",
@@ -22255,8 +22351,8 @@ module Aws::SageMaker
22255
22351
  # Updates the description and parameters of the feature group.
22256
22352
  #
22257
22353
  # @option params [required, String] :feature_group_name
22258
- # The name of the feature group containing the feature that you're
22259
- # updating.
22354
+ # The name or Amazon Resource Name (ARN) of the feature group containing
22355
+ # the feature that you're updating.
22260
22356
  #
22261
22357
  # @option params [required, String] :feature_name
22262
22358
  # The name of the feature that you're updating.
@@ -22277,7 +22373,7 @@ module Aws::SageMaker
22277
22373
  # @example Request syntax with placeholder values
22278
22374
  #
22279
22375
  # resp = client.update_feature_metadata({
22280
- # feature_group_name: "FeatureGroupName", # required
22376
+ # feature_group_name: "FeatureGroupNameOrArn", # required
22281
22377
  # feature_name: "FeatureName", # required
22282
22378
  # description: "FeatureDescription",
22283
22379
  # parameter_additions: [
@@ -23901,7 +23997,7 @@ module Aws::SageMaker
23901
23997
  params: params,
23902
23998
  config: config)
23903
23999
  context[:gem_name] = 'aws-sdk-sagemaker'
23904
- context[:gem_version] = '1.197.0'
24000
+ context[:gem_version] = '1.199.0'
23905
24001
  Seahorse::Client::Request.new(handlers, context)
23906
24002
  end
23907
24003
 
@@ -401,6 +401,7 @@ module Aws::SageMaker
401
401
  CreateWorkteamRequest = Shapes::StructureShape.new(name: 'CreateWorkteamRequest')
402
402
  CreateWorkteamResponse = Shapes::StructureShape.new(name: 'CreateWorkteamResponse')
403
403
  CreationTime = Shapes::TimestampShape.new(name: 'CreationTime')
404
+ CrossAccountFilterOption = Shapes::StringShape.new(name: 'CrossAccountFilterOption')
404
405
  CsvContentType = Shapes::StringShape.new(name: 'CsvContentType')
405
406
  CsvContentTypes = Shapes::ListShape.new(name: 'CsvContentTypes')
406
407
  CustomImage = Shapes::StructureShape.new(name: 'CustomImage')
@@ -763,6 +764,7 @@ module Aws::SageMaker
763
764
  FeatureGroupMaxResults = Shapes::IntegerShape.new(name: 'FeatureGroupMaxResults')
764
765
  FeatureGroupName = Shapes::StringShape.new(name: 'FeatureGroupName')
765
766
  FeatureGroupNameContains = Shapes::StringShape.new(name: 'FeatureGroupNameContains')
767
+ FeatureGroupNameOrArn = Shapes::StringShape.new(name: 'FeatureGroupNameOrArn')
766
768
  FeatureGroupSortBy = Shapes::StringShape.new(name: 'FeatureGroupSortBy')
767
769
  FeatureGroupSortOrder = Shapes::StringShape.new(name: 'FeatureGroupSortOrder')
768
770
  FeatureGroupStatus = Shapes::StringShape.new(name: 'FeatureGroupStatus')
@@ -1163,6 +1165,8 @@ module Aws::SageMaker
1163
1165
  ListProcessingJobsResponse = Shapes::StructureShape.new(name: 'ListProcessingJobsResponse')
1164
1166
  ListProjectsInput = Shapes::StructureShape.new(name: 'ListProjectsInput')
1165
1167
  ListProjectsOutput = Shapes::StructureShape.new(name: 'ListProjectsOutput')
1168
+ ListResourceCatalogsRequest = Shapes::StructureShape.new(name: 'ListResourceCatalogsRequest')
1169
+ ListResourceCatalogsResponse = Shapes::StructureShape.new(name: 'ListResourceCatalogsResponse')
1166
1170
  ListSpacesRequest = Shapes::StructureShape.new(name: 'ListSpacesRequest')
1167
1171
  ListSpacesResponse = Shapes::StructureShape.new(name: 'ListSpacesResponse')
1168
1172
  ListStageDevicesRequest = Shapes::StructureShape.new(name: 'ListStageDevicesRequest')
@@ -1651,6 +1655,13 @@ module Aws::SageMaker
1651
1655
  RepositoryUrl = Shapes::StringShape.new(name: 'RepositoryUrl')
1652
1656
  ResolvedAttributes = Shapes::StructureShape.new(name: 'ResolvedAttributes')
1653
1657
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
1658
+ ResourceCatalog = Shapes::StructureShape.new(name: 'ResourceCatalog')
1659
+ ResourceCatalogArn = Shapes::StringShape.new(name: 'ResourceCatalogArn')
1660
+ ResourceCatalogDescription = Shapes::StringShape.new(name: 'ResourceCatalogDescription')
1661
+ ResourceCatalogList = Shapes::ListShape.new(name: 'ResourceCatalogList')
1662
+ ResourceCatalogName = Shapes::StringShape.new(name: 'ResourceCatalogName')
1663
+ ResourceCatalogSortBy = Shapes::StringShape.new(name: 'ResourceCatalogSortBy')
1664
+ ResourceCatalogSortOrder = Shapes::StringShape.new(name: 'ResourceCatalogSortOrder')
1654
1665
  ResourceConfig = Shapes::StructureShape.new(name: 'ResourceConfig')
1655
1666
  ResourceConfigForUpdate = Shapes::StructureShape.new(name: 'ResourceConfigForUpdate')
1656
1667
  ResourceId = Shapes::StringShape.new(name: 'ResourceId')
@@ -4040,7 +4051,7 @@ module Aws::SageMaker
4040
4051
  DescribeExperimentResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
4041
4052
  DescribeExperimentResponse.struct_class = Types::DescribeExperimentResponse
4042
4053
 
4043
- DescribeFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
4054
+ DescribeFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
4044
4055
  DescribeFeatureGroupRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
4045
4056
  DescribeFeatureGroupRequest.struct_class = Types::DescribeFeatureGroupRequest
4046
4057
 
@@ -4063,7 +4074,7 @@ module Aws::SageMaker
4063
4074
  DescribeFeatureGroupResponse.add_member(:online_store_total_size_bytes, Shapes::ShapeRef.new(shape: OnlineStoreTotalSizeBytes, location_name: "OnlineStoreTotalSizeBytes"))
4064
4075
  DescribeFeatureGroupResponse.struct_class = Types::DescribeFeatureGroupResponse
4065
4076
 
4066
- DescribeFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
4077
+ DescribeFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
4067
4078
  DescribeFeatureMetadataRequest.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
4068
4079
  DescribeFeatureMetadataRequest.struct_class = Types::DescribeFeatureMetadataRequest
4069
4080
 
@@ -6560,6 +6571,19 @@ module Aws::SageMaker
6560
6571
  ListProjectsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6561
6572
  ListProjectsOutput.struct_class = Types::ListProjectsOutput
6562
6573
 
6574
+ ListResourceCatalogsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: ResourceCatalogName, location_name: "NameContains"))
6575
+ ListResourceCatalogsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
6576
+ ListResourceCatalogsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
6577
+ ListResourceCatalogsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: ResourceCatalogSortOrder, location_name: "SortOrder"))
6578
+ ListResourceCatalogsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: ResourceCatalogSortBy, location_name: "SortBy"))
6579
+ ListResourceCatalogsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
6580
+ ListResourceCatalogsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6581
+ ListResourceCatalogsRequest.struct_class = Types::ListResourceCatalogsRequest
6582
+
6583
+ ListResourceCatalogsResponse.add_member(:resource_catalogs, Shapes::ShapeRef.new(shape: ResourceCatalogList, location_name: "ResourceCatalogs"))
6584
+ ListResourceCatalogsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6585
+ ListResourceCatalogsResponse.struct_class = Types::ListResourceCatalogsResponse
6586
+
6563
6587
  ListSpacesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6564
6588
  ListSpacesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
6565
6589
  ListSpacesRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
@@ -7981,6 +8005,14 @@ module Aws::SageMaker
7981
8005
  ResolvedAttributes.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
7982
8006
  ResolvedAttributes.struct_class = Types::ResolvedAttributes
7983
8007
 
8008
+ ResourceCatalog.add_member(:resource_catalog_arn, Shapes::ShapeRef.new(shape: ResourceCatalogArn, required: true, location_name: "ResourceCatalogArn"))
8009
+ ResourceCatalog.add_member(:resource_catalog_name, Shapes::ShapeRef.new(shape: ResourceCatalogName, required: true, location_name: "ResourceCatalogName"))
8010
+ ResourceCatalog.add_member(:description, Shapes::ShapeRef.new(shape: ResourceCatalogDescription, required: true, location_name: "Description"))
8011
+ ResourceCatalog.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
8012
+ ResourceCatalog.struct_class = Types::ResourceCatalog
8013
+
8014
+ ResourceCatalogList.member = Shapes::ShapeRef.new(shape: ResourceCatalog)
8015
+
7984
8016
  ResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, location_name: "InstanceType"))
7985
8017
  ResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, location_name: "InstanceCount"))
7986
8018
  ResourceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: VolumeSizeInGB, required: true, location_name: "VolumeSizeInGB"))
@@ -8090,6 +8122,7 @@ module Aws::SageMaker
8090
8122
  SearchRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SearchSortOrder, location_name: "SortOrder"))
8091
8123
  SearchRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
8092
8124
  SearchRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
8125
+ SearchRequest.add_member(:cross_account_filter_option, Shapes::ShapeRef.new(shape: CrossAccountFilterOption, location_name: "CrossAccountFilterOption"))
8093
8126
  SearchRequest.struct_class = Types::SearchRequest
8094
8127
 
8095
8128
  SearchResponse.add_member(:results, Shapes::ShapeRef.new(shape: SearchResultsList, location_name: "Results"))
@@ -8338,8 +8371,8 @@ module Aws::SageMaker
8338
8371
  TensorBoardOutputConfig.struct_class = Types::TensorBoardOutputConfig
8339
8372
 
8340
8373
  TextClassificationJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
8341
- TextClassificationJobConfig.add_member(:content_column, Shapes::ShapeRef.new(shape: ContentColumn, location_name: "ContentColumn"))
8342
- TextClassificationJobConfig.add_member(:target_label_column, Shapes::ShapeRef.new(shape: TargetLabelColumn, location_name: "TargetLabelColumn"))
8374
+ TextClassificationJobConfig.add_member(:content_column, Shapes::ShapeRef.new(shape: ContentColumn, required: true, location_name: "ContentColumn"))
8375
+ TextClassificationJobConfig.add_member(:target_label_column, Shapes::ShapeRef.new(shape: TargetLabelColumn, required: true, location_name: "TargetLabelColumn"))
8343
8376
  TextClassificationJobConfig.struct_class = Types::TextClassificationJobConfig
8344
8377
 
8345
8378
  TimeSeriesConfig.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
@@ -8779,7 +8812,7 @@ module Aws::SageMaker
8779
8812
  UpdateExperimentResponse.add_member(:experiment_arn, Shapes::ShapeRef.new(shape: ExperimentArn, location_name: "ExperimentArn"))
8780
8813
  UpdateExperimentResponse.struct_class = Types::UpdateExperimentResponse
8781
8814
 
8782
- UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
8815
+ UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
8783
8816
  UpdateFeatureGroupRequest.add_member(:feature_additions, Shapes::ShapeRef.new(shape: FeatureAdditions, location_name: "FeatureAdditions"))
8784
8817
  UpdateFeatureGroupRequest.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfigUpdate, location_name: "OnlineStoreConfig"))
8785
8818
  UpdateFeatureGroupRequest.struct_class = Types::UpdateFeatureGroupRequest
@@ -8787,7 +8820,7 @@ module Aws::SageMaker
8787
8820
  UpdateFeatureGroupResponse.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, required: true, location_name: "FeatureGroupArn"))
8788
8821
  UpdateFeatureGroupResponse.struct_class = Types::UpdateFeatureGroupResponse
8789
8822
 
8790
- UpdateFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
8823
+ UpdateFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
8791
8824
  UpdateFeatureMetadataRequest.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
8792
8825
  UpdateFeatureMetadataRequest.add_member(:description, Shapes::ShapeRef.new(shape: FeatureDescription, location_name: "Description"))
8793
8826
  UpdateFeatureMetadataRequest.add_member(:parameter_additions, Shapes::ShapeRef.new(shape: FeatureParameterAdditions, location_name: "ParameterAdditions"))
@@ -11482,6 +11515,20 @@ module Aws::SageMaker
11482
11515
  )
11483
11516
  end)
11484
11517
 
11518
+ api.add_operation(:list_resource_catalogs, Seahorse::Model::Operation.new.tap do |o|
11519
+ o.name = "ListResourceCatalogs"
11520
+ o.http_method = "POST"
11521
+ o.http_request_uri = "/"
11522
+ o.input = Shapes::ShapeRef.new(shape: ListResourceCatalogsRequest)
11523
+ o.output = Shapes::ShapeRef.new(shape: ListResourceCatalogsResponse)
11524
+ o[:pager] = Aws::Pager.new(
11525
+ limit_key: "max_results",
11526
+ tokens: {
11527
+ "next_token" => "next_token"
11528
+ }
11529
+ )
11530
+ end)
11531
+
11485
11532
  api.add_operation(:list_spaces, Seahorse::Model::Operation.new.tap do |o|
11486
11533
  o.name = "ListSpaces"
11487
11534
  o.http_method = "POST"
@@ -3218,6 +3218,20 @@ module Aws::SageMaker
3218
3218
  end
3219
3219
  end
3220
3220
 
3221
+ class ListResourceCatalogs
3222
+ def self.build(context)
3223
+ unless context.config.regional_endpoint
3224
+ endpoint = context.config.endpoint.to_s
3225
+ end
3226
+ Aws::SageMaker::EndpointParameters.new(
3227
+ region: context.config.region,
3228
+ use_dual_stack: context.config.use_dualstack_endpoint,
3229
+ use_fips: context.config.use_fips_endpoint,
3230
+ endpoint: endpoint,
3231
+ )
3232
+ end
3233
+ end
3234
+
3221
3235
  class ListSpaces
3222
3236
  def self.build(context)
3223
3237
  unless context.config.regional_endpoint
@@ -514,6 +514,8 @@ module Aws::SageMaker
514
514
  Aws::SageMaker::Endpoints::ListProcessingJobs.build(context)
515
515
  when :list_projects
516
516
  Aws::SageMaker::Endpoints::ListProjects.build(context)
517
+ when :list_resource_catalogs
518
+ Aws::SageMaker::Endpoints::ListResourceCatalogs.build(context)
517
519
  when :list_spaces
518
520
  Aws::SageMaker::Endpoints::ListSpaces.build(context)
519
521
  when :list_stage_devices
@@ -12099,7 +12099,8 @@ module Aws::SageMaker
12099
12099
  end
12100
12100
 
12101
12101
  # @!attribute [rw] feature_group_name
12102
- # The name of the `FeatureGroup` you want described.
12102
+ # The name or Amazon Resource Name (ARN) of the `FeatureGroup` you
12103
+ # want described.
12103
12104
  # @return [String]
12104
12105
  #
12105
12106
  # @!attribute [rw] next_token
@@ -12240,7 +12241,8 @@ module Aws::SageMaker
12240
12241
  end
12241
12242
 
12242
12243
  # @!attribute [rw] feature_group_name
12243
- # The name of the feature group containing the feature.
12244
+ # The name or Amazon Resource Name (ARN) of the feature group
12245
+ # containing the feature.
12244
12246
  # @return [String]
12245
12247
  #
12246
12248
  # @!attribute [rw] feature_name
@@ -17742,7 +17744,7 @@ module Aws::SageMaker
17742
17744
  include Aws::Structure
17743
17745
  end
17744
17746
 
17745
- # The name, Arn, `CreationTime`, `FeatureGroup` values,
17747
+ # The name, ARN, `CreationTime`, `FeatureGroup` values,
17746
17748
  # `LastUpdatedTime` and `EnableOnlineStorage` status of a
17747
17749
  # `FeatureGroup`.
17748
17750
  #
@@ -26770,6 +26772,68 @@ module Aws::SageMaker
26770
26772
  include Aws::Structure
26771
26773
  end
26772
26774
 
26775
+ # @!attribute [rw] name_contains
26776
+ # A string that partially matches one or more `ResourceCatalog`s
26777
+ # names. Filters `ResourceCatalog` by name.
26778
+ # @return [String]
26779
+ #
26780
+ # @!attribute [rw] creation_time_after
26781
+ # Use this parameter to search for `ResourceCatalog`s created after a
26782
+ # specific date and time.
26783
+ # @return [Time]
26784
+ #
26785
+ # @!attribute [rw] creation_time_before
26786
+ # Use this parameter to search for `ResourceCatalog`s created before a
26787
+ # specific date and time.
26788
+ # @return [Time]
26789
+ #
26790
+ # @!attribute [rw] sort_order
26791
+ # The order in which the resource catalogs are listed.
26792
+ # @return [String]
26793
+ #
26794
+ # @!attribute [rw] sort_by
26795
+ # The value on which the resource catalog list is sorted.
26796
+ # @return [String]
26797
+ #
26798
+ # @!attribute [rw] max_results
26799
+ # The maximum number of results returned by `ListResourceCatalogs`.
26800
+ # @return [Integer]
26801
+ #
26802
+ # @!attribute [rw] next_token
26803
+ # A token to resume pagination of `ListResourceCatalogs` results.
26804
+ # @return [String]
26805
+ #
26806
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListResourceCatalogsRequest AWS API Documentation
26807
+ #
26808
+ class ListResourceCatalogsRequest < Struct.new(
26809
+ :name_contains,
26810
+ :creation_time_after,
26811
+ :creation_time_before,
26812
+ :sort_order,
26813
+ :sort_by,
26814
+ :max_results,
26815
+ :next_token)
26816
+ SENSITIVE = []
26817
+ include Aws::Structure
26818
+ end
26819
+
26820
+ # @!attribute [rw] resource_catalogs
26821
+ # A list of the requested `ResourceCatalog`s.
26822
+ # @return [Array<Types::ResourceCatalog>]
26823
+ #
26824
+ # @!attribute [rw] next_token
26825
+ # A token to resume pagination of `ListResourceCatalogs` results.
26826
+ # @return [String]
26827
+ #
26828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListResourceCatalogsResponse AWS API Documentation
26829
+ #
26830
+ class ListResourceCatalogsResponse < Struct.new(
26831
+ :resource_catalogs,
26832
+ :next_token)
26833
+ SENSITIVE = []
26834
+ include Aws::Structure
26835
+ end
26836
+
26773
26837
  # @!attribute [rw] next_token
26774
26838
  # If the previous response was truncated, you will receive this token.
26775
26839
  # Use it in your next request to receive the next set of results.
@@ -34727,6 +34791,43 @@ module Aws::SageMaker
34727
34791
  include Aws::Structure
34728
34792
  end
34729
34793
 
34794
+ # A resource catalog containing all of the resources of a specific
34795
+ # resource type within a resource owner account. For an example on
34796
+ # sharing the Amazon SageMaker Feature Store
34797
+ # `DefaultFeatureGroupCatalog`, see [Share Amazon SageMaker Catalog
34798
+ # resource type][1] in the Amazon SageMaker Developer Guide.
34799
+ #
34800
+ #
34801
+ #
34802
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/feature-store-cross-account-discoverability-share-sagemaker-catalog.html
34803
+ #
34804
+ # @!attribute [rw] resource_catalog_arn
34805
+ # The Amazon Resource Name (ARN) of the `ResourceCatalog`.
34806
+ # @return [String]
34807
+ #
34808
+ # @!attribute [rw] resource_catalog_name
34809
+ # The name of the `ResourceCatalog`.
34810
+ # @return [String]
34811
+ #
34812
+ # @!attribute [rw] description
34813
+ # A free form description of the `ResourceCatalog`.
34814
+ # @return [String]
34815
+ #
34816
+ # @!attribute [rw] creation_time
34817
+ # The time the `ResourceCatalog` was created.
34818
+ # @return [Time]
34819
+ #
34820
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceCatalog AWS API Documentation
34821
+ #
34822
+ class ResourceCatalog < Struct.new(
34823
+ :resource_catalog_arn,
34824
+ :resource_catalog_name,
34825
+ :description,
34826
+ :creation_time)
34827
+ SENSITIVE = []
34828
+ include Aws::Structure
34829
+ end
34830
+
34730
34831
  # Describes the resources, including machine learning (ML) compute
34731
34832
  # instances and ML storage volumes, to use for model training.
34732
34833
  #
@@ -35581,6 +35682,21 @@ module Aws::SageMaker
35581
35682
  # The maximum number of results to return.
35582
35683
  # @return [Integer]
35583
35684
  #
35685
+ # @!attribute [rw] cross_account_filter_option
35686
+ # A cross account filter option. When the value is `"CrossAccount"`
35687
+ # the search results will only include resources made discoverable to
35688
+ # you from other accounts. When the value is `"SameAccount"` or `null`
35689
+ # the search results will only include resources from your account.
35690
+ # Default is `null`. For more information on searching for resources
35691
+ # made discoverable to your account, see [ Search discoverable
35692
+ # resources][1] in the SageMaker Developer Guide. The maximum number
35693
+ # of `ResourceCatalog`s viewable is 1000.
35694
+ #
35695
+ #
35696
+ #
35697
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html
35698
+ # @return [String]
35699
+ #
35584
35700
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRequest AWS API Documentation
35585
35701
  #
35586
35702
  class SearchRequest < Struct.new(
@@ -35589,7 +35705,8 @@ module Aws::SageMaker
35589
35705
  :sort_by,
35590
35706
  :sort_order,
35591
35707
  :next_token,
35592
- :max_results)
35708
+ :max_results,
35709
+ :cross_account_filter_option)
35593
35710
  SENSITIVE = []
35594
35711
  include Aws::Structure
35595
35712
  end
@@ -37040,13 +37157,12 @@ module Aws::SageMaker
37040
37157
  #
37041
37158
  # @!attribute [rw] content_column
37042
37159
  # The name of the column used to provide the sentences to be
37043
- # classified. It should not be the same as the target column
37044
- # (Required).
37160
+ # classified. It should not be the same as the target column.
37045
37161
  # @return [String]
37046
37162
  #
37047
37163
  # @!attribute [rw] target_label_column
37048
37164
  # The name of the column used to provide the class labels. It should
37049
- # not be same as the content column (Required).
37165
+ # not be same as the content column.
37050
37166
  # @return [String]
37051
37167
  #
37052
37168
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TextClassificationJobConfig AWS API Documentation
@@ -39820,7 +39936,8 @@ module Aws::SageMaker
39820
39936
  end
39821
39937
 
39822
39938
  # @!attribute [rw] feature_group_name
39823
- # The name of the feature group that you're updating.
39939
+ # The name or Amazon Resource Name (ARN) of the feature group that
39940
+ # you're updating.
39824
39941
  # @return [String]
39825
39942
  #
39826
39943
  # @!attribute [rw] feature_additions
@@ -39858,8 +39975,8 @@ module Aws::SageMaker
39858
39975
  end
39859
39976
 
39860
39977
  # @!attribute [rw] feature_group_name
39861
- # The name of the feature group containing the feature that you're
39862
- # updating.
39978
+ # The name or Amazon Resource Name (ARN) of the feature group
39979
+ # containing the feature that you're updating.
39863
39980
  # @return [String]
39864
39981
  #
39865
39982
  # @!attribute [rw] feature_name
@@ -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.197.0'
56
+ GEM_VERSION = '1.199.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.197.0
4
+ version: 1.199.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-07-13 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core