aws-sdk-sagemaker 1.126.0 → 1.129.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +222 -6
- data/lib/aws-sdk-sagemaker/client_api.rb +136 -0
- data/lib/aws-sdk-sagemaker/types.rb +485 -20
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -2198,10 +2198,6 @@ module Aws::SageMaker
|
|
2198
2198
|
#
|
2199
2199
|
# @!attribute [rw] s3_data_source
|
2200
2200
|
# The Amazon S3 location of the input data.
|
2201
|
-
#
|
2202
|
-
# <note markdown="1"> The input data must be in CSV format and contain at least 500 rows.
|
2203
|
-
#
|
2204
|
-
# </note>
|
2205
2201
|
# @return [Types::AutoMLS3DataSource]
|
2206
2202
|
#
|
2207
2203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLDataSource AWS API Documentation
|
@@ -2212,9 +2208,10 @@ module Aws::SageMaker
|
|
2212
2208
|
include Aws::Structure
|
2213
2209
|
end
|
2214
2210
|
|
2215
|
-
# This structure specifies how to split the data into train and
|
2216
|
-
# datasets. The validation and training datasets must contain
|
2217
|
-
# headers. The validation dataset must be less than 2 GB in
|
2211
|
+
# This structure specifies how to split the data into train and
|
2212
|
+
# validation datasets. The validation and training datasets must contain
|
2213
|
+
# the same headers. The validation dataset must be less than 2 GB in
|
2214
|
+
# size.
|
2218
2215
|
#
|
2219
2216
|
# @note When making an API call, you may pass AutoMLDataSplitConfig
|
2220
2217
|
# data as a hash:
|
@@ -2563,6 +2560,22 @@ module Aws::SageMaker
|
|
2563
2560
|
#
|
2564
2561
|
# @!attribute [rw] s3_data_type
|
2565
2562
|
# The data type.
|
2563
|
+
#
|
2564
|
+
# A ManifestFile should have the format shown below:
|
2565
|
+
#
|
2566
|
+
# `[ \{"prefix":
|
2567
|
+
# "s3://DOC-EXAMPLE-BUCKET/DOC-EXAMPLE-FOLDER/DOC-EXAMPLE-PREFIX/"\},
|
2568
|
+
# `
|
2569
|
+
#
|
2570
|
+
# `"DOC-EXAMPLE-RELATIVE-PATH/DOC-EXAMPLE-FOLDER/DATA-1",`
|
2571
|
+
#
|
2572
|
+
# `"DOC-EXAMPLE-RELATIVE-PATH/DOC-EXAMPLE-FOLDER/DATA-2",`
|
2573
|
+
#
|
2574
|
+
# `... "DOC-EXAMPLE-RELATIVE-PATH/DOC-EXAMPLE-FOLDER/DATA-N" ]`
|
2575
|
+
#
|
2576
|
+
# An S3Prefix should have the following format:
|
2577
|
+
#
|
2578
|
+
# `s3://DOC-EXAMPLE-BUCKET/DOC-EXAMPLE-FOLDER-OR-FILE`
|
2566
2579
|
# @return [String]
|
2567
2580
|
#
|
2568
2581
|
# @!attribute [rw] s3_uri
|
@@ -2774,9 +2787,11 @@ module Aws::SageMaker
|
|
2774
2787
|
# @return [Types::MetricsSource]
|
2775
2788
|
#
|
2776
2789
|
# @!attribute [rw] pre_training_report
|
2790
|
+
# The pre-training bias report for a model.
|
2777
2791
|
# @return [Types::MetricsSource]
|
2778
2792
|
#
|
2779
2793
|
# @!attribute [rw] post_training_report
|
2794
|
+
# The post-training bias report for a model.
|
2780
2795
|
# @return [Types::MetricsSource]
|
2781
2796
|
#
|
2782
2797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Bias AWS API Documentation
|
@@ -4382,6 +4397,15 @@ module Aws::SageMaker
|
|
4382
4397
|
# @!attribute [rw] resource_spec
|
4383
4398
|
# The instance type and the Amazon Resource Name (ARN) of the
|
4384
4399
|
# SageMaker image created on the instance.
|
4400
|
+
#
|
4401
|
+
# <note markdown="1"> The value of `InstanceType` passed as part of the `ResourceSpec` in
|
4402
|
+
# the `CreateApp` call overrides the value passed as part of the
|
4403
|
+
# `ResourceSpec` configured for the user profile or the domain. If
|
4404
|
+
# `InstanceType` is not specified in any of those three `ResourceSpec`
|
4405
|
+
# values for a `KernelGateway` app, the `CreateApp` call fails with a
|
4406
|
+
# request validation error.
|
4407
|
+
#
|
4408
|
+
# </note>
|
4385
4409
|
# @return [Types::ResourceSpec]
|
4386
4410
|
#
|
4387
4411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppRequest AWS API Documentation
|
@@ -6731,6 +6755,10 @@ module Aws::SageMaker
|
|
6731
6755
|
# initial_active_learning_model_arn: "ModelArn",
|
6732
6756
|
# labeling_job_resource_config: {
|
6733
6757
|
# volume_kms_key_id: "KmsKeyId",
|
6758
|
+
# vpc_config: {
|
6759
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
6760
|
+
# subnets: ["SubnetId"], # required
|
6761
|
+
# },
|
6734
6762
|
# },
|
6735
6763
|
# },
|
6736
6764
|
# human_task_config: { # required
|
@@ -9965,6 +9993,11 @@ module Aws::SageMaker
|
|
9965
9993
|
# value: "TagValue", # required
|
9966
9994
|
# },
|
9967
9995
|
# ],
|
9996
|
+
# workforce_vpc_config: {
|
9997
|
+
# vpc_id: "WorkforceVpcId",
|
9998
|
+
# security_group_ids: ["WorkforceSecurityGroupId"],
|
9999
|
+
# subnets: ["WorkforceSubnetId"],
|
10000
|
+
# },
|
9968
10001
|
# }
|
9969
10002
|
#
|
9970
10003
|
# @!attribute [rw] cognito_config
|
@@ -10008,6 +10041,10 @@ module Aws::SageMaker
|
|
10008
10041
|
# and a value, both of which you define.
|
10009
10042
|
# @return [Array<Types::Tag>]
|
10010
10043
|
#
|
10044
|
+
# @!attribute [rw] workforce_vpc_config
|
10045
|
+
# Use this parameter to configure a workforce using VPC.
|
10046
|
+
# @return [Types::WorkforceVpcConfigRequest]
|
10047
|
+
#
|
10011
10048
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateWorkforceRequest AWS API Documentation
|
10012
10049
|
#
|
10013
10050
|
class CreateWorkforceRequest < Struct.new(
|
@@ -10015,7 +10052,8 @@ module Aws::SageMaker
|
|
10015
10052
|
:oidc_config,
|
10016
10053
|
:source_ip_config,
|
10017
10054
|
:workforce_name,
|
10018
|
-
:tags
|
10055
|
+
:tags,
|
10056
|
+
:workforce_vpc_config)
|
10019
10057
|
SENSITIVE = []
|
10020
10058
|
include Aws::Structure
|
10021
10059
|
end
|
@@ -13557,6 +13595,10 @@ module Aws::SageMaker
|
|
13557
13595
|
# A timestamp indicating when SageMaker created the `FeatureGroup`.
|
13558
13596
|
# @return [Time]
|
13559
13597
|
#
|
13598
|
+
# @!attribute [rw] last_modified_time
|
13599
|
+
# A timestamp indicating when the feature group was last updated.
|
13600
|
+
# @return [Time]
|
13601
|
+
#
|
13560
13602
|
# @!attribute [rw] online_store_config
|
13561
13603
|
# The configuration for the `OnlineStore`.
|
13562
13604
|
# @return [Types::OnlineStoreConfig]
|
@@ -13583,6 +13625,11 @@ module Aws::SageMaker
|
|
13583
13625
|
# `Blocked`
|
13584
13626
|
# @return [Types::OfflineStoreStatus]
|
13585
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
|
+
#
|
13586
13633
|
# @!attribute [rw] failure_reason
|
13587
13634
|
# The reason that the `FeatureGroup` failed to be replicated in the
|
13588
13635
|
# `OfflineStore`. This is failure can occur because:
|
@@ -13601,6 +13648,10 @@ module Aws::SageMaker
|
|
13601
13648
|
# (`FeatureDefinitions`).
|
13602
13649
|
# @return [String]
|
13603
13650
|
#
|
13651
|
+
# @!attribute [rw] online_store_total_size_bytes
|
13652
|
+
# The size of the `OnlineStore` in bytes.
|
13653
|
+
# @return [Integer]
|
13654
|
+
#
|
13604
13655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeFeatureGroupResponse AWS API Documentation
|
13605
13656
|
#
|
13606
13657
|
class DescribeFeatureGroupResponse < Struct.new(
|
@@ -13610,14 +13661,92 @@ module Aws::SageMaker
|
|
13610
13661
|
:event_time_feature_name,
|
13611
13662
|
:feature_definitions,
|
13612
13663
|
:creation_time,
|
13664
|
+
:last_modified_time,
|
13613
13665
|
:online_store_config,
|
13614
13666
|
:offline_store_config,
|
13615
13667
|
:role_arn,
|
13616
13668
|
:feature_group_status,
|
13617
13669
|
:offline_store_status,
|
13670
|
+
:last_update_status,
|
13618
13671
|
:failure_reason,
|
13619
13672
|
:description,
|
13620
|
-
: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)
|
13621
13750
|
SENSITIVE = []
|
13622
13751
|
include Aws::Structure
|
13623
13752
|
end
|
@@ -17196,9 +17325,11 @@ module Aws::SageMaker
|
|
17196
17325
|
# @return [Types::FileSource]
|
17197
17326
|
#
|
17198
17327
|
# @!attribute [rw] pre_training_constraints
|
17328
|
+
# The pre-training constraints.
|
17199
17329
|
# @return [Types::MetricsSource]
|
17200
17330
|
#
|
17201
17331
|
# @!attribute [rw] post_training_constraints
|
17332
|
+
# The post-training constraints.
|
17202
17333
|
# @return [Types::MetricsSource]
|
17203
17334
|
#
|
17204
17335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckBias AWS API Documentation
|
@@ -17231,6 +17362,7 @@ module Aws::SageMaker
|
|
17231
17362
|
# }
|
17232
17363
|
#
|
17233
17364
|
# @!attribute [rw] constraints
|
17365
|
+
# The drift check explainability constraints.
|
17234
17366
|
# @return [Types::MetricsSource]
|
17235
17367
|
#
|
17236
17368
|
# @!attribute [rw] config_file
|
@@ -17266,9 +17398,11 @@ module Aws::SageMaker
|
|
17266
17398
|
# }
|
17267
17399
|
#
|
17268
17400
|
# @!attribute [rw] statistics
|
17401
|
+
# The drift check model data quality statistics.
|
17269
17402
|
# @return [Types::MetricsSource]
|
17270
17403
|
#
|
17271
17404
|
# @!attribute [rw] constraints
|
17405
|
+
# The drift check model data quality constraints.
|
17272
17406
|
# @return [Types::MetricsSource]
|
17273
17407
|
#
|
17274
17408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelDataQuality AWS API Documentation
|
@@ -17300,9 +17434,11 @@ module Aws::SageMaker
|
|
17300
17434
|
# }
|
17301
17435
|
#
|
17302
17436
|
# @!attribute [rw] statistics
|
17437
|
+
# The drift check model quality statistics.
|
17303
17438
|
# @return [Types::MetricsSource]
|
17304
17439
|
#
|
17305
17440
|
# @!attribute [rw] constraints
|
17441
|
+
# The drift check model quality constraints.
|
17306
17442
|
# @return [Types::MetricsSource]
|
17307
17443
|
#
|
17308
17444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DriftCheckModelQuality AWS API Documentation
|
@@ -18307,6 +18443,10 @@ module Aws::SageMaker
|
|
18307
18443
|
# The time a `FeatureGroup` was created.
|
18308
18444
|
# @return [Time]
|
18309
18445
|
#
|
18446
|
+
# @!attribute [rw] last_modified_time
|
18447
|
+
# A timestamp indicating the last time you updated the feature group.
|
18448
|
+
# @return [Time]
|
18449
|
+
#
|
18310
18450
|
# @!attribute [rw] online_store_config
|
18311
18451
|
# Use this to specify the Amazon Web Services Key Management Service
|
18312
18452
|
# (KMS) Key ID, or `KMSKeyId`, for at rest data encryption. You can
|
@@ -18338,6 +18478,11 @@ module Aws::SageMaker
|
|
18338
18478
|
# The status of `OfflineStore`.
|
18339
18479
|
# @return [Types::OfflineStoreStatus]
|
18340
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
|
+
#
|
18341
18486
|
# @!attribute [rw] failure_reason
|
18342
18487
|
# The reason that the `FeatureGroup` failed to be replicated in the
|
18343
18488
|
# `OfflineStore`. This is failure may be due to a failure to create a
|
@@ -18362,11 +18507,13 @@ module Aws::SageMaker
|
|
18362
18507
|
:event_time_feature_name,
|
18363
18508
|
:feature_definitions,
|
18364
18509
|
:creation_time,
|
18510
|
+
:last_modified_time,
|
18365
18511
|
:online_store_config,
|
18366
18512
|
:offline_store_config,
|
18367
18513
|
:role_arn,
|
18368
18514
|
:feature_group_status,
|
18369
18515
|
:offline_store_status,
|
18516
|
+
:last_update_status,
|
18370
18517
|
:failure_reason,
|
18371
18518
|
:description,
|
18372
18519
|
:tags)
|
@@ -18414,6 +18561,85 @@ module Aws::SageMaker
|
|
18414
18561
|
include Aws::Structure
|
18415
18562
|
end
|
18416
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
|
+
|
18417
18643
|
# Contains details regarding the file source.
|
18418
18644
|
#
|
18419
18645
|
# @note When making an API call, you may pass FileSource
|
@@ -18972,7 +19198,7 @@ module Aws::SageMaker
|
|
18972
19198
|
# data as a hash:
|
18973
19199
|
#
|
18974
19200
|
# {
|
18975
|
-
# 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
|
18976
19202
|
# suggestion_query: {
|
18977
19203
|
# property_name_query: {
|
18978
19204
|
# property_name_hint: "PropertyNameHint", # required
|
@@ -22002,6 +22228,10 @@ module Aws::SageMaker
|
|
22002
22228
|
# initial_active_learning_model_arn: "ModelArn",
|
22003
22229
|
# labeling_job_resource_config: {
|
22004
22230
|
# volume_kms_key_id: "KmsKeyId",
|
22231
|
+
# vpc_config: {
|
22232
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
22233
|
+
# subnets: ["SubnetId"], # required
|
22234
|
+
# },
|
22005
22235
|
# },
|
22006
22236
|
# }
|
22007
22237
|
#
|
@@ -22293,6 +22523,10 @@ module Aws::SageMaker
|
|
22293
22523
|
#
|
22294
22524
|
# {
|
22295
22525
|
# volume_kms_key_id: "KmsKeyId",
|
22526
|
+
# vpc_config: {
|
22527
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
22528
|
+
# subnets: ["SubnetId"], # required
|
22529
|
+
# },
|
22296
22530
|
# }
|
22297
22531
|
#
|
22298
22532
|
# @!attribute [rw] volume_kms_key_id
|
@@ -22324,10 +22558,24 @@ module Aws::SageMaker
|
|
22324
22558
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-security.html
|
22325
22559
|
# @return [String]
|
22326
22560
|
#
|
22561
|
+
# @!attribute [rw] vpc_config
|
22562
|
+
# Specifies a VPC that your training jobs and hosted models have
|
22563
|
+
# access to. Control access to and from your training and model
|
22564
|
+
# containers by configuring the VPC. For more information, see
|
22565
|
+
# [Protect Endpoints by Using an Amazon Virtual Private Cloud][1] and
|
22566
|
+
# [Protect Training Jobs by Using an Amazon Virtual Private Cloud][2].
|
22567
|
+
#
|
22568
|
+
#
|
22569
|
+
#
|
22570
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html
|
22571
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
22572
|
+
# @return [Types::VpcConfig]
|
22573
|
+
#
|
22327
22574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LabelingJobResourceConfig AWS API Documentation
|
22328
22575
|
#
|
22329
22576
|
class LabelingJobResourceConfig < Struct.new(
|
22330
|
-
:volume_kms_key_id
|
22577
|
+
:volume_kms_key_id,
|
22578
|
+
:vpc_config)
|
22331
22579
|
SENSITIVE = []
|
22332
22580
|
include Aws::Structure
|
22333
22581
|
end
|
@@ -22529,6 +22777,26 @@ module Aws::SageMaker
|
|
22529
22777
|
include Aws::Structure
|
22530
22778
|
end
|
22531
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
|
+
|
22532
22800
|
# Lists a summary of the properties of a lineage group. A lineage group
|
22533
22801
|
# provides a group of shareable lineage entity resources.
|
22534
22802
|
#
|
@@ -27616,6 +27884,8 @@ module Aws::SageMaker
|
|
27616
27884
|
include Aws::Structure
|
27617
27885
|
end
|
27618
27886
|
|
27887
|
+
# Details about the metrics source.
|
27888
|
+
#
|
27619
27889
|
# @note When making an API call, you may pass MetricsSource
|
27620
27890
|
# data as a hash:
|
27621
27891
|
#
|
@@ -27626,12 +27896,15 @@ module Aws::SageMaker
|
|
27626
27896
|
# }
|
27627
27897
|
#
|
27628
27898
|
# @!attribute [rw] content_type
|
27899
|
+
# The metric source content type.
|
27629
27900
|
# @return [String]
|
27630
27901
|
#
|
27631
27902
|
# @!attribute [rw] content_digest
|
27903
|
+
# The hash key used for the metrics source.
|
27632
27904
|
# @return [String]
|
27633
27905
|
#
|
27634
27906
|
# @!attribute [rw] s3_uri
|
27907
|
+
# The S3 URI for the metrics source.
|
27635
27908
|
# @return [String]
|
27636
27909
|
#
|
27637
27910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MetricsSource AWS API Documentation
|
@@ -27688,7 +27961,7 @@ module Aws::SageMaker
|
|
27688
27961
|
#
|
27689
27962
|
#
|
27690
27963
|
#
|
27691
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/json-bias-
|
27964
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/clarify-config-json-monitor-bias-parameters.html
|
27692
27965
|
# @return [String]
|
27693
27966
|
#
|
27694
27967
|
# @!attribute [rw] environment
|
@@ -27961,7 +28234,7 @@ module Aws::SageMaker
|
|
27961
28234
|
#
|
27962
28235
|
#
|
27963
28236
|
#
|
27964
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/json-model-explainability-
|
28237
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/clarify-config-json-monitor-model-explainability-parameters.html
|
27965
28238
|
# @return [String]
|
27966
28239
|
#
|
27967
28240
|
# @!attribute [rw] environment
|
@@ -34668,9 +34941,11 @@ module Aws::SageMaker
|
|
34668
34941
|
# @!attribute [rw] instance_type
|
34669
34942
|
# The instance type that the image version runs on.
|
34670
34943
|
#
|
34671
|
-
# <note markdown="1"> JupyterServer
|
34672
|
-
#
|
34673
|
-
#
|
34944
|
+
# <note markdown="1"> **JupyterServer apps** only support the `system` value.
|
34945
|
+
#
|
34946
|
+
# For **KernelGateway apps**, the `system` value is translated to
|
34947
|
+
# `ml.t3.medium`. KernelGateway apps also support all other values for
|
34948
|
+
# available instance types.
|
34674
34949
|
#
|
34675
34950
|
# </note>
|
34676
34951
|
# @return [String]
|
@@ -35172,6 +35447,10 @@ module Aws::SageMaker
|
|
35172
35447
|
# The properties of a project.
|
35173
35448
|
# @return [Types::Project]
|
35174
35449
|
#
|
35450
|
+
# @!attribute [rw] feature_metadata
|
35451
|
+
# The feature metadata used to search through the features.
|
35452
|
+
# @return [Types::FeatureMetadata]
|
35453
|
+
#
|
35175
35454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRecord AWS API Documentation
|
35176
35455
|
#
|
35177
35456
|
class SearchRecord < Struct.new(
|
@@ -35185,7 +35464,8 @@ module Aws::SageMaker
|
|
35185
35464
|
:pipeline,
|
35186
35465
|
:pipeline_execution,
|
35187
35466
|
:feature_group,
|
35188
|
-
:project
|
35467
|
+
:project,
|
35468
|
+
:feature_metadata)
|
35189
35469
|
SENSITIVE = []
|
35190
35470
|
include Aws::Structure
|
35191
35471
|
end
|
@@ -35194,7 +35474,7 @@ module Aws::SageMaker
|
|
35194
35474
|
# data as a hash:
|
35195
35475
|
#
|
35196
35476
|
# {
|
35197
|
-
# 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
|
35198
35478
|
# search_expression: {
|
35199
35479
|
# filters: [
|
35200
35480
|
# {
|
@@ -39409,6 +39689,100 @@ module Aws::SageMaker
|
|
39409
39689
|
include Aws::Structure
|
39410
39690
|
end
|
39411
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
|
+
|
39412
39786
|
# @note When making an API call, you may pass UpdateImageRequest
|
39413
39787
|
# data as a hash:
|
39414
39788
|
#
|
@@ -40442,6 +40816,11 @@ module Aws::SageMaker
|
|
40442
40816
|
# logout_endpoint: "OidcEndpoint", # required
|
40443
40817
|
# jwks_uri: "OidcEndpoint", # required
|
40444
40818
|
# },
|
40819
|
+
# workforce_vpc_config: {
|
40820
|
+
# vpc_id: "WorkforceVpcId",
|
40821
|
+
# security_group_ids: ["WorkforceSecurityGroupId"],
|
40822
|
+
# subnets: ["WorkforceSubnetId"],
|
40823
|
+
# },
|
40445
40824
|
# }
|
40446
40825
|
#
|
40447
40826
|
# @!attribute [rw] workforce_name
|
@@ -40465,12 +40844,17 @@ module Aws::SageMaker
|
|
40465
40844
|
# configuration for a workforce made using your own IdP.
|
40466
40845
|
# @return [Types::OidcConfig]
|
40467
40846
|
#
|
40847
|
+
# @!attribute [rw] workforce_vpc_config
|
40848
|
+
# Use this parameter to update your VPC configuration for a workforce.
|
40849
|
+
# @return [Types::WorkforceVpcConfigRequest]
|
40850
|
+
#
|
40468
40851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkforceRequest AWS API Documentation
|
40469
40852
|
#
|
40470
40853
|
class UpdateWorkforceRequest < Struct.new(
|
40471
40854
|
:workforce_name,
|
40472
40855
|
:source_ip_config,
|
40473
|
-
:oidc_config
|
40856
|
+
:oidc_config,
|
40857
|
+
:workforce_vpc_config)
|
40474
40858
|
SENSITIVE = []
|
40475
40859
|
include Aws::Structure
|
40476
40860
|
end
|
@@ -40947,6 +41331,18 @@ module Aws::SageMaker
|
|
40947
41331
|
# The date that the workforce is created.
|
40948
41332
|
# @return [Time]
|
40949
41333
|
#
|
41334
|
+
# @!attribute [rw] workforce_vpc_config
|
41335
|
+
# The configuration of a VPC workforce.
|
41336
|
+
# @return [Types::WorkforceVpcConfigResponse]
|
41337
|
+
#
|
41338
|
+
# @!attribute [rw] status
|
41339
|
+
# The status of your workforce.
|
41340
|
+
# @return [String]
|
41341
|
+
#
|
41342
|
+
# @!attribute [rw] failure_reason
|
41343
|
+
# The reason your workforce failed.
|
41344
|
+
# @return [String]
|
41345
|
+
#
|
40950
41346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Workforce AWS API Documentation
|
40951
41347
|
#
|
40952
41348
|
class Workforce < Struct.new(
|
@@ -40957,7 +41353,76 @@ module Aws::SageMaker
|
|
40957
41353
|
:sub_domain,
|
40958
41354
|
:cognito_config,
|
40959
41355
|
:oidc_config,
|
40960
|
-
:create_date
|
41356
|
+
:create_date,
|
41357
|
+
:workforce_vpc_config,
|
41358
|
+
:status,
|
41359
|
+
:failure_reason)
|
41360
|
+
SENSITIVE = []
|
41361
|
+
include Aws::Structure
|
41362
|
+
end
|
41363
|
+
|
41364
|
+
# The VPC object you use to create or update a workforce.
|
41365
|
+
#
|
41366
|
+
# @note When making an API call, you may pass WorkforceVpcConfigRequest
|
41367
|
+
# data as a hash:
|
41368
|
+
#
|
41369
|
+
# {
|
41370
|
+
# vpc_id: "WorkforceVpcId",
|
41371
|
+
# security_group_ids: ["WorkforceSecurityGroupId"],
|
41372
|
+
# subnets: ["WorkforceSubnetId"],
|
41373
|
+
# }
|
41374
|
+
#
|
41375
|
+
# @!attribute [rw] vpc_id
|
41376
|
+
# The ID of the VPC that the workforce uses for communication.
|
41377
|
+
# @return [String]
|
41378
|
+
#
|
41379
|
+
# @!attribute [rw] security_group_ids
|
41380
|
+
# The VPC security group IDs, in the form sg-xxxxxxxx. The security
|
41381
|
+
# groups must be for the same VPC as specified in the subnet.
|
41382
|
+
# @return [Array<String>]
|
41383
|
+
#
|
41384
|
+
# @!attribute [rw] subnets
|
41385
|
+
# The ID of the subnets in the VPC that you want to connect.
|
41386
|
+
# @return [Array<String>]
|
41387
|
+
#
|
41388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/WorkforceVpcConfigRequest AWS API Documentation
|
41389
|
+
#
|
41390
|
+
class WorkforceVpcConfigRequest < Struct.new(
|
41391
|
+
:vpc_id,
|
41392
|
+
:security_group_ids,
|
41393
|
+
:subnets)
|
41394
|
+
SENSITIVE = []
|
41395
|
+
include Aws::Structure
|
41396
|
+
end
|
41397
|
+
|
41398
|
+
# A VpcConfig object that specifies the VPC that you want your workforce
|
41399
|
+
# to connect to.
|
41400
|
+
#
|
41401
|
+
# @!attribute [rw] vpc_id
|
41402
|
+
# The ID of the VPC that the workforce uses for communication.
|
41403
|
+
# @return [String]
|
41404
|
+
#
|
41405
|
+
# @!attribute [rw] security_group_ids
|
41406
|
+
# The VPC security group IDs, in the form sg-xxxxxxxx. The security
|
41407
|
+
# groups must be for the same VPC as specified in the subnet.
|
41408
|
+
# @return [Array<String>]
|
41409
|
+
#
|
41410
|
+
# @!attribute [rw] subnets
|
41411
|
+
# The ID of the subnets in the VPC that you want to connect.
|
41412
|
+
# @return [Array<String>]
|
41413
|
+
#
|
41414
|
+
# @!attribute [rw] vpc_endpoint_id
|
41415
|
+
# The IDs for the VPC service endpoints of your VPC workforce when it
|
41416
|
+
# is created and updated.
|
41417
|
+
# @return [String]
|
41418
|
+
#
|
41419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/WorkforceVpcConfigResponse AWS API Documentation
|
41420
|
+
#
|
41421
|
+
class WorkforceVpcConfigResponse < Struct.new(
|
41422
|
+
:vpc_id,
|
41423
|
+
:security_group_ids,
|
41424
|
+
:subnets,
|
41425
|
+
:vpc_endpoint_id)
|
40961
41426
|
SENSITIVE = []
|
40962
41427
|
include Aws::Structure
|
40963
41428
|
end
|