aws-sdk-sagemaker 1.128.0 → 1.129.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: 21601ab21b6efd78619931ec237bd508195eaffc5ed04d963814c3ae2908f538
4
- data.tar.gz: c0337001e4c42e2abffbcee13eb73960ac93110b1eea474f32e6345e5d1df575
3
+ metadata.gz: 1ec16adf8956ba5ef4e6e00570dda97a4e832130923819babebf398a7f964704
4
+ data.tar.gz: 7466f9459bb8c7804449ca646e3bbdec29e733f15b233f56be3f77522ff8ca2a
5
5
  SHA512:
6
- metadata.gz: 1454d065a44acd8e1fa69f9694164699334590ec509da93bb892149d05f7bf5e87ea7219065429f216dbcb23c2f8f858a8073f572be55986640dcc46f1bc118d
7
- data.tar.gz: fa9857672686feb5b69d936005b78df2239db65197d87ad130b5782b8d85feb70483840e54eb7a4ad3ee0b7c8fd19452939fd1845bcb4975c791f3fada8ff66f
6
+ metadata.gz: 495b3d371892e8fd22d2bf2ee8e7a0d08bd834c11104ae844d2c60f93507c6187e99c5c62649ab324f4e847e666c59a0a7d54d36575869f22d7ef9e368e9512f
7
+ data.tar.gz: f94cd55eeb847fd3fc7ea001becd52b6269f0089d8adaa697ac18aa7aa5a2c4ff47402755db1e5845d2f30c809a4c9b523989b6d3563d59d1616cf350d4b609c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.129.0 (2022-06-29)
5
+ ------------------
6
+
7
+ * Feature - This release adds: UpdateFeatureGroup, UpdateFeatureMetadata, DescribeFeatureMetadata APIs; FeatureMetadata type in Search API; LastModifiedTime, LastUpdateStatus, OnlineStoreTotalSizeBytes in DescribeFeatureGroup API.
8
+
4
9
  1.128.0 (2022-06-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.128.0
1
+ 1.129.0
@@ -9148,14 +9148,17 @@ module Aws::SageMaker
9148
9148
  # * {Types::DescribeFeatureGroupResponse#event_time_feature_name #event_time_feature_name} => String
9149
9149
  # * {Types::DescribeFeatureGroupResponse#feature_definitions #feature_definitions} => Array<Types::FeatureDefinition>
9150
9150
  # * {Types::DescribeFeatureGroupResponse#creation_time #creation_time} => Time
9151
+ # * {Types::DescribeFeatureGroupResponse#last_modified_time #last_modified_time} => Time
9151
9152
  # * {Types::DescribeFeatureGroupResponse#online_store_config #online_store_config} => Types::OnlineStoreConfig
9152
9153
  # * {Types::DescribeFeatureGroupResponse#offline_store_config #offline_store_config} => Types::OfflineStoreConfig
9153
9154
  # * {Types::DescribeFeatureGroupResponse#role_arn #role_arn} => String
9154
9155
  # * {Types::DescribeFeatureGroupResponse#feature_group_status #feature_group_status} => String
9155
9156
  # * {Types::DescribeFeatureGroupResponse#offline_store_status #offline_store_status} => Types::OfflineStoreStatus
9157
+ # * {Types::DescribeFeatureGroupResponse#last_update_status #last_update_status} => Types::LastUpdateStatus
9156
9158
  # * {Types::DescribeFeatureGroupResponse#failure_reason #failure_reason} => String
9157
9159
  # * {Types::DescribeFeatureGroupResponse#description #description} => String
9158
9160
  # * {Types::DescribeFeatureGroupResponse#next_token #next_token} => String
9161
+ # * {Types::DescribeFeatureGroupResponse#online_store_total_size_bytes #online_store_total_size_bytes} => Integer
9159
9162
  #
9160
9163
  # @example Request syntax with placeholder values
9161
9164
  #
@@ -9174,6 +9177,7 @@ module Aws::SageMaker
9174
9177
  # resp.feature_definitions[0].feature_name #=> String
9175
9178
  # resp.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
9176
9179
  # resp.creation_time #=> Time
9180
+ # resp.last_modified_time #=> Time
9177
9181
  # resp.online_store_config.security_config.kms_key_id #=> String
9178
9182
  # resp.online_store_config.enable_online_store #=> Boolean
9179
9183
  # resp.offline_store_config.s3_storage_config.s3_uri #=> String
@@ -9187,9 +9191,12 @@ module Aws::SageMaker
9187
9191
  # resp.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
9188
9192
  # resp.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
9189
9193
  # resp.offline_store_status.blocked_reason #=> String
9194
+ # resp.last_update_status.status #=> String, one of "Successful", "Failed", "InProgress"
9195
+ # resp.last_update_status.failure_reason #=> String
9190
9196
  # resp.failure_reason #=> String
9191
9197
  # resp.description #=> String
9192
9198
  # resp.next_token #=> String
9199
+ # resp.online_store_total_size_bytes #=> Integer
9193
9200
  #
9194
9201
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureGroup AWS API Documentation
9195
9202
  #
@@ -9200,6 +9207,54 @@ module Aws::SageMaker
9200
9207
  req.send_request(options)
9201
9208
  end
9202
9209
 
9210
+ # Shows the metadata for a feature within a feature group.
9211
+ #
9212
+ # @option params [required, String] :feature_group_name
9213
+ # The name of the feature group containing the feature.
9214
+ #
9215
+ # @option params [required, String] :feature_name
9216
+ # The name of the feature.
9217
+ #
9218
+ # @return [Types::DescribeFeatureMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9219
+ #
9220
+ # * {Types::DescribeFeatureMetadataResponse#feature_group_arn #feature_group_arn} => String
9221
+ # * {Types::DescribeFeatureMetadataResponse#feature_group_name #feature_group_name} => String
9222
+ # * {Types::DescribeFeatureMetadataResponse#feature_name #feature_name} => String
9223
+ # * {Types::DescribeFeatureMetadataResponse#feature_type #feature_type} => String
9224
+ # * {Types::DescribeFeatureMetadataResponse#creation_time #creation_time} => Time
9225
+ # * {Types::DescribeFeatureMetadataResponse#last_modified_time #last_modified_time} => Time
9226
+ # * {Types::DescribeFeatureMetadataResponse#description #description} => String
9227
+ # * {Types::DescribeFeatureMetadataResponse#parameters #parameters} => Array<Types::FeatureParameter>
9228
+ #
9229
+ # @example Request syntax with placeholder values
9230
+ #
9231
+ # resp = client.describe_feature_metadata({
9232
+ # feature_group_name: "FeatureGroupName", # required
9233
+ # feature_name: "FeatureName", # required
9234
+ # })
9235
+ #
9236
+ # @example Response structure
9237
+ #
9238
+ # resp.feature_group_arn #=> String
9239
+ # resp.feature_group_name #=> String
9240
+ # resp.feature_name #=> String
9241
+ # resp.feature_type #=> String, one of "Integral", "Fractional", "String"
9242
+ # resp.creation_time #=> Time
9243
+ # resp.last_modified_time #=> Time
9244
+ # resp.description #=> String
9245
+ # resp.parameters #=> Array
9246
+ # resp.parameters[0].key #=> String
9247
+ # resp.parameters[0].value #=> String
9248
+ #
9249
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureMetadata AWS API Documentation
9250
+ #
9251
+ # @overload describe_feature_metadata(params = {})
9252
+ # @param [Hash] params ({})
9253
+ def describe_feature_metadata(params = {}, options = {})
9254
+ req = build_request(:describe_feature_metadata, params)
9255
+ req.send_request(options)
9256
+ end
9257
+
9203
9258
  # Returns information about the specified flow definition.
9204
9259
  #
9205
9260
  # @option params [required, String] :flow_definition_name
@@ -11881,7 +11936,7 @@ module Aws::SageMaker
11881
11936
  # @example Request syntax with placeholder values
11882
11937
  #
11883
11938
  # resp = client.get_search_suggestions({
11884
- # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
11939
+ # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata
11885
11940
  # suggestion_query: {
11886
11941
  # property_name_query: {
11887
11942
  # property_name_hint: "PropertyNameHint", # required
@@ -16544,7 +16599,7 @@ module Aws::SageMaker
16544
16599
  # @example Request syntax with placeholder values
16545
16600
  #
16546
16601
  # resp = client.search({
16547
- # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
16602
+ # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata
16548
16603
  # search_expression: {
16549
16604
  # filters: [
16550
16605
  # {
@@ -17300,6 +17355,7 @@ module Aws::SageMaker
17300
17355
  # resp.results[0].feature_group.feature_definitions[0].feature_name #=> String
17301
17356
  # resp.results[0].feature_group.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
17302
17357
  # resp.results[0].feature_group.creation_time #=> Time
17358
+ # resp.results[0].feature_group.last_modified_time #=> Time
17303
17359
  # resp.results[0].feature_group.online_store_config.security_config.kms_key_id #=> String
17304
17360
  # resp.results[0].feature_group.online_store_config.enable_online_store #=> Boolean
17305
17361
  # resp.results[0].feature_group.offline_store_config.s3_storage_config.s3_uri #=> String
@@ -17313,6 +17369,8 @@ module Aws::SageMaker
17313
17369
  # resp.results[0].feature_group.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
17314
17370
  # resp.results[0].feature_group.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
17315
17371
  # resp.results[0].feature_group.offline_store_status.blocked_reason #=> String
17372
+ # resp.results[0].feature_group.last_update_status.status #=> String, one of "Successful", "Failed", "InProgress"
17373
+ # resp.results[0].feature_group.last_update_status.failure_reason #=> String
17316
17374
  # resp.results[0].feature_group.failure_reason #=> String
17317
17375
  # resp.results[0].feature_group.description #=> String
17318
17376
  # resp.results[0].feature_group.tags #=> Array
@@ -17342,6 +17400,16 @@ module Aws::SageMaker
17342
17400
  # resp.results[0].project.last_modified_by.user_profile_arn #=> String
17343
17401
  # resp.results[0].project.last_modified_by.user_profile_name #=> String
17344
17402
  # resp.results[0].project.last_modified_by.domain_id #=> String
17403
+ # resp.results[0].feature_metadata.feature_group_arn #=> String
17404
+ # resp.results[0].feature_metadata.feature_group_name #=> String
17405
+ # resp.results[0].feature_metadata.feature_name #=> String
17406
+ # resp.results[0].feature_metadata.feature_type #=> String, one of "Integral", "Fractional", "String"
17407
+ # resp.results[0].feature_metadata.creation_time #=> Time
17408
+ # resp.results[0].feature_metadata.last_modified_time #=> Time
17409
+ # resp.results[0].feature_metadata.description #=> String
17410
+ # resp.results[0].feature_metadata.parameters #=> Array
17411
+ # resp.results[0].feature_metadata.parameters[0].key #=> String
17412
+ # resp.results[0].feature_metadata.parameters[0].value #=> String
17345
17413
  # resp.next_token #=> String
17346
17414
  #
17347
17415
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
@@ -18501,6 +18569,89 @@ module Aws::SageMaker
18501
18569
  req.send_request(options)
18502
18570
  end
18503
18571
 
18572
+ # Updates the feature group.
18573
+ #
18574
+ # @option params [required, String] :feature_group_name
18575
+ # The name of the feature group that you're updating.
18576
+ #
18577
+ # @option params [Array<Types::FeatureDefinition>] :feature_additions
18578
+ # A list of the features that you're adding to the feature group.
18579
+ #
18580
+ # @return [Types::UpdateFeatureGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18581
+ #
18582
+ # * {Types::UpdateFeatureGroupResponse#feature_group_arn #feature_group_arn} => String
18583
+ #
18584
+ # @example Request syntax with placeholder values
18585
+ #
18586
+ # resp = client.update_feature_group({
18587
+ # feature_group_name: "FeatureGroupName", # required
18588
+ # feature_additions: [
18589
+ # {
18590
+ # feature_name: "FeatureName",
18591
+ # feature_type: "Integral", # accepts Integral, Fractional, String
18592
+ # },
18593
+ # ],
18594
+ # })
18595
+ #
18596
+ # @example Response structure
18597
+ #
18598
+ # resp.feature_group_arn #=> String
18599
+ #
18600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroup AWS API Documentation
18601
+ #
18602
+ # @overload update_feature_group(params = {})
18603
+ # @param [Hash] params ({})
18604
+ def update_feature_group(params = {}, options = {})
18605
+ req = build_request(:update_feature_group, params)
18606
+ req.send_request(options)
18607
+ end
18608
+
18609
+ # Updates the description and parameters of the feature group.
18610
+ #
18611
+ # @option params [required, String] :feature_group_name
18612
+ # The name of the feature group containing the feature that you're
18613
+ # updating.
18614
+ #
18615
+ # @option params [required, String] :feature_name
18616
+ # The name of the feature that you're updating.
18617
+ #
18618
+ # @option params [String] :description
18619
+ # A description that you can write to better describe the feature.
18620
+ #
18621
+ # @option params [Array<Types::FeatureParameter>] :parameter_additions
18622
+ # A list of key-value pairs that you can add to better describe the
18623
+ # feature.
18624
+ #
18625
+ # @option params [Array<String>] :parameter_removals
18626
+ # A list of parameter keys that you can specify to remove parameters
18627
+ # that describe your feature.
18628
+ #
18629
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
18630
+ #
18631
+ # @example Request syntax with placeholder values
18632
+ #
18633
+ # resp = client.update_feature_metadata({
18634
+ # feature_group_name: "FeatureGroupName", # required
18635
+ # feature_name: "FeatureName", # required
18636
+ # description: "FeatureDescription",
18637
+ # parameter_additions: [
18638
+ # {
18639
+ # key: "FeatureParameterKey",
18640
+ # value: "FeatureParameterValue",
18641
+ # },
18642
+ # ],
18643
+ # parameter_removals: ["FeatureParameterKey"],
18644
+ # })
18645
+ #
18646
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureMetadata AWS API Documentation
18647
+ #
18648
+ # @overload update_feature_metadata(params = {})
18649
+ # @param [Hash] params ({})
18650
+ def update_feature_metadata(params = {}, options = {})
18651
+ req = build_request(:update_feature_metadata, params)
18652
+ req.send_request(options)
18653
+ end
18654
+
18504
18655
  # Updates the properties of a SageMaker image. To change the image's
18505
18656
  # tags, use the AddTags and DeleteTags APIs.
18506
18657
  #
@@ -19627,7 +19778,7 @@ module Aws::SageMaker
19627
19778
  params: params,
19628
19779
  config: config)
