aws-sdk-sagemaker 1.74.0 → 1.75.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 482dcccea18e108a3ef6e62a921d7929ab98ee1bb96e50a7efdf6e0b4cd65394
4
- data.tar.gz: 361feb5c8cc143c0256191749a014b02e2dc0be0cc2aefc5da61f9875de8691d
3
+ metadata.gz: 91da67e2648ecd94f1667294adccaef50cbfc3275a0018310d828ae2fc2666ee
4
+ data.tar.gz: e91bdc707c29aa07e8889ae23bed20aa709cc55bcf7dfc43577f85ba5b1e65e6
5
5
  SHA512:
6
- metadata.gz: dafecab74abf595f392aa49f45da19ba9f4ed644f2fdeaf28e8d45a8e025dcfbc657877feac4f48b540705a007eb3dd0c60a60dc96079b10e20936053255b8b6
7
- data.tar.gz: c8550c22fa7625a7d47164d624805c22a1eed852f6fc02bd6dcd115eb3c1e4d26488ce283cd3bff071652154fd0d7259b0befe2f003230c5c65cf4c941e60a89
6
+ metadata.gz: e66638e84183a1b4c23db15b43f44dae0f94f00850a0ad6f12963a21667708abfdd5fb0aff5b57271783f7919837b5891d251379d4cee29b3c04c392544aeb2c
7
+ data.tar.gz: 25d9ec27443afffb8fd8836ab4d9eda0c93932240adec3b5f2f0bca1ca28f7da45801e5948f422eaec910e5b206cb55ab2eb54fb431ceb030ce62a047b32bc2c
@@ -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.74.0'
52
+ GEM_VERSION = '1.75.0'
53
53
 
54
54
  end
@@ -2981,14 +2981,30 @@ module Aws::SageMaker
2981
2981
  # The output can be used as the manifest file for another labeling job
2982
2982
  # or as training data for your machine learning models.
2983
2983
  #
2984
+ # You can use this operation to create a static labeling job or a
2985
+ # streaming labeling job. A static labeling job stops if all data
2986
+ # objects in the input manifest file identified in `ManifestS3Uri` have
2987
+ # been labeled. A streaming labeling job runs perpetually until it is
2988
+ # manually stopped, or remains idle for 10 days. You can send new data
2989
+ # objects to an active (`InProgress`) streaming labeling job in real
2990
+ # time. To learn how to create a static labeling job, see [Create a
2991
+ # Labeling Job (API) ][3] in the Amazon SageMaker Developer Guide. To
2992
+ # learn how to create a streaming labeling job, see [Create a Streaming
2993
+ # Labeling Job][4].
2994
+ #
2984
2995
  #
2985
2996
  #
2986
2997
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-automated-labeling.html
2987
2998
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-data.html
2999
+ # [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-create-labeling-job-api.html
3000
+ # [4]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-streaming-create-job.html
2988
3001
  #
2989
3002
  # @option params [required, String] :labeling_job_name
2990
3003
  # The name of the labeling job. This name is used to identify the job in
2991
- # a list of labeling jobs.
3004
+ # a list of labeling jobs. Labeling job names must be unique within an
3005
+ # AWS account and region. `LabelingJobName` is not case sensitive. For
3006
+ # example, Example-job and example-job are considered the same labeling
3007
+ # job name by Ground Truth.
2992
3008
  #
2993
3009
  # @option params [required, String] :label_attribute_name
2994
3010
  # The attribute name to use for the label in the output manifest file.
@@ -3014,10 +3030,12 @@ module Aws::SageMaker
3014
3030
  # successfully complete data labeling.
3015
3031
  #
3016
3032
  # @option params [String] :label_category_config_s3_uri
3017
- # The S3 URI of the file that defines the categories used to label the
3018
- # data objects.
3033
+ # The S3 URI of the file, referred to as a *label category configuration
3034
+ # file*, that defines the categories used to label the data objects.
3019
3035
  #
3020
- # For 3D point cloud task types, see [Create a Labeling Category
3036
+ # For 3D point cloud and video frame task types, you can add label
3037
+ # category attributes and frame attributes to your label category
3038
+ # configuration file. To learn how, see [Create a Labeling Category
3021
3039
  # Configuration File for 3D Point Cloud Labeling Jobs][1].
3022
3040
  #
3023
3041
  # For all other [built-in task types][2] and [custom tasks][3], your
@@ -3280,6 +3298,9 @@ module Aws::SageMaker
3280
3298
  # "EnvironmentKey" => "EnvironmentValue",
3281
3299
  # },
3282
3300
  # model_package_name: "VersionedArnOrName",
3301
+ # multi_model_config: {
3302
+ # model_cache_setting: "Enabled", # accepts Enabled, Disabled
3303
+ # },
3283
3304
  # },
3284
3305
  # containers: [
3285
3306
  # {
@@ -3294,6 +3315,9 @@ module Aws::SageMaker
3294
3315
  # "EnvironmentKey" => "EnvironmentValue",
3295
3316
  # },
3296
3317
  # model_package_name: "VersionedArnOrName",
3318
+ # multi_model_config: {
3319
+ # model_cache_setting: "Enabled", # accepts Enabled, Disabled
3320
+ # },
3297
3321
  # },
3298
3322
  # ],
3299
3323
  # execution_role_arn: "RoleArn", # required
@@ -4867,7 +4891,7 @@ module Aws::SageMaker
4867
4891
  # learning models by up to 80% by using Amazon EC2 Spot instances. For
4868
4892
  # more information, see [Managed Spot Training][2].
4869
4893
  #
4870
- # * `RoleArn` - The Amazon Resource Number (ARN) that Amazon SageMaker
4894
+ # * `RoleArn` - The Amazon Resource Name (ARN) that Amazon SageMaker
4871
4895
  # assumes to perform tasks on your behalf during model training. You
4872
4896
  # must grant this role the necessary permissions so that Amazon
4873
4897
  # SageMaker can successfully complete model training.
@@ -8706,6 +8730,7 @@ module Aws::SageMaker
8706
8730
  # resp.primary_container.environment #=> Hash
8707
8731
  # resp.primary_container.environment["EnvironmentKey"] #=> String
8708
8732
  # resp.primary_container.model_package_name #=> String
8733
+ # resp.primary_container.multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
8709
8734
  # resp.containers #=> Array
8710
8735
  # resp.containers[0].container_hostname #=> String
8711
8736
  # resp.containers[0].image #=> String
@@ -8715,6 +8740,7 @@ module Aws::SageMaker
8715
8740
  # resp.containers[0].environment #=> Hash
8716
8741
  # resp.containers[0].environment["EnvironmentKey"] #=> String
8717
8742
  # resp.containers[0].model_package_name #=> String
