aws-sdk-sagemaker 1.140.0 → 1.141.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +40 -12
- data/lib/aws-sdk-sagemaker/client_api.rb +11 -0
- data/lib/aws-sdk-sagemaker/types.rb +140 -15
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa806301ee5af4611d77037dbabd58326f29f5462b6078710e1d96c0182e7e54
|
|
4
|
+
data.tar.gz: b7547e74552a45ecf1e5f44843f7d1ee42763ad20ce122c1940f0a41253de5bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e467497b42ff52757c11137af235ee5b9a650dd1d594e9f216761fa70b4c1728172f3eaac0027fcc94ec045dd90066403f70eb7521606e8e848023b0a9392770
|
|
7
|
+
data.tar.gz: d9bd4f710541f6f7f2543c86aed8dd03249b1eefd367cb40751a822ebabc7a8d43261d7b320e9c3d6d6fd2d7546d789ea20f5c2003e01c15b84e0da7bbf8e384
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.141.0 (2022-09-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - SageMaker now allows customization on Canvas Application settings, including enabling/disabling time-series forecasting and specifying an Amazon Forecast execution role at both the Domain and UserProfile levels.
|
|
8
|
+
|
|
4
9
|
1.140.0 (2022-09-15)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.141.0
|
|
@@ -1959,6 +1959,12 @@ module Aws::SageMaker
|
|
|
1959
1959
|
# },
|
|
1960
1960
|
# ],
|
|
1961
1961
|
# },
|
|
1962
|
+
# canvas_app_settings: {
|
|
1963
|
+
# time_series_forecasting_settings: {
|
|
1964
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
1965
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
1966
|
+
# },
|
|
1967
|
+
# },
|
|
1962
1968
|
# },
|
|
1963
1969
|
# subnet_ids: ["SubnetId"], # required
|
|
1964
1970
|
# vpc_id: "VpcId", # required
|
|
@@ -6664,8 +6670,8 @@ module Aws::SageMaker
|
|
|
6664
6670
|
# a domain, and is the main way to reference a "person" for the
|
|
6665
6671
|
# purposes of sharing, reporting, and other user-oriented features. This
|
|
6666
6672
|
# entity is created when a user onboards to Amazon SageMaker Studio. If
|
|
6667
|
-
# an administrator invites a person by email or imports them from
|
|
6668
|
-
#
|
|
6673
|
+
# an administrator invites a person by email or imports them from IAM
|
|
6674
|
+
# Identity Center, a user profile is automatically created. A user
|
|
6669
6675
|
# profile is the primary holder of settings for an individual user and
|
|
6670
6676
|
# has a reference to the user's private Amazon Elastic File System
|
|
6671
6677
|
# (EFS) home directory.
|
|
@@ -6679,16 +6685,16 @@ module Aws::SageMaker
|
|
|
6679
6685
|
# @option params [String] :single_sign_on_user_identifier
|
|
6680
6686
|
# A specifier for the type of value specified in SingleSignOnUserValue.
|
|
6681
6687
|
# Currently, the only supported value is "UserName". If the Domain's
|
|
6682
|
-
# AuthMode is
|
|
6683
|
-
# Domain's AuthMode is not
|
|
6684
|
-
#
|
|
6688
|
+
# AuthMode is IAM Identity Center, this field is required. If the
|
|
6689
|
+
# Domain's AuthMode is not IAM Identity Center, this field cannot be
|
|
6690
|
+
# specified.
|
|
6685
6691
|
#
|
|
6686
6692
|
# @option params [String] :single_sign_on_user_value
|
|
6687
6693
|
# The username of the associated Amazon Web Services Single Sign-On User
|
|
6688
|
-
# for this UserProfile. If the Domain's AuthMode is
|
|
6689
|
-
#
|
|
6690
|
-
# in your directory. If the Domain's AuthMode is not
|
|
6691
|
-
#
|
|
6694
|
+
# for this UserProfile. If the Domain's AuthMode is IAM Identity
|
|
6695
|
+
# Center, this field is required, and must match a valid username of a
|
|
6696
|
+
# user in your directory. If the Domain's AuthMode is not IAM Identity
|
|
6697
|
+
# Center, this field cannot be specified.
|
|
6692
6698
|
#
|
|
6693
6699
|
# @option params [Array<Types::Tag>] :tags
|
|
6694
6700
|
# Each tag consists of a key and an optional value. Tag keys must be
|
|
@@ -6777,6 +6783,12 @@ module Aws::SageMaker
|
|
|
6777
6783
|
# },
|
|
6778
6784
|
# ],
|
|
6779
6785
|
# },
|
|
6786
|
+
# canvas_app_settings: {
|
|
6787
|
+
# time_series_forecasting_settings: {
|
|
6788
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
6789
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
6790
|
+
# },
|
|
6791
|
+
# },
|
|
6780
6792
|
# },
|
|
6781
6793
|
# })
|
|
6782
6794
|
#
|
|
@@ -7287,8 +7299,8 @@ module Aws::SageMaker
|
|
|
7287
7299
|
end
|
|
7288
7300
|
|
|
7289
7301
|
# Used to delete a domain. If you onboarded with IAM mode, you will need
|
|
7290
|
-
# to delete your domain to onboard again using
|
|
7291
|
-
#
|
|
7302
|
+
# to delete your domain to onboard again using IAM Identity Center. Use
|
|
7303
|
+
# with caution. All of the members of the domain will lose access to
|
|
7292
7304
|
# their EFS volume, including data, notebooks, and other artifacts.
|
|
7293
7305
|
#
|
|
7294
7306
|
# @option params [required, String] :domain_id
|
|
@@ -9080,6 +9092,8 @@ module Aws::SageMaker
|
|
|
9080
9092
|
# resp.default_user_settings.r_session_app_settings.custom_images[0].image_name #=> String
|
|
9081
9093
|
# resp.default_user_settings.r_session_app_settings.custom_images[0].image_version_number #=> Integer
|
|
9082
9094
|
# resp.default_user_settings.r_session_app_settings.custom_images[0].app_image_config_name #=> String
|
|
9095
|
+
# resp.default_user_settings.canvas_app_settings.time_series_forecasting_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
9096
|
+
# resp.default_user_settings.canvas_app_settings.time_series_forecasting_settings.amazon_forecast_role_arn #=> String
|
|
9083
9097
|
# resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
|
|
9084
9098
|
# resp.home_efs_file_system_kms_key_id #=> String
|
|
9085
9099
|
# resp.subnet_ids #=> Array
|
|
@@ -11980,6 +11994,8 @@ module Aws::SageMaker
|
|
|
11980
11994
|
# resp.user_settings.r_session_app_settings.custom_images[0].image_name #=> String
|
|
11981
11995
|
# resp.user_settings.r_session_app_settings.custom_images[0].image_version_number #=> Integer
|
|
11982
11996
|
# resp.user_settings.r_session_app_settings.custom_images[0].app_image_config_name #=> String
|
|
11997
|
+
# resp.user_settings.canvas_app_settings.time_series_forecasting_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
11998
|
+
# resp.user_settings.canvas_app_settings.time_series_forecasting_settings.amazon_forecast_role_arn #=> String
|
|
11983
11999
|
#
|
|
11984
12000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeUserProfile AWS API Documentation
|
|
11985
12001
|
#
|
|
@@ -19165,6 +19181,12 @@ module Aws::SageMaker
|
|
|
19165
19181
|
# },
|
|
19166
19182
|
# ],
|
|
19167
19183
|
# },
|
|
19184
|
+
# canvas_app_settings: {
|
|
19185
|
+
# time_series_forecasting_settings: {
|
|
19186
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
19187
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
19188
|
+
# },
|
|
19189
|
+
# },
|
|
19168
19190
|
# },
|
|
19169
19191
|
# domain_settings_for_update: {
|
|
19170
19192
|
# r_studio_server_pro_domain_settings_for_update: {
|
|
@@ -20354,6 +20376,12 @@ module Aws::SageMaker
|
|
|
20354
20376
|
# },
|
|
20355
20377
|
# ],
|
|
20356
20378
|
# },
|
|
20379
|
+
# canvas_app_settings: {
|
|
20380
|
+
# time_series_forecasting_settings: {
|
|
20381
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
20382
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
20383
|
+
# },
|
|
20384
|
+
# },
|
|
20357
20385
|
# },
|
|
20358
20386
|
# })
|
|
20359
20387
|
#
|
|
@@ -20604,7 +20632,7 @@ module Aws::SageMaker
|
|
|
20604
20632
|
params: params,
|
|
20605
20633
|
config: config)
|
|
20606
20634
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
20607
|
-
context[:gem_version] = '1.
|
|
20635
|
+
context[:gem_version] = '1.141.0'
|
|
20608
20636
|
Seahorse::Client::Request.new(handlers, context)
|
|
20609
20637
|
end
|
|
20610
20638
|
|
|
@@ -160,6 +160,7 @@ module Aws::SageMaker
|
|
|
160
160
|
CandidateStepName = Shapes::StringShape.new(name: 'CandidateStepName')
|
|
161
161
|
CandidateStepType = Shapes::StringShape.new(name: 'CandidateStepType')
|
|
162
162
|
CandidateSteps = Shapes::ListShape.new(name: 'CandidateSteps')
|
|
163
|
+
CanvasAppSettings = Shapes::StructureShape.new(name: 'CanvasAppSettings')
|
|
163
164
|
CapacitySize = Shapes::StructureShape.new(name: 'CapacitySize')
|
|
164
165
|
CapacitySizeType = Shapes::StringShape.new(name: 'CapacitySizeType')
|
|
165
166
|
CapacitySizeValue = Shapes::IntegerShape.new(name: 'CapacitySizeValue')
|
|
@@ -675,6 +676,7 @@ module Aws::SageMaker
|
|
|
675
676
|
FeatureParameterRemovals = Shapes::ListShape.new(name: 'FeatureParameterRemovals')
|
|
676
677
|
FeatureParameterValue = Shapes::StringShape.new(name: 'FeatureParameterValue')
|
|
677
678
|
FeatureParameters = Shapes::ListShape.new(name: 'FeatureParameters')
|
|
679
|
+
FeatureStatus = Shapes::StringShape.new(name: 'FeatureStatus')
|
|
678
680
|
FeatureType = Shapes::StringShape.new(name: 'FeatureType')
|
|
679
681
|
FileSource = Shapes::StructureShape.new(name: 'FileSource')
|
|
680
682
|
FileSystemAccessMode = Shapes::StringShape.new(name: 'FileSystemAccessMode')
|
|
@@ -1534,6 +1536,7 @@ module Aws::SageMaker
|
|
|
1534
1536
|
TenthFractionsOfACent = Shapes::IntegerShape.new(name: 'TenthFractionsOfACent')
|
|
1535
1537
|
TerminationWaitInSeconds = Shapes::IntegerShape.new(name: 'TerminationWaitInSeconds')
|
|
1536
1538
|
ThingName = Shapes::StringShape.new(name: 'ThingName')
|
|
1539
|
+
TimeSeriesForecastingSettings = Shapes::StructureShape.new(name: 'TimeSeriesForecastingSettings')
|
|
1537
1540
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
1538
1541
|
TrafficDurationInSeconds = Shapes::IntegerShape.new(name: 'TrafficDurationInSeconds')
|
|
1539
1542
|
TrafficPattern = Shapes::StructureShape.new(name: 'TrafficPattern')
|
|
@@ -2049,6 +2052,9 @@ module Aws::SageMaker
|
|
|
2049
2052
|
|
|
2050
2053
|
CandidateSteps.member = Shapes::ShapeRef.new(shape: AutoMLCandidateStep)
|
|
2051
2054
|
|
|
2055
|
+
CanvasAppSettings.add_member(:time_series_forecasting_settings, Shapes::ShapeRef.new(shape: TimeSeriesForecastingSettings, location_name: "TimeSeriesForecastingSettings"))
|
|
2056
|
+
CanvasAppSettings.struct_class = Types::CanvasAppSettings
|
|
2057
|
+
|
|
2052
2058
|
CapacitySize.add_member(:type, Shapes::ShapeRef.new(shape: CapacitySizeType, required: true, location_name: "Type"))
|
|
2053
2059
|
CapacitySize.add_member(:value, Shapes::ShapeRef.new(shape: CapacitySizeValue, required: true, location_name: "Value"))
|
|
2054
2060
|
CapacitySize.struct_class = Types::CapacitySize
|
|
@@ -6910,6 +6916,10 @@ module Aws::SageMaker
|
|
|
6910
6916
|
TensorBoardOutputConfig.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3OutputPath"))
|
|
6911
6917
|
TensorBoardOutputConfig.struct_class = Types::TensorBoardOutputConfig
|
|
6912
6918
|
|
|
6919
|
+
TimeSeriesForecastingSettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
|
|
6920
|
+
TimeSeriesForecastingSettings.add_member(:amazon_forecast_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "AmazonForecastRoleArn"))
|
|
6921
|
+
TimeSeriesForecastingSettings.struct_class = Types::TimeSeriesForecastingSettings
|
|
6922
|
+
|
|
6913
6923
|
TrafficPattern.add_member(:traffic_type, Shapes::ShapeRef.new(shape: TrafficType, location_name: "TrafficType"))
|
|
6914
6924
|
TrafficPattern.add_member(:phases, Shapes::ShapeRef.new(shape: Phases, location_name: "Phases"))
|
|
6915
6925
|
TrafficPattern.struct_class = Types::TrafficPattern
|
|
@@ -7477,6 +7487,7 @@ module Aws::SageMaker
|
|
|
7477
7487
|
UserSettings.add_member(:tensor_board_app_settings, Shapes::ShapeRef.new(shape: TensorBoardAppSettings, location_name: "TensorBoardAppSettings"))
|
|
7478
7488
|
UserSettings.add_member(:r_studio_server_pro_app_settings, Shapes::ShapeRef.new(shape: RStudioServerProAppSettings, location_name: "RStudioServerProAppSettings"))
|
|
7479
7489
|
UserSettings.add_member(:r_session_app_settings, Shapes::ShapeRef.new(shape: RSessionAppSettings, location_name: "RSessionAppSettings"))
|
|
7490
|
+
UserSettings.add_member(:canvas_app_settings, Shapes::ShapeRef.new(shape: CanvasAppSettings, location_name: "CanvasAppSettings"))
|
|
7480
7491
|
UserSettings.struct_class = Types::UserSettings
|
|
7481
7492
|
|
|
7482
7493
|
VariantProperty.add_member(:variant_property_type, Shapes::ShapeRef.new(shape: VariantPropertyType, required: true, location_name: "VariantPropertyType"))
|
|
@@ -2058,11 +2058,33 @@ module Aws::SageMaker
|
|
|
2058
2058
|
#
|
|
2059
2059
|
# @!attribute [rw] feature_specification_s3_uri
|
|
2060
2060
|
# A URL to the Amazon S3 data source containing selected features from
|
|
2061
|
-
# the input data source to run an Autopilot job
|
|
2062
|
-
#
|
|
2061
|
+
# the input data source to run an Autopilot job. You can input
|
|
2062
|
+
# `FeatureAttributeNames` (optional) in JSON format as shown below:
|
|
2063
2063
|
#
|
|
2064
2064
|
# `\{ "FeatureAttributeNames":["col1", "col2", ...] \}`.
|
|
2065
2065
|
#
|
|
2066
|
+
# You can also specify the data type of the feature (optional) in the
|
|
2067
|
+
# format shown below:
|
|
2068
|
+
#
|
|
2069
|
+
# `\{ "FeatureDataTypes":\{"col1":"numeric", "col2":"categorical" ...
|
|
2070
|
+
# \} \}`
|
|
2071
|
+
#
|
|
2072
|
+
# <note markdown="1"> These column keys may not include the target column.
|
|
2073
|
+
#
|
|
2074
|
+
# </note>
|
|
2075
|
+
#
|
|
2076
|
+
# In ensembling mode, Autopilot will only support the following data
|
|
2077
|
+
# types: `numeric`, `categorical`, `text` and `datetime`. In HPO mode,
|
|
2078
|
+
# Autopilot can support `numeric`, `categorical`, `text`, `datetime`
|
|
2079
|
+
# and `sequence`.
|
|
2080
|
+
#
|
|
2081
|
+
# If only `FeatureDataTypes` is provided, the column keys (`col1`,
|
|
2082
|
+
# `col2`,..) should be a subset of the column names in the input data.
|
|
2083
|
+
#
|
|
2084
|
+
# If both `FeatureDataTypes` and `FeatureAttributeNames` are provided,
|
|
2085
|
+
# then the column keys should be a subset of the column names provided
|
|
2086
|
+
# in `FeatureAttributeNames`.
|
|
2087
|
+
#
|
|
2066
2088
|
# The key name `FeatureAttributeNames` is fixed. The values listed in
|
|
2067
2089
|
# `["col1", "col2", ...]` is case sensitive and should be a list of
|
|
2068
2090
|
# strings containing unique values that are a subset of the column
|
|
@@ -2986,6 +3008,30 @@ module Aws::SageMaker
|
|
|
2986
3008
|
include Aws::Structure
|
|
2987
3009
|
end
|
|
2988
3010
|
|
|
3011
|
+
# The SageMaker Canvas app settings.
|
|
3012
|
+
#
|
|
3013
|
+
# @note When making an API call, you may pass CanvasAppSettings
|
|
3014
|
+
# data as a hash:
|
|
3015
|
+
#
|
|
3016
|
+
# {
|
|
3017
|
+
# time_series_forecasting_settings: {
|
|
3018
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
3019
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
3020
|
+
# },
|
|
3021
|
+
# }
|
|
3022
|
+
#
|
|
3023
|
+
# @!attribute [rw] time_series_forecasting_settings
|
|
3024
|
+
# Time series forecast settings for the Canvas app.
|
|
3025
|
+
# @return [Types::TimeSeriesForecastingSettings]
|
|
3026
|
+
#
|
|
3027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
|
|
3028
|
+
#
|
|
3029
|
+
class CanvasAppSettings < Struct.new(
|
|
3030
|
+
:time_series_forecasting_settings)
|
|
3031
|
+
SENSITIVE = []
|
|
3032
|
+
include Aws::Structure
|
|
3033
|
+
end
|
|
3034
|
+
|
|
2989
3035
|
# Specifies the endpoint capacity to activate for production.
|
|
2990
3036
|
#
|
|
2991
3037
|
# @note When making an API call, you may pass CapacitySize
|
|
@@ -5298,6 +5344,12 @@ module Aws::SageMaker
|
|
|
5298
5344
|
# },
|
|
5299
5345
|
# ],
|
|
5300
5346
|
# },
|
|
5347
|
+
# canvas_app_settings: {
|
|
5348
|
+
# time_series_forecasting_settings: {
|
|
5349
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
5350
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
5351
|
+
# },
|
|
5352
|
+
# },
|
|
5301
5353
|
# },
|
|
5302
5354
|
# subnet_ids: ["SubnetId"], # required
|
|
5303
5355
|
# vpc_id: "VpcId", # required
|
|
@@ -10157,6 +10209,12 @@ module Aws::SageMaker
|
|
|
10157
10209
|
# },
|
|
10158
10210
|
# ],
|
|
10159
10211
|
# },
|
|
10212
|
+
# canvas_app_settings: {
|
|
10213
|
+
# time_series_forecasting_settings: {
|
|
10214
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
10215
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
10216
|
+
# },
|
|
10217
|
+
# },
|
|
10160
10218
|
# },
|
|
10161
10219
|
# }
|
|
10162
10220
|
#
|
|
@@ -10171,17 +10229,17 @@ module Aws::SageMaker
|
|
|
10171
10229
|
# @!attribute [rw] single_sign_on_user_identifier
|
|
10172
10230
|
# A specifier for the type of value specified in
|
|
10173
10231
|
# SingleSignOnUserValue. Currently, the only supported value is
|
|
10174
|
-
# "UserName". If the Domain's AuthMode is
|
|
10175
|
-
#
|
|
10176
|
-
#
|
|
10232
|
+
# "UserName". If the Domain's AuthMode is IAM Identity Center, this
|
|
10233
|
+
# field is required. If the Domain's AuthMode is not IAM Identity
|
|
10234
|
+
# Center, this field cannot be specified.
|
|
10177
10235
|
# @return [String]
|
|
10178
10236
|
#
|
|
10179
10237
|
# @!attribute [rw] single_sign_on_user_value
|
|
10180
10238
|
# The username of the associated Amazon Web Services Single Sign-On
|
|
10181
|
-
# User for this UserProfile. If the Domain's AuthMode is
|
|
10182
|
-
#
|
|
10183
|
-
#
|
|
10184
|
-
#
|
|
10239
|
+
# User for this UserProfile. If the Domain's AuthMode is IAM Identity
|
|
10240
|
+
# Center, this field is required, and must match a valid username of a
|
|
10241
|
+
# user in your directory. If the Domain's AuthMode is not IAM
|
|
10242
|
+
# Identity Center, this field cannot be specified.
|
|
10185
10243
|
# @return [String]
|
|
10186
10244
|
#
|
|
10187
10245
|
# @!attribute [rw] tags
|
|
@@ -13430,7 +13488,7 @@ module Aws::SageMaker
|
|
|
13430
13488
|
# @return [String]
|
|
13431
13489
|
#
|
|
13432
13490
|
# @!attribute [rw] single_sign_on_managed_application_instance_id
|
|
13433
|
-
# The
|
|
13491
|
+
# The IAM Identity Center managed application instance ID.
|
|
13434
13492
|
# @return [String]
|
|
13435
13493
|
#
|
|
13436
13494
|
# @!attribute [rw] status
|
|
@@ -17232,11 +17290,11 @@ module Aws::SageMaker
|
|
|
17232
17290
|
# @return [String]
|
|
17233
17291
|
#
|
|
17234
17292
|
# @!attribute [rw] single_sign_on_user_identifier
|
|
17235
|
-
# The
|
|
17293
|
+
# The IAM Identity Center user identifier.
|
|
17236
17294
|
# @return [String]
|
|
17237
17295
|
#
|
|
17238
17296
|
# @!attribute [rw] single_sign_on_user_value
|
|
17239
|
-
# The
|
|
17297
|
+
# The IAM Identity Center user value.
|
|
17240
17298
|
# @return [String]
|
|
17241
17299
|
#
|
|
17242
17300
|
# @!attribute [rw] user_settings
|
|
@@ -22005,8 +22063,12 @@ module Aws::SageMaker
|
|
|
22005
22063
|
include Aws::Structure
|
|
22006
22064
|
end
|
|
22007
22065
|
|
|
22008
|
-
# An entity
|
|
22009
|
-
# hyperparameter tuning job.
|
|
22066
|
+
# An entity returned by the [SearchRecord][1] API containing the
|
|
22067
|
+
# properties of a hyperparameter tuning job.
|
|
22068
|
+
#
|
|
22069
|
+
#
|
|
22070
|
+
#
|
|
22071
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_SearchRecord.html
|
|
22010
22072
|
#
|
|
22011
22073
|
# @!attribute [rw] hyper_parameter_tuning_job_name
|
|
22012
22074
|
# The name of a hyperparameter tuning job.
|
|
@@ -38448,6 +38510,46 @@ module Aws::SageMaker
|
|
|
38448
38510
|
include Aws::Structure
|
|
38449
38511
|
end
|
|
38450
38512
|
|
|
38513
|
+
# Time series forecast settings for the SageMaker Canvas app.
|
|
38514
|
+
#
|
|
38515
|
+
# @note When making an API call, you may pass TimeSeriesForecastingSettings
|
|
38516
|
+
# data as a hash:
|
|
38517
|
+
#
|
|
38518
|
+
# {
|
|
38519
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
38520
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
38521
|
+
# }
|
|
38522
|
+
#
|
|
38523
|
+
# @!attribute [rw] status
|
|
38524
|
+
# Describes whether time series forecasting is enabled or disabled in
|
|
38525
|
+
# the Canvas app.
|
|
38526
|
+
# @return [String]
|
|
38527
|
+
#
|
|
38528
|
+
# @!attribute [rw] amazon_forecast_role_arn
|
|
38529
|
+
# The IAM role that Canvas passes to Amazon Forecast for time series
|
|
38530
|
+
# forecasting. By default, Canvas uses the execution role specified in
|
|
38531
|
+
# the `UserProfile` that launches the Canvas app. If an execution role
|
|
38532
|
+
# is not specified in the `UserProfile`, Canvas uses the execution
|
|
38533
|
+
# role specified in the Domain that owns the `UserProfile`. To allow
|
|
38534
|
+
# time series forecasting, this IAM role should have the [
|
|
38535
|
+
# AmazonSageMakerCanvasForecastAccess][1] policy attached and
|
|
38536
|
+
# `forecast.amazonaws.com` added in the trust relationship as a
|
|
38537
|
+
# service principal.
|
|
38538
|
+
#
|
|
38539
|
+
#
|
|
38540
|
+
#
|
|
38541
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/security-iam-awsmanpol-canvas.html#security-iam-awsmanpol-AmazonSageMakerCanvasForecastAccess
|
|
38542
|
+
# @return [String]
|
|
38543
|
+
#
|
|
38544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TimeSeriesForecastingSettings AWS API Documentation
|
|
38545
|
+
#
|
|
38546
|
+
class TimeSeriesForecastingSettings < Struct.new(
|
|
38547
|
+
:status,
|
|
38548
|
+
:amazon_forecast_role_arn)
|
|
38549
|
+
SENSITIVE = []
|
|
38550
|
+
include Aws::Structure
|
|
38551
|
+
end
|
|
38552
|
+
|
|
38451
38553
|
# Defines the traffic pattern of the load test.
|
|
38452
38554
|
#
|
|
38453
38555
|
# @note When making an API call, you may pass TrafficPattern
|
|
@@ -41097,6 +41199,12 @@ module Aws::SageMaker
|
|
|
41097
41199
|
# },
|
|
41098
41200
|
# ],
|
|
41099
41201
|
# },
|
|
41202
|
+
# canvas_app_settings: {
|
|
41203
|
+
# time_series_forecasting_settings: {
|
|
41204
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
41205
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
41206
|
+
# },
|
|
41207
|
+
# },
|
|
41100
41208
|
# },
|
|
41101
41209
|
# domain_settings_for_update: {
|
|
41102
41210
|
# r_studio_server_pro_domain_settings_for_update: {
|
|
@@ -42420,6 +42528,12 @@ module Aws::SageMaker
|
|
|
42420
42528
|
# },
|
|
42421
42529
|
# ],
|
|
42422
42530
|
# },
|
|
42531
|
+
# canvas_app_settings: {
|
|
42532
|
+
# time_series_forecasting_settings: {
|
|
42533
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
42534
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
42535
|
+
# },
|
|
42536
|
+
# },
|
|
42423
42537
|
# },
|
|
42424
42538
|
# }
|
|
42425
42539
|
#
|
|
@@ -42761,6 +42875,12 @@ module Aws::SageMaker
|
|
|
42761
42875
|
# },
|
|
42762
42876
|
# ],
|
|
42763
42877
|
# },
|
|
42878
|
+
# canvas_app_settings: {
|
|
42879
|
+
# time_series_forecasting_settings: {
|
|
42880
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
42881
|
+
# amazon_forecast_role_arn: "RoleArn",
|
|
42882
|
+
# },
|
|
42883
|
+
# },
|
|
42764
42884
|
# }
|
|
42765
42885
|
#
|
|
42766
42886
|
# @!attribute [rw] execution_role
|
|
@@ -42807,6 +42927,10 @@ module Aws::SageMaker
|
|
|
42807
42927
|
# A collection of settings that configure the `RSessionGateway` app.
|
|
42808
42928
|
# @return [Types::RSessionAppSettings]
|
|
42809
42929
|
#
|
|
42930
|
+
# @!attribute [rw] canvas_app_settings
|
|
42931
|
+
# The Canvas app settings.
|
|
42932
|
+
# @return [Types::CanvasAppSettings]
|
|
42933
|
+
#
|
|
42810
42934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
|
42811
42935
|
#
|
|
42812
42936
|
class UserSettings < Struct.new(
|
|
@@ -42817,7 +42941,8 @@ module Aws::SageMaker
|
|
|
42817
42941
|
:kernel_gateway_app_settings,
|
|
42818
42942
|
:tensor_board_app_settings,
|
|
42819
42943
|
:r_studio_server_pro_app_settings,
|
|
42820
|
-
:r_session_app_settings
|
|
42944
|
+
:r_session_app_settings,
|
|
42945
|
+
:canvas_app_settings)
|
|
42821
42946
|
SENSITIVE = []
|
|
42822
42947
|
include Aws::Structure
|
|
42823
42948
|
end
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-sagemaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.141.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-09-
|
|
11
|
+
date: 2022-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|