19629
19780
  context[:gem_name] = 'aws-sdk-sagemaker'
19630
- context[:gem_version] = '1.128.0'
19781
+ context[:gem_version] = '1.129.0'
19631
19782
  Seahorse::Client::Request.new(handlers, context)
19632
19783
  end
19633
19784
 
@@ -448,6 +448,8 @@ module Aws::SageMaker
448
448
  DescribeExperimentResponse = Shapes::StructureShape.new(name: 'DescribeExperimentResponse')
449
449
  DescribeFeatureGroupRequest = Shapes::StructureShape.new(name: 'DescribeFeatureGroupRequest')
450
450
  DescribeFeatureGroupResponse = Shapes::StructureShape.new(name: 'DescribeFeatureGroupResponse')
451
+ DescribeFeatureMetadataRequest = Shapes::StructureShape.new(name: 'DescribeFeatureMetadataRequest')
452
+ DescribeFeatureMetadataResponse = Shapes::StructureShape.new(name: 'DescribeFeatureMetadataResponse')
451
453
  DescribeFlowDefinitionRequest = Shapes::StructureShape.new(name: 'DescribeFlowDefinitionRequest')
452
454
  DescribeFlowDefinitionResponse = Shapes::StructureShape.new(name: 'DescribeFlowDefinitionResponse')