8743
+ # resp.containers[0].multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
8718
8744
  # resp.execution_role_arn #=> String
8719
8745
  # resp.vpc_config.security_group_ids #=> Array
8720
8746
  # resp.vpc_config.security_group_ids[0] #=> String
@@ -17167,7 +17193,7 @@ module Aws::SageMaker
17167
17193
  params: params,
17168
17194
  config: config)
17169
17195
  context[:gem_name] = 'aws-sdk-sagemaker'
17170
- context[:gem_version] = '1.74.0'
17196
+ context[:gem_version] = '1.75.0'
17171
17197
  Seahorse::Client::Request.new(handlers, context)
17172
17198
  end
17173
17199
 
@@ -871,6 +871,7 @@ module Aws::SageMaker
871
871
  ModelBiasAppSpecification = Shapes::StructureShape.new(name: 'ModelBiasAppSpecification')
872
872
  ModelBiasBaselineConfig = Shapes::StructureShape.new(name: 'ModelBiasBaselineConfig')
873
873
  ModelBiasJobInput = Shapes::StructureShape.new(name: 'ModelBiasJobInput')
874
+ ModelCacheSetting = Shapes::StringShape.new(name: 'ModelCacheSetting')
874
875
  ModelClientConfig = Shapes::StructureShape.new(name: 'ModelClientConfig')
875
876
  ModelDataQuality = Shapes::StructureShape.new(name: 'ModelDataQuality')
876
877
  ModelDigests = Shapes::StructureShape.new(name: 'ModelDigests')
@@ -950,6 +951,7 @@ module Aws::SageMaker
950
951
  MonitoringTimeOffsetString = Shapes::StringShape.new(name: 'MonitoringTimeOffsetString')
951
952
  MonitoringType = Shapes::StringShape.new(name: 'MonitoringType')
952
953
  MountPath = Shapes::StringShape.new(name: 'MountPath')
954
+ MultiModelConfig = Shapes::StructureShape.new(name: 'MultiModelConfig')
953
955
  NameContains = Shapes::StringShape.new(name: 'NameContains')
954
956
  NestedFilters = Shapes::StructureShape.new(name: 'NestedFilters')
955
957
  NestedFiltersList = Shapes::ListShape.new(name: 'NestedFiltersList')
@@ -1765,6 +1767,7 @@ module Aws::SageMaker
1765
1767
  ContainerDefinition.add_member(:model_data_url, Shapes::ShapeRef.new(shape: Url, location_name: "ModelDataUrl"))
1766
1768
  ContainerDefinition.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentMap, location_name: "Environment"))
1767
1769
  ContainerDefinition.add_member(:model_package_name, Shapes::ShapeRef.new(shape: VersionedArnOrName, location_name: "ModelPackageName"))
1770
+ ContainerDefinition.add_member(:multi_model_config, Shapes::ShapeRef.new(shape: MultiModelConfig, location_name: "MultiModelConfig"))
1768
1771
  ContainerDefinition.struct_class = Types::ContainerDefinition
1769
1772
 
1770
1773
  ContainerDefinitionList.member = Shapes::ShapeRef.new(shape: ContainerDefinition)
@@ -4978,6 +4981,9 @@ module Aws::SageMaker
4978
4981
  MonitoringStoppingCondition.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: MonitoringMaxRuntimeInSeconds, required: true, location_name: "MaxRuntimeInSeconds"))
4979
4982
  MonitoringStoppingCondition.struct_class = Types::MonitoringStoppingCondition
4980
4983
 
4984
+ MultiModelConfig.add_member(:model_cache_setting, Shapes::ShapeRef.new(shape: ModelCacheSetting, location_name: "ModelCacheSetting"))
4985
+ MultiModelConfig.struct_class = Types::MultiModelConfig
4986
+
4981
4987
  NestedFilters.add_member(:nested_property_name, Shapes::ShapeRef.new(shape: ResourcePropertyName, required: true, location_name: "NestedPropertyName"))
4982
4988
  NestedFilters.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, required: true, location_name: "Filters"))
4983
4989
  NestedFilters.struct_class = Types::NestedFilters
@@ -686,27 +686,27 @@ module Aws::SageMaker
686
686
  #
687
687
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-BoundingBox`
688
688
  #
689
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-BoundingBox`
689
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-BoundingBox`
690
690
  #
691
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-BoundingBox`
691
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-BoundingBox`
692
692
  #
693
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-BoundingBox`
693
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-BoundingBox`
694
694
  #
695
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-BoundingBox`
695
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-BoundingBox`
696
696
  #
697
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-BoundingBox`
697
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-BoundingBox`
698
698
  #
699
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-BoundingBox`
699
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-BoundingBox`
700
700
  #
701
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-BoundingBox`
701
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-BoundingBox`
702
702
  #
703
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-BoundingBox`
703
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-BoundingBox`
704
704
  #
705
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-BoundingBox`
705
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-BoundingBox`
706
706
  #
707
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-BoundingBox`
707
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-BoundingBox`
708
708
  #
709
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-BoundingBox`
709
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-BoundingBox`
710
710
  #
711
711
  # **Image classification** - Uses a variant of the Expectation
712
712
  # Maximization approach to estimate the true class of an image based
@@ -714,27 +714,27 @@ module Aws::SageMaker
714
714
  #
715
715
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClass`
716
716
  #
717
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClass`
717
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClass`
718
718
  #
719
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-ImageMultiClass`
719
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-ImageMultiClass`
720
720
  #
721
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-ImageMultiClass`
721
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-ImageMultiClass`
722
722
  #
723
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-ImageMultiClass`
723
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-ImageMultiClass`
724
724
  #
725
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-ImageMultiClass`
725
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-ImageMultiClass`
726
726
  #
727
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-ImageMultiClass`
727
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-ImageMultiClass`
728
728
  #
729
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-ImageMultiClass`
729
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-ImageMultiClass`
730
730
  #
731
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-ImageMultiClass`
731
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-ImageMultiClass`
732
732
  #
733
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-ImageMultiClass`
733
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-ImageMultiClass`
734
734
  #
735
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-ImageMultiClass`
735
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-ImageMultiClass`
736
736
  #
737
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClass`
737
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClass`
738
738
  #
739
739
  # **Multi-label image classification** - Uses a variant of the
740
740
  # Expectation Maximization approach to estimate the true classes of an
@@ -742,27 +742,27 @@ module Aws::SageMaker
742
742
  #
