aws-sdk-sagemaker 1.52.0 → 1.53.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 +5 -5
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +175 -95
- data/lib/aws-sdk-sagemaker/client_api.rb +2 -1
- data/lib/aws-sdk-sagemaker/resource.rb +1 -7
- data/lib/aws-sdk-sagemaker/types.rb +184 -84
- data/lib/aws-sdk-sagemaker/waiters.rb +68 -0
- metadata +4 -3
@@ -1281,6 +1281,7 @@ module Aws::SageMaker
|
|
1281
1281
|
CreateExperimentResponse.struct_class = Types::CreateExperimentResponse
|
1282
1282
|
|
1283
1283
|
CreateFlowDefinitionRequest.add_member(:flow_definition_name, Shapes::ShapeRef.new(shape: FlowDefinitionName, required: true, location_name: "FlowDefinitionName"))
|
1284
|
+
CreateFlowDefinitionRequest.add_member(:human_loop_request_source, Shapes::ShapeRef.new(shape: HumanLoopRequestSource, location_name: "HumanLoopRequestSource"))
|
1284
1285
|
CreateFlowDefinitionRequest.add_member(:human_loop_activation_config, Shapes::ShapeRef.new(shape: HumanLoopActivationConfig, location_name: "HumanLoopActivationConfig"))
|
1285
1286
|
CreateFlowDefinitionRequest.add_member(:human_loop_config, Shapes::ShapeRef.new(shape: HumanLoopConfig, required: true, location_name: "HumanLoopConfig"))
|
1286
1287
|
CreateFlowDefinitionRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: FlowDefinitionOutputConfig, required: true, location_name: "OutputConfig"))
|
@@ -1785,6 +1786,7 @@ module Aws::SageMaker
|
|
1785
1786
|
DescribeFlowDefinitionResponse.add_member(:flow_definition_name, Shapes::ShapeRef.new(shape: FlowDefinitionName, required: true, location_name: "FlowDefinitionName"))
|
1786
1787
|
DescribeFlowDefinitionResponse.add_member(:flow_definition_status, Shapes::ShapeRef.new(shape: FlowDefinitionStatus, required: true, location_name: "FlowDefinitionStatus"))
|
1787
1788
|
DescribeFlowDefinitionResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
1789
|
+
DescribeFlowDefinitionResponse.add_member(:human_loop_request_source, Shapes::ShapeRef.new(shape: HumanLoopRequestSource, location_name: "HumanLoopRequestSource"))
|
1788
1790
|
DescribeFlowDefinitionResponse.add_member(:human_loop_activation_config, Shapes::ShapeRef.new(shape: HumanLoopActivationConfig, location_name: "HumanLoopActivationConfig"))
|
1789
1791
|
DescribeFlowDefinitionResponse.add_member(:human_loop_config, Shapes::ShapeRef.new(shape: HumanLoopConfig, required: true, location_name: "HumanLoopConfig"))
|
1790
1792
|
DescribeFlowDefinitionResponse.add_member(:output_config, Shapes::ShapeRef.new(shape: FlowDefinitionOutputConfig, required: true, location_name: "OutputConfig"))
|
@@ -2223,7 +2225,6 @@ module Aws::SageMaker
|
|
2223
2225
|
HumanLoopActivationConditionsConfig.add_member(:human_loop_activation_conditions, Shapes::ShapeRef.new(shape: HumanLoopActivationConditions, required: true, location_name: "HumanLoopActivationConditions", metadata: {"jsonvalue"=>true}))
|
2224
2226
|
HumanLoopActivationConditionsConfig.struct_class = Types::HumanLoopActivationConditionsConfig
|
2225
2227
|
|
2226
|
-
HumanLoopActivationConfig.add_member(:human_loop_request_source, Shapes::ShapeRef.new(shape: HumanLoopRequestSource, required: true, location_name: "HumanLoopRequestSource"))
|
2227
2228
|
HumanLoopActivationConfig.add_member(:human_loop_activation_conditions_config, Shapes::ShapeRef.new(shape: HumanLoopActivationConditionsConfig, required: true, location_name: "HumanLoopActivationConditionsConfig"))
|
2228
2229
|
HumanLoopActivationConfig.struct_class = Types::HumanLoopActivationConfig
|
2229
2230
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::SageMaker
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::SageMaker::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::SageMaker::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::SageMaker::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -50,18 +50,17 @@ module Aws::SageMaker
|
|
50
50
|
include Aws::Structure
|
51
51
|
end
|
52
52
|
|
53
|
-
# Specifies the training algorithm to use in a
|
53
|
+
# Specifies the training algorithm to use in a CreateTrainingJob
|
54
54
|
# request.
|
55
55
|
#
|
56
56
|
# For more information about algorithms provided by Amazon SageMaker,
|
57
|
-
# see [Algorithms][
|
58
|
-
# see [Using Your Own Algorithms with Amazon SageMaker][
|
57
|
+
# see [Algorithms][1]. For information about using your own algorithms,
|
58
|
+
# see [Using Your Own Algorithms with Amazon SageMaker][2].
|
59
59
|
#
|
60
60
|
#
|
61
61
|
#
|
62
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
63
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
64
|
-
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html
|
62
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html
|
63
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html
|
65
64
|
#
|
66
65
|
# @note When making an API call, you may pass AlgorithmSpecification
|
67
66
|
# data as a hash:
|
@@ -538,6 +537,34 @@ module Aws::SageMaker
|
|
538
537
|
#
|
539
538
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClass`
|
540
539
|
#
|
540
|
+
# * *Multi-label image classification* - Uses a variant of the
|
541
|
+
# Expectation Maximization approach to estimate the true classes of
|
542
|
+
# an image based on annotations from individual workers.
|
543
|
+
#
|
544
|
+
# `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClassMultiLabel`
|
545
|
+
#
|
546
|
+
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClassMultiLabel`
|
547
|
+
#
|
548
|
+
# `arn:aws:lambda:us-west-2:081040173940:function:ACS-ImageMultiClassMultiLabel`
|
549
|
+
#
|
550
|
+
# `arn:aws:lambda:eu-west-1:568282634449:function:ACS-ImageMultiClassMultiLabel`
|
551
|
+
#
|
552
|
+
# `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-ImageMultiClassMultiLabel`
|
553
|
+
#
|
554
|
+
# `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-ImageMultiClassMultiLabel`
|
555
|
+
#
|
556
|
+
# `arn:aws:lambda:ap-south-1:565803892007:function:ACS-ImageMultiClassMultiLabel`
|
557
|
+
#
|
558
|
+
# `arn:aws:lambda:eu-central-1:203001061592:function:ACS-ImageMultiClassMultiLabel`
|
559
|
+
#
|
560
|
+
# `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-ImageMultiClassMultiLabel`
|
561
|
+
#
|
562
|
+
# `arn:aws:lambda:eu-west-2:487402164563:function:ACS-ImageMultiClassMultiLabel`
|
563
|
+
#
|
564
|
+
# `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-ImageMultiClassMultiLabel`
|
565
|
+
#
|
566
|
+
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClassMultiLabel`
|
567
|
+
#
|
541
568
|
# * *Semantic segmentation* - Treats each pixel in an image as a
|
542
569
|
# multi-class classification and treats pixel annotations from
|
543
570
|
# workers as "votes" for the correct label.
|
@@ -594,6 +621,34 @@ module Aws::SageMaker
|
|
594
621
|
#
|
595
622
|
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClass`
|
596
623
|
#
|
624
|
+
# * *Multi-label text classification* - Uses a variant of the
|
625
|
+
# Expectation Maximization approach to estimate the true classes of
|
626
|
+
# text based on annotations from individual workers.
|
627
|
+
#
|
628
|
+
# `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClassMultiLabel`
|
629
|
+
#
|
630
|
+
# `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClassMultiLabel`
|
631
|
+
#
|
632
|
+
# `arn:aws:lambda:us-west-2:081040173940:function:ACS-TextMultiClassMultiLabel`
|
633
|
+
#
|
634
|
+
# `arn:aws:lambda:eu-west-1:568282634449:function:ACS-TextMultiClassMultiLabel`
|
635
|
+
#
|
636
|
+
# `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-TextMultiClassMultiLabel`
|
637
|
+
#
|
638
|
+
# `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-TextMultiClassMultiLabel`
|
639
|
+
#
|
640
|
+
# `arn:aws:lambda:ap-south-1:565803892007:function:ACS-TextMultiClassMultiLabel`
|
641
|
+
#
|
642
|
+
# `arn:aws:lambda:eu-central-1:203001061592:function:ACS-TextMultiClassMultiLabel`
|
643
|
+
#
|
644
|
+
# `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-TextMultiClassMultiLabel`
|
645
|
+
#
|
646
|
+
# `arn:aws:lambda:eu-west-2:487402164563:function:ACS-TextMultiClassMultiLabel`
|
647
|
+
#
|
648
|
+
# `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-TextMultiClassMultiLabel`
|
649
|
+
#
|
650
|
+
# `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClassMultiLabel`
|
651
|
+
#
|
597
652
|
# * *Named entity recognition* - Groups similar selections and
|
598
653
|
# calculates aggregate boundaries, resolving to most-assigned label.
|
599
654
|
#
|
@@ -1023,7 +1078,11 @@ module Aws::SageMaker
|
|
1023
1078
|
# }
|
1024
1079
|
#
|
1025
1080
|
# @!attribute [rw] s3_data_source
|
1026
|
-
# The Amazon S3 location of the data.
|
1081
|
+
# The Amazon S3 location of the input data.
|
1082
|
+
#
|
1083
|
+
# <note markdown="1"> The input data must be in CSV format and contain at least 1000 rows.
|
1084
|
+
#
|
1085
|
+
# </note>
|
1027
1086
|
# @return [Types::AutoMLS3DataSource]
|
1028
1087
|
#
|
1029
1088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLDataSource AWS API Documentation
|
@@ -2295,7 +2354,7 @@ module Aws::SageMaker
|
|
2295
2354
|
#
|
2296
2355
|
# @!attribute [rw] input_data_config
|
2297
2356
|
# Similar to InputDataConfig supported by Tuning. Format(s) supported:
|
2298
|
-
# CSV.
|
2357
|
+
# CSV. Minimum of 1000 rows.
|
2299
2358
|
# @return [Array<Types::AutoMLChannel>]
|
2300
2359
|
#
|
2301
2360
|
# @!attribute [rw] output_data_config
|
@@ -2415,7 +2474,7 @@ module Aws::SageMaker
|
|
2415
2474
|
# },
|
2416
2475
|
# output_config: { # required
|
2417
2476
|
# s3_output_location: "S3Uri", # required
|
2418
|
-
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, amba_cv22
|
2477
|
+
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22
|
2419
2478
|
# },
|
2420
2479
|
# stopping_condition: { # required
|
2421
2480
|
# max_runtime_in_seconds: 1,
|
@@ -2642,11 +2701,7 @@ module Aws::SageMaker
|
|
2642
2701
|
#
|
2643
2702
|
# @!attribute [rw] endpoint_config_name
|
2644
2703
|
# The name of the endpoint configuration. You specify this name in a
|
2645
|
-
#
|
2646
|
-
#
|
2647
|
-
#
|
2648
|
-
#
|
2649
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpoint.html
|
2704
|
+
# CreateEndpoint request.
|
2650
2705
|
# @return [String]
|
2651
2706
|
#
|
2652
2707
|
# @!attribute [rw] production_variants
|
@@ -2757,11 +2812,7 @@ module Aws::SageMaker
|
|
2757
2812
|
#
|
2758
2813
|
# @!attribute [rw] endpoint_config_name
|
2759
2814
|
# The name of an endpoint configuration. For more information, see
|
2760
|
-
#
|
2761
|
-
#
|
2762
|
-
#
|
2763
|
-
#
|
2764
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpointConfig.html
|
2815
|
+
# CreateEndpointConfig.
|
2765
2816
|
# @return [String]
|
2766
2817
|
#
|
2767
2818
|
# @!attribute [rw] tags
|
@@ -2855,10 +2906,10 @@ module Aws::SageMaker
|
|
2855
2906
|
#
|
2856
2907
|
# {
|
2857
2908
|
# flow_definition_name: "FlowDefinitionName", # required
|
2909
|
+
# human_loop_request_source: {
|
2910
|
+
# aws_managed_human_loop_request_source: "AWS/Rekognition/DetectModerationLabels/Image/V3", # required, accepts AWS/Rekognition/DetectModerationLabels/Image/V3, AWS/Textract/AnalyzeDocument/Forms/V1
|
2911
|
+
# },
|
2858
2912
|
# human_loop_activation_config: {
|
2859
|
-
# human_loop_request_source: { # required
|
2860
|
-
# aws_managed_human_loop_request_source: "AWS/Rekognition/DetectModerationLabels/Image/V3", # required, accepts AWS/Rekognition/DetectModerationLabels/Image/V3, AWS/Textract/AnalyzeDocument/Forms/V1
|
2861
|
-
# },
|
2862
2913
|
# human_loop_activation_conditions_config: { # required
|
2863
2914
|
# human_loop_activation_conditions: "HumanLoopActivationConditions", # required
|
2864
2915
|
# },
|
@@ -2897,6 +2948,10 @@ module Aws::SageMaker
|
|
2897
2948
|
# The name of your flow definition.
|
2898
2949
|
# @return [String]
|
2899
2950
|
#
|
2951
|
+
# @!attribute [rw] human_loop_request_source
|
2952
|
+
# Container for configuring the source of human task requests.
|
2953
|
+
# @return [Types::HumanLoopRequestSource]
|
2954
|
+
#
|
2900
2955
|
# @!attribute [rw] human_loop_activation_config
|
2901
2956
|
# An object containing information about the events that trigger a
|
2902
2957
|
# human workflow.
|
@@ -2928,6 +2983,7 @@ module Aws::SageMaker
|
|
2928
2983
|
#
|
2929
2984
|
class CreateFlowDefinitionRequest < Struct.new(
|
2930
2985
|
:flow_definition_name,
|
2986
|
+
:human_loop_request_source,
|
2931
2987
|
:human_loop_activation_config,
|
2932
2988
|
:human_loop_config,
|
2933
2989
|
:output_config,
|
@@ -3266,8 +3322,12 @@ module Aws::SageMaker
|
|
3266
3322
|
# The HyperParameterTuningJobConfig object that describes the tuning
|
3267
3323
|
# job, including the search strategy, the objective metric used to
|
3268
3324
|
# evaluate training jobs, ranges of parameters to search, and resource
|
3269
|
-
# limits for the tuning job. For more information, see
|
3270
|
-
#
|
3325
|
+
# limits for the tuning job. For more information, see [How
|
3326
|
+
# Hyperparameter Tuning Works][1].
|
3327
|
+
#
|
3328
|
+
#
|
3329
|
+
#
|
3330
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-how-it-works.html
|
3271
3331
|
# @return [Types::HyperParameterTuningJobConfig]
|
3272
3332
|
#
|
3273
3333
|
# @!attribute [rw] training_job_definition
|
@@ -3613,18 +3673,17 @@ module Aws::SageMaker
|
|
3613
3673
|
# @return [Array<Types::Tag>]
|
3614
3674
|
#
|
3615
3675
|
# @!attribute [rw] vpc_config
|
3616
|
-
# A
|
3617
|
-
#
|
3618
|
-
#
|
3619
|
-
#
|
3620
|
-
# Using an Amazon Virtual Private Cloud][
|
3621
|
-
# Transform Jobs by Using an Amazon Virtual Private Cloud][
|
3676
|
+
# A VpcConfig object that specifies the VPC that you want your model
|
3677
|
+
# to connect to. Control access to and from your model container by
|
3678
|
+
# configuring the VPC. `VpcConfig` is used in hosting services and in
|
3679
|
+
# batch transform. For more information, see [Protect Endpoints by
|
3680
|
+
# Using an Amazon Virtual Private Cloud][1] and [Protect Data in Batch
|
3681
|
+
# Transform Jobs by Using an Amazon Virtual Private Cloud][2].
|
3622
3682
|
#
|
3623
3683
|
#
|
3624
3684
|
#
|
3625
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
3626
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
3627
|
-
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/batch-vpc.html
|
3685
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html
|
3686
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/batch-vpc.html
|
3628
3687
|
# @return [Types::VpcConfig]
|
3629
3688
|
#
|
3630
3689
|
# @!attribute [rw] enable_network_isolation
|
@@ -3878,7 +3937,7 @@ module Aws::SageMaker
|
|
3878
3937
|
# @!attribute [rw] tags
|
3879
3938
|
# (Optional) An array of key-value pairs. For more information, see
|
3880
3939
|
# [Using Cost Allocation Tags](
|
3881
|
-
# https://docs
|
3940
|
+
# https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL)
|
3882
3941
|
# in the *AWS Billing and Cost Management User Guide*.
|
3883
3942
|
# @return [Array<Types::Tag>]
|
3884
3943
|
#
|
@@ -4345,7 +4404,7 @@ module Aws::SageMaker
|
|
4345
4404
|
#
|
4346
4405
|
#
|
4347
4406
|
#
|
4348
|
-
# [1]: https://docs
|
4407
|
+
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
|
4349
4408
|
# @return [Array<Types::Tag>]
|
4350
4409
|
#
|
4351
4410
|
# @!attribute [rw] experiment_config
|
@@ -4817,7 +4876,7 @@ module Aws::SageMaker
|
|
4817
4876
|
# file is a record.
|
4818
4877
|
#
|
4819
4878
|
# To enable the batch strategy, you must set the `SplitType` property
|
4820
|
-
#
|
4879
|
+
# to `Line`, `RecordIO`, or `TFRecord`.
|
4821
4880
|
#
|
4822
4881
|
# To use only one record when making an HTTP invocation request to a
|
4823
4882
|
# container, set `BatchStrategy` to `SingleRecord` and `SplitType` to
|
@@ -6875,6 +6934,10 @@ module Aws::SageMaker
|
|
6875
6934
|
# The timestamp when the flow definition was created.
|
6876
6935
|
# @return [Time]
|
6877
6936
|
#
|
6937
|
+
# @!attribute [rw] human_loop_request_source
|
6938
|
+
# Container for configuring the source of human task requests.
|
6939
|
+
# @return [Types::HumanLoopRequestSource]
|
6940
|
+
#
|
6878
6941
|
# @!attribute [rw] human_loop_activation_config
|
6879
6942
|
# An object containing information about what triggers a human review
|
6880
6943
|
# workflow.
|
@@ -6904,6 +6967,7 @@ module Aws::SageMaker
|
|
6904
6967
|
:flow_definition_name,
|
6905
6968
|
:flow_definition_status,
|
6906
6969
|
:creation_time,
|
6970
|
+
:human_loop_request_source,
|
6907
6971
|
:human_loop_activation_config,
|
6908
6972
|
:human_loop_config,
|
6909
6973
|
:output_config,
|
@@ -9180,7 +9244,7 @@ module Aws::SageMaker
|
|
9180
9244
|
#
|
9181
9245
|
# {
|
9182
9246
|
# name: "ResourcePropertyName", # required
|
9183
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
9247
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
9184
9248
|
# value: "FilterValue",
|
9185
9249
|
# }
|
9186
9250
|
#
|
@@ -9467,7 +9531,7 @@ module Aws::SageMaker
|
|
9467
9531
|
end
|
9468
9532
|
|
9469
9533
|
# Defines under what conditions SageMaker creates a human loop. Used
|
9470
|
-
# within .
|
9534
|
+
# within . See for the required format of activation conditions.
|
9471
9535
|
#
|
9472
9536
|
# @note When making an API call, you may pass HumanLoopActivationConditionsConfig
|
9473
9537
|
# data as a hash:
|
@@ -9480,7 +9544,14 @@ module Aws::SageMaker
|
|
9480
9544
|
# JSON expressing use-case specific conditions declaratively. If any
|
9481
9545
|
# condition is matched, atomic tasks are created against the
|
9482
9546
|
# configured work team. The set of conditions is different for
|
9483
|
-
# Rekognition and Textract.
|
9547
|
+
# Rekognition and Textract. For more information about how to
|
9548
|
+
# structure the JSON, see [JSON Schema for Human Loop Activation
|
9549
|
+
# Conditions in Amazon Augmented AI][1] in the *Amazon SageMaker
|
9550
|
+
# Developer Guide*.
|
9551
|
+
#
|
9552
|
+
#
|
9553
|
+
#
|
9554
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-human-fallback-conditions-json-schema.html
|
9484
9555
|
# @return [String]
|
9485
9556
|
#
|
9486
9557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HumanLoopActivationConditionsConfig AWS API Documentation
|
@@ -9498,18 +9569,11 @@ module Aws::SageMaker
|
|
9498
9569
|
# data as a hash:
|
9499
9570
|
#
|
9500
9571
|
# {
|
9501
|
-
# human_loop_request_source: { # required
|
9502
|
-
# aws_managed_human_loop_request_source: "AWS/Rekognition/DetectModerationLabels/Image/V3", # required, accepts AWS/Rekognition/DetectModerationLabels/Image/V3, AWS/Textract/AnalyzeDocument/Forms/V1
|
9503
|
-
# },
|
9504
9572
|
# human_loop_activation_conditions_config: { # required
|
9505
9573
|
# human_loop_activation_conditions: "HumanLoopActivationConditions", # required
|
9506
9574
|
# },
|
9507
9575
|
# }
|
9508
9576
|
#
|
9509
|
-
# @!attribute [rw] human_loop_request_source
|
9510
|
-
# Container for configuring the source of human task requests.
|
9511
|
-
# @return [Types::HumanLoopRequestSource]
|
9512
|
-
#
|
9513
9577
|
# @!attribute [rw] human_loop_activation_conditions_config
|
9514
9578
|
# Container structure for defining under what conditions SageMaker
|
9515
9579
|
# creates a human loop.
|
@@ -9518,7 +9582,6 @@ module Aws::SageMaker
|
|
9518
9582
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HumanLoopActivationConfig AWS API Documentation
|
9519
9583
|
#
|
9520
9584
|
class HumanLoopActivationConfig < Struct.new(
|
9521
|
-
:human_loop_request_source,
|
9522
9585
|
:human_loop_activation_conditions_config)
|
9523
9586
|
include Aws::Structure
|
9524
9587
|
end
|
@@ -9885,10 +9948,14 @@ module Aws::SageMaker
|
|
9885
9948
|
#
|
9886
9949
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClass`
|
9887
9950
|
#
|
9951
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-ImageMultiClassMultiLabel`
|
9952
|
+
#
|
9888
9953
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-SemanticSegmentation`
|
9889
9954
|
#
|
9890
9955
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClass`
|
9891
9956
|
#
|
9957
|
+
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-TextMultiClassMultiLabel`
|
9958
|
+
#
|
9892
9959
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-NamedEntityRecognition`
|
9893
9960
|
#
|
9894
9961
|
# * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationBoundingBox`
|
@@ -9905,10 +9972,14 @@ module Aws::SageMaker
|
|
9905
9972
|
#
|
9906
9973
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClass`
|
9907
9974
|
#
|
9975
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-ImageMultiClassMultiLabel`
|
9976
|
+
#
|
9908
9977
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-SemanticSegmentation`
|
9909
9978
|
#
|
9910
9979
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClass`
|
9911
9980
|
#
|
9981
|
+
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-TextMultiClassMultiLabel`
|
9982
|
+
#
|
9912
9983
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-NamedEntityRecognition`
|
9913
9984
|
#
|
9914
9985
|
# * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationBoundingBox`
|
@@ -9925,10 +9996,14 @@ module Aws::SageMaker
|
|
9925
9996
|
#
|
9926
9997
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClass`
|
9927
9998
|
#
|
9999
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-ImageMultiClassMultiLabel`
|
10000
|
+
#
|
9928
10001
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-SemanticSegmentation`
|
9929
10002
|
#
|
9930
10003
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClass`
|
9931
10004
|
#
|
10005
|
+
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-TextMultiClassMultiLabel`
|
10006
|
+
#
|
9932
10007
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-NamedEntityRecognition`
|
9933
10008
|
#
|
9934
10009
|
# * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationBoundingBox`
|
@@ -9945,10 +10020,14 @@ module Aws::SageMaker
|
|
9945
10020
|
#
|
9946
10021
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClass`
|
9947
10022
|
#
|
10023
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-ImageMultiClassMultiLabel`
|
10024
|
+
#
|
9948
10025
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-SemanticSegmentation`
|
9949
10026
|
#
|
9950
10027
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClass`
|
9951
10028
|
#
|
10029
|
+
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-TextMultiClassMultiLabel`
|
10030
|
+
#
|
9952
10031
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-NamedEntityRecognition`
|
9953
10032
|
#
|
9954
10033
|
# * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationBoundingBox`
|
@@ -9965,10 +10044,14 @@ module Aws::SageMaker
|
|
9965
10044
|
#
|
9966
10045
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClass`
|
9967
10046
|
#
|
10047
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-ImageMultiClassMultiLabel`
|
10048
|
+
#
|
9968
10049
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-SemanticSegmentation`
|
9969
10050
|
#
|
9970
10051
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClass`
|
9971
10052
|
#
|
10053
|
+
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-TextMultiClassMultiLabel`
|
10054
|
+
#
|
9972
10055
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-NamedEntityRecognition`
|
9973
10056
|
#
|
9974
10057
|
# * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationBoundingBox`
|
@@ -9985,10 +10068,14 @@ module Aws::SageMaker
|
|
9985
10068
|
#
|
9986
10069
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClass`
|
9987
10070
|
#
|
10071
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-ImageMultiClassMultiLabel`
|
10072
|
+
#
|
9988
10073
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-SemanticSegmentation`
|
9989
10074
|
#
|
9990
10075
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClass`
|
9991
10076
|
#
|
10077
|
+
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-TextMultiClassMultiLabel`
|
10078
|
+
#
|
9992
10079
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-NamedEntityRecognition`
|
9993
10080
|
#
|
9994
10081
|
# * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationBoundingBox`
|
@@ -10005,10 +10092,14 @@ module Aws::SageMaker
|
|
10005
10092
|
#
|
10006
10093
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClass`
|
10007
10094
|
#
|
10095
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-ImageMultiClassMultiLabel`
|
10096
|
+
#
|
10008
10097
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-SemanticSegmentation`
|
10009
10098
|
#
|
10010
10099
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClass`
|
10011
10100
|
#
|
10101
|
+
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-TextMultiClassMultiLabel`
|
10102
|
+
#
|
10012
10103
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-NamedEntityRecognition`
|
10013
10104
|
#
|
10014
10105
|
# * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationBoundingBox`
|
@@ -10025,10 +10116,14 @@ module Aws::SageMaker
|
|
10025
10116
|
#
|
10026
10117
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClass`
|
10027
10118
|
#
|
10119
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-ImageMultiClassMultiLabel`
|
10120
|
+
#
|
10028
10121
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-SemanticSegmentation`
|
10029
10122
|
#
|
10030
10123
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClass`
|
10031
10124
|
#
|
10125
|
+
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-TextMultiClassMultiLabel`
|
10126
|
+
#
|
10032
10127
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-NamedEntityRecognition`
|
10033
10128
|
#
|
10034
10129
|
# * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationBoundingBox`
|
@@ -10045,10 +10140,14 @@ module Aws::SageMaker
|
|
10045
10140
|
#
|
10046
10141
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClass`
|
10047
10142
|
#
|
10143
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-ImageMultiClassMultiLabel`
|
10144
|
+
#
|
10048
10145
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-SemanticSegmentation`
|
10049
10146
|
#
|
10050
10147
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClass`
|
10051
10148
|
#
|
10149
|
+
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-TextMultiClassMultiLabel`
|
10150
|
+
#
|
10052
10151
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-NamedEntityRecognition`
|
10053
10152
|
#
|
10054
10153
|
# * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationBoundingBox`
|
@@ -10065,10 +10164,14 @@ module Aws::SageMaker
|
|
10065
10164
|
#
|
10066
10165
|
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClass`
|
10067
10166
|
#
|
10167
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-ImageMultiClassMultiLabel`
|
10168
|
+
#
|
10068
10169
|
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-SemanticSegmentation`
|
10069
10170
|
#
|
10070
10171
|
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClass`
|
10071
10172
|
#
|
10173
|
+
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-TextMultiClassMultiLabel`
|
10174
|
+
#
|
10072
10175
|
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-NamedEntityRecognition`
|
10073
10176
|
#
|
10074
10177
|
# * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationBoundingBox`
|
@@ -10085,10 +10188,14 @@ module Aws::SageMaker
|
|
10085
10188
|
#
|
10086
10189
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClass`
|
10087
10190
|
#
|
10191
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-ImageMultiClassMultiLabel`
|
10192
|
+
#
|
10088
10193
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-SemanticSegmentation`
|
10089
10194
|
#
|
10090
10195
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClass`
|
10091
10196
|
#
|
10197
|
+
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-TextMultiClassMultiLabel`
|
10198
|
+
#
|
10092
10199
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-NamedEntityRecognition`
|
10093
10200
|
#
|
10094
10201
|
# * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationBoundingBox`
|
@@ -10105,10 +10212,14 @@ module Aws::SageMaker
|
|
10105
10212
|
#
|
10106
10213
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClass`
|
10107
10214
|
#
|
10215
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-ImageMultiClassMultiLabel`
|
10216
|
+
#
|
10108
10217
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-SemanticSegmentation`
|
10109
10218
|
#
|
10110
10219
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClass`
|
10111
10220
|
#
|
10221
|
+
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-TextMultiClassMultiLabel`
|
10222
|
+
#
|
10112
10223
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-NamedEntityRecognition`
|
10113
10224
|
#
|
10114
10225
|
# * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationBoundingBox`
|
@@ -10145,7 +10256,7 @@ module Aws::SageMaker
|
|
10145
10256
|
# The length of time that a task remains available for labeling by
|
10146
10257
|
# human workers. **If you choose the Amazon Mechanical Turk workforce,
|
10147
10258
|
# the maximum is 12 hours (43200)**. The default value is 864000
|
10148
|
-
# seconds (
|
10259
|
+
# seconds (10 days). For private and vendor workforces, the maximum is
|
10149
10260
|
# as listed.
|
10150
10261
|
# @return [Integer]
|
10151
10262
|
#
|
@@ -15397,7 +15508,7 @@ module Aws::SageMaker
|
|
15397
15508
|
# filters: [ # required
|
15398
15509
|
# {
|
15399
15510
|
# name: "ResourcePropertyName", # required
|
15400
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
15511
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
15401
15512
|
# value: "FilterValue",
|
15402
15513
|
# },
|
15403
15514
|
# ],
|
@@ -15690,7 +15801,7 @@ module Aws::SageMaker
|
|
15690
15801
|
#
|
15691
15802
|
# {
|
15692
15803
|
# s3_output_location: "S3Uri", # required
|
15693
|
-
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, amba_cv22
|
15804
|
+
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22
|
15694
15805
|
# }
|
15695
15806
|
#
|
15696
15807
|
# @!attribute [rw] s3_output_location
|
@@ -17188,7 +17299,7 @@ module Aws::SageMaker
|
|
17188
17299
|
# filters: [
|
17189
17300
|
# {
|
17190
17301
|
# name: "ResourcePropertyName", # required
|
17191
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
17302
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
17192
17303
|
# value: "FilterValue",
|
17193
17304
|
# },
|
17194
17305
|
# ],
|
@@ -17198,7 +17309,7 @@ module Aws::SageMaker
|
|
17198
17309
|
# filters: [ # required
|
17199
17310
|
# {
|
17200
17311
|
# name: "ResourcePropertyName", # required
|
17201
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
17312
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
17202
17313
|
# value: "FilterValue",
|
17203
17314
|
# },
|
17204
17315
|
# ],
|
@@ -17209,7 +17320,7 @@ module Aws::SageMaker
|
|
17209
17320
|
# filters: [
|
17210
17321
|
# {
|
17211
17322
|
# name: "ResourcePropertyName", # required
|
17212
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
17323
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
17213
17324
|
# value: "FilterValue",
|
17214
17325
|
# },
|
17215
17326
|
# ],
|
@@ -17219,7 +17330,7 @@ module Aws::SageMaker
|
|
17219
17330
|
# filters: [ # required
|
17220
17331
|
# {
|
17221
17332
|
# name: "ResourcePropertyName", # required
|
17222
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
17333
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
17223
17334
|
# value: "FilterValue",
|
17224
17335
|
# },
|
17225
17336
|
# ],
|
@@ -17303,7 +17414,7 @@ module Aws::SageMaker
|
|
17303
17414
|
# filters: [
|
17304
17415
|
# {
|
17305
17416
|
# name: "ResourcePropertyName", # required
|
17306
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
17417
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
17307
17418
|
# value: "FilterValue",
|
17308
17419
|
# },
|
17309
17420
|
# ],
|
@@ -17313,7 +17424,7 @@ module Aws::SageMaker
|
|
17313
17424
|
# filters: [ # required
|
17314
17425
|
# {
|
17315
17426
|
# name: "ResourcePropertyName", # required
|
17316
|
-
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists
|
17427
|
+
# operator: "Equals", # accepts Equals, NotEquals, GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Contains, Exists, NotExists, In
|
17317
17428
|
# value: "FilterValue",
|
17318
17429
|
# },
|
17319
17430
|
# ],
|
@@ -18280,7 +18391,11 @@ module Aws::SageMaker
|
|
18280
18391
|
# @!attribute [rw] enable_managed_spot_training
|
18281
18392
|
# When true, enables managed spot training using Amazon EC2 Spot
|
18282
18393
|
# instances to run training jobs instead of on-demand instances. For
|
18283
|
-
# more information, see
|
18394
|
+
# more information, see [Managed Spot Training][1].
|
18395
|
+
#
|
18396
|
+
#
|
18397
|
+
#
|
18398
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-managed-spot-training.html
|
18284
18399
|
# @return [Boolean]
|
18285
18400
|
#
|
18286
18401
|
# @!attribute [rw] checkpoint_config
|
@@ -19755,7 +19870,7 @@ module Aws::SageMaker
|
|
19755
19870
|
# @return [String]
|
19756
19871
|
#
|
19757
19872
|
# @!attribute [rw] content_sha_256
|
19758
|
-
# The SHA
|
19873
|
+
# The SHA-256 digest of the contents of the template.
|
19759
19874
|
# @return [String]
|
19760
19875
|
#
|
19761
19876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UiTemplateInfo AWS API Documentation
|
@@ -19903,16 +20018,11 @@ module Aws::SageMaker
|
|
19903
20018
|
#
|
19904
20019
|
# @!attribute [rw] exclude_retained_variant_properties
|
19905
20020
|
# When you are updating endpoint resources with
|
19906
|
-
#
|
19907
|
-
# `ExcludeRetainedVariantProperties` specifies the list of
|
19908
|
-
#
|
20021
|
+
# UpdateEndpointInput$RetainAllVariantProperties, whose value is set
|
20022
|
+
# to `true`, `ExcludeRetainedVariantProperties` specifies the list of
|
20023
|
+
# type VariantProperty to override with the values provided by
|
19909
20024
|
# `EndpointConfig`. If you don't specify a value for
|
19910
20025
|
# `ExcludeAllVariantProperties`, no variant properties are overridden.
|
19911
|
-
#
|
19912
|
-
#
|
19913
|
-
#
|
19914
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-RetainAllVariantProperties
|
19915
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_VariantProperty.html
|
19916
20026
|
# @return [Array<Types::VariantProperty>]
|
19917
20027
|
#
|
19918
20028
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateEndpointInput AWS API Documentation
|
@@ -20793,15 +20903,10 @@ module Aws::SageMaker
|
|
20793
20903
|
# Specifies a production variant property type for an Endpoint.
|
20794
20904
|
#
|
20795
20905
|
# If you are updating an endpoint with the
|
20796
|
-
#
|
20797
|
-
# `VariantProperty` objects listed in
|
20798
|
-
#
|
20799
|
-
# properties of the endpoint.
|
20800
|
-
#
|
20801
|
-
#
|
20802
|
-
#
|
20803
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-RetainAllVariantProperties
|
20804
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-ExcludeRetainedVariantProperties
|
20906
|
+
# UpdateEndpointInput$RetainAllVariantProperties option set to `true`,
|
20907
|
+
# the `VariantProperty` objects listed in
|
20908
|
+
# UpdateEndpointInput$ExcludeRetainedVariantProperties override the
|
20909
|
+
# existing variant properties of the endpoint.
|
20805
20910
|
#
|
20806
20911
|
# @note When making an API call, you may pass VariantProperty
|
20807
20912
|
# data as a hash:
|
@@ -20814,19 +20919,14 @@ module Aws::SageMaker
|
|
20814
20919
|
# The type of variant property. The supported values are:
|
20815
20920
|
#
|
20816
20921
|
# * `DesiredInstanceCount`\: Overrides the existing variant instance
|
20817
|
-
# counts using the
|
20818
|
-
#
|
20922
|
+
# counts using the ProductionVariant$InitialInstanceCount values in
|
20923
|
+
# the CreateEndpointConfigInput$ProductionVariants.
|
20819
20924
|
#
|
20820
20925
|
# * `DesiredWeight`\: Overrides the existing variant weights using the
|
20821
|
-
#
|
20926
|
+
# ProductionVariant$InitialVariantWeight values in the
|
20927
|
+
# CreateEndpointConfigInput$ProductionVariants.
|
20822
20928
|
#
|
20823
20929
|
# * `DataCaptureConfig`\: (Not currently supported.)
|
20824
|
-
#
|
20825
|
-
#
|
20826
|
-
#
|
20827
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_ProductionVariant.html#SageMaker-Type-ProductionVariant-InitialInstanceCount
|
20828
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpointConfig.html#SageMaker-CreateEndpointConfig-request-ProductionVariants
|
20829
|
-
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_ProductionVariant.html#SageMaker-Type-ProductionVariant-InitialVariantWeight
|
20830
20930
|
# @return [String]
|
20831
20931
|
#
|
20832
20932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/VariantProperty AWS API Documentation
|