453
455
  DescribeHumanTaskUiRequest = Shapes::StructureShape.new(name: 'DescribeHumanTaskUiRequest')
@@ -624,8 +626,10 @@ module Aws::SageMaker
624
626
  ExplainabilityLocation = Shapes::StringShape.new(name: 'ExplainabilityLocation')
625
627
  FailStepMetadata = Shapes::StructureShape.new(name: 'FailStepMetadata')
626
628
  FailureReason = Shapes::StringShape.new(name: 'FailureReason')
629
+ FeatureAdditions = Shapes::ListShape.new(name: 'FeatureAdditions')
627
630
  FeatureDefinition = Shapes::StructureShape.new(name: 'FeatureDefinition')
628
631
  FeatureDefinitions = Shapes::ListShape.new(name: 'FeatureDefinitions')
632
+ FeatureDescription = Shapes::StringShape.new(name: 'FeatureDescription')
629
633
  FeatureGroup = Shapes::StructureShape.new(name: 'FeatureGroup')
630
634
  FeatureGroupArn = Shapes::StringShape.new(name: 'FeatureGroupArn')
631
635
  FeatureGroupMaxResults = Shapes::IntegerShape.new(name: 'FeatureGroupMaxResults')
@@ -636,7 +640,14 @@ module Aws::SageMaker
636
640
  FeatureGroupStatus = Shapes::StringShape.new(name: 'FeatureGroupStatus')
637
641
  FeatureGroupSummaries = Shapes::ListShape.new(name: 'FeatureGroupSummaries')
638
642
  FeatureGroupSummary = Shapes::StructureShape.new(name: 'FeatureGroupSummary')
643
+ FeatureMetadata = Shapes::StructureShape.new(name: 'FeatureMetadata')
639
644
  FeatureName = Shapes::StringShape.new(name: 'FeatureName')
645
+ FeatureParameter = Shapes::StructureShape.new(name: 'FeatureParameter')
646
+ FeatureParameterAdditions = Shapes::ListShape.new(name: 'FeatureParameterAdditions')
647
+ FeatureParameterKey = Shapes::StringShape.new(name: 'FeatureParameterKey')
648
+ FeatureParameterRemovals = Shapes::ListShape.new(name: 'FeatureParameterRemovals')
649
+ FeatureParameterValue = Shapes::StringShape.new(name: 'FeatureParameterValue')
650
+ FeatureParameters = Shapes::ListShape.new(name: 'FeatureParameters')
640
651
  FeatureType = Shapes::StringShape.new(name: 'FeatureType')
641
652
  FileSource = Shapes::StructureShape.new(name: 'FileSource')
642
653
  FileSystemAccessMode = Shapes::StringShape.new(name: 'FileSystemAccessMode')
@@ -810,6 +821,8 @@ module Aws::SageMaker
810
821
  LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
811
822
  LambdaStepMetadata = Shapes::StructureShape.new(name: 'LambdaStepMetadata')
812
823
  LastModifiedTime = Shapes::TimestampShape.new(name: 'LastModifiedTime')
824
+ LastUpdateStatus = Shapes::StructureShape.new(name: 'LastUpdateStatus')
825
+ LastUpdateStatusValue = Shapes::StringShape.new(name: 'LastUpdateStatusValue')
813
826
  LifecycleConfigArns = Shapes::ListShape.new(name: 'LifecycleConfigArns')
814
827
  LineageEntityParameters = Shapes::MapShape.new(name: 'LineageEntityParameters')
815
828
  LineageGroupArn = Shapes::StringShape.new(name: 'LineageGroupArn')
@@ -1129,6 +1142,7 @@ module Aws::SageMaker
1129
1142
  OidcMemberDefinition = Shapes::StructureShape.new(name: 'OidcMemberDefinition')
1130
1143
  OnlineStoreConfig = Shapes::StructureShape.new(name: 'OnlineStoreConfig')
1131
1144
  OnlineStoreSecurityConfig = Shapes::StructureShape.new(name: 'OnlineStoreSecurityConfig')
1145
+ OnlineStoreTotalSizeBytes = Shapes::IntegerShape.new(name: 'OnlineStoreTotalSizeBytes')
1132
1146
  Operator = Shapes::StringShape.new(name: 'Operator')
1133
1147
  OptionalDouble = Shapes::FloatShape.new(name: 'OptionalDouble')
1134
1148
  OptionalInteger = Shapes::IntegerShape.new(name: 'OptionalInteger')
@@ -1563,6 +1577,9 @@ module Aws::SageMaker
1563
1577
  UpdateEndpointWeightsAndCapacitiesOutput = Shapes::StructureShape.new(name: 'UpdateEndpointWeightsAndCapacitiesOutput')
1564
1578
  UpdateExperimentRequest = Shapes::StructureShape.new(name: 'UpdateExperimentRequest')
1565
1579
  UpdateExperimentResponse = Shapes::StructureShape.new(name: 'UpdateExperimentResponse')
