aws-sdk-sagemaker 1.91.0 → 1.92.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd7a383ebd960a73a0b483dfe3ab097efd97bffde863359dd2991651d65ef1f4
4
- data.tar.gz: f2fb90163e8a0b070a30a7a711e228c9b0fa45e8ec2dc802fe685e4616b21d8e
3
+ metadata.gz: 04d894bf01b7b45baf2fc484d1b5cd4c47e7e212acfc791e1aa8c6c1831a263f
4
+ data.tar.gz: 3dc642b0df15b81d4753ec4abfd64b366864e8a24a36c6c81bea13052d87a882
5
5
  SHA512:
6
- metadata.gz: fccdbd29032b3ebf065588d945ffcc3d2de13bca430633090eef30142d75c379c1ee2945c4c4cb80dd0a53c51b1535358773d55e52d2a6261b425d03c0f1d17e
7
- data.tar.gz: b4f9346d7b3f4892408a573b4eeada0e12b7a7a5ec0bb60fb34742041d97b11315a1ca04b510144c59c66d528c16827add2f4e9bd3ec560f65e692e517dcec44
6
+ metadata.gz: '01809f9724b6dd37f11f48e158a431d281b488a40c62eef37d71d6139b09c2357d987edc87da5a6ac1e3cf979f17ecc99c5bc9ce09d1da0feffc0669236b8cd9'
7
+ data.tar.gz: 0fa5edb60b80a01f965bf0328e654a4b574f35a605b8ef214ab3411ec6657ccaa9b22cc8dad713d2fb9cc8dfc01c01a7aa029822db8e695cb9a2c673695a3a3c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2021-07-01)
5
+ ------------------
6
+
7
+ * Feature - SageMaker model registry now supports up to 5 containers and associated environment variables.
8
+
4
9
  1.91.0 (2021-06-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.92.0
@@ -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.91.0'
52
+ GEM_VERSION = '1.92.0'
53
53
 
54
54
  end
@@ -405,7 +405,7 @@ module Aws::SageMaker
405
405
  #
406
406
  # Each tag consists of a key and an optional value. Tag keys must be
407
407
  # unique per resource. For more information about tags, see For more
408
- # information, see [AWS Tagging Strategies][1].
408
+ # information, see [Amazon Web Services Tagging Strategies][1].
409
409
  #
410
410
  # <note markdown="1"> Tags that you add to a hyperparameter tuning job by calling this API
411
411
  # are also added to any training jobs that the hyperparameter tuning job
@@ -438,9 +438,10 @@ module Aws::SageMaker
438
438
  # The Amazon Resource Name (ARN) of the resource that you want to tag.
439
439
  #
440
440
  # @option params [required, Array<Types::Tag>] :tags
441
- # An array of key-value pairs. You can use tags to categorize your AWS
442
- # resources in different ways, for example, by purpose, owner, or
443
- # environment. For more information, see [Tagging AWS Resources][1].
441
+ # An array of key-value pairs. You can use tags to categorize your
442
+ # Amazon Web Services resources in different ways, for example, by
443
+ # purpose, owner, or environment. For more information, see [Tagging
444
+ # Amazon Web Services Resources][1].
444
445
  #
445
446
  #
446
447
  #
@@ -531,8 +532,8 @@ module Aws::SageMaker
531
532
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html
532
533
  #
533
534
  # @option params [required, String] :action_name
534
- # The name of the action. Must be unique to your account in an AWS
535
- # Region.
535
+ # The name of the action. Must be unique to your account in an Amazon
536
+ # Web Services Region.
536
537
  #
537
538
  # @option params [required, Types::ActionSource] :source
538
539
  # The source type, ID, and URI.
@@ -602,7 +603,7 @@ module Aws::SageMaker
602
603
  end
603
604
 
604
605
  # Create a machine learning algorithm that you can use in Amazon
605
- # SageMaker and list in the AWS Marketplace.
606
+ # SageMaker and list in the Amazon Web Services Marketplace.
606
607
  #
607
608
  # @option params [required, String] :algorithm_name
608
609
  # The name of the algorithm.
@@ -652,13 +653,14 @@ module Aws::SageMaker
652
653
  # the algorithm's inference code.
653
654
  #
654
655
  # @option params [Boolean] :certify_for_marketplace
655
- # Whether to certify the algorithm so that it can be listed in AWS
656
- # Marketplace.
656
+ # Whether to certify the algorithm so that it can be listed in Amazon
657
+ # Web Services Marketplace.
657
658
  #
658
659
  # @option params [Array<Types::Tag>] :tags
659
- # An array of key-value pairs. You can use tags to categorize your AWS
660
- # resources in different ways, for example, by purpose, owner, or
661
- # environment. For more information, see [Tagging AWS Resources][1].
660
+ # An array of key-value pairs. You can use tags to categorize your
661
+ # Amazon Web Services resources in different ways, for example, by
662
+ # purpose, owner, or environment. For more information, see [Tagging
663
+ # Amazon Web Services Resources][1].
662
664
  #
663
665
  #
664
666
  #
@@ -732,6 +734,9 @@ module Aws::SageMaker
732
734
  # image_digest: "ImageDigest",
733
735
  # model_data_url: "Url",
734
736
  # product_id: "ProductId",
737
+ # environment: {
738
+ # "EnvironmentKey" => "EnvironmentValue",
739
+ # },
735
740
  # },
736
741
  # ],
737
742
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -982,8 +987,8 @@ module Aws::SageMaker
982
987
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html
983
988
  #
984
989
  # @option params [String] :artifact_name
985
- # The name of the artifact. Must be unique to your account in an AWS
986
- # Region.
990
+ # The name of the artifact. Must be unique to your account in an Amazon
991
+ # Web Services Region.
987
992
  #
988
993
  # @option params [required, Types::ArtifactSource] :source
989
994
  # The ID, ID type, and URI of the source.
@@ -1188,8 +1193,8 @@ module Aws::SageMaker
1188
1193
  # persists independently from the lifecycle of any notebook instances it
1189
1194
  # is associated with.
1190
1195
  #
1191
- # The repository can be hosted either in [AWS CodeCommit][1] or in any
1192
- # other Git repository.
1196
+ # The repository can be hosted either in [Amazon Web Services
1197
+ # CodeCommit][1] or in any other Git repository.
1193
1198
  #
1194
1199
  #
1195
1200
  #
@@ -1205,9 +1210,10 @@ module Aws::SageMaker
1205
1210
  # access the repository.
1206
1211
  #
1207
1212
  # @option params [Array<Types::Tag>] :tags
1208
- # An array of key-value pairs. You can use tags to categorize your AWS
1209
- # resources in different ways, for example, by purpose, owner, or
1210
- # environment. For more information, see [Tagging AWS Resources][1].
1213
+ # An array of key-value pairs. You can use tags to categorize your
1214
+ # Amazon Web Services resources in different ways, for example, by
1215
+ # purpose, owner, or environment. For more information, see [Tagging
1216
+ # Amazon Web Services Resources][1].
1211
1217
  #
1212
1218
  #
1213
1219
  #
@@ -1253,8 +1259,8 @@ module Aws::SageMaker
1253
1259
  #
1254
1260
  # If you choose to host your model using Amazon SageMaker hosting
1255
1261
  # services, you can use the resulting model artifacts as part of the
1256
- # model. You can also use the artifacts with AWS IoT Greengrass. In that
1257
- # case, deploy them as an ML resource.
1262
+ # model. You can also use the artifacts with Amazon Web Services IoT
1263
+ # Greengrass. In that case, deploy them as an ML resource.
1258
1264
  #
1259
1265
  # In the request body, you provide the following:
1260
1266
  #
@@ -1279,7 +1285,8 @@ module Aws::SageMaker
1279
1285
  #
1280
1286
  # @option params [required, String] :compilation_job_name
1281
1287
  # A name for the model compilation job. The name must be unique within
1282
- # the AWS Region and within your AWS account.
1288
+ # the Amazon Web Services Region and within your Amazon Web Services
1289
+ # account.
1283
1290
  #
1284
1291
  # @option params [required, String] :role_arn
1285
1292
  # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
@@ -1329,9 +1336,10 @@ module Aws::SageMaker
1329
1336
  # job. Use this API to cap model training costs.
1330
1337
  #
1331
1338
  # @option params [Array<Types::Tag>] :tags
1332
- # An array of key-value pairs. You can use tags to categorize your AWS
1333
- # resources in different ways, for example, by purpose, owner, or
1334
- # environment. For more information, see [Tagging AWS Resources][1].
1339
+ # An array of key-value pairs. You can use tags to categorize your
1340
+ # Amazon Web Services resources in different ways, for example, by
1341
+ # purpose, owner, or environment. For more information, see [Tagging
1342
+ # Amazon Web Services Resources][1].
1335
1343
  #
1336
1344
  #
1337
1345
  #
@@ -1409,8 +1417,8 @@ module Aws::SageMaker
1409
1417
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html
1410
1418
  #
1411
1419
  # @option params [required, String] :context_name
1412
- # The name of the context. Must be unique to your account in an AWS
1413
- # Region.
1420
+ # The name of the context. Must be unique to your account in an Amazon
1421
+ # Web Services Region.
1414
1422
  #
1415
1423
  # @option params [required, Types::ContextSource] :source
1416
1424
  # The source type, ID, and URI.
@@ -1506,8 +1514,8 @@ module Aws::SageMaker
1506
1514
  #
1507
1515
  # @option params [Array<Types::Tag>] :tags
1508
1516
  # (Optional) An array of key-value pairs. For more information, see
1509
- # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
1510
- # Management User Guide*.
1517
+ # [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
1518
+ # and Cost Management User Guide*.
1511
1519
  #
1512
1520
  #
1513
1521
  #
@@ -1613,8 +1621,8 @@ module Aws::SageMaker
1613
1621
  # The name of the fleet that the device belongs to.
1614
1622
  #
1615
1623
  # @option params [String] :role_arn
1616
- # The Amazon Resource Name (ARN) that has access to AWS Internet of
1617
- # Things (IoT).
1624
+ # The Amazon Resource Name (ARN) that has access to Amazon Web Services
1625
+ # Internet of Things (IoT).
1618
1626
  #
1619
1627
  # @option params [String] :description
1620
1628
  # A description of the fleet.
@@ -1627,9 +1635,9 @@ module Aws::SageMaker
1627
1635
  # Creates tags for the specified fleet.
1628
1636
  #
1629
1637
  # @option params [Boolean] :enable_iot_role_alias
1630
- # Whether to create an AWS IoT Role Alias during device fleet creation.
1631
- # The name of the role alias generated will match this pattern:
1632
- # "SageMakerEdge-\\\{DeviceFleetName\\}".
1638
+ # Whether to create an Amazon Web Services IoT Role Alias during device
1639
+ # fleet creation. The name of the role alias generated will match this
1640
+ # pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
1633
1641
  #
1634
1642
  # For example, if your device fleet is called "demo-fleet", the name
1635
1643
  # of the role alias will be "SageMakerEdge-demo-fleet".
@@ -1669,9 +1677,9 @@ module Aws::SageMaker
1669
1677
  # Creates a `Domain` used by Amazon SageMaker Studio. A domain consists
1670
1678
  # of an associated Amazon Elastic File System (EFS) volume, a list of
1671
1679
  # authorized users, and a variety of security, application, policy, and
1672
- # Amazon Virtual Private Cloud (VPC) configurations. An AWS account is
1673
- # limited to one domain per region. Users within a domain can share
1674
- # notebook files and other artifacts with each other.
1680
+ # Amazon Virtual Private Cloud (VPC) configurations. An Amazon Web
1681
+ # Services account is limited to one domain per region. Users within a
1682
+ # domain can share notebook files and other artifacts with each other.
1675
1683
  #
1676
1684
  # **EFS storage**
1677
1685
  #
@@ -1680,11 +1688,11 @@ module Aws::SageMaker
1680
1688
  # directory within the EFS volume for notebooks, Git repositories, and
1681
1689
  # data files.
1682
1690
  #
1683
- # SageMaker uses the AWS Key Management Service (AWS KMS) to encrypt the
1684
- # EFS volume attached to the domain with an AWS managed customer master
1685
- # key (CMK) by default. For more control, you can specify a customer
1686
- # managed CMK. For more information, see [Protect Data at Rest Using
1687
- # Encryption][1].
1691
+ # SageMaker uses the Amazon Web Services Key Management Service (Amazon
1692
+ # Web Services KMS) to encrypt the EFS volume attached to the domain
1693
+ # with an Amazon Web Services managed customer master key (CMK) by
1694
+ # default. For more control, you can specify a customer managed CMK. For
1695
+ # more information, see [Protect Data at Rest Using Encryption][1].
1688
1696
  #
1689
1697
  # **VPC configuration**
1690
1698
  #
@@ -1708,6 +1716,10 @@ module Aws::SageMaker
1708
1716
  # endpoint to the SageMaker API and runtime or a NAT gateway and your
1709
1717
  # security groups allow outbound connections.
1710
1718
  #
1719
+ # NFS traffic over TCP on port 2049 needs to be allowed in both inbound
1720
+ # and outbound rules in order to launch a SageMaker Studio app
1721
+ # successfully.
1722
+ #
1711
1723
  # For more information, see [Connect SageMaker Studio Notebooks to
1712
1724
  # Resources in a VPC][2].
1713
1725
  #
@@ -1761,9 +1773,10 @@ module Aws::SageMaker
1761
1773
  # This member is deprecated and replaced with `KmsKeyId`.
1762
1774
  #
1763
1775
  # @option params [String] :kms_key_id
1764
- # SageMaker uses AWS KMS to encrypt the EFS volume attached to the
1765
- # domain with an AWS managed customer master key (CMK) by default. For
1766
- # more control, specify a customer managed CMK.
1776
+ # SageMaker uses Amazon Web Services KMS to encrypt the EFS volume
1777
+ # attached to the domain with an Amazon Web Services managed customer
1778
+ # master key (CMK) by default. For more control, specify a customer
1779
+ # managed CMK.
1767
1780
  #
1768
1781
  # @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1769
1782
  #
@@ -1915,7 +1928,7 @@ module Aws::SageMaker
1915
1928
  #
1916
1929
  # For an example that calls this method when deploying a model to Amazon
1917
1930
  # SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
1918
- # Hosting Services (AWS SDK for Python (Boto 3)).][1]
1931
+ # Hosting Services (Amazon Web Services SDK for Python (Boto 3)).][1]
1919
1932
  #
1920
1933
  # <note markdown="1"> You must not delete an `EndpointConfig` that is in use by an endpoint
1921
1934
  # that is live or while the `UpdateEndpoint` or `CreateEndpoint`
@@ -1924,8 +1937,8 @@ module Aws::SageMaker
1924
1937
  #
1925
1938
  # </note>
1926
1939
  #
1927
- # The endpoint name must be unique within an AWS Region in your AWS
1928
- # account.
1940
+ # The endpoint name must be unique within an Amazon Web Services Region
1941
+ # in your Amazon Web Services account.
1929
1942
  #
1930
1943
  # When it receives the request, Amazon SageMaker creates the endpoint,
1931
1944
  # launches the resources (ML compute instances), and deploys the
@@ -1952,13 +1965,14 @@ module Aws::SageMaker
1952
1965
  # DescribeEndpoint API.
1953
1966
  #
1954
1967
  # If any of the models hosted at this endpoint get model data from an
1955
- # Amazon S3 location, Amazon SageMaker uses AWS Security Token Service
1956
- # to download model artifacts from the S3 path you provided. AWS STS is
1957
- # activated in your IAM user account by default. If you previously
1958
- # deactivated AWS STS for a region, you need to reactivate AWS STS for
1968
+ # Amazon S3 location, Amazon SageMaker uses Amazon Web Services Security
1969
+ # Token Service to download model artifacts from the S3 path you
1970
+ # provided. Amazon Web Services STS is activated in your IAM user
1971
+ # account by default. If you previously deactivated Amazon Web Services
1972
+ # STS for a region, you need to reactivate Amazon Web Services STS for
1959
1973
  # that region. For more information, see [Activating and Deactivating
1960
- # AWS STS in an AWS Region][3] in the *AWS Identity and Access
1961
- # Management User Guide*.
1974
+ # Amazon Web Services STS in an Amazon Web Services Region][3] in the
1975
+ # *Amazon Web Services Identity and Access Management User Guide*.
1962
1976
  #
1963
1977
  # <note markdown="1"> To add the IAM role policies for using this API operation, go to the
1964
1978
  # [IAM console][4], and choose Roles in the left navigation pane. Search
@@ -1998,18 +2012,20 @@ module Aws::SageMaker
1998
2012
  # [5]: https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html
1999
2013
  #
2000
2014
  # @option params [required, String] :endpoint_name
2001
- # The name of the endpoint.The name must be unique within an AWS Region
2002
- # in your AWS account. The name is case-insensitive in `CreateEndpoint`,
2003
- # but the case is preserved and must be matched in .
2015
+ # The name of the endpoint.The name must be unique within an Amazon Web
2016
+ # Services Region in your Amazon Web Services account. The name is
2017
+ # case-insensitive in `CreateEndpoint`, but the case is preserved and
2018
+ # must be matched in .
2004
2019
  #
2005
2020
  # @option params [required, String] :endpoint_config_name
2006
2021
  # The name of an endpoint configuration. For more information, see
2007
2022
  # CreateEndpointConfig.
2008
2023
  #
2009
2024
  # @option params [Array<Types::Tag>] :tags
2010
- # An array of key-value pairs. You can use tags to categorize your AWS
2011
- # resources in different ways, for example, by purpose, owner, or
2012
- # environment. For more information, see [Tagging AWS Resources][1].
2025
+ # An array of key-value pairs. You can use tags to categorize your
2026
+ # Amazon Web Services resources in different ways, for example, by
2027
+ # purpose, owner, or environment. For more information, see [Tagging
2028
+ # Amazon Web Services Resources][1].
2013
2029
  #
2014
2030
  #
2015
2031
  #
@@ -2070,7 +2086,7 @@ module Aws::SageMaker
2070
2086
  #
2071
2087
  # For an example that calls this method when deploying a model to Amazon
2072
2088
  # SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
2073
- # Hosting Services (AWS SDK for Python (Boto 3)).][1]
2089
+ # Hosting Services (Amazon Web Services SDK for Python (Boto 3)).][1]
2074
2090
  #
2075
2091
  # <note markdown="1"> When you call CreateEndpoint, a load call is made to DynamoDB to
2076
2092
  # verify that your endpoint configuration exists. When you read data
@@ -2102,18 +2118,19 @@ module Aws::SageMaker
2102
2118
  # @option params [Types::DataCaptureConfig] :data_capture_config
2103
2119
  #
2104
2120
  # @option params [Array<Types::Tag>] :tags
2105
- # An array of key-value pairs. You can use tags to categorize your AWS
2106
- # resources in different ways, for example, by purpose, owner, or
2107
- # environment. For more information, see [Tagging AWS Resources][1].
2121
+ # An array of key-value pairs. You can use tags to categorize your
2122
+ # Amazon Web Services resources in different ways, for example, by
2123
+ # purpose, owner, or environment. For more information, see [Tagging
2124
+ # Amazon Web Services Resources][1].
2108
2125
  #
2109
2126
  #
2110
2127
  #
2111
2128
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
2112
2129
  #
2113
2130
  # @option params [String] :kms_key_id
2114
- # The Amazon Resource Name (ARN) of a AWS Key Management Service key
2115
- # that Amazon SageMaker uses to encrypt data on the storage volume
2116
- # attached to the ML compute instance that hosts the endpoint.
2131
+ # The Amazon Resource Name (ARN) of a Amazon Web Services Key Management
2132
+ # Service key that Amazon SageMaker uses to encrypt data on the storage
2133
+ # volume attached to the ML compute instance that hosts the endpoint.
2117
2134
  #
2118
2135
  # The KmsKeyId can be any of the following formats:
2119
2136
  #
@@ -2129,8 +2146,8 @@ module Aws::SageMaker
2129
2146
  #
2130
2147
  # The KMS key policy must grant permission to the IAM role that you
2131
2148
  # specify in your `CreateEndpoint`, `UpdateEndpoint` requests. For more
2132
- # information, refer to the AWS Key Management Service section[ Using
2133
- # Key Policies in AWS KMS ][1]
2149
+ # information, refer to the Amazon Web Services Key Management Service
2150
+ # section[ Using Key Policies in Amazon Web Services KMS ][1]
2134
2151
  #
2135
2152
  # <note markdown="1"> Certain Nitro-based instances include local storage, dependent on the
2136
2153
  # instance type. Local storage volumes are encrypted using a hardware
@@ -2227,8 +2244,8 @@ module Aws::SageMaker
2227
2244
  #
2228
2245
  # When you use SageMaker Studio or the SageMaker Python SDK, all
2229
2246
  # experiments, trials, and trial components are automatically tracked,
2230
- # logged, and indexed. When you use the AWS SDK for Python (Boto), you
2231
- # must use the logging APIs provided by the SDK.
2247
+ # logged, and indexed. When you use the Amazon Web Services SDK for
2248
+ # Python (Boto), you must use the logging APIs provided by the SDK.
2232
2249
  #
2233
2250
  # You can add tags to experiments, trials, trial components and then use
2234
2251
  # the Search API to search for the tags.
@@ -2243,8 +2260,8 @@ module Aws::SageMaker
2243
2260
  # the ListTrials API. To create a trial call the CreateTrial API.
2244
2261
  #
2245
2262
  # @option params [required, String] :experiment_name
2246
- # The name of the experiment. The name must be unique in your AWS
2247
- # account and is not case-sensitive.
2263
+ # The name of the experiment. The name must be unique in your Amazon Web
2264
+ # Services account and is not case-sensitive.
2248
2265
  #
2249
2266
  # @option params [String] :display_name
2250
2267
  # The name of the experiment as displayed. The name doesn't need to be
@@ -2296,8 +2313,8 @@ module Aws::SageMaker
2296
2313
  # FeatureGroup. A `FeatureGroup` definition is composed of a list of
2297
2314
  # `Features`, a `RecordIdentifierFeatureName`, an `EventTimeFeatureName`
2298
2315
  # and configurations for its `OnlineStore` and `OfflineStore`. Check
2299
- # [AWS service quotas][1] to see the `FeatureGroup`s quota for your AWS
2300
- # account.
2316
+ # [Amazon Web Services service quotas][1] to see the `FeatureGroup`s
2317
+ # quota for your Amazon Web Services account.
2301
2318
  #
2302
2319
  # You must include at least one of `OnlineStoreConfig` and
2303
2320
  # `OfflineStoreConfig` to create a `FeatureGroup`.
@@ -2307,8 +2324,9 @@ module Aws::SageMaker
2307
2324
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html
2308
2325
  #
2309
2326
  # @option params [required, String] :feature_group_name
2310
- # The name of the `FeatureGroup`. The name must be unique within an AWS
2311
- # Region in an AWS account. The name:
2327
+ # The name of the `FeatureGroup`. The name must be unique within an
2328
+ # Amazon Web Services Region in an Amazon Web Services account. The
2329
+ # name:
2312
2330
  #
2313
2331
  # * Must start and end with an alphanumeric character.
2314
2332
  #
@@ -2371,8 +2389,8 @@ module Aws::SageMaker
2371
2389
  # `EnableOnlineStore` flag in `OnlineStoreConfig`; the default value is
2372
2390
  # `False`.
2373
2391
  #
2374
- # You can also include an AWS KMS key ID (`KMSKeyId`) for at-rest
2375
- # encryption of the `OnlineStore`.
2392
+ # You can also include an Amazon Web Services KMS key ID (`KMSKeyId`)
2393
+ # for at-rest encryption of the `OnlineStore`.
2376
2394
  #
2377
2395
  # @option params [Types::OfflineStoreConfig] :offline_store_config
2378
2396
  # Use this to configure an `OfflineFeatureStore`. This parameter allows
@@ -2381,7 +2399,8 @@ module Aws::SageMaker
2381
2399
  # * The Amazon Simple Storage Service (Amazon S3) location of an
2382
2400
  # `OfflineStore`.
2383
2401
  #
2384
- # * A configuration for an AWS Glue or AWS Hive data cataolgue.
2402
+ # * A configuration for an Amazon Web Services Glue or Amazon Web
2403
+ # Services Hive data cataolgue.
2385
2404
  #
2386
2405
  # * An KMS encryption key to encrypt the Amazon S3 location used for
2387
2406
  # `OfflineStore`.
@@ -2605,9 +2624,10 @@ module Aws::SageMaker
2605
2624
  # @option params [required, String] :hyper_parameter_tuning_job_name
2606
2625
  # The name of the tuning job. This name is the prefix for the names of
2607
2626
  # all training jobs that this tuning job launches. The name must be
2608
- # unique within the same AWS account and AWS Region. The name must have
2609
- # 1 to 32 characters. Valid characters are a-z, A-Z, 0-9, and : + = @ \_
2610
- # % - (hyphen). The name is not case sensitive.
2627
+ # unique within the same Amazon Web Services account and Amazon Web
2628
+ # Services Region. The name must have 1 to 32 characters. Valid
2629
+ # characters are a-z, A-Z, 0-9, and : + = @ \_ % - (hyphen). The name is
2630
+ # not case sensitive.
2611
2631
  #
2612
2632
  # @option params [required, Types::HyperParameterTuningJobConfig] :hyper_parameter_tuning_job_config
2613
2633
  # The HyperParameterTuningJobConfig object that describes the tuning
@@ -2652,9 +2672,10 @@ module Aws::SageMaker
2652
2672
  # </note>
2653
2673
  #
2654
2674
  # @option params [Array<Types::Tag>] :tags
2655
- # An array of key-value pairs. You can use tags to categorize your AWS
2656
- # resources in different ways, for example, by purpose, owner, or
2657
- # environment. For more information, see [Tagging AWS Resources][1].
2675
+ # An array of key-value pairs. You can use tags to categorize your
2676
+ # Amazon Web Services resources in different ways, for example, by
2677
+ # purpose, owner, or environment. For more information, see [Tagging
2678
+ # Amazon Web Services Resources][1].
2658
2679
  #
2659
2680
  # Tags that you specify for the tuning job are also added to all
2660
2681
  # training jobs that the tuning job launches.
@@ -3012,8 +3033,9 @@ module Aws::SageMaker
3012
3033
  # [@digest]>`
3013
3034
  #
3014
3035
  # @option params [required, String] :client_token
3015
- # A unique ID. If not specified, the AWS CLI and AWS SDKs, such as the
3016
- # SDK for Python (Boto3), add a unique value to the call.
3036
+ # A unique ID. If not specified, the Amazon Web Services CLI and Amazon
3037
+ # Web Services SDKs, such as the SDK for Python (Boto3), add a unique
3038
+ # value to the call.
3017
3039
  #
3018
3040
  # **A suitable default value is auto-generated.** You should normally
3019
3041
  # not need to pass this option.**
@@ -3057,8 +3079,8 @@ module Aws::SageMaker
3057
3079
  # the data to stay within your organization or when a specific set of
3058
3080
  # skills is required.
3059
3081
  #
3060
- # * One or more vendors that you select from the AWS Marketplace.
3061
- # Vendors provide expertise in specific areas.
3082
+ # * One or more vendors that you select from the Amazon Web Services
3083
+ # Marketplace. Vendors provide expertise in specific areas.
3062
3084
  #
3063
3085
  # * The Amazon Mechanical Turk workforce. This is the largest workforce,
3064
3086
  # but it should only be used for public data or data that has been
@@ -3098,9 +3120,9 @@ module Aws::SageMaker
3098
3120
  # @option params [required, String] :labeling_job_name
3099
3121
  # The name of the labeling job. This name is used to identify the job in
3100
3122
  # a list of labeling jobs. Labeling job names must be unique within an
3101
- # AWS account and region. `LabelingJobName` is not case sensitive. For
3102
- # example, Example-job and example-job are considered the same labeling
3103
- # job name by Ground Truth.
3123
+ # Amazon Web Services account and region. `LabelingJobName` is not case
3124
+ # sensitive. For example, Example-job and example-job are considered the
3125
+ # same labeling job name by Ground Truth.
3104
3126
  #
3105
3127
  # @option params [required, String] :label_attribute_name
3106
3128
  # The attribute name to use for the label in the output manifest file.
@@ -3177,8 +3199,9 @@ module Aws::SageMaker
3177
3199
  # content.
3178
3200
  #
3179
3201
  # @option params [required, Types::LabelingJobOutputConfig] :output_config
3180
- # The location of the output data and the AWS Key Management Service key
3181
- # ID for the key used to encrypt the output data, if any.
3202
+ # The location of the output data and the Amazon Web Services Key
3203
+ # Management Service key ID for the key used to encrypt the output data,
3204
+ # if any.
3182
3205
  #
3183
3206
  # @option params [required, String] :role_arn
3184
3207
  # The Amazon Resource Number (ARN) that Amazon SageMaker assumes to
@@ -3248,8 +3271,8 @@ module Aws::SageMaker
3248
3271
  #
3249
3272
  # @option params [Array<Types::Tag>] :tags
3250
3273
  # An array of key/value pairs. For more information, see [Using Cost
3251
- # Allocation Tags][1] in the *AWS Billing and Cost Management User
3252
- # Guide*.
3274
+ # Allocation Tags][1] in the *Amazon Web Services Billing and Cost
3275
+ # Management User Guide*.
3253
3276
  #
3254
3277
  #
3255
3278
  #
@@ -3357,7 +3380,7 @@ module Aws::SageMaker
3357
3380
  #
3358
3381
  # For an example that calls this method when deploying a model to Amazon
3359
3382
  # SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
3360
- # Hosting Services (AWS SDK for Python (Boto 3)).][1]
3383
+ # Hosting Services (Amazon Web Services SDK for Python (Boto 3)).][1]
3361
3384
  #
3362
3385
  # To run a batch transform using your model, you start a job with the
3363
3386
  # `CreateTransformJob` API. Amazon SageMaker uses your model and your
@@ -3371,8 +3394,8 @@ module Aws::SageMaker
3371
3394
  # assume to access model artifacts and docker image for deployment on ML
3372
3395
  # compute hosting instances or for batch transform jobs. In addition,
3373
3396
  # you also use the IAM role to manage permissions the inference code
3374
- # needs. For example, if the inference code access any other AWS
3375
- # resources, you grant necessary permissions via this role.
3397
+ # needs. For example, if the inference code access any other Amazon Web
3398
+ # Services resources, you grant necessary permissions via this role.
3376
3399
  #
3377
3400
  #
3378
3401
  #
@@ -3410,9 +3433,10 @@ module Aws::SageMaker
3410
3433
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
3411
3434
  #
3412
3435
  # @option params [Array<Types::Tag>] :tags
3413
- # An array of key-value pairs. You can use tags to categorize your AWS
3414
- # resources in different ways, for example, by purpose, owner, or
3415
- # environment. For more information, see [Tagging AWS Resources][1].
3436
+ # An array of key-value pairs. You can use tags to categorize your
3437
+ # Amazon Web Services resources in different ways, for example, by
3438
+ # purpose, owner, or environment. For more information, see [Tagging
3439
+ # Amazon Web Services Resources][1].
3416
3440
  #
3417
3441
  #
3418
3442
  #
@@ -3517,7 +3541,7 @@ module Aws::SageMaker
3517
3541
  #
3518
3542
  # @option params [required, String] :job_definition_name
3519
3543
  # The name of the bias job definition. The name must be unique within an
3520
- # AWS Region in the AWS account.
3544
+ # Amazon Web Services Region in the Amazon Web Services account.
3521
3545
  #
3522
3546
  # @option params [Types::ModelBiasBaselineConfig] :model_bias_baseline_config
3523
3547
  # The baseline configuration for a model bias job.
@@ -3548,8 +3572,8 @@ module Aws::SageMaker
3548
3572
  #
3549
3573
  # @option params [Array<Types::Tag>] :tags
3550
3574
  # (Optional) An array of key-value pairs. For more information, see
3551
- # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
3552
- # Management User Guide*.
3575
+ # [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
3576
+ # and Cost Management User Guide*.
3553
3577
  #
3554
3578
  #
3555
3579
  #
@@ -3650,7 +3674,8 @@ module Aws::SageMaker
3650
3674
  #
3651
3675
  # @option params [required, String] :job_definition_name
3652
3676
  # The name of the model explainability job definition. The name must be
3653
- # unique within an AWS Region in the AWS account.
3677
+ # unique within an Amazon Web Services Region in the Amazon Web Services
3678
+ # account.
3654
3679
  #
3655
3680
  # @option params [Types::ModelExplainabilityBaselineConfig] :model_explainability_baseline_config
3656
3681
  # The baseline configuration for a model explainability job.
@@ -3681,8 +3706,8 @@ module Aws::SageMaker
3681
3706
  #
3682
3707
  # @option params [Array<Types::Tag>] :tags
3683
3708
  # (Optional) An array of key-value pairs. For more information, see
3684
- # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
3685
- # Management User Guide*.
3709
+ # [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
3710
+ # and Cost Management User Guide*.
3686
3711
  #
3687
3712
  #
3688
3713
  #
@@ -3777,15 +3802,17 @@ module Aws::SageMaker
3777
3802
  end
3778
3803
 
3779
3804
  # Creates a model package that you can use to create Amazon SageMaker
3780
- # models or list on AWS Marketplace, or a versioned model that is part
3781
- # of a model group. Buyers can subscribe to model packages listed on AWS
3782
- # Marketplace to create models in Amazon SageMaker.
3805
+ # models or list on Amazon Web Services Marketplace, or a versioned
3806
+ # model that is part of a model group. Buyers can subscribe to model
3807
+ # packages listed on Amazon Web Services Marketplace to create models in
3808
+ # Amazon SageMaker.
3783
3809
  #
3784
3810
  # To create a model package by specifying a Docker container that
3785
3811
  # contains your inference code and the Amazon S3 location of your model
3786
3812
  # artifacts, provide values for `InferenceSpecification`. To create a
3787
3813
  # model from an algorithm resource that you created or subscribed to in
3788
- # AWS Marketplace, provide a value for `SourceAlgorithmSpecification`.
3814
+ # Amazon Web Services Marketplace, provide a value for
3815
+ # `SourceAlgorithmSpecification`.
3789
3816
  #
3790
3817
  # <note markdown="1"> There are two types of model packages:
3791
3818
  #
@@ -3833,15 +3860,16 @@ module Aws::SageMaker
3833
3860
  # Details about the algorithm that was used to create the model package.
3834
3861
  #
3835
3862
  # @option params [Boolean] :certify_for_marketplace
3836
- # Whether to certify the model package for listing on AWS Marketplace.
3863
+ # Whether to certify the model package for listing on Amazon Web
3864
+ # Services Marketplace.
3837
3865
  #
3838
3866
  # This parameter is optional for unversioned models, and does not apply
3839
3867
  # to versioned models.
3840
3868
  #
3841
3869
  # @option params [Array<Types::Tag>] :tags
3842
3870
  # A list of key value pairs associated with the model. For more
3843
- # information, see [Tagging AWS resources][1] in the *AWS General
3844
- # Reference Guide*.
3871
+ # information, see [Tagging Amazon Web Services resources][1] in the
3872
+ # *Amazon Web Services General Reference Guide*.
3845
3873
  #
3846
3874
  #
3847
3875
  #
@@ -3887,6 +3915,9 @@ module Aws::SageMaker
3887
3915
  # image_digest: "ImageDigest",
3888
3916
  # model_data_url: "Url",
3889
3917
  # product_id: "ProductId",
3918
+ # environment: {
3919
+ # "EnvironmentKey" => "EnvironmentValue",
3920
+ # },
3890
3921
  # },
3891
3922
  # ],
3892
3923
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -4021,8 +4052,8 @@ module Aws::SageMaker
4021
4052
  #
4022
4053
  # @option params [Array<Types::Tag>] :tags
4023
4054
  # A list of key value pairs associated with the model group. For more
4024
- # information, see [Tagging AWS resources][1] in the *AWS General
4025
- # Reference Guide*.
4055
+ # information, see [Tagging Amazon Web Services resources][1] in the
4056
+ # *Amazon Web Services General Reference Guide*.
4026
4057
  #
4027
4058
  #
4028
4059
  #
@@ -4098,8 +4129,8 @@ module Aws::SageMaker
4098
4129
  #
4099
4130
  # @option params [Array<Types::Tag>] :tags
4100
4131
  # (Optional) An array of key-value pairs. For more information, see
4101
- # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
4102
- # Management User Guide*.
4132
+ # [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
4133
+ # and Cost Management User Guide*.
4103
4134
  #
4104
4135
  #
4105
4136
  #
@@ -4205,7 +4236,7 @@ module Aws::SageMaker
4205
4236
  #
4206
4237
  # @option params [required, String] :monitoring_schedule_name
4207
4238
  # The name of the monitoring schedule. The name must be unique within an
4208
- # AWS Region within an AWS account.
4239
+ # Amazon Web Services Region within an Amazon Web Services account.
4209
4240
  #
4210
4241
  # @option params [required, Types::MonitoringScheduleConfig] :monitoring_schedule_config
4211
4242
  # The configuration object that specifies the monitoring schedule and
@@ -4215,7 +4246,7 @@ module Aws::SageMaker
4215
4246
  # (Optional) An array of key-value pairs. For more information, see
4216
4247
  # [Using Cost Allocation Tags](
4217
4248
  # https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL)
4218
- # in the *AWS Billing and Cost Management User Guide*.
4249
+ # in the *Amazon Web Services Billing and Cost Management User Guide*.
4219
4250
  #
4220
4251
  # @return [Types::CreateMonitoringScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4221
4252
  #
@@ -4384,13 +4415,13 @@ module Aws::SageMaker
4384
4415
  # groups must be for the same VPC as specified in the subnet.
4385
4416
  #
4386
4417
  # @option params [required, String] :role_arn
4387
- # When you send any requests to AWS resources from the notebook
4388
- # instance, Amazon SageMaker assumes this role to perform tasks on your
4389
- # behalf. You must grant this role necessary permissions so Amazon
4390
- # SageMaker can perform these tasks. The policy must allow the Amazon
4391
- # SageMaker service principal (sagemaker.amazonaws.com) permissions to
4392
- # assume this role. For more information, see [Amazon SageMaker
4393
- # Roles][1].
4418
+ # When you send any requests to Amazon Web Services resources from the
4419
+ # notebook instance, Amazon SageMaker assumes this role to perform tasks
4420
+ # on your behalf. You must grant this role necessary permissions so
4421
+ # Amazon SageMaker can perform these tasks. The policy must allow the
4422
+ # Amazon SageMaker service principal (sagemaker.amazonaws.com)
4423
+ # permissions to assume this role. For more information, see [Amazon
4424
+ # SageMaker Roles][1].
4394
4425
  #
4395
4426
  # <note markdown="1"> To be able to pass this role to Amazon SageMaker, the caller of this
4396
4427
  # API must have the `iam:PassRole` permission.
@@ -4402,20 +4433,21 @@ module Aws::SageMaker
4402
4433
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
4403
4434
  #
4404
4435
  # @option params [String] :kms_key_id
4405
- # The Amazon Resource Name (ARN) of a AWS Key Management Service key
4406
- # that Amazon SageMaker uses to encrypt data on the storage volume
4407
- # attached to your notebook instance. The KMS key you provide must be
4408
- # enabled. For information, see [Enabling and Disabling Keys][1] in the
4409
- # *AWS Key Management Service Developer Guide*.
4436
+ # The Amazon Resource Name (ARN) of a Amazon Web Services Key Management
4437
+ # Service key that Amazon SageMaker uses to encrypt data on the storage
4438
+ # volume attached to your notebook instance. The KMS key you provide
4439
+ # must be enabled. For information, see [Enabling and Disabling Keys][1]
4440
+ # in the *Amazon Web Services Key Management Service Developer Guide*.
4410
4441
  #
4411
4442
  #
4412
4443
  #
4413
4444
  # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/enabling-keys.html
4414
4445
  #
4415
4446
  # @option params [Array<Types::Tag>] :tags
4416
- # An array of key-value pairs. You can use tags to categorize your AWS
4417
- # resources in different ways, for example, by purpose, owner, or
4418
- # environment. For more information, see [Tagging AWS Resources][1].
4447
+ # An array of key-value pairs. You can use tags to categorize your
4448
+ # Amazon Web Services resources in different ways, for example, by
4449
+ # purpose, owner, or environment. For more information, see [Tagging
4450
+ # Amazon Web Services Resources][1].
4419
4451
  #
4420
4452
  #
4421
4453
  #
@@ -4463,10 +4495,11 @@ module Aws::SageMaker
4463
4495
  # A Git repository to associate with the notebook instance as its
4464
4496
  # default code repository. This can be either the name of a Git
4465
4497
  # repository stored as a resource in your account, or the URL of a Git
4466
- # repository in [AWS CodeCommit][1] or in any other Git repository. When
4467
- # you open a notebook instance, it opens in the directory that contains
4468
- # this repository. For more information, see [Associating Git
4469
- # Repositories with Amazon SageMaker Notebook Instances][2].
4498
+ # repository in [Amazon Web Services CodeCommit][1] or in any other Git
4499
+ # repository. When you open a notebook instance, it opens in the
4500
+ # directory that contains this repository. For more information, see
4501
+ # [Associating Git Repositories with Amazon SageMaker Notebook
4502
+ # Instances][2].
4470
4503
  #
4471
4504
  #
4472
4505
  #
@@ -4477,10 +4510,11 @@ module Aws::SageMaker
4477
4510
  # An array of up to three Git repositories to associate with the
4478
4511
  # notebook instance. These can be either the names of Git repositories
4479
4512
  # stored as resources in your account, or the URL of Git repositories in
4480
- # [AWS CodeCommit][1] or in any other Git repository. These repositories
4481
- # are cloned at the same level as the default repository of your
4482
- # notebook instance. For more information, see [Associating Git
4483
- # Repositories with Amazon SageMaker Notebook Instances][2].
4513
+ # [Amazon Web Services CodeCommit][1] or in any other Git repository.
4514
+ # These repositories are cloned at the same level as the default
4515
+ # repository of your notebook instance. For more information, see
4516
+ # [Associating Git Repositories with Amazon SageMaker Notebook
4517
+ # Instances][2].
4484
4518
  #
4485
4519
  #
4486
4520
  #
@@ -4678,13 +4712,29 @@ module Aws::SageMaker
4678
4712
  # This operation can only be called when the authentication mode equals
4679
4713
  # IAM.
4680
4714
  #
4715
+ # The IAM role or user used to call this API defines the permissions to
4716
+ # access the app. Once the presigned URL is created, no additional
4717
+ # permission is required to access this URL. IAM authorization policies
4718
+ # for this API are also enforced for every HTTP request and WebSocket
4719
+ # frame that attempts to connect to the app.
4720
+ #
4721
+ # You can restrict access to this API and to the URL that it returns to
4722
+ # a list of IP addresses, Amazon VPCs or Amazon VPC Endpoints that you
4723
+ # specify. For more information, see [Connect to SageMaker Studio
4724
+ # Through an Interface VPC Endpoint][1] .
4725
+ #
4681
4726
  # <note markdown="1"> The URL that you get from a call to `CreatePresignedDomainUrl` has a
4682
4727
  # default timeout of 5 minutes. You can configure this value using
4683
4728
  # `ExpiresInSeconds`. If you try to use the URL after the timeout limit
4684
- # expires, you are directed to the AWS console sign-in page.
4729
+ # expires, you are directed to the Amazon Web Services console sign-in
4730
+ # page.
4685
4731
  #
4686
4732
  # </note>
4687
4733
  #
4734
+ #
4735
+ #
4736
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/studio-interface-endpoint.html
4737
+ #
4688
4738
  # @option params [required, String] :domain_id
4689
4739
  # The domain ID.
4690
4740
  #
@@ -4747,8 +4797,8 @@ module Aws::SageMaker
4747
4797
  #
4748
4798
  # <note markdown="1"> The URL that you get from a call to CreatePresignedNotebookInstanceUrl
4749
4799
  # is valid only for 5 minutes. If you try to use the URL after the
4750
- # 5-minute limit expires, you are directed to the AWS console sign-in
4751
- # page.
4800
+ # 5-minute limit expires, you are directed to the Amazon Web Services
4801
+ # console sign-in page.
4752
4802
  #
4753
4803
  # </note>
4754
4804
  #
@@ -4796,8 +4846,8 @@ module Aws::SageMaker
4796
4846
  # Output configuration for the processing job.
4797
4847
  #
4798
4848
  # @option params [required, String] :processing_job_name
4799
- # The name of the processing job. The name must be unique within an AWS
4800
- # Region in the AWS account.
4849
+ # The name of the processing job. The name must be unique within an
4850
+ # Amazon Web Services Region in the Amazon Web Services account.
4801
4851
  #
4802
4852
  # @option params [required, Types::ProcessingResources] :processing_resources
4803
4853
  # Identifies the resources, ML compute instances, and ML storage volumes
@@ -4827,8 +4877,8 @@ module Aws::SageMaker
4827
4877
  #
4828
4878
  # @option params [Array<Types::Tag>] :tags
4829
4879
  # (Optional) An array of key-value pairs. For more information, see
4830
- # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
4831
- # Management User Guide*.
4880
+ # [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
4881
+ # and Cost Management User Guide*.
4832
4882
  #
4833
4883
  #
4834
4884
  #
@@ -4975,7 +5025,8 @@ module Aws::SageMaker
4975
5025
  #
4976
5026
  # @option params [required, Types::ServiceCatalogProvisioningDetails] :service_catalog_provisioning_details
4977
5027
  # The product ID and provisioning artifact ID to provision a service
4978
- # catalog. For information, see [What is AWS Service Catalog][1].
5028
+ # catalog. For information, see [What is Amazon Web Services Service
5029
+ # Catalog][1].
4979
5030
  #
4980
5031
  #
4981
5032
  #
@@ -4983,8 +5034,9 @@ module Aws::SageMaker
4983
5034
  #
4984
5035
  # @option params [Array<Types::Tag>] :tags
4985
5036
  # An array of key-value pairs that you want to use to organize and track
4986
- # your AWS resource costs. For more information, see [Tagging AWS
4987
- # resources][1] in the *AWS General Reference Guide*.
5037
+ # your Amazon Web Services resource costs. For more information, see
5038
+ # [Tagging Amazon Web Services resources][1] in the *Amazon Web Services
5039
+ # General Reference Guide*.
4988
5040
  #
4989
5041
  #
4990
5042
  #
@@ -5092,8 +5144,8 @@ module Aws::SageMaker
5092
5144
  # [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/how-it-works.html
5093
5145
  #
5094
5146
  # @option params [required, String] :training_job_name
5095
- # The name of the training job. The name must be unique within an AWS
5096
- # Region in an AWS account.
5147
+ # The name of the training job. The name must be unique within an Amazon
5148
+ # Web Services Region in an Amazon Web Services account.
5097
5149
  #
5098
5150
  # @option params [Hash<String,String>] :hyper_parameters
5099
5151
  # Algorithm-specific parameters that influence the quality of the model.
@@ -5197,9 +5249,10 @@ module Aws::SageMaker
5197
5249
  # of training are not lost.
5198
5250
  #
5199
5251
  # @option params [Array<Types::Tag>] :tags
5200
- # An array of key-value pairs. You can use tags to categorize your AWS
5201
- # resources in different ways, for example, by purpose, owner, or
5202
- # environment. For more information, see [Tagging AWS Resources][1].
5252
+ # An array of key-value pairs. You can use tags to categorize your
5253
+ # Amazon Web Services resources in different ways, for example, by
5254
+ # purpose, owner, or environment. For more information, see [Tagging
5255
+ # Amazon Web Services Resources][1].
5203
5256
  #
5204
5257
  #
5205
5258
  #
@@ -5457,12 +5510,13 @@ module Aws::SageMaker
5457
5510
  # In the request body, you provide the following:
5458
5511
  #
5459
5512
  # * `TransformJobName` - Identifies the transform job. The name must be
5460
- # unique within an AWS Region in an AWS account.
5513
+ # unique within an Amazon Web Services Region in an Amazon Web
5514
+ # Services account.
5461
5515
  #
5462
5516
  # * `ModelName` - Identifies the model to use. `ModelName` must be the
5463
- # name of an existing Amazon SageMaker model in the same AWS Region
5464
- # and AWS account. For information on creating a model, see
5465
- # CreateModel.
5517
+ # name of an existing Amazon SageMaker model in the same Amazon Web
5518
+ # Services Region and Amazon Web Services account. For information on
5519
+ # creating a model, see CreateModel.
5466
5520
  #
5467
5521
  # * `TransformInput` - Describes the dataset to be transformed and the
5468
5522
  # Amazon S3 location where it is stored.
@@ -5481,13 +5535,14 @@ module Aws::SageMaker
5481
5535
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html
5482
5536
  #
5483
5537
  # @option params [required, String] :transform_job_name
5484
- # The name of the transform job. The name must be unique within an AWS
5485
- # Region in an AWS account.
5538
+ # The name of the transform job. The name must be unique within an
5539
+ # Amazon Web Services Region in an Amazon Web Services account.
5486
5540
  #
5487
5541
  # @option params [required, String] :model_name
5488
5542
  # The name of the model that you want to use for the transform job.
5489
5543
  # `ModelName` must be the name of an existing Amazon SageMaker model
5490
- # within an AWS Region in an AWS account.
5544
+ # within an Amazon Web Services Region in an Amazon Web Services
5545
+ # account.
5491
5546
  #
5492
5547
  # @option params [Integer] :max_concurrent_transforms
5493
5548
  # The maximum number of parallel requests that can be sent to each
@@ -5568,8 +5623,8 @@ module Aws::SageMaker
5568
5623
  #
5569
5624
  # @option params [Array<Types::Tag>] :tags
5570
5625
  # (Optional) An array of key-value pairs. For more information, see
5571
- # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
5572
- # Management User Guide*.
5626
+ # [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
5627
+ # and Cost Management User Guide*.
5573
5628
  #
5574
5629
  #
5575
5630
  #
@@ -5663,8 +5718,8 @@ module Aws::SageMaker
5663
5718
  #
5664
5719
  # When you use SageMaker Studio or the SageMaker Python SDK, all
5665
5720
  # experiments, trials, and trial components are automatically tracked,
5666
- # logged, and indexed. When you use the AWS SDK for Python (Boto), you
5667
- # must use the logging APIs provided by the SDK.
5721
+ # logged, and indexed. When you use the Amazon Web Services SDK for
5722
+ # Python (Boto), you must use the logging APIs provided by the SDK.
5668
5723
  #
5669
5724
  # You can add tags to a trial and then use the Search API to search for
5670
5725
  # the tags.
@@ -5674,8 +5729,8 @@ module Aws::SageMaker
5674
5729
  # component, call the CreateTrialComponent API.
5675
5730
  #
5676
5731
  # @option params [required, String] :trial_name
5677
- # The name of the trial. The name must be unique in your AWS account and
5678
- # is not case-sensitive.
5732
+ # The name of the trial. The name must be unique in your Amazon Web
5733
+ # Services account and is not case-sensitive.
5679
5734
  #
5680
5735
  # @option params [String] :display_name
5681
5736
  # The name of the trial as displayed. The name doesn't need to be
@@ -5737,23 +5792,15 @@ module Aws::SageMaker
5737
5792
  #
5738
5793
  # When you use SageMaker Studio or the SageMaker Python SDK, all
5739
5794
  # experiments, trials, and trial components are automatically tracked,
5740
- # logged, and indexed. When you use the AWS SDK for Python (Boto), you
5741
- # must use the logging APIs provided by the SDK.
5795
+ # logged, and indexed. When you use the Amazon Web Services SDK for
5796
+ # Python (Boto), you must use the logging APIs provided by the SDK.
5742
5797
  #
5743
5798
  # You can add tags to a trial component and then use the Search API to
5744
5799
  # search for the tags.
5745
5800
  #
5746
- # <note markdown="1"> `CreateTrialComponent` can only be invoked from within an SageMaker
5747
- # managed environment. This includes SageMaker training jobs, processing
5748
- # jobs, transform jobs, and SageMaker notebooks. A call to
5749
- # `CreateTrialComponent` from outside one of these environments results
5750
- # in an error.
5751
- #
5752
- # </note>
5753
- #
5754
5801
  # @option params [required, String] :trial_component_name
5755
- # The name of the component. The name must be unique in your AWS account
5756
- # and is not case-sensitive.
5802
+ # The name of the component. The name must be unique in your Amazon Web
5803
+ # Services account and is not case-sensitive.
5757
5804
  #
5758
5805
  # @option params [String] :display_name
5759
5806
  # The name of the component as displayed. The name doesn't need to be
@@ -5876,10 +5923,10 @@ module Aws::SageMaker
5876
5923
  # not SSO, this field cannot be specified.
5877
5924
  #
5878
5925
  # @option params [String] :single_sign_on_user_value
5879
- # The username of the associated AWS Single Sign-On User for this
5880
- # UserProfile. If the Domain's AuthMode is SSO, this field is required,
5881
- # and must match a valid username of a user in your directory. If the
5882
- # Domain's AuthMode is not SSO, this field cannot be specified.
5926
+ # The username of the associated Amazon Web Services Single Sign-On User
5927
+ # for this UserProfile. If the Domain's AuthMode is SSO, this field is
5928
+ # required, and must match a valid username of a user in your directory.
5929
+ # If the Domain's AuthMode is not SSO, this field cannot be specified.
5883
5930
  #
5884
5931
  # @option params [Array<Types::Tag>] :tags
5885
5932
  # Each tag consists of a key and an optional value. Tag keys must be
@@ -5961,13 +6008,14 @@ module Aws::SageMaker
5961
6008
  end
5962
6009
 
5963
6010
  # Use this operation to create a workforce. This operation will return
5964
- # an error if a workforce already exists in the AWS Region that you
5965
- # specify. You can only create one workforce in each AWS Region per AWS
5966
- # account.
6011
+ # an error if a workforce already exists in the Amazon Web Services
6012
+ # Region that you specify. You can only create one workforce in each
6013
+ # Amazon Web Services Region per Amazon Web Services account.
5967
6014
  #
5968
- # If you want to create a new workforce in an AWS Region where a
5969
- # workforce already exists, use the API operation to delete the existing
5970
- # workforce and then use `CreateWorkforce` to create a new workforce.
6015
+ # If you want to create a new workforce in an Amazon Web Services Region
6016
+ # where a workforce already exists, use the API operation to delete the
6017
+ # existing workforce and then use `CreateWorkforce` to create a new
6018
+ # workforce.
5971
6019
  #
5972
6020
  # To create a private workforce using Amazon Cognito, you must specify a
5973
6021
  # Cognito user pool in `CognitoConfig`. You can also create an Amazon
@@ -6115,7 +6163,8 @@ module Aws::SageMaker
6115
6163
  # An array of key-value pairs.
6116
6164
  #
6117
6165
  # For more information, see [Resource Tag][1] and [Using Cost Allocation
6118
- # Tags][2] in the <i> AWS Billing and Cost Management User Guide</i>.
6166
+ # Tags][2] in the <i> Amazon Web Services Billing and Cost Management
6167
+ # User Guide</i>.
6119
6168
  #
6120
6169
  #
6121
6170
  #
@@ -6572,13 +6621,14 @@ module Aws::SageMaker
6572
6621
  # `OnlineStore` of the `FeatureGroup`. Data cannot be accessed from the
6573
6622
  # `OnlineStore` immediately after `DeleteFeatureGroup` is called.
6574
6623
  #
6575
- # Data written into the `OfflineStore` will not be deleted. The AWS Glue
6576
- # database and tables that are automatically created for your
6577
- # `OfflineStore` are not deleted.
6624
+ # Data written into the `OfflineStore` will not be deleted. The Amazon
6625
+ # Web Services Glue database and tables that are automatically created
6626
+ # for your `OfflineStore` are not deleted.
6578
6627
  #
6579
6628
  # @option params [required, String] :feature_group_name
6580
6629
  # The name of the `FeatureGroup` you want to delete. The name must be
6581
- # unique within an AWS Region in an AWS account.
6630
+ # unique within an Amazon Web Services Region in an Amazon Web Services
6631
+ # account.
6582
6632
  #
6583
6633
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6584
6634
  #
@@ -6698,7 +6748,7 @@ module Aws::SageMaker
6698
6748
  end
6699
6749
 
6700
6750
  # Deletes a model. The `DeleteModel` API deletes only the model entry
6701
- # that was created in Amazon SageMaker when you called the CreateModel
6751
+ # that was created in Amazon SageMaker when you called the `CreateModel`
6702
6752
  # API. It does not delete model artifacts, inference code, or the IAM
6703
6753
  # role that you specified when creating the model.
6704
6754
  #
@@ -6769,8 +6819,9 @@ module Aws::SageMaker
6769
6819
  # Deletes a model package.
6770
6820
  #
6771
6821
  # A model package is used to create Amazon SageMaker models or list on
6772
- # AWS Marketplace. Buyers can subscribe to model packages listed on AWS
6773
- # Marketplace to create models in Amazon SageMaker.
6822
+ # Amazon Web Services Marketplace. Buyers can subscribe to model
6823
+ # packages listed on Amazon Web Services Marketplace to create models in
6824
+ # Amazon SageMaker.
6774
6825
  #
6775
6826
  # @option params [required, String] :model_package_name
6776
6827
  # The name or Amazon Resource Name (ARN) of the model package to delete.
@@ -7130,9 +7181,9 @@ module Aws::SageMaker
7130
7181
 
7131
7182
  # Use this operation to delete a workforce.
7132
7183
  #
7133
- # If you want to create a new workforce in an AWS Region where a
7134
- # workforce already exists, use this operation to delete the existing
7135
- # workforce and then use to create a new workforce.
7184
+ # If you want to create a new workforce in an Amazon Web Services Region
7185
+ # where a workforce already exists, use this operation to delete the
7186
+ # existing workforce and then use to create a new workforce.
7136
7187
  #
7137
7188
  # If a private workforce contains one or more work teams, you must use
7138
7189
  # the operation to delete all work teams before you delete the
@@ -7346,6 +7397,8 @@ module Aws::SageMaker
7346
7397
  # resp.inference_specification.containers[0].image_digest #=> String
7347
7398
  # resp.inference_specification.containers[0].model_data_url #=> String
7348
7399
  # resp.inference_specification.containers[0].product_id #=> String
7400
+ # resp.inference_specification.containers[0].environment #=> Hash
7401
+ # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
7349
7402
  # resp.inference_specification.supported_transform_instance_types #=> Array
7350
7403
  # resp.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
7351
7404
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -9009,7 +9062,8 @@ module Aws::SageMaker
9009
9062
  #
9010
9063
  # @option params [required, String] :job_definition_name
9011
9064
  # The name of the model bias job definition. The name must be unique
9012
- # within an AWS Region in the AWS account.
9065
+ # within an Amazon Web Services Region in the Amazon Web Services
9066
+ # account.
9013
9067
  #
9014
9068
  # @return [Types::DescribeModelBiasJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9015
9069
  #
@@ -9084,7 +9138,8 @@ module Aws::SageMaker
9084
9138
  #
9085
9139
  # @option params [required, String] :job_definition_name
9086
9140
  # The name of the model explainability job definition. The name must be
9087
- # unique within an AWS Region in the AWS account.
9141
+ # unique within an Amazon Web Services Region in the Amazon Web Services
9142
+ # account.
9088
9143
  #
9089
9144
  # @return [Types::DescribeModelExplainabilityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9090
9145
  #
@@ -9155,10 +9210,11 @@ module Aws::SageMaker
9155
9210
  end
9156
9211
 
9157
9212
  # Returns a description of the specified model package, which is used to
9158
- # create Amazon SageMaker models or list them on AWS Marketplace.
9213
+ # create Amazon SageMaker models or list them on Amazon Web Services
9214
+ # Marketplace.
9159
9215
  #
9160
9216
  # To create models in Amazon SageMaker, buyers can subscribe to model
9161
- # packages listed on AWS Marketplace.
9217
+ # packages listed on Amazon Web Services Marketplace.
9162
9218
  #
9163
9219
  # @option params [required, String] :model_package_name
9164
9220
  # The name or Amazon Resource Name (ARN) of the model package to
@@ -9209,6 +9265,8 @@ module Aws::SageMaker
9209
9265
  # resp.inference_specification.containers[0].image_digest #=> String
9210
9266
  # resp.inference_specification.containers[0].model_data_url #=> String
9211
9267
  # resp.inference_specification.containers[0].product_id #=> String
9268
+ # resp.inference_specification.containers[0].environment #=> Hash
9269
+ # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
9212
9270
  # resp.inference_specification.supported_transform_instance_types #=> Array
9213
9271
  # resp.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
9214
9272
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -9335,7 +9393,7 @@ module Aws::SageMaker
9335
9393
  #
9336
9394
  # @option params [required, String] :job_definition_name
9337
9395
  # The name of the model quality job. The name must be unique within an
9338
- # AWS Region in the AWS account.
9396
+ # Amazon Web Services Region in the Amazon Web Services account.
9339
9397
  #
9340
9398
  # @return [Types::DescribeModelQualityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9341
9399
  #
@@ -9772,8 +9830,8 @@ module Aws::SageMaker
9772
9830
  # Returns a description of a processing job.
9773
9831
  #
9774
9832
  # @option params [required, String] :processing_job_name
9775
- # The name of the processing job. The name must be unique within an AWS
9776
- # Region in the AWS account.
9833
+ # The name of the processing job. The name must be unique within an
9834
+ # Amazon Web Services Region in the Amazon Web Services account.
9777
9835
  #
9778
9836
  # @return [Types::DescribeProcessingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9779
9837
  #
@@ -9946,7 +10004,8 @@ module Aws::SageMaker
9946
10004
  end
9947
10005
 
9948
10006
  # Gets information about a work team provided by a vendor. It returns
9949
- # details about the subscription with a vendor in the AWS Marketplace.
10007
+ # details about the subscription with a vendor in the Amazon Web
10008
+ # Services Marketplace.
9950
10009
  #
9951
10010
  # @option params [required, String] :workteam_arn
9952
10011
  # The Amazon Resource Name (ARN) of the subscribed work team to
@@ -10693,8 +10752,8 @@ module Aws::SageMaker
10693
10752
 
10694
10753
  # Gets a resource policy that manages access for a model group. For
10695
10754
  # information about resource policies, see [Identity-based policies and
10696
- # resource-based policies][1] in the *AWS Identity and Access Management
10697
- # User Guide.*.
10755
+ # resource-based policies][1] in the *Amazon Web Services Identity and
10756
+ # Access Management User Guide.*.
10698
10757
  #
10699
10758
  #
10700
10759
  #
@@ -12937,7 +12996,7 @@ module Aws::SageMaker
12937
12996
  req.send_request(options)
12938
12997
  end
12939
12998
 
12940
- # Gets a list of the model groups in your AWS account.
12999
+ # Gets a list of the model groups in your Amazon Web Services account.
12941
13000
  #
12942
13001
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
12943
13002
  # A filter that returns only model groups created after the specified
@@ -13168,7 +13227,7 @@ module Aws::SageMaker
13168
13227
  req.send_request(options)
13169
13228
  end
13170
13229
 
13171
- # Lists models created with the CreateModel API.
13230
+ # Lists models created with the `CreateModel` API.
13172
13231
  #
13173
13232
  # @option params [String] :sort_by
13174
13233
  # Sorts the list of results. The default is `CreationTime`.
@@ -13514,7 +13573,7 @@ module Aws::SageMaker
13514
13573
  end
13515
13574
 
13516
13575
  # Returns a list of the Amazon SageMaker notebook instances in the
13517
- # requester's account in an AWS Region.
13576
+ # requester's account in an Amazon Web Services Region.
13518
13577
  #
13519
13578
  # @option params [String] :next_token
13520
13579
  # If the previous call to the `ListNotebookInstances` is truncated, the
@@ -13952,7 +14011,7 @@ module Aws::SageMaker
13952
14011
  req.send_request(options)
13953
14012
  end
13954
14013
 
13955
- # Gets a list of the projects in an AWS account.
14014
+ # Gets a list of the projects in an Amazon Web Services account.
13956
14015
  #
13957
14016
  # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
13958
14017
  # A filter that returns the projects that were created after a specified
@@ -14019,9 +14078,9 @@ module Aws::SageMaker
14019
14078
  req.send_request(options)
14020
14079
  end
14021
14080
 
14022
- # Gets a list of the work teams that you are subscribed to in the AWS
14023
- # Marketplace. The list may be empty if no work team satisfies the
14024
- # filter specified in the `NameContains` parameter.
14081
+ # Gets a list of the work teams that you are subscribed to in the Amazon
14082
+ # Web Services Marketplace. The list may be empty if no work team
14083
+ # satisfies the filter specified in the `NameContains` parameter.
14025
14084
  #
14026
14085
  # @option params [String] :name_contains
14027
14086
  # A string in the work team name. This filter returns only work teams
@@ -14132,7 +14191,8 @@ module Aws::SageMaker
14132
14191
  # from the most current to the oldest). Next, those with a status of
14133
14192
  # `InProgress` are returned.
14134
14193
  #
14135
- # You can quickly test the API using the following AWS CLI code.
14194
+ # You can quickly test the API using the following Amazon Web Services
14195
+ # CLI code.
14136
14196
  #
14137
14197
  # `aws sagemaker list-training-jobs --max-results 100 --status-equals
14138
14198
  # InProgress`
@@ -14614,9 +14674,9 @@ module Aws::SageMaker
14614
14674
  req.send_request(options)
14615
14675
  end
14616
14676
 
14617
- # Use this operation to list all private and vendor workforces in an AWS
14618
- # Region. Note that you can only have one private workforce per AWS
14619
- # Region.
14677
+ # Use this operation to list all private and vendor workforces in an
14678
+ # Amazon Web Services Region. Note that you can only have one private
14679
+ # workforce per Amazon Web Services Region.
14620
14680
  #
14621
14681
  # @option params [String] :sort_by
14622
14682
  # Sort workforces using the workforce name or creation date.
@@ -14753,8 +14813,8 @@ module Aws::SageMaker
14753
14813
 
14754
14814
  # Adds a resouce policy to control access to a model group. For
14755
14815
  # information about resoure policies, see [Identity-based policies and
14756
- # resource-based policies][1] in the *AWS Identity and Access Management
14757
- # User Guide.*.
14816
+ # resource-based policies][1] in the *Amazon Web Services Identity and
14817
+ # Access Management User Guide.*.
14758
14818
  #
14759
14819
  #
14760
14820
  #
@@ -15477,6 +15537,8 @@ module Aws::SageMaker
15477
15537
  # resp.results[0].model_package.inference_specification.containers[0].image_digest #=> String
15478
15538
  # resp.results[0].model_package.inference_specification.containers[0].model_data_url #=> String
15479
15539
  # resp.results[0].model_package.inference_specification.containers[0].product_id #=> String
15540
+ # resp.results[0].model_package.inference_specification.containers[0].environment #=> Hash
15541
+ # resp.results[0].model_package.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
15480
15542
  # resp.results[0].model_package.inference_specification.supported_transform_instance_types #=> Array
15481
15543
  # resp.results[0].model_package.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
15482
15544
  # resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -16021,6 +16083,20 @@ module Aws::SageMaker
16021
16083
 
16022
16084
  # Stops a pipeline execution.
16023
16085
  #
16086
+ # A pipeline execution won't stop while a callback step is running.
16087
+ # When you call `StopPipelineExecution` on a pipeline execution with a
16088
+ # running callback step, SageMaker Pipelines sends an additional Amazon
16089
+ # SQS message to the specified SQS queue. The body of the SQS message
16090
+ # contains a "Status" field which is set to "Stopping".
16091
+ #
16092
+ # You should add logic to your Amazon SQS message consumer to take any
16093
+ # needed action (for example, resource cleanup) upon receipt of the
16094
+ # message followed by a call to `SendPipelineExecutionStepSuccess` or
16095
+ # `SendPipelineExecutionStepFailure`.
16096
+ #
16097
+ # Only when SageMaker Pipelines receives one of these calls will it stop
16098
+ # the pipeline execution.
16099
+ #
16024
16100
  # @option params [required, String] :pipeline_execution_arn
16025
16101
  # The Amazon Resource Name (ARN) of the pipeline execution.
16026
16102
  #
@@ -16274,10 +16350,10 @@ module Aws::SageMaker
16274
16350
  #
16275
16351
  # @option params [Types::GitConfigForUpdate] :git_config
16276
16352
  # The configuration of the git repository, including the URL and the
16277
- # Amazon Resource Name (ARN) of the AWS Secrets Manager secret that
16278
- # contains the credentials used to access the repository. The secret
16279
- # must have a staging label of `AWSCURRENT` and must be in the following
16280
- # format:
16353
+ # Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager
16354
+ # secret that contains the credentials used to access the repository.
16355
+ # The secret must have a staging label of `AWSCURRENT` and must be in
16356
+ # the following format:
16281
16357
  #
16282
16358
  # `\{"username": UserName, "password": Password\}`
16283
16359
  #
@@ -16364,9 +16440,9 @@ module Aws::SageMaker
16364
16440
  # Output configuration for storing sample data collected by the fleet.
16365
16441
  #
16366
16442
  # @option params [Boolean] :enable_iot_role_alias
16367
- # Whether to create an AWS IoT Role Alias during device fleet creation.
16368
- # The name of the role alias generated will match this pattern:
16369
- # "SageMakerEdge-\\\{DeviceFleetName\\}".
16443
+ # Whether to create an Amazon Web Services IoT Role Alias during device
16444
+ # fleet creation. The name of the role alias generated will match this
16445
+ # pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
16370
16446
  #
16371
16447
  # For example, if your device fleet is called "demo-fleet", the name
16372
16448
  # of the role alias will be "SageMakerEdge-demo-fleet".
@@ -16769,7 +16845,7 @@ module Aws::SageMaker
16769
16845
  #
16770
16846
  # @option params [required, String] :monitoring_schedule_name
16771
16847
  # The name of the monitoring schedule. The name must be unique within an
16772
- # AWS Region within an AWS account.
16848
+ # Amazon Web Services Region within an Amazon Web Services account.
16773
16849
  #
16774
16850
  # @option params [required, Types::MonitoringScheduleConfig] :monitoring_schedule_config
16775
16851
  # The configuration object that specifies the monitoring schedule and
@@ -16928,10 +17004,11 @@ module Aws::SageMaker
16928
17004
  # The Git repository to associate with the notebook instance as its
16929
17005
  # default code repository. This can be either the name of a Git
16930
17006
  # repository stored as a resource in your account, or the URL of a Git
16931
- # repository in [AWS CodeCommit][1] or in any other Git repository. When
16932
- # you open a notebook instance, it opens in the directory that contains
16933
- # this repository. For more information, see [Associating Git
16934
- # Repositories with Amazon SageMaker Notebook Instances][2].
17007
+ # repository in [Amazon Web Services CodeCommit][1] or in any other Git
17008
+ # repository. When you open a notebook instance, it opens in the
17009
+ # directory that contains this repository. For more information, see
17010
+ # [Associating Git Repositories with Amazon SageMaker Notebook
17011
+ # Instances][2].
16935
17012
  #
16936
17013
  #
16937
17014
  #
@@ -16942,10 +17019,11 @@ module Aws::SageMaker
16942
17019
  # An array of up to three Git repositories to associate with the
16943
17020
  # notebook instance. These can be either the names of Git repositories
16944
17021
  # stored as resources in your account, or the URL of Git repositories in
16945
- # [AWS CodeCommit][1] or in any other Git repository. These repositories
16946
- # are cloned at the same level as the default repository of your
16947
- # notebook instance. For more information, see [Associating Git
16948
- # Repositories with Amazon SageMaker Notebook Instances][2].
17022
+ # [Amazon Web Services CodeCommit][1] or in any other Git repository.
17023
+ # These repositories are cloned at the same level as the default
17024
+ # repository of your notebook instance. For more information, see
17025
+ # [Associating Git Repositories with Amazon SageMaker Notebook
17026
+ # Instances][2].
16949
17027
  #
16950
17028
  #
16951
17029
  #
@@ -17606,7 +17684,7 @@ module Aws::SageMaker
17606
17684
  params: params,
17607
17685
  config: config)
17608
17686
  context[:gem_name] = 'aws-sdk-sagemaker'
17609
- context[:gem_version] = '1.91.0'
17687
+ context[:gem_version] = '1.92.0'
17610
17688
  Seahorse::Client::Request.new(handlers, context)
17611
17689
  end
17612
17690