743
743
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-ImageMultiClassMultiLabel`
744
744
  #
745
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClassMultiLabel`
745
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-ImageMultiClassMultiLabel`
746
746
  #
747
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-ImageMultiClassMultiLabel`
747
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-ImageMultiClassMultiLabel`
748
748
  #
749
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-ImageMultiClassMultiLabel`
749
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-ImageMultiClassMultiLabel`
750
750
  #
751
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-ImageMultiClassMultiLabel`
751
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-ImageMultiClassMultiLabel`
752
752
  #
753
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-ImageMultiClassMultiLabel`
753
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-ImageMultiClassMultiLabel`
754
754
  #
755
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-ImageMultiClassMultiLabel`
755
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-ImageMultiClassMultiLabel`
756
756
  #
757
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-ImageMultiClassMultiLabel`
757
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-ImageMultiClassMultiLabel`
758
758
  #
759
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-ImageMultiClassMultiLabel`
759
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-ImageMultiClassMultiLabel`
760
760
  #
761
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-ImageMultiClassMultiLabel`
761
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-ImageMultiClassMultiLabel`
762
762
  #
763
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-ImageMultiClassMultiLabel`
763
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-ImageMultiClassMultiLabel`
764
764
  #
765
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClassMultiLabel`
765
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-ImageMultiClassMultiLabel`
766
766
  #
767
767
  # **Semantic segmentation** - Treats each pixel in an image as a
768
768
  # multi-class classification and treats pixel annotations from workers
@@ -770,55 +770,55 @@ module Aws::SageMaker
770
770
  #
771
771
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-SemanticSegmentation`
772
772
  #
773
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-SemanticSegmentation`
773
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-SemanticSegmentation`
774
774
  #
775
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-SemanticSegmentation`
775
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-SemanticSegmentation`
776
776
  #
777
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-SemanticSegmentation`
777
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-SemanticSegmentation`
778
778
  #
779
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-SemanticSegmentation`
779
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-SemanticSegmentation`
780
780
  #
781
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-SemanticSegmentation`
781
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-SemanticSegmentation`
782
782
  #
783
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-SemanticSegmentation`
783
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-SemanticSegmentation`
784
784
  #
785
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-SemanticSegmentation`
785
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-SemanticSegmentation`
786
786
  #
787
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-SemanticSegmentation`
787
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-SemanticSegmentation`
788
788
  #
789
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-SemanticSegmentation`
789
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-SemanticSegmentation`
790
790
  #
791
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-SemanticSegmentation`
791
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-SemanticSegmentation`
792
792
  #
793
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-SemanticSegmentation`
793
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-SemanticSegmentation`
794
794
  #
795
795
  # **Text classification** - Uses a variant of the Expectation
796
796
  # Maximization approach to estimate the true class of text based on
797
797
  # annotations from individual workers.
798
798
  #
799
- # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClass`
799
+ # * `rn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClass`
800
800
  #
801
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClass`
801
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClass`
802
802
  #
803
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-TextMultiClass`
803
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-TextMultiClass`
804
804
  #
805
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-TextMultiClass`
805
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-TextMultiClass`
806
806
  #
807
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-TextMultiClass`
807
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-TextMultiClass`
808
808
  #
809
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-TextMultiClass`
809
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-TextMultiClass`
810
810
  #
811
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-TextMultiClass`
811
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-TextMultiClass`
812
812
  #
813
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-TextMultiClass`
813
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-TextMultiClass`
814
814
  #
815
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-TextMultiClass`
815
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-TextMultiClass`
816
816
  #
817
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-TextMultiClass`
817
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-TextMultiClass`
818
818
  #
819
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-TextMultiClass`
819
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-TextMultiClass`
820
820
  #
821
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClass`
821
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClass`
822
822
  #
823
823
  # **Multi-label text classification** - Uses a variant of the
824
824
  # Expectation Maximization approach to estimate the true classes of
@@ -826,81 +826,54 @@ module Aws::SageMaker
826
826
  #
827
827
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-TextMultiClassMultiLabel`
828
828
  #
829
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClassMultiLabel`
829
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-TextMultiClassMultiLabel`
830
830
  #
831
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-TextMultiClassMultiLabel`
831
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-TextMultiClassMultiLabel`
832
832
  #
833
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-TextMultiClassMultiLabel`
833
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-TextMultiClassMultiLabel`
834
834
  #
835
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-TextMultiClassMultiLabel`
835
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-TextMultiClassMultiLabel`
836
836
  #
837
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-TextMultiClassMultiLabel`
837
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-TextMultiClassMultiLabel`
838
838
  #
839
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-TextMultiClassMultiLabel`
839
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-TextMultiClassMultiLabel`
840
840
  #
841
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-TextMultiClassMultiLabel`
841
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-TextMultiClassMultiLabel`
842
842
  #
843
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-TextMultiClassMultiLabel`
843
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-TextMultiClassMultiLabel`
844
844
  #
845
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-TextMultiClassMultiLabel`
845
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-TextMultiClassMultiLabel`
846
846
  #
847
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-TextMultiClassMultiLabel`
847
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-TextMultiClassMultiLabel`
848
848
  #
849
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClassMultiLabel`
849
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-TextMultiClassMultiLabel`
850
850
  #
851
851
  # **Named entity recognition** - Groups similar selections and
852
852
  # calculates aggregate boundaries, resolving to most-assigned label.
853
853
  #
854
854
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-NamedEntityRecognition`
855
855
  #
856
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-NamedEntityRecognition`
856
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-NamedEntityRecognition`
857
857
  #
858
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-NamedEntityRecognition`
858
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-NamedEntityRecognition`
859
859
  #
860
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-NamedEntityRecognition`
860
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-NamedEntityRecognition`
861
861
  #
862
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-NamedEntityRecognition`
862
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-NamedEntityRecognition`
863
863
  #
864
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-NamedEntityRecognition`
864
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-NamedEntityRecognition`
865
865
  #
866
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-NamedEntityRecognition`
866
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-NamedEntityRecognition`
867
867
  #
868
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-NamedEntityRecognition`
868
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-NamedEntityRecognition`
869
869
  #
870
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-NamedEntityRecognition`
870
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-NamedEntityRecognition`
871
871
  #
872
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-NamedEntityRecognition`
872
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-NamedEntityRecognition`
873
873
  #
874
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-NamedEntityRecognition`
874
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-NamedEntityRecognition`
875
875
  #
876
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-NamedEntityRecognition`
877
- #
878
- # **Named entity recognition** - Groups similar selections and
879
- # calculates aggregate boundaries, resolving to most-assigned label.
880
- #
881
- # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-NamedEntityRecognition`
882
- #
883
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-NamedEntityRecognition`
884
- #
885
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-NamedEntityRecognition`
886
- #
887
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-NamedEntityRecognition`
888
- #
889
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-NamedEntityRecognition`
890
- #
891
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-NamedEntityRecognition`
892
- #
893
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-NamedEntityRecognition`
894
- #
895
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-NamedEntityRecognition`
896
- #
897
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-NamedEntityRecognition`
898
- #
899
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-NamedEntityRecognition`
900
- #
901
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-NamedEntityRecognition`
902
- #
903
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-NamedEntityRecognition`
876
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-NamedEntityRecognition`
904
877
  #