1580
+ UpdateFeatureGroupRequest = Shapes::StructureShape.new(name: 'UpdateFeatureGroupRequest')
1581
+ UpdateFeatureGroupResponse = Shapes::StructureShape.new(name: 'UpdateFeatureGroupResponse')
1582
+ UpdateFeatureMetadataRequest = Shapes::StructureShape.new(name: 'UpdateFeatureMetadataRequest')
1566
1583
  UpdateImageRequest = Shapes::StructureShape.new(name: 'UpdateImageRequest')
1567
1584
  UpdateImageResponse = Shapes::StructureShape.new(name: 'UpdateImageResponse')
1568
1585
  UpdateModelPackageInput = Shapes::StructureShape.new(name: 'UpdateModelPackageInput')
@@ -3273,16 +3290,33 @@ module Aws::SageMaker
3273
3290
  DescribeFeatureGroupResponse.add_member(:event_time_feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "EventTimeFeatureName"))
3274
3291
  DescribeFeatureGroupResponse.add_member(:feature_definitions, Shapes::ShapeRef.new(shape: FeatureDefinitions, required: true, location_name: "FeatureDefinitions"))
3275
3292
  DescribeFeatureGroupResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, required: true, location_name: "CreationTime"))
3293
+ DescribeFeatureGroupResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTime"))
3276
3294
  DescribeFeatureGroupResponse.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfig, location_name: "OnlineStoreConfig"))
3277
3295
  DescribeFeatureGroupResponse.add_member(:offline_store_config, Shapes::ShapeRef.new(shape: OfflineStoreConfig, location_name: "OfflineStoreConfig"))
3278
3296
  DescribeFeatureGroupResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
3279
3297
  DescribeFeatureGroupResponse.add_member(:feature_group_status, Shapes::ShapeRef.new(shape: FeatureGroupStatus, location_name: "FeatureGroupStatus"))
3280
3298
  DescribeFeatureGroupResponse.add_member(:offline_store_status, Shapes::ShapeRef.new(shape: OfflineStoreStatus, location_name: "OfflineStoreStatus"))
3299
+ DescribeFeatureGroupResponse.add_member(:last_update_status, Shapes::ShapeRef.new(shape: LastUpdateStatus, location_name: "LastUpdateStatus"))
3281
3300
  DescribeFeatureGroupResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
3282
3301
  DescribeFeatureGroupResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
3283
3302
  DescribeFeatureGroupResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, required: true, location_name: "NextToken"))
3303
+ DescribeFeatureGroupResponse.add_member(:online_store_total_size_bytes, Shapes::ShapeRef.new(shape: OnlineStoreTotalSizeBytes, location_name: "OnlineStoreTotalSizeBytes"))
3284
3304
  DescribeFeatureGroupResponse.struct_class = Types::DescribeFeatureGroupResponse
3285
3305
 
3306
+ DescribeFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
3307
+ DescribeFeatureMetadataRequest.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
3308
+ DescribeFeatureMetadataRequest.struct_class = Types::DescribeFeatureMetadataRequest
3309
+
3310
+ DescribeFeatureMetadataResponse.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, required: true, location_name: "FeatureGroupArn"))
3311
+ DescribeFeatureMetadataResponse.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
3312
+ DescribeFeatureMetadataResponse.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
3313
+ DescribeFeatureMetadataResponse.add_member(:feature_type, Shapes::ShapeRef.new(shape: FeatureType, required: true, location_name: "FeatureType"))
3314
+ DescribeFeatureMetadataResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, required: true, location_name: "CreationTime"))
3315
+ DescribeFeatureMetadataResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, required: true, location_name: "LastModifiedTime"))
3316
+ DescribeFeatureMetadataResponse.add_member(:description, Shapes::ShapeRef.new(shape: FeatureDescription, location_name: "Description"))
3317
+ DescribeFeatureMetadataResponse.add_member(:parameters, Shapes::ShapeRef.new(shape: FeatureParameters, location_name: "Parameters"))
3318
+ DescribeFeatureMetadataResponse.struct_class = Types::DescribeFeatureMetadataResponse
3319
+
3286
3320
  DescribeFlowDefinitionRequest.add_member(:flow_definition_name, Shapes::ShapeRef.new(shape: FlowDefinitionName, required: true, location_name: "FlowDefinitionName"))
3287
3321
  DescribeFlowDefinitionRequest.struct_class = Types::DescribeFlowDefinitionRequest
3288
3322
 
@@ -4069,6 +4103,8 @@ module Aws::SageMaker
4069
4103
  FailStepMetadata.add_member(:error_message, Shapes::ShapeRef.new(shape: String3072, location_name: "ErrorMessage"))
4070
4104
  FailStepMetadata.struct_class = Types::FailStepMetadata
4071
4105
 
4106
+ FeatureAdditions.member = Shapes::ShapeRef.new(shape: FeatureDefinition)
4107
+
4072
4108
  FeatureDefinition.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, location_name: "FeatureName"))
4073
4109
  FeatureDefinition.add_member(:feature_type, Shapes::ShapeRef.new(shape: FeatureType, location_name: "FeatureType"))
4074
4110
  FeatureDefinition.struct_class = Types::FeatureDefinition
@@ -4081,11 +4117,13 @@ module Aws::SageMaker
4081
4117
  FeatureGroup.add_member(:event_time_feature_name, Shapes::ShapeRef.new(shape: FeatureName, location_name: "EventTimeFeatureName"))
4082
4118
  FeatureGroup.add_member(:feature_definitions, Shapes::ShapeRef.new(shape: FeatureDefinitions, location_name: "FeatureDefinitions"))
4083
4119
  FeatureGroup.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTime"))
4120
+ FeatureGroup.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTime"))
4084
4121
  FeatureGroup.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfig, location_name: "OnlineStoreConfig"))
4085
4122
  FeatureGroup.add_member(:offline_store_config, Shapes::ShapeRef.new(shape: OfflineStoreConfig, location_name: "OfflineStoreConfig"))
4086
4123
  FeatureGroup.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
4087
4124
  FeatureGroup.add_member(:feature_group_status, Shapes::ShapeRef.new(shape: FeatureGroupStatus, location_name: "FeatureGroupStatus"))
4088
4125
  FeatureGroup.add_member(:offline_store_status, Shapes::ShapeRef.new(shape: OfflineStoreStatus, location_name: "OfflineStoreStatus"))
4126
+ FeatureGroup.add_member(:last_update_status, Shapes::ShapeRef.new(shape: LastUpdateStatus, location_name: "LastUpdateStatus"))
4089
4127
  FeatureGroup.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
4090
4128
  FeatureGroup.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
4091
4129
  FeatureGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
@@ -4100,6 +4138,26 @@ module Aws::SageMaker
4100
4138
  FeatureGroupSummary.add_member(:offline_store_status, Shapes::ShapeRef.new(shape: OfflineStoreStatus, location_name: "OfflineStoreStatus"))
4101
4139
  FeatureGroupSummary.struct_class = Types::FeatureGroupSummary
4102
4140
 
4141
+ FeatureMetadata.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, location_name: "FeatureGroupArn"))
4142
+ FeatureMetadata.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, location_name: "FeatureGroupName"))
4143
+ FeatureMetadata.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, location_name: "FeatureName"))
4144
+ FeatureMetadata.add_member(:feature_type, Shapes::ShapeRef.new(shape: FeatureType, location_name: "FeatureType"))
4145
+ FeatureMetadata.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTime"))
4146
+ FeatureMetadata.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTime"))
4147
+ FeatureMetadata.add_member(:description, Shapes::ShapeRef.new(shape: FeatureDescription, location_name: "Description"))
4148
+ FeatureMetadata.add_member(:parameters, Shapes::ShapeRef.new(shape: FeatureParameters, location_name: "Parameters"))
4149
+ FeatureMetadata.struct_class = Types::FeatureMetadata
4150
+
4151
+ FeatureParameter.add_member(:key, Shapes::ShapeRef.new(shape: FeatureParameterKey, location_name: "Key"))
4152
+ FeatureParameter.add_member(:value, Shapes::ShapeRef.new(shape: FeatureParameterValue, location_name: "Value"))
4153
+ FeatureParameter.struct_class = Types::FeatureParameter
4154
+
4155
+ FeatureParameterAdditions.member = Shapes::ShapeRef.new(shape: FeatureParameter)
4156
+
4157
+ FeatureParameterRemovals.member = Shapes::ShapeRef.new(shape: FeatureParameterKey)
4158
+
4159
+ FeatureParameters.member = Shapes::ShapeRef.new(shape: FeatureParameter)
4160
+
4103
4161
  FileSource.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location_name: "ContentType"))
4104
4162
  FileSource.add_member(:content_digest, Shapes::ShapeRef.new(shape: ContentDigest, location_name: "ContentDigest"))
4105
4163
  FileSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
@@ -4517,6 +4575,10 @@ module Aws::SageMaker
4517
4575
  LambdaStepMetadata.add_member(:output_parameters, Shapes::ShapeRef.new(shape: OutputParameterList, location_name: "OutputParameters"))
4518
4576
  LambdaStepMetadata.struct_class = Types::LambdaStepMetadata
4519
4577
 
4578
+ LastUpdateStatus.add_member(:status, Shapes::ShapeRef.new(shape: LastUpdateStatusValue, required: true, location_name: "Status"))
4579
+ LastUpdateStatus.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
4580
+ LastUpdateStatus.struct_class = Types::LastUpdateStatus
4581
+
4520
4582
  LifecycleConfigArns.member = Shapes::ShapeRef.new(shape: StudioLifecycleConfigArn)
4521
4583
 
4522
4584
  LineageEntityParameters.key = Shapes::ShapeRef.new(shape: StringParameterValue)
@@ -6392,6 +6454,7 @@ module Aws::SageMaker
6392
6454
  SearchRecord.add_member(:pipeline_execution, Shapes::ShapeRef.new(shape: PipelineExecution, location_name: "PipelineExecution"))
6393
6455
  SearchRecord.add_member(:feature_group, Shapes::ShapeRef.new(shape: FeatureGroup, location_name: "FeatureGroup"))
6394
6456
  SearchRecord.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "Project"))
6457
+ SearchRecord.add_member(:feature_metadata, Shapes::ShapeRef.new(shape: FeatureMetadata, location_name: "FeatureMetadata"))
6395
6458
  SearchRecord.struct_class = Types::SearchRecord
6396
6459
 
6397
6460
  SearchRequest.add_member(:resource, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "Resource"))
@@ -6965,6 +7028,20 @@ module Aws::SageMaker
6965
7028
  UpdateExperimentResponse.add_member(:experiment_arn, Shapes::ShapeRef.new(shape: ExperimentArn, location_name: "ExperimentArn"))
6966
7029
  UpdateExperimentResponse.struct_class = Types::UpdateExperimentResponse
6967
7030
 
7031
+ UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
7032
+ UpdateFeatureGroupRequest.add_member(:feature_additions, Shapes::ShapeRef.new(shape: FeatureAdditions, location_name: "FeatureAdditions"))
7033
+ UpdateFeatureGroupRequest.struct_class = Types::UpdateFeatureGroupRequest
7034
+
7035
+ UpdateFeatureGroupResponse.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, required: true, location_name: "FeatureGroupArn"))
7036
+ UpdateFeatureGroupResponse.struct_class = Types::UpdateFeatureGroupResponse
7037
+
7038
+ UpdateFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupName, required: true, location_name: "FeatureGroupName"))
7039
+ UpdateFeatureMetadataRequest.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
7040
+ UpdateFeatureMetadataRequest.add_member(:description, Shapes::ShapeRef.new(shape: FeatureDescription, location_name: "Description"))
7041
+ UpdateFeatureMetadataRequest.add_member(:parameter_additions, Shapes::ShapeRef.new(shape: FeatureParameterAdditions, location_name: "ParameterAdditions"))
7042
+ UpdateFeatureMetadataRequest.add_member(:parameter_removals, Shapes::ShapeRef.new(shape: FeatureParameterRemovals, location_name: "ParameterRemovals"))
7043
+ UpdateFeatureMetadataRequest.struct_class = Types::UpdateFeatureMetadataRequest
7044
+
6968
7045
  UpdateImageRequest.add_member(:delete_properties, Shapes::ShapeRef.new(shape: ImageDeletePropertyList, location_name: "DeleteProperties"))
6969
7046
  UpdateImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: ImageDescription, location_name: "Description"))
6970
7047
  UpdateImageRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ImageDisplayName, location_name: "DisplayName"))
@@ -8192,6 +8269,15 @@ module Aws::SageMaker
8192
8269
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
8193
8270
  end)
8194
8271
 
8272
+ api.add_operation(:describe_feature_metadata, Seahorse::Model::Operation.new.tap do |o|
8273
+ o.name = "DescribeFeatureMetadata"
8274
+ o.http_method = "POST"
8275
+ o.http_request_uri = "/"
8276
+ o.input = Shapes::ShapeRef.new(shape: DescribeFeatureMetadataRequest)
8277
+ o.output = Shapes::ShapeRef.new(shape: DescribeFeatureMetadataResponse)
8278
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
8279
+ end)
8280
+
8195
8281
  api.add_operation(:describe_flow_definition, Seahorse::Model::Operation.new.tap do |o|
8196
8282
  o.name = "DescribeFlowDefinition"
8197
8283
  o.http_method = "POST"
@@ -9663,6 +9749,24 @@ module Aws::SageMaker
9663
9749
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
9664
9750
  end)
9665
9751
 