905
878
  # **Video Classification** - Use this task type when you need workers
906
879
  # to classify videos using predefined labels that you specify. Workers
@@ -908,27 +881,27 @@ module Aws::SageMaker
908
881
  #
909
882
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VideoMultiClass`
910
883
  #
911
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-VideoMultiClass`
884
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-VideoMultiClass`
912
885
  #
913
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-VideoMultiClass`
886
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-VideoMultiClass`
914
887
  #
915
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VideoMultiClass`
888
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VideoMultiClass`
916
889
  #
917
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VideoMultiClass`
890
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VideoMultiClass`
918
891
  #
919
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VideoMultiClass`
892
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VideoMultiClass`
920
893
  #
921
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VideoMultiClass`
894
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VideoMultiClass`
922
895
  #
923
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VideoMultiClass`
896
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VideoMultiClass`
924
897
  #
925
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VideoMultiClass`
898
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VideoMultiClass`
926
899
  #
927
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VideoMultiClass`
900
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VideoMultiClass`
928
901
  #
929
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VideoMultiClass`
902
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VideoMultiClass`
930
903
  #
931
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VideoMultiClass`
904
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VideoMultiClass`
932
905
  #
933
906
  # **Video Frame Object Detection** - Use this task type to have
934
907
  # workers identify and locate objects in a sequence of video frames
@@ -939,27 +912,27 @@ module Aws::SageMaker
939
912
  #
940
913
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VideoObjectDetection`
941
914
  #
942
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-VideoObjectDetection`
915
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-VideoObjectDetection`
943
916
  #
944
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-VideoObjectDetection`
917
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-VideoObjectDetection`
945
918
  #
946
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VideoObjectDetection`
919
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VideoObjectDetection`
947
920
  #
948
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VideoObjectDetection`
921
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VideoObjectDetection`
949
922
  #
950
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VideoObjectDetection`
923
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VideoObjectDetection`
951
924
  #
952
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VideoObjectDetection`
925
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VideoObjectDetection`
953
926
  #
954
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VideoObjectDetection`
927
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VideoObjectDetection`
955
928
  #
956
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VideoObjectDetection`
929
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VideoObjectDetection`
957
930
  #
958
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VideoObjectDetection`
931
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VideoObjectDetection`
959
932
  #
960
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VideoObjectDetection`
933
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VideoObjectDetection`
961
934
  #
962
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VideoObjectDetection`
935
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VideoObjectDetection`
963
936
  #
964
937
  # **Video Frame Object Tracking** - Use this task type to have workers
965
938
  # track the movement of objects in a sequence of video frames (images
@@ -969,29 +942,29 @@ module Aws::SageMaker
969
942
  #
970
943
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VideoObjectTracking`
971
944
  #
972
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-VideoObjectTracking`
945
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-VideoObjectTracking`
973
946
  #
974
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-VideoObjectTracking`
947
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-VideoObjectTracking`
975
948
  #
976
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VideoObjectTracking`
949
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VideoObjectTracking`
977
950
  #
978
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VideoObjectTracking`
951
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VideoObjectTracking`
979
952
  #
980
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VideoObjectTracking`
953
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VideoObjectTracking`
981
954
  #
982
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VideoObjectTracking`
955
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VideoObjectTracking`
983
956
  #
984
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VideoObjectTracking`
957
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VideoObjectTracking`
985
958
  #
986
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VideoObjectTracking`
959
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VideoObjectTracking`
987
960
  #
988
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VideoObjectTracking`
961
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VideoObjectTracking`
989
962
  #
990
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VideoObjectTracking`
963
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VideoObjectTracking`
991
964
  #
992
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VideoObjectTracking`
965
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VideoObjectTracking`
993
966
  #
994
- # **3D point cloud object detection** - Use this task type when you
967
+ # **3D Point Cloud Object Detection** - Use this task type when you
995
968
  # want workers to classify objects in a 3D point cloud by drawing 3D
996
969
  # cuboids around objects. For example, you can use this task type to
997
970
  # ask workers to identify different types of objects in a point cloud,
@@ -999,29 +972,29 @@ module Aws::SageMaker
999
972
  #
1000
973
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-3DPointCloudObjectDetection`
1001
974
  #
1002
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-3DPointCloudObjectDetection`
975
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-3DPointCloudObjectDetection`
1003
976
  #
1004
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-3DPointCloudObjectDetection`
977
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-3DPointCloudObjectDetection`
1005
978
  #
1006
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-3DPointCloudObjectDetection`
979
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-3DPointCloudObjectDetection`
1007
980
  #
1008
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-3DPointCloudObjectDetection`
981
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-3DPointCloudObjectDetection`
1009
982
  #
1010
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-3DPointCloudObjectDetection`
983
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-3DPointCloudObjectDetection`
1011
984
  #
1012
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-3DPointCloudObjectDetection`
985
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-3DPointCloudObjectDetection`
1013
986
  #
1014
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-3DPointCloudObjectDetection`
987
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-3DPointCloudObjectDetection`
1015
988
  #
1016
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-3DPointCloudObjectDetection`
989
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-3DPointCloudObjectDetection`
1017
990
  #
1018
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-3DPointCloudObjectDetection`
991
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-3DPointCloudObjectDetection`
1019
992
  #
1020
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-3DPointCloudObjectDetection`
993
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-3DPointCloudObjectDetection`
1021
994
  #
1022
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-3DPointCloudObjectDetection`
995
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-3DPointCloudObjectDetection`
1023
996
  #
1024
- # **3D point cloud object tracking** - Use this task type when you
997
+ # **3D Point Cloud Object Tracking** - Use this task type when you
1025
998
  # want workers to draw 3D cuboids around objects that appear in a
1026
999
  # sequence of 3D point cloud frames. For example, you can use this
1027
1000
  # task type to ask workers to track the movement of vehicles across
@@ -1029,56 +1002,56 @@ module Aws::SageMaker
1029
1002
  #