9752
+ api.add_operation(:update_feature_group, Seahorse::Model::Operation.new.tap do |o|
9753
+ o.name = "UpdateFeatureGroup"
9754
+ o.http_method = "POST"
9755
+ o.http_request_uri = "/"
9756
+ o.input = Shapes::ShapeRef.new(shape: UpdateFeatureGroupRequest)
9757
+ o.output = Shapes::ShapeRef.new(shape: UpdateFeatureGroupResponse)
9758
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
9759
+ end)
9760
+
9761
+ api.add_operation(:update_feature_metadata, Seahorse::Model::Operation.new.tap do |o|
9762
+ o.name = "UpdateFeatureMetadata"
9763
+ o.http_method = "POST"
9764
+ o.http_request_uri = "/"
9765
+ o.input = Shapes::ShapeRef.new(shape: UpdateFeatureMetadataRequest)
9766
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
9767
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
9768
+ end)
9769
+
9666
9770
  api.add_operation(:update_image, Seahorse::Model::Operation.new.tap do |o|
9667
9771
  o.name = "UpdateImage"
9668
9772
  o.http_method = "POST"
@@ -2787,9 +2787,11 @@ module Aws::SageMaker
2787
2787
  # @return [Types::MetricsSource]
2788
2788
  #
2789
2789
  # @!attribute [rw] pre_training_report
2790
+ # The pre-training bias report for a model.
2790
2791
  # @return [Types::MetricsSource]
2791
2792
  #
2792
2793
  # @!attribute [rw] post_training_report
2794
+ # The post-training bias report for a model.
2793
2795
  # @return [Types::MetricsSource]
2794
2796
  #
2795
2797
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Bias AWS API Documentation
@@ -13593,6 +13595,10 @@ module Aws::SageMaker
13593
13595
  # A timestamp indicating when SageMaker created the `FeatureGroup`.
13594
13596
  # @return [Time]
13595
13597
  #
13598
+ # @!attribute [rw] last_modified_time
13599
+ # A timestamp indicating when the feature group was last updated.
13600
+ # @return [Time]
13601
+ #
13596
13602
  # @!attribute [rw] online_store_config
13597
13603
  # The configuration for the `OnlineStore`.
13598
13604
  # @return [Types::OnlineStoreConfig]
@@ -13619,6 +13625,11 @@ module Aws::SageMaker
13619
13625
  # `Blocked`
13620
13626
  # @return [Types::OfflineStoreStatus]
13621
13627
  #
13628
+ # @!attribute [rw] last_update_status
13629
+ # A value indicating whether the update made to the feature group was
13630
+ # successful.
13631
+ # @return [Types::LastUpdateStatus]
13632
+ #
13622
13633
  # @!attribute [rw] failure_reason
13623
13634
  # The reason that the `FeatureGroup` failed to be replicated in the
13624
13635
  # `OfflineStore`. This is failure can occur because:
@@ -13637,6 +13648,10 @@ module Aws::SageMaker
13637
13648
  # (`FeatureDefinitions`).
13638
13649
  # @return [String]
13639
13650
  #
13651
+ # @!attribute [rw] online_store_total_size_bytes
13652
+ # The size of the `OnlineStore` in bytes.
13653
+ # @return [Integer]
13654
+ #
13640
13655
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureGroupResponse AWS API Documentation
13641
13656
  #
13642
13657
  class DescribeFeatureGroupResponse < Struct.new(
@@ -13646,14 +13661,92 @@ module Aws::SageMaker
13646
13661
  :event_time_feature_name,
13647
13662
  :feature_definitions,
13648
13663
  :creation_time,
13664
+ :last_modified_time,
13649
13665
  :online_store_config,
13650
13666
  :offline_store_config,
13651
13667
  :role_arn,
13652
13668
  :feature_group_status,
13653
13669
  :offline_store_status,
13670
+ :last_update_status,
13654
13671
  :failure_reason,
13655
13672
  :description,
13656
- :next_token)
13673
+ :next_token,
13674
+ :online_store_total_size_bytes)
13675
+ SENSITIVE = []
13676
+ include Aws::Structure
13677
+ end
13678
+
13679
+ # @note When making an API call, you may pass DescribeFeatureMetadataRequest
13680
+ # data as a hash:
13681
+ #
13682
+ # {
13683
+ # feature_group_name: "FeatureGroupName", # required
13684
+ # feature_name: "FeatureName", # required
13685
+ # }
13686
+ #
13687
+ # @!attribute [rw] feature_group_name
13688
+ # The name of the feature group containing the feature.
13689
+ # @return [String]
13690
+ #
13691
+ # @!attribute [rw] feature_name
13692
+ # The name of the feature.
13693
+ # @return [String]
13694
+ #
13695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureMetadataRequest AWS API Documentation
13696
+ #
13697
+ class DescribeFeatureMetadataRequest < Struct.new(
13698
+ :feature_group_name,
13699
+ :feature_name)
13700
+ SENSITIVE = []
13701
+ include Aws::Structure
13702
+ end
13703
+
13704
+ # @!attribute [rw] feature_group_arn
13705
+ # The Amazon Resource Number (ARN) of the feature group that contains
13706
+ # the feature.
13707
+ # @return [String]
13708
+ #
13709
+ # @!attribute [rw] feature_group_name
13710
+ # The name of the feature group that you've specified.
13711
+ # @return [String]
13712
+ #
13713
+ # @!attribute [rw] feature_name
13714
+ # The name of the feature that you've specified.
13715
+ # @return [String]
13716
+ #
13717
+ # @!attribute [rw] feature_type
13718
+ # The data type of the feature.
13719
+ # @return [String]
13720
+ #
13721
+ # @!attribute [rw] creation_time
13722
+ # A timestamp indicating when the feature was created.
13723
+ # @return [Time]
13724
+ #
13725
+ # @!attribute [rw] last_modified_time
13726
+ # A timestamp indicating when the metadata for the feature group was
13727
+ # modified. For example, if you add a parameter describing the
13728
+ # feature, the timestamp changes to reflect the last time you
13729
+ # @return [Time]
13730
+ #
13731
+ # @!attribute [rw] description
13732
+ # The description you added to describe the feature.
13733
+ # @return [String]
13734
+ #
13735
+ # @!attribute [rw] parameters
13736
+ # The key-value pairs that you added to describe the feature.
13737
+ # @return [Array<Types::FeatureParameter>]
13738
+ #
13739
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureMetadataResponse AWS API Documentation
13740
+ #
13741
+ class DescribeFeatureMetadataResponse < Struct.new(
13742
+ :feature_group_arn,
13743
+ :feature_group_name,
13744
+ :feature_name,
13745
+ :feature_type,
13746
+ :creation_time,
13747
+ :last_modified_time,
13748
+ :description,
13749
+ :parameters)
13657
13750
  SENSITIVE = []
13658
13751
  include Aws::Structure
13659
13752
  end
@@ -17232,9 +17325,11 @@ module Aws::SageMaker
17232
17325
  # @return [Types::FileSource]
17233
17326
  #
17234
17327
  # @!attribute [rw] pre_training_constraints
17328
+ # The pre-training constraints.
17235
17329
  # @return [Types::MetricsSource]
17236
17330
  #
17237
17331
  # @!attribute [rw] post_training_constraints
17332
+ # The post-training constraints.
17238
17333
  # @return [Types::MetricsSource]
17239
17334
  #
17240
17335
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckBias AWS API Documentation
@@ -17267,6 +17362,7 @@ module Aws::SageMaker
17267
17362
  # }
17268
17363
  #
17269
17364
  # @!attribute [rw] constraints
17365
+ # The drift check explainability constraints.
17270
17366
  # @return [Types::MetricsSource]
17271
17367
  #
17272
17368
  # @!attribute [rw] config_file
@@ -17302,9 +17398,11 @@ module Aws::SageMaker
17302
17398
  # }
17303
17399
  #
17304
17400
  # @!attribute [rw] statistics
17401
+ # The drift check model data quality statistics.
17305
17402
  # @return [Types::MetricsSource]
17306
17403
  #
17307
17404
  # @!attribute [rw] constraints
17405
+ # The drift check model data quality constraints.
17308
17406
  # @return [Types::MetricsSource]
17309
17407
  #
17310
17408
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelDataQuality AWS API Documentation
@@ -17336,9 +17434,11 @@ module Aws::SageMaker
17336
17434
  # }
17337
17435
  #
17338
17436
  # @!attribute [rw] statistics
17437
+ # The drift check model quality statistics.
17339
17438
  # @return [Types::MetricsSource]
17340
17439
  #
17341
17440
  # @!attribute [rw] constraints
17441
+ # The drift check model quality constraints.
17342
17442
  # @return [Types::MetricsSource]
17343
17443
  #
17344
17444
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelQuality AWS API Documentation
@@ -18343,6 +18443,10 @@ module Aws::SageMaker
18343
18443
  # The time a `FeatureGroup` was created.
18344
18444
  # @return [Time]
18345
18445
  #
18446
+ # @!attribute [rw] last_modified_time
18447
+ # A timestamp indicating the last time you updated the feature group.
18448
+ # @return [Time]
18449
+ #
18346
18450
  # @!attribute [rw] online_store_config
18347
18451
  # Use this to specify the Amazon Web Services Key Management Service
18348
18452
  # (KMS) Key ID, or `KMSKeyId`, for at rest data encryption. You can
@@ -18374,6 +18478,11 @@ module Aws::SageMaker
18374
18478
  # The status of `OfflineStore`.
18375
18479
  # @return [Types::OfflineStoreStatus]
18376
18480
  #
18481
+ # @!attribute [rw] last_update_status
18482
+ # A value that indicates whether the feature group was updated
18483
+ # successfully.
18484
+ # @return [Types::LastUpdateStatus]
18485
+ #
18377
18486
  # @!attribute [rw] failure_reason
18378
18487
  # The reason that the `FeatureGroup` failed to be replicated in the
18379
18488
  # `OfflineStore`. This is failure may be due to a failure to create a
@@ -18398,11 +18507,13 @@ module Aws::SageMaker
18398
18507
  :event_time_feature_name,
18399
18508
  :feature_definitions,
18400
18509
  :creation_time,
18510
+ :last_modified_time,
18401
18511
  :online_store_config,
18402
18512
  :offline_store_config,
18403
18513
  :role_arn,
18404
18514
  :feature_group_status,
18405
18515
  :offline_store_status,
18516
+ :last_update_status,
18406
18517
  :failure_reason,
18407
18518
  :description,
18408
18519
  :tags)
@@ -18450,6 +18561,85 @@ module Aws::SageMaker
18450
18561
  include Aws::Structure
18451
18562
  end
18452
18563
 
18564
+ # The metadata for a feature. It can either be metadata that you
18565
+ # specify, or metadata that is updated automatically.
18566
+ #
18567
+ # @!attribute [rw] feature_group_arn
18568
+ # The Amazon Resource Number (ARN) of the feature group.
18569
+ # @return [String]
18570
+ #
18571
+ # @!attribute [rw] feature_group_name
18572
+ # The name of the feature group containing the feature.
18573
+ # @return [String]
18574
+ #
18575
+ # @!attribute [rw] feature_name
18576
+ # The name of feature.
18577
+ # @return [String]
18578
+ #
18579
+ # @!attribute [rw] feature_type
18580
+ # The data type of the feature.
18581
+ # @return [String]
18582
+ #
18583
+ # @!attribute [rw] creation_time
18584
+ # A timestamp indicating when the feature was created.
18585
+ # @return [Time]
18586
+ #
18587
+ # @!attribute [rw] last_modified_time
18588
+ # A timestamp indicating when the feature was last modified.
18589
+ # @return [Time]
18590
+ #
18591
+ # @!attribute [rw] description
18592
+ # An optional description that you specify to better describe the
18593
+ # feature.
18594
+ # @return [String]
18595
+ #
18596
+ # @!attribute [rw] parameters
18597
+ # Optional key-value pairs that you specify to better describe the
18598
+ # feature.
18599
+ # @return [Array<Types::FeatureParameter>]
18600
+ #
18601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FeatureMetadata AWS API Documentation
18602
+ #
18603
+ class FeatureMetadata < Struct.new(
18604
+ :feature_group_arn,
18605
+ :feature_group_name,
18606
+ :feature_name,
18607
+ :feature_type,
18608
+ :creation_time,
18609
+ :last_modified_time,
18610
+ :description,
18611
+ :parameters)
18612
+ SENSITIVE = []
18613
+ include Aws::Structure
18614
+ end
18615
+
18616
+ # A key-value pair that you specify to describe the feature.
18617
+ #
18618
+ # @note When making an API call, you may pass FeatureParameter
18619
+ # data as a hash:
18620
+ #
18621
+ # {
18622
+ # key: "FeatureParameterKey",
18623
+ # value: "FeatureParameterValue",
18624
+ # }
18625
+ #
18626
+ # @!attribute [rw] key
18627
+ # A key that must contain a value to describe the feature.
18628
+ # @return [String]
18629
+ #
18630
+ # @!attribute [rw] value
18631
+ # The value that belongs to a key.
18632
+ # @return [String]
18633
+ #
18634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FeatureParameter AWS API Documentation
18635
+ #
18636
+ class FeatureParameter < Struct.new(
18637
+ :key,
18638
+ :value)
18639
+ SENSITIVE = []
18640
+ include Aws::Structure
18641
+ end
18642
+
18453
18643
  # Contains details regarding the file source.
18454
18644
  #
18455
18645
  # @note When making an API call, you may pass FileSource
@@ -19008,7 +19198,7 @@ module Aws::SageMaker
19008
19198
  # data as a hash:
19009
19199
  #
19010
19200
  # {
19011
- # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
19201
+ # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata
19012
19202
  # suggestion_query: {
19013
19203
  # property_name_query: {
19014
19204
  # property_name_hint: "PropertyNameHint", # required
@@ -22587,6 +22777,26 @@ module Aws::SageMaker
22587
22777
  include Aws::Structure
22588
22778
  end