1030
1003
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-3DPointCloudObjectTracking`
1031
1004
  #
1032
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-3DPointCloudObjectTracking`
1005
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-3DPointCloudObjectTracking`
1033
1006
  #
1034
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-3DPointCloudObjectTracking`
1007
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-3DPointCloudObjectTracking`
1035
1008
  #
1036
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-3DPointCloudObjectTracking`
1009
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-3DPointCloudObjectTracking`
1037
1010
  #
1038
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-3DPointCloudObjectTracking`
1011
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-3DPointCloudObjectTracking`
1039
1012
  #
1040
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-3DPointCloudObjectTracking`
1013
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-3DPointCloudObjectTracking`
1041
1014
  #
1042
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-3DPointCloudObjectTracking`
1015
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-3DPointCloudObjectTracking`
1043
1016
  #
1044
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-3DPointCloudObjectTracking`
1017
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-3DPointCloudObjectTracking`
1045
1018
  #
1046
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-3DPointCloudObjectTracking`
1019
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-3DPointCloudObjectTracking`
1047
1020
  #
1048
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-3DPointCloudObjectTracking`
1021
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-3DPointCloudObjectTracking`
1049
1022
  #
1050
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-3DPointCloudObjectTracking`
1023
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-3DPointCloudObjectTracking`
1051
1024
  #
1052
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-3DPointCloudObjectTracking`
1025
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-3DPointCloudObjectTracking`
1053
1026
  #
1054
- # **3D point cloud semantic segmentation** - Use this task type when
1027
+ # **3D Point Cloud Semantic Segmentation** - Use this task type when
1055
1028
  # you want workers to create a point-level semantic segmentation masks
1056
1029
  # by painting objects in a 3D point cloud using different colors where
1057
1030
  # each color is assigned to one of the classes you specify.
1058
1031
  #
1059
1032
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-3DPointCloudSemanticSegmentation`
1060
1033
  #
1061
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-3DPointCloudSemanticSegmentation`
1034
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-3DPointCloudSemanticSegmentation`
1062
1035
  #
1063
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-3DPointCloudSemanticSegmentation`
1036
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-3DPointCloudSemanticSegmentation`
1064
1037
  #
1065
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-3DPointCloudSemanticSegmentation`
1038
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-3DPointCloudSemanticSegmentation`
1066
1039
  #
1067
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-3DPointCloudSemanticSegmentation`
1040
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-3DPointCloudSemanticSegmentation`
1068
1041
  #
1069
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-3DPointCloudSemanticSegmentation`
1042
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-3DPointCloudSemanticSegmentation`
1070
1043
  #
1071
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-3DPointCloudSemanticSegmentation`
1044
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-3DPointCloudSemanticSegmentation`
1072
1045
  #
1073
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-3DPointCloudSemanticSegmentation`
1046
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-3DPointCloudSemanticSegmentation`
1074
1047
  #
1075
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-3DPointCloudSemanticSegmentation`
1048
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-3DPointCloudSemanticSegmentation`
1076
1049
  #
1077
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-3DPointCloudSemanticSegmentation`
1050
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-3DPointCloudSemanticSegmentation`
1078
1051
  #
1079
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-3DPointCloudSemanticSegmentation`
1052
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-3DPointCloudSemanticSegmentation`
1080
1053
  #
1081
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-3DPointCloudSemanticSegmentation`
1054
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-3DPointCloudSemanticSegmentation`
1082
1055
  #
1083
1056
  # **Use the following ARNs for Label Verification and Adjustment
1084
1057
  # Jobs**
@@ -1086,119 +1059,119 @@ module Aws::SageMaker
1086
1059
  # Use label verification and adjustment jobs to review and adjust
1087
1060
  # labels. To learn more, see [Verify and Adjust Labels ][4].
1088
1061
  #
1089
- # **Semantic segmentation adjustment** - Treats each pixel in an image
1062
+ # **Semantic Segmentation Adjustment** - Treats each pixel in an image
1090
1063
  # as a multi-class classification and treats pixel adjusted
1091
1064
  # annotations from workers as "votes" for the correct label.
1092
1065
  #
1093
1066
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentSemanticSegmentation`
1094
1067
  #
1095
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentSemanticSegmentation`
1068
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentSemanticSegmentation`
1096
1069
  #
1097
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentSemanticSegmentation`
1070
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentSemanticSegmentation`
1098
1071
  #
1099
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentSemanticSegmentation`
1072
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentSemanticSegmentation`
1100
1073
  #
1101
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentSemanticSegmentation`
1074
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentSemanticSegmentation`
1102
1075
  #
1103
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentSemanticSegmentation`
1076
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentSemanticSegmentation`
1104
1077
  #
1105
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentSemanticSegmentation`
1078
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentSemanticSegmentation`
1106
1079
  #
1107
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentSemanticSegmentation`
1080
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentSemanticSegmentation`
1108
1081
  #
1109
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentSemanticSegmentation`
1082
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentSemanticSegmentation`
1110
1083
  #
1111
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentSemanticSegmentation`
1084
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentSemanticSegmentation`
1112
1085
  #
1113
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentSemanticSegmentation`
1086
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentSemanticSegmentation`
1114
1087
  #
1115
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentSemanticSegmentation`
1088
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentSemanticSegmentation`
1116
1089
  #
1117
- # **Semantic segmentation verification** - Uses a variant of the
1090
+ # **Semantic Segmentation Verification** - Uses a variant of the
1118
1091
  # Expectation Maximization approach to estimate the true class of
1119
1092
  # verification judgment for semantic segmentation labels based on
1120
1093
  # annotations from individual workers.
1121
1094
  #
1122
1095
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationSemanticSegmentation`
1123
1096
  #
1124
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationSemanticSegmentation`
1097
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationSemanticSegmentation`
1125
1098
  #
1126
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-VerificationSemanticSegmentation`
1099
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-VerificationSemanticSegmentation`
1127
1100
  #
1128
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VerificationSemanticSegmentation`
1101
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VerificationSemanticSegmentation`
1129
1102
  #
1130
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VerificationSemanticSegmentation`
1103
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VerificationSemanticSegmentation`
1131
1104
  #
1132
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VerificationSemanticSegmentation`
1105
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VerificationSemanticSegmentation`
1133
1106
  #
1134
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VerificationSemanticSegmentation`
1107
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VerificationSemanticSegmentation`
1135
1108
  #
1136
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VerificationSemanticSegmentation`
1109
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VerificationSemanticSegmentation`
1137
1110
  #
1138
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VerificationSemanticSegmentation`
1111
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VerificationSemanticSegmentation`
1139
1112
  #
1140
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VerificationSemanticSegmentation`
1113
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VerificationSemanticSegmentation`
1141
1114
  #
1142
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VerificationSemanticSegmentation`
1115
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VerificationSemanticSegmentation`
1143
1116
  #
1144
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationSemanticSegmentation`
1117
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationSemanticSegmentation`
1145
1118
  #
1146
- # **Bounding box verification** - Uses a variant of the Expectation
1147
- # Maximization approach to estimate the true class of verification
1148
- # judgement for bounding box labels based on annotations from
1149
- # individual workers.
1119
+ # **Bounding Box Adjustment** - Finds the most similar boxes from
1120
+ # different workers based on the Jaccard index of the adjusted
1121
+ # annotations.
1150
1122
  #
1151
- # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationBoundingBox`
1123
+ # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentBoundingBox`
1152
1124
  #
1153
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationBoundingBox`
1125
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentBoundingBox`
1154
1126
  #
1155
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-VerificationBoundingBox`
1127
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentBoundingBox`
1156
1128
  #
1157
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VerificationBoundingBox`
1129
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentBoundingBox`
1158
1130
  #
1159
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VerificationBoundingBox`
1131
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentBoundingBox`
1160
1132
  #
1161
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VerificationBoundingBox`
1133
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentBoundingBox`
1162
1134
  #
1163
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VerificationBoundingBox`
1135
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentBoundingBox`
1164
1136
  #
1165
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VerificationBoundingBox`
1137
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentBoundingBox`
1166
1138
  #
1167
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VerificationBoundingBox`
1139
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentBoundingBox`
1168
1140
  #
1169
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VerificationBoundingBox`
1141
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentBoundingBox`
1170
1142
  #
1171
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VerificationBoundingBox`
1143
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentBoundingBox`
1172
1144
  #
1173
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationBoundingBox`
1145
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentBoundingBox`
1174
1146
  #
1175
- # **Bounding box adjustment** - Finds the most similar boxes from
1176
- # different workers based on the Jaccard index of the adjusted
1177
- # annotations.
1147
+ # **Bounding Box Verification** - Uses a variant of the Expectation
1148
+ # Maximization approach to estimate the true class of verification
1149
+ # judgement for bounding box labels based on annotations from
1150
+ # individual workers.
1178
1151
  #
1179
- # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentBoundingBox`
1152
+ # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationBoundingBox`
1180
1153
  #
1181
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentBoundingBox`
1154
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-VerificationBoundingBox`
1182
1155
  #
1183
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentBoundingBox`
1156
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-VerificationBoundingBox`
1184
1157
  #
1185
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentBoundingBox`
1158
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-VerificationBoundingBox`
1186
1159
  #
1187
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentBoundingBox`
1160
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-VerificationBoundingBox`
1188
1161
  #
1189
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentBoundingBox`
1162
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-VerificationBoundingBox`
1190
1163
  #
1191
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentBoundingBox`
1164
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-VerificationBoundingBox`
1192
1165
  #
1193
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentBoundingBox`
1166
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-VerificationBoundingBox`
1194
1167
  #
1195
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentBoundingBox`
1168
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-VerificationBoundingBox`
1196
1169
  #
1197
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentBoundingBox`
1170
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-VerificationBoundingBox`
1198
1171
  #
1199
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentBoundingBox`
1172
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-VerificationBoundingBox`
1200
1173
  #
1201
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentBoundingBox`
1174
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-VerificationBoundingBox`
1202
1175
  #
1203
1176
  # **Video Frame Object Detection Adjustment** - Use this task type
1204
1177
  # when you want workers to adjust bounding boxes that workers have
@@ -1207,27 +1180,27 @@ module Aws::SageMaker
1207
1180
  #
1208
1181
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentVideoObjectDetection`
1209
1182
  #
1210
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentVideoObjectDetection`
1183
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentVideoObjectDetection`
1211
1184
  #
1212
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentVideoObjectDetection`
1185
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentVideoObjectDetection`
1213
1186
  #
1214
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentVideoObjectDetection`
1187
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentVideoObjectDetection`
1215
1188
  #
1216
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentVideoObjectDetection`
1189
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentVideoObjectDetection`
1217
1190
  #
1218
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentVideoObjectDetection`
1191
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentVideoObjectDetection`
1219
1192
  #
1220
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentVideoObjectDetection`
1193
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentVideoObjectDetection`
1221
1194
  #
1222
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentVideoObjectDetection`
1195
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentVideoObjectDetection`
1223
1196
  #
1224
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentVideoObjectDetection`
1197
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentVideoObjectDetection`
1225
1198
  #
1226
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentVideoObjectDetection`
1199
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentVideoObjectDetection`
1227
1200
  #
1228
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentVideoObjectDetection`
1201
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentVideoObjectDetection`
1229
1202
  #
1230
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentVideoObjectDetection`
1203
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentVideoObjectDetection`
1231
1204
  #
1232
1205
  # **Video Frame Object Tracking Adjustment** - Use this task type when
1233
1206
  # you want workers to adjust bounding boxes that workers have added to
@@ -1236,29 +1209,29 @@ module Aws::SageMaker
1236
1209
  #
1237
1210
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-AdjustmentVideoObjectTracking`
1238
1211
  #
1239
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentVideoObjectTracking`
1212
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-AdjustmentVideoObjectTracking`
1240
1213
  #
1241
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentVideoObjectTracking`
1214
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-AdjustmentVideoObjectTracking`
1242
1215
  #
1243
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentVideoObjectTracking`
1216
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-AdjustmentVideoObjectTracking`
1244
1217
  #
1245
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentVideoObjectTracking`
1218
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-AdjustmentVideoObjectTracking`
1246
1219
  #
1247
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentVideoObjectTracking`
1220
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-AdjustmentVideoObjectTracking`
1248
1221
  #
1249
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentVideoObjectTracking`
1222
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-AdjustmentVideoObjectTracking`
1250
1223
  #
1251
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentVideoObjectTracking`
1224
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-AdjustmentVideoObjectTracking`
1252
1225
  #
1253
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentVideoObjectTracking`
1226
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-AdjustmentVideoObjectTracking`
1254
1227
  #
1255
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentVideoObjectTracking`
1228
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-AdjustmentVideoObjectTracking`
1256
1229
  #
1257
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentVideoObjectTracking`
1230
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-AdjustmentVideoObjectTracking`
1258
1231
  #
1259
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentVideoObjectTracking`
1232
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-AdjustmentVideoObjectTracking`
1260
1233
  #
1261
- # **3D point cloud object detection adjustment** - Use this task type
1234
+ # **3D Point Cloud Object Detection Adjustment** - Use this task type
1262
1235
  # when you want workers to adjust 3D cuboids around objects in a 3D
1263
1236
  # point cloud.
1264
1237
  #
@@ -1286,61 +1259,63 @@ module Aws::SageMaker
1286
1259
  #
1287
1260
  # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-Adjustment3DPointCloudObjectDetection`
1288
1261
  #
1289
- # **3D point cloud object tracking adjustment** - Use this task type
1262
+ # **3D Point Cloud Object Tracking Adjustment** - Use this task type
1290
1263
  # when you want workers to adjust 3D cuboids around objects that
1291
1264
  # appear in a sequence of 3D point cloud frames.
1292
1265
  #