22589
22779
 
22780
+ # A value that indicates whether the update was successful.
22781
+ #
22782
+ # @!attribute [rw] status
22783
+ # A value that indicates whether the update was made successful.
22784
+ # @return [String]
22785
+ #
22786
+ # @!attribute [rw] failure_reason
22787
+ # If the update wasn't successful, indicates the reason why it
22788
+ # failed.
22789
+ # @return [String]
22790
+ #
22791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LastUpdateStatus AWS API Documentation
22792
+ #
22793
+ class LastUpdateStatus < Struct.new(
22794
+ :status,
22795
+ :failure_reason)
22796
+ SENSITIVE = []
22797
+ include Aws::Structure
22798
+ end
22799
+
22590
22800
  # Lists a summary of the properties of a lineage group. A lineage group
22591
22801
  # provides a group of shareable lineage entity resources.
22592
22802
  #
@@ -27674,6 +27884,8 @@ module Aws::SageMaker
27674
27884
  include Aws::Structure
27675
27885
  end
27676
27886
 
27887
+ # Details about the metrics source.
27888
+ #
27677
27889
  # @note When making an API call, you may pass MetricsSource
27678
27890
  # data as a hash:
27679
27891
  #
@@ -27684,12 +27896,15 @@ module Aws::SageMaker
27684
27896
  # }
27685
27897
  #
27686
27898
  # @!attribute [rw] content_type
27899
+ # The metric source content type.
27687
27900
  # @return [String]
27688
27901
  #
27689
27902
  # @!attribute [rw] content_digest
27903
+ # The hash key used for the metrics source.
27690
27904
  # @return [String]
27691
27905
  #
27692
27906
  # @!attribute [rw] s3_uri
27907
+ # The S3 URI for the metrics source.
27693
27908
  # @return [String]
27694
27909
  #
27695
27910
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MetricsSource AWS API Documentation
@@ -35232,6 +35447,10 @@ module Aws::SageMaker
35232
35447
  # The properties of a project.
35233
35448
  # @return [Types::Project]
35234
35449
  #
35450
+ # @!attribute [rw] feature_metadata
35451
+ # The feature metadata used to search through the features.
35452
+ # @return [Types::FeatureMetadata]
35453
+ #
35235
35454
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRecord AWS API Documentation
35236
35455
  #
35237
35456
  class SearchRecord < Struct.new(
@@ -35245,7 +35464,8 @@ module Aws::SageMaker
35245
35464
  :pipeline,
35246
35465
  :pipeline_execution,
35247
35466
  :feature_group,
35248
- :project)
35467
+ :project,
35468
+ :feature_metadata)
35249
35469
  SENSITIVE = []
35250
35470
  include Aws::Structure
35251
35471
  end
@@ -35254,7 +35474,7 @@ module Aws::SageMaker
35254
35474
  # data as a hash:
35255
35475
  #
35256
35476
  # {
35257
- # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
35477
+ # resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata
35258
35478
  # search_expression: {
35259
35479
  # filters: [
35260
35480
  # {
@@ -39469,6 +39689,100 @@ module Aws::SageMaker
39469
39689
  include Aws::Structure
39470
39690
  end
39471
39691
 
39692
+ # @note When making an API call, you may pass UpdateFeatureGroupRequest
39693
+ # data as a hash:
39694
+ #
39695
+ # {
39696
+ # feature_group_name: "FeatureGroupName", # required
39697
+ # feature_additions: [
39698
+ # {
39699
+ # feature_name: "FeatureName",
39700
+ # feature_type: "Integral", # accepts Integral, Fractional, String
39701
+ # },
39702
+ # ],
39703
+ # }
39704
+ #
39705
+ # @!attribute [rw] feature_group_name
39706
+ # The name of the feature group that you're updating.
39707
+ # @return [String]
39708
+ #
39709
+ # @!attribute [rw] feature_additions
39710
+ # A list of the features that you're adding to the feature group.
39711
+ # @return [Array<Types::FeatureDefinition>]
39712
+ #
39713
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroupRequest AWS API Documentation
39714
+ #
39715
+ class UpdateFeatureGroupRequest < Struct.new(
39716
+ :feature_group_name,
39717
+ :feature_additions)
39718
+ SENSITIVE = []
39719
+ include Aws::Structure
39720
+ end
39721
+
39722
+ # @!attribute [rw] feature_group_arn
39723
+ # The Amazon Resource Number (ARN) of the feature group that you're
39724
+ # updating.
39725
+ # @return [String]
39726
+ #
39727
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroupResponse AWS API Documentation
39728
+ #
39729
+ class UpdateFeatureGroupResponse < Struct.new(
39730
+ :feature_group_arn)
39731
+ SENSITIVE = []
39732
+ include Aws::Structure
39733
+ end
39734
+
39735
+ # @note When making an API call, you may pass UpdateFeatureMetadataRequest
39736
+ # data as a hash:
39737
+ #
39738
+ # {
39739
+ # feature_group_name: "FeatureGroupName", # required
39740
+ # feature_name: "FeatureName", # required
39741
+ # description: "FeatureDescription",
39742
+ # parameter_additions: [
39743
+ # {
39744
+ # key: "FeatureParameterKey",
39745
+ # value: "FeatureParameterValue",
39746
+ # },
39747
+ # ],
39748
+ # parameter_removals: ["FeatureParameterKey"],
39749
+ # }
39750
+ #
39751
+ # @!attribute [rw] feature_group_name
39752
+ # The name of the feature group containing the feature that you're
39753
+ # updating.
39754
+ # @return [String]
39755
+ #
39756
+ # @!attribute [rw] feature_name
39757
+ # The name of the feature that you're updating.
39758
+ # @return [String]
39759
+ #
39760
+ # @!attribute [rw] description
39761
+ # A description that you can write to better describe the feature.
39762
+ # @return [String]
39763
+ #
39764
+ # @!attribute [rw] parameter_additions
39765
+ # A list of key-value pairs that you can add to better describe the
39766
+ # feature.
39767
+ # @return [Array<Types::FeatureParameter>]
39768
+ #
39769
+ # @!attribute [rw] parameter_removals
39770
+ # A list of parameter keys that you can specify to remove parameters
39771
+ # that describe your feature.
39772
+ # @return [Array<String>]
39773
+ #
39774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureMetadataRequest AWS API Documentation
39775
+ #
39776
+ class UpdateFeatureMetadataRequest < Struct.new(
39777
+ :feature_group_name,
39778
+ :feature_name,
39779
+ :description,
39780
+ :parameter_additions,
39781
+ :parameter_removals)
39782
+ SENSITIVE = []
39783
+ include Aws::Structure
39784
+ end
39785
+
39472
39786
  # @note When making an API call, you may pass UpdateImageRequest
39473
39787
  # data as a hash:
39474
39788
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.128.0'
52
+ GEM_VERSION = '1.129.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.128.0
4
+ version: 1.129.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: 2022-06-23 00:00:00.000000000 Z
11
+ date: 2022-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core