1293
1266
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-Adjustment3DPointCloudObjectTracking`
1294
1267
  #
1295
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-Adjustment3DPointCloudObjectTracking`
1268
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-Adjustment3DPointCloudObjectTracking`
1296
1269
  #
1297
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-Adjustment3DPointCloudObjectTracking`
1270
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-Adjustment3DPointCloudObjectTracking`
1298
1271
  #
1299
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-Adjustment3DPointCloudObjectTracking`
1272
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-Adjustment3DPointCloudObjectTracking`
1300
1273
  #
1301
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-Adjustment3DPointCloudObjectTracking`
1274
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-Adjustment3DPointCloudObjectTracking`
1302
1275
  #
1303
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-Adjustment3DPointCloudObjectTracking`
1276
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-Adjustment3DPointCloudObjectTracking`
1304
1277
  #
1305
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-Adjustment3DPointCloudObjectTracking`
1278
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-Adjustment3DPointCloudObjectTracking`
1306
1279
  #
1307
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-Adjustment3DPointCloudObjectTracking`
1280
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-Adjustment3DPointCloudObjectTracking`
1308
1281
  #
1309
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-Adjustment3DPointCloudObjectTracking`
1282
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-Adjustment3DPointCloudObjectTracking`
1310
1283
  #
1311
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-Adjustment3DPointCloudObjectTracking`
1284
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-Adjustment3DPointCloudObjectTracking`
1312
1285
  #
1313
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-Adjustment3DPointCloudObjectTracking`
1286
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-Adjustment3DPointCloudObjectTracking`
1314
1287
  #
1315
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-Adjustment3DPointCloudObjectTracking`
1288
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-Adjustment3DPointCloudObjectTracking`
1316
1289
  #
1317
- # **3D point cloud semantic segmentation adjustment** - Use this task
1290
+ # **3D Point Cloud Semantic Segmentation Adjustment** - Use this task
1318
1291
  # type when you want workers to adjust a point-level semantic
1319
1292
  # segmentation masks using a paint tool.
1320
1293
  #
1294
+ # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-3DPointCloudSemanticSegmentation`
1295
+ #
1321
1296
  # * `arn:aws:lambda:us-east-1:432418664414:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1322
1297
  #
1323
- # `arn:aws:lambda:us-east-2:266458841044:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1298
+ # * `arn:aws:lambda:us-east-2:266458841044:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1324
1299
  #
1325
- # `arn:aws:lambda:us-west-2:081040173940:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1300
+ # * `arn:aws:lambda:us-west-2:081040173940:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1326
1301
  #
1327
- # `arn:aws:lambda:eu-west-1:568282634449:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1302
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1328
1303
  #
1329
- # `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1304
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1330
1305
  #
1331
- # `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1306
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1332
1307
  #
1333
- # `arn:aws:lambda:ap-south-1:565803892007:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1308
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1334
1309
  #
1335
- # `arn:aws:lambda:eu-central-1:203001061592:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1310
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1336
1311
  #
1337
- # `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1312
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1338
1313
  #
1339
- # `arn:aws:lambda:eu-west-2:487402164563:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1314
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1340
1315
  #
1341
- # `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1316
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1342
1317
  #
1343
- # `arn:aws:lambda:ca-central-1:918755190332:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1318
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:ACS-Adjustment3DPointCloudSemanticSegmentation`
1344
1319
  #
1345
1320
  #
1346
1321
  #
@@ -2917,6 +2892,9 @@ module Aws::SageMaker
2917
2892
  # "EnvironmentKey" => "EnvironmentValue",
2918
2893
  # },
2919
2894
  # model_package_name: "VersionedArnOrName",
2895
+ # multi_model_config: {
2896
+ # model_cache_setting: "Enabled", # accepts Enabled, Disabled
2897
+ # },
2920
2898
  # }
2921
2899
  #
2922
2900
  # @!attribute [rw] container_hostname
@@ -3014,6 +2992,10 @@ module Aws::SageMaker
3014
2992
  # to create the model.
3015
2993
  # @return [String]
3016
2994
  #
2995
+ # @!attribute [rw] multi_model_config
2996
+ # Specifies additional configuration for multi-model endpoints.
2997
+ # @return [Types::MultiModelConfig]
2998
+ #
3017
2999
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ContainerDefinition AWS API Documentation
3018
3000
  #
3019
3001
  class ContainerDefinition < Struct.new(
@@ -3023,7 +3005,8 @@ module Aws::SageMaker
3023
3005
  :mode,
3024
3006
  :model_data_url,
3025
3007
  :environment,
3026
- :model_package_name)
3008
+ :model_package_name,
3009
+ :multi_model_config)
3027
3010
  SENSITIVE = []
3028
3011
  include Aws::Structure
3029
3012
  end
@@ -5684,7 +5667,10 @@ module Aws::SageMaker
5684
5667
  #
5685
5668
  # @!attribute [rw] labeling_job_name
5686
5669
  # The name of the labeling job. This name is used to identify the job
5687
- # in a list of labeling jobs.
5670
+ # in a list of labeling jobs. Labeling job names must be unique within
5671
+ # an AWS account and region. `LabelingJobName` is not case sensitive.
5672
+ # For example, Example-job and example-job are considered the same
5673
+ # labeling job name by Ground Truth.
5688
5674
  # @return [String]
5689
5675
  #
5690
5676
  # @!attribute [rw] label_attribute_name
@@ -5716,10 +5702,13 @@ module Aws::SageMaker
5716
5702
  # @return [String]
5717
5703
  #
5718
5704
  # @!attribute [rw] label_category_config_s3_uri
5719
- # The S3 URI of the file that defines the categories used to label the
5705
+ # The S3 URI of the file, referred to as a *label category
5706
+ # configuration file*, that defines the categories used to label the
5720
5707
  # data objects.
5721
5708
  #
5722
- # For 3D point cloud task types, see [Create a Labeling Category
5709
+ # For 3D point cloud and video frame task types, you can add label
5710
+ # category attributes and frame attributes to your label category
5711
+ # configuration file. To learn how, see [Create a Labeling Category
5723
5712
  # Configuration File for 3D Point Cloud Labeling Jobs][1].
5724
5713
  #
5725
5714
  # For all other [built-in task types][2] and [custom tasks][3], your
@@ -6143,6 +6132,9 @@ module Aws::SageMaker
6143
6132
  # "EnvironmentKey" => "EnvironmentValue",
6144
6133
  # },
6145
6134
  # model_package_name: "VersionedArnOrName",
6135
+ # multi_model_config: {
6136
+ # model_cache_setting: "Enabled", # accepts Enabled, Disabled
6137
+ # },
6146
6138
  # },
6147
6139
  # containers: [
6148
6140
  # {
@@ -6157,6 +6149,9 @@ module Aws::SageMaker
6157
6149
  # "EnvironmentKey" => "EnvironmentValue",
6158
6150
  # },
6159
6151
  # model_package_name: "VersionedArnOrName",
6152
+ # multi_model_config: {
6153
+ # model_cache_setting: "Enabled", # accepts Enabled, Disabled
6154
+ # },
6160
6155
  # },
6161
6156
  # ],
6162
6157
  # execution_role_arn: "RoleArn", # required
@@ -17153,29 +17148,29 @@ module Aws::SageMaker
17153
17148
  # judgement for bounding box labels based on annotations from
17154
17149
  # individual workers.
17155
17150
  #
17156
- # * `arn:aws:lambda:us-east-1:432418664414:function:PRE-Adjustment3DPointCloudObjectTracking`
17151
+ # * `arn:aws:lambda:us-east-1:432418664414:function:PRE-VerificationBoundingBox`
17157
17152
  #
17158
- # * `arn:aws:lambda:us-east-2:266458841044:function:PRE-Adjustment3DPointCloudObjectTracking`
17153
+ # * `arn:aws:lambda:us-east-2:266458841044:function:PRE-VerificationBoundingBox`
17159
17154
  #
17160
- # * `arn:aws:lambda:us-west-2:081040173940:function:PRE-Adjustment3DPointCloudObjectTracking`
17155
+ # * `arn:aws:lambda:us-west-2:081040173940:function:PRE-VerificationBoundingBox`
17161
17156
  #
17162
- # * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-Adjustment3DPointCloudObjectTracking`
17157
+ # * `arn:aws:lambda:eu-west-1:568282634449:function:PRE-VerificationBoundingBox`
17163
17158
  #
17164
- # * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-Adjustment3DPointCloudObjectTracking`
17159
+ # * `arn:aws:lambda:ap-northeast-1:477331159723:function:PRE-VerificationBoundingBox`
17165
17160
  #
17166
- # * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-Adjustment3DPointCloudObjectTracking`
17161
+ # * `arn:aws:lambda:ap-southeast-2:454466003867:function:PRE-VerificationBoundingBox`
17167
17162
  #
17168
- # * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-Adjustment3DPointCloudObjectTracking`
17163
+ # * `arn:aws:lambda:ap-south-1:565803892007:function:PRE-VerificationBoundingBox`
17169
17164
  #
17170
- # * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-Adjustment3DPointCloudObjectTracking`
17165
+ # * `arn:aws:lambda:eu-central-1:203001061592:function:PRE-VerificationBoundingBox`
17171
17166
  #
17172
- # * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-Adjustment3DPointCloudObjectTracking`
17167
+ # * `arn:aws:lambda:ap-northeast-2:845288260483:function:PRE-VerificationBoundingBox`
17173
17168
  #
17174
- # * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-Adjustment3DPointCloudObjectTracking`
17169
+ # * `arn:aws:lambda:eu-west-2:487402164563:function:PRE-VerificationBoundingBox`
17175
17170
  #
17176
- # * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-Adjustment3DPointCloudObjectTracking`
17171
+ # * `arn:aws:lambda:ap-southeast-1:377565633583:function:PRE-VerificationBoundingBox`
17177
17172
  #
17178
- # * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-Adjustment3DPointCloudObjectTracking`
17173
+ # * `arn:aws:lambda:ca-central-1:918755190332:function:PRE-VerificationBoundingBox`
17179
17174
  #
17180
17175
  # **Bounding box adjustment** - Finds the most similar boxes from
17181
17176
  # different workers based on the Jaccard index of the adjusted
@@ -26156,6 +26151,34 @@ module Aws::SageMaker
26156
26151
  include Aws::Structure
26157
26152
  end
26158
26153
 
26154
+ # Specifies additional configuration for hosting multi-model endpoints.
26155
+ #
26156
+ # @note When making an API call, you may pass MultiModelConfig
26157
+ # data as a hash:
26158
+ #
26159
+ # {
26160
+ # model_cache_setting: "Enabled", # accepts Enabled, Disabled
26161
+ # }
26162
+ #
26163
+ # @!attribute [rw] model_cache_setting
26164
+ # Whether to cache models for a multi-model endpoint. By default,
26165
+ # multi-model endpoints cache models so that a model does not have to
26166
+ # be loaded into memory each time it is invoked. Some use cases do not
26167
+ # benefit from model caching. For example, if an endpoint hosts a
26168
+ # large number of models that are each invoked infrequently, the
26169
+ # endpoint might perform better if you disable model caching. To
26170
+ # disable model caching, set the value of this parameter to
26171
+ # `Disabled`.
26172
+ # @return [String]
26173
+ #
26174
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MultiModelConfig AWS API Documentation
26175
+ #
26176
+ class MultiModelConfig < Struct.new(
26177
+ :model_cache_setting)
26178
+ SENSITIVE = []
26179
+ include Aws::Structure
26180
+ end
26181
+
26159
26182
  # A list of nested Filter objects. A resource must satisfy the
26160
26183
  # conditions of all filters to be included in the results returned from
26161
26184
  # the Search API.
@@ -30056,7 +30079,7 @@ module Aws::SageMaker
30056
30079
  #
30057
30080
  # @!attribute [rw] s3_output_path
30058
30081
  # When `NotebookOutputOption` is `Allowed`, the Amazon S3 bucket used
30059
- # to save the notebook cell output.
30082
+ # to store the shared notebook snapshots.
30060
30083
  # @return [String]
30061
30084
  #
30062
30085
  # @!attribute [rw] s3_kms_key_id
@@ -34513,7 +34536,15 @@ module Aws::SageMaker
34513
34536
  include Aws::Structure
34514
34537
  end
34515
34538
 
34516
- # A collection of settings.
34539
+ # A collection of settings that apply to users of Amazon SageMaker
34540
+ # Studio. These settings are specified when the CreateUserProfile API is
34541
+ # called, and as `DefaultUserSettings` when the CreateDomain API is
34542
+ # called.
34543
+ #
34544
+ # `SecurityGroups` is aggregated when specified in both calls. For all
34545
+ # other settings in `UserSettings`, the values specified in
34546
+ # `CreateUserProfile` take precedence over those specified in
34547
+ # `CreateDomain`.
34517
34548
  #
34518
34549
  # @note When making an API call, you may pass UserSettings
34519
34550
  # data as a hash:
@@ -34569,6 +34600,10 @@ module Aws::SageMaker
34569
34600
  #
34570
34601
  # Required when the `CreateDomain.AppNetworkAccessType` parameter is
34571
34602
  # set to `VpcOnly`.
34603
+ #
34604
+ # Amazon SageMaker adds a security group to allow NFS traffic from
34605
+ # SageMaker Studio. Therefore, the number of security groups that you
34606
+ # can specify is one less than the maximum number shown.
34572
34607
  # @return [Array<String>]
34573
34608
  #
34574
34609
  # @!attribute [rw] sharing_settings