aws-sdk-sagemaker 1.153.0 → 1.155.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +2587 -1218
- data/lib/aws-sdk-sagemaker/client_api.rb +1259 -6
- data/lib/aws-sdk-sagemaker/endpoint_provider.rb +67 -69
- data/lib/aws-sdk-sagemaker/endpoints.rb +476 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +68 -0
- data/lib/aws-sdk-sagemaker/types.rb +3705 -9784
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -966,7 +966,7 @@ module Aws::SageMaker
|
|
966
966
|
# @option params [required, String] :domain_id
|
967
967
|
# The domain ID.
|
968
968
|
#
|
969
|
-
# @option params [
|
969
|
+
# @option params [String] :user_profile_name
|
970
970
|
# The user profile name.
|
971
971
|
#
|
972
972
|
# @option params [required, String] :app_type
|
@@ -992,6 +992,9 @@ module Aws::SageMaker
|
|
992
992
|
#
|
993
993
|
# </note>
|
994
994
|
#
|
995
|
+
# @option params [String] :space_name
|
996
|
+
# The name of the space.
|
997
|
+
#
|
995
998
|
# @return [Types::CreateAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
996
999
|
#
|
997
1000
|
# * {Types::CreateAppResponse#app_arn #app_arn} => String
|
@@ -1000,7 +1003,7 @@ module Aws::SageMaker
|
|
1000
1003
|
#
|
1001
1004
|
# resp = client.create_app({
|
1002
1005
|
# domain_id: "DomainId", # required
|
1003
|
-
# user_profile_name: "UserProfileName",
|
1006
|
+
# user_profile_name: "UserProfileName",
|
1004
1007
|
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
1005
1008
|
# app_name: "AppName", # required
|
1006
1009
|
# tags: [
|
@@ -1015,6 +1018,7 @@ module Aws::SageMaker
|
|
1015
1018
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
1016
1019
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
1017
1020
|
# },
|
1021
|
+
# space_name: "SpaceName",
|
1018
1022
|
# })
|
1019
1023
|
#
|
1020
1024
|
# @example Response structure
|
@@ -1929,6 +1933,9 @@ module Aws::SageMaker
|
|
1929
1933
|
# @option params [Types::DomainSettings] :domain_settings
|
1930
1934
|
# A collection of `Domain` settings.
|
1931
1935
|
#
|
1936
|
+
# @option params [Types::DefaultSpaceSettings] :default_space_settings
|
1937
|
+
# The default settings used to create a space.
|
1938
|
+
#
|
1932
1939
|
# @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1933
1940
|
#
|
1934
1941
|
# * {Types::CreateDomainResponse#domain_arn #domain_arn} => String
|
@@ -1955,6 +1962,11 @@ module Aws::SageMaker
|
|
1955
1962
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
1956
1963
|
# },
|
1957
1964
|
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
1965
|
+
# code_repositories: [
|
1966
|
+
# {
|
1967
|
+
# repository_url: "RepositoryUrl", # required
|
1968
|
+
# },
|
1969
|
+
# ],
|
1958
1970
|
# },
|
1959
1971
|
# kernel_gateway_app_settings: {
|
1960
1972
|
# default_resource_spec: {
|
@@ -2033,6 +2045,40 @@ module Aws::SageMaker
|
|
2033
2045
|
# },
|
2034
2046
|
# execution_role_identity_config: "USER_PROFILE_NAME", # accepts USER_PROFILE_NAME, DISABLED
|
2035
2047
|
# },
|
2048
|
+
# default_space_settings: {
|
2049
|
+
# execution_role: "RoleArn",
|
2050
|
+
# security_groups: ["SecurityGroupId"],
|
2051
|
+
# jupyter_server_app_settings: {
|
2052
|
+
# default_resource_spec: {
|
2053
|
+
# sage_maker_image_arn: "ImageArn",
|
2054
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
2055
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
2056
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
2057
|
+
# },
|
2058
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
2059
|
+
# code_repositories: [
|
2060
|
+
# {
|
2061
|
+
# repository_url: "RepositoryUrl", # required
|
2062
|
+
# },
|
2063
|
+
# ],
|
2064
|
+
# },
|
2065
|
+
# kernel_gateway_app_settings: {
|
2066
|
+
# default_resource_spec: {
|
2067
|
+
# sage_maker_image_arn: "ImageArn",
|
2068
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
2069
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
2070
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
2071
|
+
# },
|
2072
|
+
# custom_images: [
|
2073
|
+
# {
|
2074
|
+
# image_name: "ImageName", # required
|
2075
|
+
# image_version_number: 1,
|
2076
|
+
# app_image_config_name: "AppImageConfigName", # required
|
2077
|
+
# },
|
2078
|
+
# ],
|
2079
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
2080
|
+
# },
|
2081
|
+
# },
|
2036
2082
|
# })
|
2037
2083
|
#
|
2038
2084
|
# @example Response structure
|
@@ -2441,7 +2487,7 @@ module Aws::SageMaker
|
|
2441
2487
|
# CreateEndpoint request.
|
2442
2488
|
#
|
2443
2489
|
# @option params [required, Array<Types::ProductionVariant>] :production_variants
|
2444
|
-
# An
|
2490
|
+
# An array of `ProductionVariant` objects, one for each model that you
|
2445
2491
|
# want to host at this endpoint.
|
2446
2492
|
#
|
2447
2493
|
# @option params [Types::DataCaptureConfig] :data_capture_config
|
@@ -2515,6 +2561,13 @@ module Aws::SageMaker
|
|
2515
2561
|
# @option params [Types::ExplainerConfig] :explainer_config
|
2516
2562
|
# A member of `CreateEndpointConfig` that enables explainers.
|
2517
2563
|
#
|
2564
|
+
# @option params [Array<Types::ProductionVariant>] :shadow_production_variants
|
2565
|
+
# An array of `ProductionVariant` objects, one for each model that you
|
2566
|
+
# want to host at this endpoint in shadow mode with production traffic
|
2567
|
+
# replicated from the model specified on `ProductionVariants`. If you
|
2568
|
+
# use this field, you can only specify one variant for
|
2569
|
+
# `ProductionVariants` and one variant for `ShadowProductionVariants`.
|
2570
|
+
#
|
2518
2571
|
# @return [Types::CreateEndpointConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2519
2572
|
#
|
2520
2573
|
# * {Types::CreateEndpointConfigOutput#endpoint_config_arn #endpoint_config_arn} => String
|
@@ -2611,6 +2664,27 @@ module Aws::SageMaker
|
|
2611
2664
|
# },
|
2612
2665
|
# },
|
2613
2666
|
# },
|
2667
|
+
# shadow_production_variants: [
|
2668
|
+
# {
|
2669
|
+
# variant_name: "VariantName", # required
|
2670
|
+
# model_name: "ModelName", # required
|
2671
|
+
# initial_instance_count: 1,
|
2672
|
+
# instance_type: "ml.t2.medium", # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.p4d.24xlarge, ml.c7g.large, ml.c7g.xlarge, ml.c7g.2xlarge, ml.c7g.4xlarge, ml.c7g.8xlarge, ml.c7g.12xlarge, ml.c7g.16xlarge, ml.m6g.large, ml.m6g.xlarge, ml.m6g.2xlarge, ml.m6g.4xlarge, ml.m6g.8xlarge, ml.m6g.12xlarge, ml.m6g.16xlarge, ml.m6gd.large, ml.m6gd.xlarge, ml.m6gd.2xlarge, ml.m6gd.4xlarge, ml.m6gd.8xlarge, ml.m6gd.12xlarge, ml.m6gd.16xlarge, ml.c6g.large, ml.c6g.xlarge, ml.c6g.2xlarge, ml.c6g.4xlarge, ml.c6g.8xlarge, ml.c6g.12xlarge, ml.c6g.16xlarge, ml.c6gd.large, ml.c6gd.xlarge, ml.c6gd.2xlarge, ml.c6gd.4xlarge, ml.c6gd.8xlarge, ml.c6gd.12xlarge, ml.c6gd.16xlarge, ml.c6gn.large, ml.c6gn.xlarge, ml.c6gn.2xlarge, ml.c6gn.4xlarge, ml.c6gn.8xlarge, ml.c6gn.12xlarge, ml.c6gn.16xlarge, ml.r6g.large, ml.r6g.xlarge, ml.r6g.2xlarge, ml.r6g.4xlarge, ml.r6g.8xlarge, ml.r6g.12xlarge, ml.r6g.16xlarge, ml.r6gd.large, ml.r6gd.xlarge, ml.r6gd.2xlarge, ml.r6gd.4xlarge, ml.r6gd.8xlarge, ml.r6gd.12xlarge, ml.r6gd.16xlarge
|
2673
|
+
# initial_variant_weight: 1.0,
|
2674
|
+
# accelerator_type: "ml.eia1.medium", # accepts ml.eia1.medium, ml.eia1.large, ml.eia1.xlarge, ml.eia2.medium, ml.eia2.large, ml.eia2.xlarge
|
2675
|
+
# core_dump_config: {
|
2676
|
+
# destination_s3_uri: "DestinationS3Uri", # required
|
2677
|
+
# kms_key_id: "KmsKeyId",
|
2678
|
+
# },
|
2679
|
+
# serverless_config: {
|
2680
|
+
# memory_size_in_mb: 1, # required
|
2681
|
+
# max_concurrency: 1, # required
|
2682
|
+
# },
|
2683
|
+
# volume_size_in_gb: 1,
|
2684
|
+
# model_data_download_timeout_in_seconds: 1,
|
2685
|
+
# container_startup_health_check_timeout_in_seconds: 1,
|
2686
|
+
# },
|
2687
|
+
# ],
|
2614
2688
|
# })
|
2615
2689
|
#
|
2616
2690
|
# @example Response structure
|
@@ -2802,11 +2876,15 @@ module Aws::SageMaker
|
|
2802
2876
|
# defining your [bucket-level key][1] for SSE, you can reduce Amazon
|
2803
2877
|
# Web Services KMS requests costs by up to 99 percent.
|
2804
2878
|
#
|
2879
|
+
# * Format for the offline store table. Supported formats are Glue
|
2880
|
+
# (Default) and [Apache Iceberg][2].
|
2881
|
+
#
|
2805
2882
|
# To learn more about this parameter, see OfflineStoreConfig.
|
2806
2883
|
#
|
2807
2884
|
#
|
2808
2885
|
#
|
2809
2886
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html
|
2887
|
+
# [2]: https://iceberg.apache.org/
|
2810
2888
|
#
|
2811
2889
|
# @option params [String] :role_arn
|
2812
2890
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
@@ -2853,6 +2931,7 @@ module Aws::SageMaker
|
|
2853
2931
|
# catalog: "Catalog", # required
|
2854
2932
|
# database: "Database", # required
|
2855
2933
|
# },
|
2934
|
+
# table_format: "Glue", # accepts Glue, Iceberg
|
2856
2935
|
# },
|
2857
2936
|
# role_arn: "RoleArn",
|
2858
2937
|
# description: "Description",
|
@@ -2968,6 +3047,61 @@ module Aws::SageMaker
|
|
2968
3047
|
req.send_request(options)
|
2969
3048
|
end
|
2970
3049
|
|
3050
|
+
# Create a hub.
|
3051
|
+
#
|
3052
|
+
# @option params [required, String] :hub_name
|
3053
|
+
# The name of the hub to create.
|
3054
|
+
#
|
3055
|
+
# @option params [required, String] :hub_description
|
3056
|
+
# A description of the hub.
|
3057
|
+
#
|
3058
|
+
# @option params [String] :hub_display_name
|
3059
|
+
# The display name of the hub.
|
3060
|
+
#
|
3061
|
+
# @option params [Array<String>] :hub_search_keywords
|
3062
|
+
# The searchable keywords for the hub.
|
3063
|
+
#
|
3064
|
+
# @option params [Types::HubS3StorageConfig] :s3_storage_config
|
3065
|
+
# The Amazon S3 storage configuration for the hub.
|
3066
|
+
#
|
3067
|
+
# @option params [Array<Types::Tag>] :tags
|
3068
|
+
# Any tags to associate with the hub.
|
3069
|
+
#
|
3070
|
+
# @return [Types::CreateHubResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3071
|
+
#
|
3072
|
+
# * {Types::CreateHubResponse#hub_arn #hub_arn} => String
|
3073
|
+
#
|
3074
|
+
# @example Request syntax with placeholder values
|
3075
|
+
#
|
3076
|
+
# resp = client.create_hub({
|
3077
|
+
# hub_name: "HubName", # required
|
3078
|
+
# hub_description: "HubDescription", # required
|
3079
|
+
# hub_display_name: "HubDisplayName",
|
3080
|
+
# hub_search_keywords: ["HubSearchKeyword"],
|
3081
|
+
# s3_storage_config: {
|
3082
|
+
# s3_output_path: "S3OutputPath",
|
3083
|
+
# },
|
3084
|
+
# tags: [
|
3085
|
+
# {
|
3086
|
+
# key: "TagKey", # required
|
3087
|
+
# value: "TagValue", # required
|
3088
|
+
# },
|
3089
|
+
# ],
|
3090
|
+
# })
|
3091
|
+
#
|
3092
|
+
# @example Response structure
|
3093
|
+
#
|
3094
|
+
# resp.hub_arn #=> String
|
3095
|
+
#
|
3096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHub AWS API Documentation
|
3097
|
+
#
|
3098
|
+
# @overload create_hub(params = {})
|
3099
|
+
# @param [Hash] params ({})
|
3100
|
+
def create_hub(params = {}, options = {})
|
3101
|
+
req = build_request(:create_hub, params)
|
3102
|
+
req.send_request(options)
|
3103
|
+
end
|
3104
|
+
|
2971
3105
|
# Defines the settings you will use for the human review workflow user
|
2972
3106
|
# interface. Reviewers will see a three-panel interface with an
|
2973
3107
|
# instruction area, the item to review, and an input area.
|
@@ -3536,6 +3670,205 @@ module Aws::SageMaker
|
|
3536
3670
|
req.send_request(options)
|
3537
3671
|
end
|
3538
3672
|
|
3673
|
+
# Creates an inference experiment using the configurations specified in
|
3674
|
+
# the request.
|
3675
|
+
#
|
3676
|
+
# Use this API to setup and schedule an experiment to compare model
|
3677
|
+
# variants on a Amazon SageMaker inference endpoint. For more
|
3678
|
+
# information about inference experiments, see [Shadow tests][1].
|
3679
|
+
#
|
3680
|
+
# Amazon SageMaker begins your experiment at the scheduled time and
|
3681
|
+
# routes traffic to your endpoint's model variants based on your
|
3682
|
+
# specified configuration.
|
3683
|
+
#
|
3684
|
+
# While the experiment is in progress or after it has concluded, you can
|
3685
|
+
# view metrics that compare your model variants. For more information,
|
3686
|
+
# see [View, monitor, and edit shadow tests][2].
|
3687
|
+
#
|
3688
|
+
#
|
3689
|
+
#
|
3690
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/shadow-tests.html
|
3691
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/shadow-tests-view-monitor-edit.html
|
3692
|
+
#
|
3693
|
+
# @option params [required, String] :name
|
3694
|
+
# The name for the inference experiment.
|
3695
|
+
#
|
3696
|
+
# @option params [required, String] :type
|
3697
|
+
# The type of the inference experiment that you want to run. The
|
3698
|
+
# following types of experiments are possible:
|
3699
|
+
#
|
3700
|
+
# * `ShadowMode`\: You can use this type to validate a shadow variant.
|
3701
|
+
# For more information, see [Shadow tests][1].
|
3702
|
+
#
|
3703
|
+
# ^
|
3704
|
+
#
|
3705
|
+
#
|
3706
|
+
#
|
3707
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/shadow-tests.html
|
3708
|
+
#
|
3709
|
+
# @option params [Types::InferenceExperimentSchedule] :schedule
|
3710
|
+
# The duration for which you want the inference experiment to run. If
|
3711
|
+
# you don't specify this field, the experiment automatically starts
|
3712
|
+
# immediately upon creation and concludes after 7 days.
|
3713
|
+
#
|
3714
|
+
# @option params [String] :description
|
3715
|
+
# A description for the inference experiment.
|
3716
|
+
#
|
3717
|
+
# @option params [required, String] :role_arn
|
3718
|
+
# The ARN of the IAM role that Amazon SageMaker can assume to access
|
3719
|
+
# model artifacts and container images, and manage Amazon SageMaker
|
3720
|
+
# Inference endpoints for model deployment.
|
3721
|
+
#
|
3722
|
+
# @option params [required, String] :endpoint_name
|
3723
|
+
# The name of the Amazon SageMaker endpoint on which you want to run the
|
3724
|
+
# inference experiment.
|
3725
|
+
#
|
3726
|
+
# @option params [required, Array<Types::ModelVariantConfig>] :model_variants
|
3727
|
+
# An array of `ModelVariantConfig` objects. There is one for each
|
3728
|
+
# variant in the inference experiment. Each `ModelVariantConfig` object
|
3729
|
+
# in the array describes the infrastructure configuration for the
|
3730
|
+
# corresponding variant.
|
3731
|
+
#
|
3732
|
+
# @option params [Types::InferenceExperimentDataStorageConfig] :data_storage_config
|
3733
|
+
# The Amazon S3 location and configuration for storing inference request
|
3734
|
+
# and response data.
|
3735
|
+
#
|
3736
|
+
# This is an optional parameter that you can use for data capture. For
|
3737
|
+
# more information, see [Capture data][1].
|
3738
|
+
#
|
3739
|
+
#
|
3740
|
+
#
|
3741
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-data-capture.html
|
3742
|
+
#
|
3743
|
+
# @option params [required, Types::ShadowModeConfig] :shadow_mode_config
|
3744
|
+
# The configuration of `ShadowMode` inference experiment type. Use this
|
3745
|
+
# field to specify a production variant which takes all the inference
|
3746
|
+
# requests, and a shadow variant to which Amazon SageMaker replicates a
|
3747
|
+
# percentage of the inference requests. For the shadow variant also
|
3748
|
+
# specify the percentage of requests that Amazon SageMaker replicates.
|
3749
|
+
#
|
3750
|
+
# @option params [String] :kms_key
|
3751
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
3752
|
+
# KMS) key that Amazon SageMaker uses to encrypt data on the storage
|
3753
|
+
# volume attached to the ML compute instance that hosts the endpoint.
|
3754
|
+
# The `KmsKey` can be any of the following formats:
|
3755
|
+
#
|
3756
|
+
# * KMS key ID
|
3757
|
+
#
|
3758
|
+
# `"1234abcd-12ab-34cd-56ef-1234567890ab"`
|
3759
|
+
#
|
3760
|
+
# * Amazon Resource Name (ARN) of a KMS key
|
3761
|
+
#
|
3762
|
+
# `"arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"`
|
3763
|
+
#
|
3764
|
+
# * KMS key Alias
|
3765
|
+
#
|
3766
|
+
# `"alias/ExampleAlias"`
|
3767
|
+
#
|
3768
|
+
# * Amazon Resource Name (ARN) of a KMS key Alias
|
3769
|
+
#
|
3770
|
+
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"`
|
3771
|
+
#
|
3772
|
+
# If you use a KMS key ID or an alias of your KMS key, the Amazon
|
3773
|
+
# SageMaker execution role must include permissions to call
|
3774
|
+
# `kms:Encrypt`. If you don't provide a KMS key ID, Amazon SageMaker
|
3775
|
+
# uses the default KMS key for Amazon S3 for your role's account.
|
3776
|
+
# Amazon SageMaker uses server-side encryption with KMS managed keys for
|
3777
|
+
# `OutputDataConfig`. If you use a bucket policy with an `s3:PutObject`
|
3778
|
+
# permission that only allows objects with server-side encryption, set
|
3779
|
+
# the condition key of `s3:x-amz-server-side-encryption` to `"aws:kms"`.
|
3780
|
+
# For more information, see [KMS managed Encryption Keys][1] in the
|
3781
|
+
# *Amazon Simple Storage Service Developer Guide.*
|
3782
|
+
#
|
3783
|
+
# The KMS key policy must grant permission to the IAM role that you
|
3784
|
+
# specify in your `CreateEndpoint` and `UpdateEndpoint` requests. For
|
3785
|
+
# more information, see [Using Key Policies in Amazon Web Services
|
3786
|
+
# KMS][2] in the *Amazon Web Services Key Management Service Developer
|
3787
|
+
# Guide*.
|
3788
|
+
#
|
3789
|
+
#
|
3790
|
+
#
|
3791
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html
|
3792
|
+
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html
|
3793
|
+
#
|
3794
|
+
# @option params [Array<Types::Tag>] :tags
|
3795
|
+
# Array of key-value pairs. You can use tags to categorize your Amazon
|
3796
|
+
# Web Services resources in different ways, for example, by purpose,
|
3797
|
+
# owner, or environment. For more information, see [Tagging your Amazon
|
3798
|
+
# Web Services Resources][1].
|
3799
|
+
#
|
3800
|
+
#
|
3801
|
+
#
|
3802
|
+
# [1]: https://docs.aws.amazon.com/ARG/latest/userguide/tagging.html
|
3803
|
+
#
|
3804
|
+
# @return [Types::CreateInferenceExperimentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3805
|
+
#
|
3806
|
+
# * {Types::CreateInferenceExperimentResponse#inference_experiment_arn #inference_experiment_arn} => String
|
3807
|
+
#
|
3808
|
+
# @example Request syntax with placeholder values
|
3809
|
+
#
|
3810
|
+
# resp = client.create_inference_experiment({
|
3811
|
+
# name: "InferenceExperimentName", # required
|
3812
|
+
# type: "ShadowMode", # required, accepts ShadowMode
|
3813
|
+
# schedule: {
|
3814
|
+
# start_time: Time.now,
|
3815
|
+
# end_time: Time.now,
|
3816
|
+
# },
|
3817
|
+
# description: "InferenceExperimentDescription",
|
3818
|
+
# role_arn: "RoleArn", # required
|
3819
|
+
# endpoint_name: "EndpointName", # required
|
3820
|
+
# model_variants: [ # required
|
3821
|
+
# {
|
3822
|
+
# model_name: "ModelName", # required
|
3823
|
+
# variant_name: "ModelVariantName", # required
|
3824
|
+
# infrastructure_config: { # required
|
3825
|
+
# infrastructure_type: "RealTimeInference", # required, accepts RealTimeInference
|
3826
|
+
# real_time_inference_config: { # required
|
3827
|
+
# instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
3828
|
+
# instance_count: 1, # required
|
3829
|
+
# },
|
3830
|
+
# },
|
3831
|
+
# },
|
3832
|
+
# ],
|
3833
|
+
# data_storage_config: {
|
3834
|
+
# destination: "DestinationS3Uri", # required
|
3835
|
+
# kms_key: "KmsKeyId",
|
3836
|
+
# content_type: {
|
3837
|
+
# csv_content_types: ["CsvContentType"],
|
3838
|
+
# json_content_types: ["JsonContentType"],
|
3839
|
+
# },
|
3840
|
+
# },
|
3841
|
+
# shadow_mode_config: { # required
|
3842
|
+
# source_model_variant_name: "ModelVariantName", # required
|
3843
|
+
# shadow_model_variants: [ # required
|
3844
|
+
# {
|
3845
|
+
# shadow_model_variant_name: "ModelVariantName", # required
|
3846
|
+
# sampling_percentage: 1, # required
|
3847
|
+
# },
|
3848
|
+
# ],
|
3849
|
+
# },
|
3850
|
+
# kms_key: "KmsKeyId",
|
3851
|
+
# tags: [
|
3852
|
+
# {
|
3853
|
+
# key: "TagKey", # required
|
3854
|
+
# value: "TagValue", # required
|
3855
|
+
# },
|
3856
|
+
# ],
|
3857
|
+
# })
|
3858
|
+
#
|
3859
|
+
# @example Response structure
|
3860
|
+
#
|
3861
|
+
# resp.inference_experiment_arn #=> String
|
3862
|
+
#
|
3863
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceExperiment AWS API Documentation
|
3864
|
+
#
|
3865
|
+
# @overload create_inference_experiment(params = {})
|
3866
|
+
# @param [Hash] params ({})
|
3867
|
+
def create_inference_experiment(params = {}, options = {})
|
3868
|
+
req = build_request(:create_inference_experiment, params)
|
3869
|
+
req.send_request(options)
|
3870
|
+
end
|
3871
|
+
|
3539
3872
|
# Starts a recommendation job. You can create either an instance
|
3540
3873
|
# recommendation or load test job.
|
3541
3874
|
#
|
@@ -3639,6 +3972,10 @@ module Aws::SageMaker
|
|
3639
3972
|
# endpoint_name: "EndpointName", # required
|
3640
3973
|
# },
|
3641
3974
|
# ],
|
3975
|
+
# vpc_config: {
|
3976
|
+
# security_group_ids: ["RecommendationJobVpcSecurityGroupId"], # required
|
3977
|
+
# subnets: ["RecommendationJobVpcSubnetId"], # required
|
3978
|
+
# },
|
3642
3979
|
# },
|
3643
3980
|
# job_description: "RecommendationJobDescription",
|
3644
3981
|
# stopping_conditions: {
|
@@ -4312,6 +4649,126 @@ module Aws::SageMaker
|
|
4312
4649
|
req.send_request(options)
|
4313
4650
|
end
|
4314
4651
|
|
4652
|
+
# Creates an Amazon SageMaker Model Card.
|
4653
|
+
#
|
4654
|
+
# For information about how to use model cards, see [Amazon SageMaker
|
4655
|
+
# Model Card][1].
|
4656
|
+
#
|
4657
|
+
#
|
4658
|
+
#
|
4659
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-cards.html
|
4660
|
+
#
|
4661
|
+
# @option params [required, String] :model_card_name
|
4662
|
+
# The unique name of the model card.
|
4663
|
+
#
|
4664
|
+
# @option params [Types::ModelCardSecurityConfig] :security_config
|
4665
|
+
# An optional Key Management Service key to encrypt, decrypt, and
|
4666
|
+
# re-encrypt model card content for regulated workloads with highly
|
4667
|
+
# sensitive data.
|
4668
|
+
#
|
4669
|
+
# @option params [required, String] :content
|
4670
|
+
# The content of the model card. Content must be in [model card JSON
|
4671
|
+
# schema][1] and provided as a string.
|
4672
|
+
#
|
4673
|
+
#
|
4674
|
+
#
|
4675
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-cards-api-json-schema.html
|
4676
|
+
#
|
4677
|
+
# @option params [required, String] :model_card_status
|
4678
|
+
# The approval status of the model card within your organization.
|
4679
|
+
# Different organizations might have different criteria for model card
|
4680
|
+
# review and approval.
|
4681
|
+
#
|
4682
|
+
# * `Draft`\: The model card is a work in progress.
|
4683
|
+
#
|
4684
|
+
# * `PendingReview`\: The model card is pending review.
|
4685
|
+
#
|
4686
|
+
# * `Approved`\: The model card is approved.
|
4687
|
+
#
|
4688
|
+
# * `Archived`\: The model card is archived. No more updates should be
|
4689
|
+
# made to the model card, but it can still be exported.
|
4690
|
+
#
|
4691
|
+
# @option params [Array<Types::Tag>] :tags
|
4692
|
+
# Key-value pairs used to manage metadata for model cards.
|
4693
|
+
#
|
4694
|
+
# @return [Types::CreateModelCardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4695
|
+
#
|
4696
|
+
# * {Types::CreateModelCardResponse#model_card_arn #model_card_arn} => String
|
4697
|
+
#
|
4698
|
+
# @example Request syntax with placeholder values
|
4699
|
+
#
|
4700
|
+
# resp = client.create_model_card({
|
4701
|
+
# model_card_name: "EntityName", # required
|
4702
|
+
# security_config: {
|
4703
|
+
# kms_key_id: "KmsKeyId",
|
4704
|
+
# },
|
4705
|
+
# content: "ModelCardContent", # required
|
4706
|
+
# model_card_status: "Draft", # required, accepts Draft, PendingReview, Approved, Archived
|
4707
|
+
# tags: [
|
4708
|
+
# {
|
4709
|
+
# key: "TagKey", # required
|
4710
|
+
# value: "TagValue", # required
|
4711
|
+
# },
|
4712
|
+
# ],
|
4713
|
+
# })
|
4714
|
+
#
|
4715
|
+
# @example Response structure
|
4716
|
+
#
|
4717
|
+
# resp.model_card_arn #=> String
|
4718
|
+
#
|
4719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelCard AWS API Documentation
|
4720
|
+
#
|
4721
|
+
# @overload create_model_card(params = {})
|
4722
|
+
# @param [Hash] params ({})
|
4723
|
+
def create_model_card(params = {}, options = {})
|
4724
|
+
req = build_request(:create_model_card, params)
|
4725
|
+
req.send_request(options)
|
4726
|
+
end
|
4727
|
+
|
4728
|
+
# Creates an Amazon SageMaker Model Card export job.
|
4729
|
+
#
|
4730
|
+
# @option params [required, String] :model_card_name
|
4731
|
+
# The name of the model card to export.
|
4732
|
+
#
|
4733
|
+
# @option params [Integer] :model_card_version
|
4734
|
+
# The version of the model card to export. If a version is not provided,
|
4735
|
+
# then the latest version of the model card is exported.
|
4736
|
+
#
|
4737
|
+
# @option params [required, String] :model_card_export_job_name
|
4738
|
+
# The name of the model card export job.
|
4739
|
+
#
|
4740
|
+
# @option params [required, Types::ModelCardExportOutputConfig] :output_config
|
4741
|
+
# The model card output configuration that specifies the Amazon S3 path
|
4742
|
+
# for exporting.
|
4743
|
+
#
|
4744
|
+
# @return [Types::CreateModelCardExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4745
|
+
#
|
4746
|
+
# * {Types::CreateModelCardExportJobResponse#model_card_export_job_arn #model_card_export_job_arn} => String
|
4747
|
+
#
|
4748
|
+
# @example Request syntax with placeholder values
|
4749
|
+
#
|
4750
|
+
# resp = client.create_model_card_export_job({
|
4751
|
+
# model_card_name: "EntityName", # required
|
4752
|
+
# model_card_version: 1,
|
4753
|
+
# model_card_export_job_name: "EntityName", # required
|
4754
|
+
# output_config: { # required
|
4755
|
+
# s3_output_path: "S3Uri", # required
|
4756
|
+
# },
|
4757
|
+
# })
|
4758
|
+
#
|
4759
|
+
# @example Response structure
|
4760
|
+
#
|
4761
|
+
# resp.model_card_export_job_arn #=> String
|
4762
|
+
#
|
4763
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelCardExportJob AWS API Documentation
|
4764
|
+
#
|
4765
|
+
# @overload create_model_card_export_job(params = {})
|
4766
|
+
# @param [Hash] params ({})
|
4767
|
+
def create_model_card_export_job(params = {}, options = {})
|
4768
|
+
req = build_request(:create_model_card_export_job, params)
|
4769
|
+
req.send_request(options)
|
4770
|
+
end
|
4771
|
+
|
4315
4772
|
# Creates the definition for a model explainability job.
|
4316
4773
|
#
|
4317
4774
|
# @option params [required, String] :job_definition_name
|
@@ -5625,6 +6082,9 @@ module Aws::SageMaker
|
|
5625
6082
|
# The number of seconds until the pre-signed URL expires. This value
|
5626
6083
|
# defaults to 300.
|
5627
6084
|
#
|
6085
|
+
# @option params [String] :space_name
|
6086
|
+
# The name of the space.
|
6087
|
+
#
|
5628
6088
|
# @return [Types::CreatePresignedDomainUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5629
6089
|
#
|
5630
6090
|
# * {Types::CreatePresignedDomainUrlResponse#authorized_url #authorized_url} => String
|
@@ -5636,6 +6096,7 @@ module Aws::SageMaker
|
|
5636
6096
|
# user_profile_name: "UserProfileName", # required
|
5637
6097
|
# session_expiration_duration_in_seconds: 1,
|
5638
6098
|
# expires_in_seconds: 1,
|
6099
|
+
# space_name: "SpaceName",
|
5639
6100
|
# })
|
5640
6101
|
#
|
5641
6102
|
# @example Response structure
|
@@ -5873,6 +6334,7 @@ module Aws::SageMaker
|
|
5873
6334
|
# experiment_name: "ExperimentEntityName",
|
5874
6335
|
# trial_name: "ExperimentEntityName",
|
5875
6336
|
# trial_component_display_name: "ExperimentEntityName",
|
6337
|
+
# run_name: "ExperimentEntityName",
|
5876
6338
|
# },
|
5877
6339
|
# })
|
5878
6340
|
#
|
@@ -5963,24 +6425,102 @@ module Aws::SageMaker
|
|
5963
6425
|
req.send_request(options)
|
5964
6426
|
end
|
5965
6427
|
|
5966
|
-
# Creates a
|
5967
|
-
#
|
5968
|
-
# @option params [required, String] :studio_lifecycle_config_name
|
5969
|
-
# The name of the Studio Lifecycle Configuration to create.
|
6428
|
+
# Creates a space used for real time collaboration in a Domain.
|
5970
6429
|
#
|
5971
|
-
# @option params [required, String] :
|
5972
|
-
# The
|
5973
|
-
# content must be base64 encoded.
|
6430
|
+
# @option params [required, String] :domain_id
|
6431
|
+
# The ID of the associated Domain.
|
5974
6432
|
#
|
5975
|
-
# @option params [required, String] :
|
5976
|
-
# The
|
6433
|
+
# @option params [required, String] :space_name
|
6434
|
+
# The name of the space.
|
5977
6435
|
#
|
5978
6436
|
# @option params [Array<Types::Tag>] :tags
|
5979
|
-
# Tags to
|
5980
|
-
#
|
5981
|
-
#
|
6437
|
+
# Tags to associated with the space. Each tag consists of a key and an
|
6438
|
+
# optional value. Tag keys must be unique for each resource. Tags are
|
6439
|
+
# searchable using the `Search` API.
|
5982
6440
|
#
|
5983
|
-
# @
|
6441
|
+
# @option params [Types::SpaceSettings] :space_settings
|
6442
|
+
# A collection of space settings.
|
6443
|
+
#
|
6444
|
+
# @return [Types::CreateSpaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6445
|
+
#
|
6446
|
+
# * {Types::CreateSpaceResponse#space_arn #space_arn} => String
|
6447
|
+
#
|
6448
|
+
# @example Request syntax with placeholder values
|
6449
|
+
#
|
6450
|
+
# resp = client.create_space({
|
6451
|
+
# domain_id: "DomainId", # required
|
6452
|
+
# space_name: "SpaceName", # required
|
6453
|
+
# tags: [
|
6454
|
+
# {
|
6455
|
+
# key: "TagKey", # required
|
6456
|
+
# value: "TagValue", # required
|
6457
|
+
# },
|
6458
|
+
# ],
|
6459
|
+
# space_settings: {
|
6460
|
+
# jupyter_server_app_settings: {
|
6461
|
+
# default_resource_spec: {
|
6462
|
+
# sage_maker_image_arn: "ImageArn",
|
6463
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
6464
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
6465
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
6466
|
+
# },
|
6467
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
6468
|
+
# code_repositories: [
|
6469
|
+
# {
|
6470
|
+
# repository_url: "RepositoryUrl", # required
|
6471
|
+
# },
|
6472
|
+
# ],
|
6473
|
+
# },
|
6474
|
+
# kernel_gateway_app_settings: {
|
6475
|
+
# default_resource_spec: {
|
6476
|
+
# sage_maker_image_arn: "ImageArn",
|
6477
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
6478
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
6479
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
6480
|
+
# },
|
6481
|
+
# custom_images: [
|
6482
|
+
# {
|
6483
|
+
# image_name: "ImageName", # required
|
6484
|
+
# image_version_number: 1,
|
6485
|
+
# app_image_config_name: "AppImageConfigName", # required
|
6486
|
+
# },
|
6487
|
+
# ],
|
6488
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
6489
|
+
# },
|
6490
|
+
# },
|
6491
|
+
# })
|
6492
|
+
#
|
6493
|
+
# @example Response structure
|
6494
|
+
#
|
6495
|
+
# resp.space_arn #=> String
|
6496
|
+
#
|
6497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateSpace AWS API Documentation
|
6498
|
+
#
|
6499
|
+
# @overload create_space(params = {})
|
6500
|
+
# @param [Hash] params ({})
|
6501
|
+
def create_space(params = {}, options = {})
|
6502
|
+
req = build_request(:create_space, params)
|
6503
|
+
req.send_request(options)
|
6504
|
+
end
|
6505
|
+
|
6506
|
+
# Creates a new Studio Lifecycle Configuration.
|
6507
|
+
#
|
6508
|
+
# @option params [required, String] :studio_lifecycle_config_name
|
6509
|
+
# The name of the Studio Lifecycle Configuration to create.
|
6510
|
+
#
|
6511
|
+
# @option params [required, String] :studio_lifecycle_config_content
|
6512
|
+
# The content of your Studio Lifecycle Configuration script. This
|
6513
|
+
# content must be base64 encoded.
|
6514
|
+
#
|
6515
|
+
# @option params [required, String] :studio_lifecycle_config_app_type
|
6516
|
+
# The App type that the Lifecycle Configuration is attached to.
|
6517
|
+
#
|
6518
|
+
# @option params [Array<Types::Tag>] :tags
|
6519
|
+
# Tags to be associated with the Lifecycle Configuration. Each tag
|
6520
|
+
# consists of a key and an optional value. Tag keys must be unique per
|
6521
|
+
# resource. Tags are searchable using the Search API.
|
6522
|
+
#
|
6523
|
+
# @return [Types::CreateStudioLifecycleConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5984
6524
|
#
|
5985
6525
|
# * {Types::CreateStudioLifecycleConfigResponse#studio_lifecycle_config_arn #studio_lifecycle_config_arn} => String
|
5986
6526
|
#
|
@@ -6232,23 +6772,23 @@ module Aws::SageMaker
|
|
6232
6772
|
# training checkpoint data.
|
6233
6773
|
#
|
6234
6774
|
# @option params [Types::DebugHookConfig] :debug_hook_config
|
6235
|
-
# Configuration information for the Debugger hook
|
6236
|
-
# tensor collections, and storage paths. To learn
|
6237
|
-
# configure the `DebugHookConfig` parameter, see [Use
|
6238
|
-
# Debugger Configuration API Operations to Create,
|
6239
|
-
# Your Training Job][1].
|
6775
|
+
# Configuration information for the Amazon SageMaker Debugger hook
|
6776
|
+
# parameters, metric and tensor collections, and storage paths. To learn
|
6777
|
+
# more about how to configure the `DebugHookConfig` parameter, see [Use
|
6778
|
+
# the SageMaker and Debugger Configuration API Operations to Create,
|
6779
|
+
# Update, and Debug Your Training Job][1].
|
6240
6780
|
#
|
6241
6781
|
#
|
6242
6782
|
#
|
6243
6783
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
|
6244
6784
|
#
|
6245
6785
|
# @option params [Array<Types::DebugRuleConfiguration>] :debug_rule_configurations
|
6246
|
-
# Configuration information for Debugger rules for
|
6247
|
-
# tensors.
|
6786
|
+
# Configuration information for Amazon SageMaker Debugger rules for
|
6787
|
+
# debugging output tensors.
|
6248
6788
|
#
|
6249
6789
|
# @option params [Types::TensorBoardOutputConfig] :tensor_board_output_config
|
6250
|
-
# Configuration of storage locations for the
|
6251
|
-
# data.
|
6790
|
+
# Configuration of storage locations for the Amazon SageMaker Debugger
|
6791
|
+
# TensorBoard output data.
|
6252
6792
|
#
|
6253
6793
|
# @option params [Types::ExperimentConfig] :experiment_config
|
6254
6794
|
# Associates a SageMaker job as a trial component with an experiment and
|
@@ -6261,12 +6801,12 @@ module Aws::SageMaker
|
|
6261
6801
|
# * CreateTransformJob
|
6262
6802
|
#
|
6263
6803
|
# @option params [Types::ProfilerConfig] :profiler_config
|
6264
|
-
# Configuration information for Debugger system
|
6265
|
-
# profiling, and storage paths.
|
6804
|
+
# Configuration information for Amazon SageMaker Debugger system
|
6805
|
+
# monitoring, framework profiling, and storage paths.
|
6266
6806
|
#
|
6267
6807
|
# @option params [Array<Types::ProfilerRuleConfiguration>] :profiler_rule_configurations
|
6268
|
-
# Configuration information for Debugger rules for
|
6269
|
-
# framework metrics.
|
6808
|
+
# Configuration information for Amazon SageMaker Debugger rules for
|
6809
|
+
# profiling system and framework metrics.
|
6270
6810
|
#
|
6271
6811
|
# @option params [Hash<String,String>] :environment
|
6272
6812
|
# The environment variables to set in the Docker container.
|
@@ -6403,6 +6943,7 @@ module Aws::SageMaker
|
|
6403
6943
|
# experiment_name: "ExperimentEntityName",
|
6404
6944
|
# trial_name: "ExperimentEntityName",
|
6405
6945
|
# trial_component_display_name: "ExperimentEntityName",
|
6946
|
+
# run_name: "ExperimentEntityName",
|
6406
6947
|
# },
|
6407
6948
|
# profiler_config: {
|
6408
6949
|
# s3_output_path: "S3Uri",
|
@@ -6656,6 +7197,7 @@ module Aws::SageMaker
|
|
6656
7197
|
# experiment_name: "ExperimentEntityName",
|
6657
7198
|
# trial_name: "ExperimentEntityName",
|
6658
7199
|
# trial_component_display_name: "ExperimentEntityName",
|
7200
|
+
# run_name: "ExperimentEntityName",
|
6659
7201
|
# },
|
6660
7202
|
# })
|
6661
7203
|
#
|
@@ -6934,6 +7476,11 @@ module Aws::SageMaker
|
|
6934
7476
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
6935
7477
|
# },
|
6936
7478
|
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
7479
|
+
# code_repositories: [
|
7480
|
+
# {
|
7481
|
+
# repository_url: "RepositoryUrl", # required
|
7482
|
+
# },
|
7483
|
+
# ],
|
6937
7484
|
# },
|
6938
7485
|
# kernel_gateway_app_settings: {
|
6939
7486
|
# default_resource_spec: {
|
@@ -7273,7 +7820,7 @@ module Aws::SageMaker
|
|
7273
7820
|
# @option params [required, String] :domain_id
|
7274
7821
|
# The domain ID.
|
7275
7822
|
#
|
7276
|
-
# @option params [
|
7823
|
+
# @option params [String] :user_profile_name
|
7277
7824
|
# The user profile name.
|
7278
7825
|
#
|
7279
7826
|
# @option params [required, String] :app_type
|
@@ -7282,15 +7829,19 @@ module Aws::SageMaker
|
|
7282
7829
|
# @option params [required, String] :app_name
|
7283
7830
|
# The name of the app.
|
7284
7831
|
#
|
7832
|
+
# @option params [String] :space_name
|
7833
|
+
# The name of the space.
|
7834
|
+
#
|
7285
7835
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7286
7836
|
#
|
7287
7837
|
# @example Request syntax with placeholder values
|
7288
7838
|
#
|
7289
7839
|
# resp = client.delete_app({
|
7290
7840
|
# domain_id: "DomainId", # required
|
7291
|
-
# user_profile_name: "UserProfileName",
|
7841
|
+
# user_profile_name: "UserProfileName",
|
7292
7842
|
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
7293
7843
|
# app_name: "AppName", # required
|
7844
|
+
# space_name: "SpaceName",
|
7294
7845
|
# })
|
7295
7846
|
#
|
7296
7847
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteApp AWS API Documentation
|
@@ -7727,6 +8278,62 @@ module Aws::SageMaker
|
|
7727
8278
|
req.send_request(options)
|
7728
8279
|
end
|
7729
8280
|
|
8281
|
+
# Delete a hub.
|
8282
|
+
#
|
8283
|
+
# @option params [required, String] :hub_name
|
8284
|
+
# The name of the hub to delete.
|
8285
|
+
#
|
8286
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
8287
|
+
#
|
8288
|
+
# @example Request syntax with placeholder values
|
8289
|
+
#
|
8290
|
+
# resp = client.delete_hub({
|
8291
|
+
# hub_name: "HubName", # required
|
8292
|
+
# })
|
8293
|
+
#
|
8294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHub AWS API Documentation
|
8295
|
+
#
|
8296
|
+
# @overload delete_hub(params = {})
|
8297
|
+
# @param [Hash] params ({})
|
8298
|
+
def delete_hub(params = {}, options = {})
|
8299
|
+
req = build_request(:delete_hub, params)
|
8300
|
+
req.send_request(options)
|
8301
|
+
end
|
8302
|
+
|
8303
|
+
# Delete the contents of a hub.
|
8304
|
+
#
|
8305
|
+
# @option params [required, String] :hub_name
|
8306
|
+
# The name of the hub that you want to delete content in.
|
8307
|
+
#
|
8308
|
+
# @option params [required, String] :hub_content_type
|
8309
|
+
# The type of content that you want to delete from a hub.
|
8310
|
+
#
|
8311
|
+
# @option params [required, String] :hub_content_name
|
8312
|
+
# The name of the content that you want to delete from a hub.
|
8313
|
+
#
|
8314
|
+
# @option params [required, String] :hub_content_version
|
8315
|
+
# The version of the content that you want to delete from a hub.
|
8316
|
+
#
|
8317
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
8318
|
+
#
|
8319
|
+
# @example Request syntax with placeholder values
|
8320
|
+
#
|
8321
|
+
# resp = client.delete_hub_content({
|
8322
|
+
# hub_name: "HubName", # required
|
8323
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook
|
8324
|
+
# hub_content_name: "HubContentName", # required
|
8325
|
+
# hub_content_version: "HubContentVersion", # required
|
8326
|
+
# })
|
8327
|
+
#
|
8328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHubContent AWS API Documentation
|
8329
|
+
#
|
8330
|
+
# @overload delete_hub_content(params = {})
|
8331
|
+
# @param [Hash] params ({})
|
8332
|
+
def delete_hub_content(params = {}, options = {})
|
8333
|
+
req = build_request(:delete_hub_content, params)
|
8334
|
+
req.send_request(options)
|
8335
|
+
end
|
8336
|
+
|
7730
8337
|
# Use this operation to delete a human task user interface (worker task
|
7731
8338
|
# template).
|
7732
8339
|
#
|
@@ -7805,6 +8412,40 @@ module Aws::SageMaker
|
|
7805
8412
|
req.send_request(options)
|
7806
8413
|
end
|
7807
8414
|
|
8415
|
+
# Deletes an inference experiment.
|
8416
|
+
#
|
8417
|
+
# <note markdown="1"> This operation does not delete your endpoint, variants, or any
|
8418
|
+
# underlying resources. This operation only deletes the metadata of your
|
8419
|
+
# experiment.
|
8420
|
+
#
|
8421
|
+
# </note>
|
8422
|
+
#
|
8423
|
+
# @option params [required, String] :name
|
8424
|
+
# The name of the inference experiment you want to delete.
|
8425
|
+
#
|
8426
|
+
# @return [Types::DeleteInferenceExperimentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8427
|
+
#
|
8428
|
+
# * {Types::DeleteInferenceExperimentResponse#inference_experiment_arn #inference_experiment_arn} => String
|
8429
|
+
#
|
8430
|
+
# @example Request syntax with placeholder values
|
8431
|
+
#
|
8432
|
+
# resp = client.delete_inference_experiment({
|
8433
|
+
# name: "InferenceExperimentName", # required
|
8434
|
+
# })
|
8435
|
+
#
|
8436
|
+
# @example Response structure
|
8437
|
+
#
|
8438
|
+
# resp.inference_experiment_arn #=> String
|
8439
|
+
#
|
8440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteInferenceExperiment AWS API Documentation
|
8441
|
+
#
|
8442
|
+
# @overload delete_inference_experiment(params = {})
|
8443
|
+
# @param [Hash] params ({})
|
8444
|
+
def delete_inference_experiment(params = {}, options = {})
|
8445
|
+
req = build_request(:delete_inference_experiment, params)
|
8446
|
+
req.send_request(options)
|
8447
|
+
end
|
8448
|
+
|
7808
8449
|
# Deletes a model. The `DeleteModel` API deletes only the model entry
|
7809
8450
|
# that was created in SageMaker when you called the `CreateModel` API.
|
7810
8451
|
# It does not delete model artifacts, inference code, or the IAM role
|
@@ -7852,6 +8493,28 @@ module Aws::SageMaker
|
|
7852
8493
|
req.send_request(options)
|
7853
8494
|
end
|
7854
8495
|
|
8496
|
+
# Deletes an Amazon SageMaker Model Card.
|
8497
|
+
#
|
8498
|
+
# @option params [required, String] :model_card_name
|
8499
|
+
# The name of the model card to delete.
|
8500
|
+
#
|
8501
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
8502
|
+
#
|
8503
|
+
# @example Request syntax with placeholder values
|
8504
|
+
#
|
8505
|
+
# resp = client.delete_model_card({
|
8506
|
+
# model_card_name: "EntityName", # required
|
8507
|
+
# })
|
8508
|
+
#
|
8509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelCard AWS API Documentation
|
8510
|
+
#
|
8511
|
+
# @overload delete_model_card(params = {})
|
8512
|
+
# @param [Hash] params ({})
|
8513
|
+
def delete_model_card(params = {}, options = {})
|
8514
|
+
req = build_request(:delete_model_card, params)
|
8515
|
+
req.send_request(options)
|
8516
|
+
end
|
8517
|
+
|
7855
8518
|
# Deletes an Amazon SageMaker model explainability job definition.
|
7856
8519
|
#
|
7857
8520
|
# @option params [required, String] :job_definition_name
|
@@ -8106,6 +8769,32 @@ module Aws::SageMaker
|
|
8106
8769
|
req.send_request(options)
|
8107
8770
|
end
|
8108
8771
|
|
8772
|
+
# Used to delete a space.
|
8773
|
+
#
|
8774
|
+
# @option params [required, String] :domain_id
|
8775
|
+
# The ID of the associated Domain.
|
8776
|
+
#
|
8777
|
+
# @option params [required, String] :space_name
|
8778
|
+
# The name of the space.
|
8779
|
+
#
|
8780
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
8781
|
+
#
|
8782
|
+
# @example Request syntax with placeholder values
|
8783
|
+
#
|
8784
|
+
# resp = client.delete_space({
|
8785
|
+
# domain_id: "DomainId", # required
|
8786
|
+
# space_name: "SpaceName", # required
|
8787
|
+
# })
|
8788
|
+
#
|
8789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteSpace AWS API Documentation
|
8790
|
+
#
|
8791
|
+
# @overload delete_space(params = {})
|
8792
|
+
# @param [Hash] params ({})
|
8793
|
+
def delete_space(params = {}, options = {})
|
8794
|
+
req = build_request(:delete_space, params)
|
8795
|
+
req.send_request(options)
|
8796
|
+
end
|
8797
|
+
|
8109
8798
|
# Deletes the Studio Lifecycle Configuration. In order to delete the
|
8110
8799
|
# Lifecycle Configuration, there must be no running apps using the
|
8111
8800
|
# Lifecycle Configuration. You must also remove the Lifecycle
|
@@ -8576,7 +9265,7 @@ module Aws::SageMaker
|
|
8576
9265
|
# @option params [required, String] :domain_id
|
8577
9266
|
# The domain ID.
|
8578
9267
|
#
|
8579
|
-
# @option params [
|
9268
|
+
# @option params [String] :user_profile_name
|
8580
9269
|
# The user profile name.
|
8581
9270
|
#
|
8582
9271
|
# @option params [required, String] :app_type
|
@@ -8585,6 +9274,9 @@ module Aws::SageMaker
|
|
8585
9274
|
# @option params [required, String] :app_name
|
8586
9275
|
# The name of the app.
|
8587
9276
|
#
|
9277
|
+
# @option params [String] :space_name
|
9278
|
+
# The name of the space.
|
9279
|
+
#
|
8588
9280
|
# @return [Types::DescribeAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8589
9281
|
#
|
8590
9282
|
# * {Types::DescribeAppResponse#app_arn #app_arn} => String
|
@@ -8598,14 +9290,16 @@ module Aws::SageMaker
|
|
8598
9290
|
# * {Types::DescribeAppResponse#creation_time #creation_time} => Time
|
8599
9291
|
# * {Types::DescribeAppResponse#failure_reason #failure_reason} => String
|
8600
9292
|
# * {Types::DescribeAppResponse#resource_spec #resource_spec} => Types::ResourceSpec
|
9293
|
+
# * {Types::DescribeAppResponse#space_name #space_name} => String
|
8601
9294
|
#
|
8602
9295
|
# @example Request syntax with placeholder values
|
8603
9296
|
#
|
8604
9297
|
# resp = client.describe_app({
|
8605
9298
|
# domain_id: "DomainId", # required
|
8606
|
-
# user_profile_name: "UserProfileName",
|
9299
|
+
# user_profile_name: "UserProfileName",
|
8607
9300
|
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
8608
9301
|
# app_name: "AppName", # required
|
9302
|
+
# space_name: "SpaceName",
|
8609
9303
|
# })
|
8610
9304
|
#
|
8611
9305
|
# @example Response structure
|
@@ -8624,6 +9318,7 @@ module Aws::SageMaker
|
|
8624
9318
|
# resp.resource_spec.sage_maker_image_version_arn #=> String
|
8625
9319
|
# resp.resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
8626
9320
|
# resp.resource_spec.lifecycle_config_arn #=> String
|
9321
|
+
# resp.space_name #=> String
|
8627
9322
|
#
|
8628
9323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeApp AWS API Documentation
|
8629
9324
|
#
|
@@ -9245,6 +9940,7 @@ module Aws::SageMaker
|
|
9245
9940
|
# * {Types::DescribeDomainResponse#domain_settings #domain_settings} => Types::DomainSettings
|
9246
9941
|
# * {Types::DescribeDomainResponse#app_security_group_management #app_security_group_management} => String
|
9247
9942
|
# * {Types::DescribeDomainResponse#security_group_id_for_domain_boundary #security_group_id_for_domain_boundary} => String
|
9943
|
+
# * {Types::DescribeDomainResponse#default_space_settings #default_space_settings} => Types::DefaultSpaceSettings
|
9248
9944
|
#
|
9249
9945
|
# @example Request syntax with placeholder values
|
9250
9946
|
#
|
@@ -9276,6 +9972,8 @@ module Aws::SageMaker
|
|
9276
9972
|
# resp.default_user_settings.jupyter_server_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
9277
9973
|
# resp.default_user_settings.jupyter_server_app_settings.lifecycle_config_arns #=> Array
|
9278
9974
|
# resp.default_user_settings.jupyter_server_app_settings.lifecycle_config_arns[0] #=> String
|
9975
|
+
# resp.default_user_settings.jupyter_server_app_settings.code_repositories #=> Array
|
9976
|
+
# resp.default_user_settings.jupyter_server_app_settings.code_repositories[0].repository_url #=> String
|
9279
9977
|
# resp.default_user_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
9280
9978
|
# resp.default_user_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
9281
9979
|
# resp.default_user_settings.kernel_gateway_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
@@ -9321,6 +10019,27 @@ module Aws::SageMaker
|
|
9321
10019
|
# resp.domain_settings.execution_role_identity_config #=> String, one of "USER_PROFILE_NAME", "DISABLED"
|
9322
10020
|
# resp.app_security_group_management #=> String, one of "Service", "Customer"
|
9323
10021
|
# resp.security_group_id_for_domain_boundary #=> String
|
10022
|
+
# resp.default_space_settings.execution_role #=> String
|
10023
|
+
# resp.default_space_settings.security_groups #=> Array
|
10024
|
+
# resp.default_space_settings.security_groups[0] #=> String
|
10025
|
+
# resp.default_space_settings.jupyter_server_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
10026
|
+
# resp.default_space_settings.jupyter_server_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
10027
|
+
# resp.default_space_settings.jupyter_server_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
10028
|
+
# resp.default_space_settings.jupyter_server_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
10029
|
+
# resp.default_space_settings.jupyter_server_app_settings.lifecycle_config_arns #=> Array
|
10030
|
+
# resp.default_space_settings.jupyter_server_app_settings.lifecycle_config_arns[0] #=> String
|
10031
|
+
# resp.default_space_settings.jupyter_server_app_settings.code_repositories #=> Array
|
10032
|
+
# resp.default_space_settings.jupyter_server_app_settings.code_repositories[0].repository_url #=> String
|
10033
|
+
# resp.default_space_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
10034
|
+
# resp.default_space_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
10035
|
+
# resp.default_space_settings.kernel_gateway_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
10036
|
+
# resp.default_space_settings.kernel_gateway_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
10037
|
+
# resp.default_space_settings.kernel_gateway_app_settings.custom_images #=> Array
|
10038
|
+
# resp.default_space_settings.kernel_gateway_app_settings.custom_images[0].image_name #=> String
|
10039
|
+
# resp.default_space_settings.kernel_gateway_app_settings.custom_images[0].image_version_number #=> Integer
|
10040
|
+
# resp.default_space_settings.kernel_gateway_app_settings.custom_images[0].app_image_config_name #=> String
|
10041
|
+
# resp.default_space_settings.kernel_gateway_app_settings.lifecycle_config_arns #=> Array
|
10042
|
+
# resp.default_space_settings.kernel_gateway_app_settings.lifecycle_config_arns[0] #=> String
|
9324
10043
|
#
|
9325
10044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomain AWS API Documentation
|
9326
10045
|
#
|
@@ -9485,6 +10204,7 @@ module Aws::SageMaker
|
|
9485
10204
|
# * {Types::DescribeEndpointOutput#async_inference_config #async_inference_config} => Types::AsyncInferenceConfig
|
9486
10205
|
# * {Types::DescribeEndpointOutput#pending_deployment_summary #pending_deployment_summary} => Types::PendingDeploymentSummary
|
9487
10206
|
# * {Types::DescribeEndpointOutput#explainer_config #explainer_config} => Types::ExplainerConfig
|
10207
|
+
# * {Types::DescribeEndpointOutput#shadow_production_variants #shadow_production_variants} => Array<Types::ProductionVariantSummary>
|
9488
10208
|
#
|
9489
10209
|
# @example Request syntax with placeholder values
|
9490
10210
|
#
|
@@ -9561,6 +10281,26 @@ module Aws::SageMaker
|
|
9561
10281
|
# resp.pending_deployment_summary.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
9562
10282
|
# resp.pending_deployment_summary.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
9563
10283
|
# resp.pending_deployment_summary.start_time #=> Time
|
10284
|
+
# resp.pending_deployment_summary.shadow_production_variants #=> Array
|
10285
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].variant_name #=> String
|
10286
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].deployed_images #=> Array
|
10287
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].deployed_images[0].specified_image #=> String
|
10288
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].deployed_images[0].resolved_image #=> String
|
10289
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].deployed_images[0].resolution_time #=> Time
|
10290
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].current_weight #=> Float
|
10291
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].desired_weight #=> Float
|
10292
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].current_instance_count #=> Integer
|
10293
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].desired_instance_count #=> Integer
|
10294
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge", "ml.c6i.large", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.4xlarge", "ml.c6i.8xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.p4d.24xlarge", "ml.c7g.large", "ml.c7g.xlarge", "ml.c7g.2xlarge", "ml.c7g.4xlarge", "ml.c7g.8xlarge", "ml.c7g.12xlarge", "ml.c7g.16xlarge", "ml.m6g.large", "ml.m6g.xlarge", "ml.m6g.2xlarge", "ml.m6g.4xlarge", "ml.m6g.8xlarge", "ml.m6g.12xlarge", "ml.m6g.16xlarge", "ml.m6gd.large", "ml.m6gd.xlarge", "ml.m6gd.2xlarge", "ml.m6gd.4xlarge", "ml.m6gd.8xlarge", "ml.m6gd.12xlarge", "ml.m6gd.16xlarge", "ml.c6g.large", "ml.c6g.xlarge", "ml.c6g.2xlarge", "ml.c6g.4xlarge", "ml.c6g.8xlarge", "ml.c6g.12xlarge", "ml.c6g.16xlarge", "ml.c6gd.large", "ml.c6gd.xlarge", "ml.c6gd.2xlarge", "ml.c6gd.4xlarge", "ml.c6gd.8xlarge", "ml.c6gd.12xlarge", "ml.c6gd.16xlarge", "ml.c6gn.large", "ml.c6gn.xlarge", "ml.c6gn.2xlarge", "ml.c6gn.4xlarge", "ml.c6gn.8xlarge", "ml.c6gn.12xlarge", "ml.c6gn.16xlarge", "ml.r6g.large", "ml.r6g.xlarge", "ml.r6g.2xlarge", "ml.r6g.4xlarge", "ml.r6g.8xlarge", "ml.r6g.12xlarge", "ml.r6g.16xlarge", "ml.r6gd.large", "ml.r6gd.xlarge", "ml.r6gd.2xlarge", "ml.r6gd.4xlarge", "ml.r6gd.8xlarge", "ml.r6gd.12xlarge", "ml.r6gd.16xlarge"
|
10295
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].accelerator_type #=> String, one of "ml.eia1.medium", "ml.eia1.large", "ml.eia1.xlarge", "ml.eia2.medium", "ml.eia2.large", "ml.eia2.xlarge"
|
10296
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].variant_status #=> Array
|
10297
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
|
10298
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].variant_status[0].status_message #=> String
|
10299
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].variant_status[0].start_time #=> Time
|
10300
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
|
10301
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].current_serverless_config.max_concurrency #=> Integer
|
10302
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
10303
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
9564
10304
|
# resp.explainer_config.clarify_explainer_config.enable_explanations #=> String
|
9565
10305
|
# resp.explainer_config.clarify_explainer_config.inference_config.features_attribute #=> String
|
9566
10306
|
# resp.explainer_config.clarify_explainer_config.inference_config.content_template #=> String
|
@@ -9584,6 +10324,24 @@ module Aws::SageMaker
|
|
9584
10324
|
# resp.explainer_config.clarify_explainer_config.shap_config.seed #=> Integer
|
9585
10325
|
# resp.explainer_config.clarify_explainer_config.shap_config.text_config.language #=> String, one of "af", "sq", "ar", "hy", "eu", "bn", "bg", "ca", "zh", "hr", "cs", "da", "nl", "en", "et", "fi", "fr", "de", "el", "gu", "he", "hi", "hu", "is", "id", "ga", "it", "kn", "ky", "lv", "lt", "lb", "mk", "ml", "mr", "ne", "nb", "fa", "pl", "pt", "ro", "ru", "sa", "sr", "tn", "si", "sk", "sl", "es", "sv", "tl", "ta", "tt", "te", "tr", "uk", "ur", "yo", "lij", "xx"
|
9586
10326
|
# resp.explainer_config.clarify_explainer_config.shap_config.text_config.granularity #=> String, one of "token", "sentence", "paragraph"
|
10327
|
+
# resp.shadow_production_variants #=> Array
|
10328
|
+
# resp.shadow_production_variants[0].variant_name #=> String
|
10329
|
+
# resp.shadow_production_variants[0].deployed_images #=> Array
|
10330
|
+
# resp.shadow_production_variants[0].deployed_images[0].specified_image #=> String
|
10331
|
+
# resp.shadow_production_variants[0].deployed_images[0].resolved_image #=> String
|
10332
|
+
# resp.shadow_production_variants[0].deployed_images[0].resolution_time #=> Time
|
10333
|
+
# resp.shadow_production_variants[0].current_weight #=> Float
|
10334
|
+
# resp.shadow_production_variants[0].desired_weight #=> Float
|
10335
|
+
# resp.shadow_production_variants[0].current_instance_count #=> Integer
|
10336
|
+
# resp.shadow_production_variants[0].desired_instance_count #=> Integer
|
10337
|
+
# resp.shadow_production_variants[0].variant_status #=> Array
|
10338
|
+
# resp.shadow_production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
|
10339
|
+
# resp.shadow_production_variants[0].variant_status[0].status_message #=> String
|
10340
|
+
# resp.shadow_production_variants[0].variant_status[0].start_time #=> Time
|
10341
|
+
# resp.shadow_production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
|
10342
|
+
# resp.shadow_production_variants[0].current_serverless_config.max_concurrency #=> Integer
|
10343
|
+
# resp.shadow_production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
10344
|
+
# resp.shadow_production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
9587
10345
|
#
|
9588
10346
|
#
|
9589
10347
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -9616,6 +10374,7 @@ module Aws::SageMaker
|
|
9616
10374
|
# * {Types::DescribeEndpointConfigOutput#creation_time #creation_time} => Time
|
9617
10375
|
# * {Types::DescribeEndpointConfigOutput#async_inference_config #async_inference_config} => Types::AsyncInferenceConfig
|
9618
10376
|
# * {Types::DescribeEndpointConfigOutput#explainer_config #explainer_config} => Types::ExplainerConfig
|
10377
|
+
# * {Types::DescribeEndpointConfigOutput#shadow_production_variants #shadow_production_variants} => Array<Types::ProductionVariant>
|
9619
10378
|
#
|
9620
10379
|
# @example Request syntax with placeholder values
|
9621
10380
|
#
|
@@ -9681,6 +10440,20 @@ module Aws::SageMaker
|
|
9681
10440
|
# resp.explainer_config.clarify_explainer_config.shap_config.seed #=> Integer
|
9682
10441
|
# resp.explainer_config.clarify_explainer_config.shap_config.text_config.language #=> String, one of "af", "sq", "ar", "hy", "eu", "bn", "bg", "ca", "zh", "hr", "cs", "da", "nl", "en", "et", "fi", "fr", "de", "el", "gu", "he", "hi", "hu", "is", "id", "ga", "it", "kn", "ky", "lv", "lt", "lb", "mk", "ml", "mr", "ne", "nb", "fa", "pl", "pt", "ro", "ru", "sa", "sr", "tn", "si", "sk", "sl", "es", "sv", "tl", "ta", "tt", "te", "tr", "uk", "ur", "yo", "lij", "xx"
|
9683
10442
|
# resp.explainer_config.clarify_explainer_config.shap_config.text_config.granularity #=> String, one of "token", "sentence", "paragraph"
|
10443
|
+
# resp.shadow_production_variants #=> Array
|
10444
|
+
# resp.shadow_production_variants[0].variant_name #=> String
|
10445
|
+
# resp.shadow_production_variants[0].model_name #=> String
|
10446
|
+
# resp.shadow_production_variants[0].initial_instance_count #=> Integer
|
10447
|
+
# resp.shadow_production_variants[0].instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge", "ml.c6i.large", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.4xlarge", "ml.c6i.8xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.p4d.24xlarge", "ml.c7g.large", "ml.c7g.xlarge", "ml.c7g.2xlarge", "ml.c7g.4xlarge", "ml.c7g.8xlarge", "ml.c7g.12xlarge", "ml.c7g.16xlarge", "ml.m6g.large", "ml.m6g.xlarge", "ml.m6g.2xlarge", "ml.m6g.4xlarge", "ml.m6g.8xlarge", "ml.m6g.12xlarge", "ml.m6g.16xlarge", "ml.m6gd.large", "ml.m6gd.xlarge", "ml.m6gd.2xlarge", "ml.m6gd.4xlarge", "ml.m6gd.8xlarge", "ml.m6gd.12xlarge", "ml.m6gd.16xlarge", "ml.c6g.large", "ml.c6g.xlarge", "ml.c6g.2xlarge", "ml.c6g.4xlarge", "ml.c6g.8xlarge", "ml.c6g.12xlarge", "ml.c6g.16xlarge", "ml.c6gd.large", "ml.c6gd.xlarge", "ml.c6gd.2xlarge", "ml.c6gd.4xlarge", "ml.c6gd.8xlarge", "ml.c6gd.12xlarge", "ml.c6gd.16xlarge", "ml.c6gn.large", "ml.c6gn.xlarge", "ml.c6gn.2xlarge", "ml.c6gn.4xlarge", "ml.c6gn.8xlarge", "ml.c6gn.12xlarge", "ml.c6gn.16xlarge", "ml.r6g.large", "ml.r6g.xlarge", "ml.r6g.2xlarge", "ml.r6g.4xlarge", "ml.r6g.8xlarge", "ml.r6g.12xlarge", "ml.r6g.16xlarge", "ml.r6gd.large", "ml.r6gd.xlarge", "ml.r6gd.2xlarge", "ml.r6gd.4xlarge", "ml.r6gd.8xlarge", "ml.r6gd.12xlarge", "ml.r6gd.16xlarge"
|
10448
|
+
# resp.shadow_production_variants[0].initial_variant_weight #=> Float
|
10449
|
+
# resp.shadow_production_variants[0].accelerator_type #=> String, one of "ml.eia1.medium", "ml.eia1.large", "ml.eia1.xlarge", "ml.eia2.medium", "ml.eia2.large", "ml.eia2.xlarge"
|
10450
|
+
# resp.shadow_production_variants[0].core_dump_config.destination_s3_uri #=> String
|
10451
|
+
# resp.shadow_production_variants[0].core_dump_config.kms_key_id #=> String
|
10452
|
+
# resp.shadow_production_variants[0].serverless_config.memory_size_in_mb #=> Integer
|
10453
|
+
# resp.shadow_production_variants[0].serverless_config.max_concurrency #=> Integer
|
10454
|
+
# resp.shadow_production_variants[0].volume_size_in_gb #=> Integer
|
10455
|
+
# resp.shadow_production_variants[0].model_data_download_timeout_in_seconds #=> Integer
|
10456
|
+
# resp.shadow_production_variants[0].container_startup_health_check_timeout_in_seconds #=> Integer
|
9684
10457
|
#
|
9685
10458
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointConfig AWS API Documentation
|
9686
10459
|
#
|
@@ -9798,6 +10571,7 @@ module Aws::SageMaker
|
|
9798
10571
|
# resp.offline_store_config.data_catalog_config.table_name #=> String
|
9799
10572
|
# resp.offline_store_config.data_catalog_config.catalog #=> String
|
9800
10573
|
# resp.offline_store_config.data_catalog_config.database #=> String
|
10574
|
+
# resp.offline_store_config.table_format #=> String, one of "Glue", "Iceberg"
|
9801
10575
|
# resp.role_arn #=> String
|
9802
10576
|
# resp.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
|
9803
10577
|
# resp.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
|
@@ -9924,6 +10698,126 @@ module Aws::SageMaker
|
|
9924
10698
|
req.send_request(options)
|
9925
10699
|
end
|
9926
10700
|
|
10701
|
+
# Describe a hub.
|
10702
|
+
#
|
10703
|
+
# @option params [required, String] :hub_name
|
10704
|
+
# The name of the hub to describe.
|
10705
|
+
#
|
10706
|
+
# @return [Types::DescribeHubResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10707
|
+
#
|
10708
|
+
# * {Types::DescribeHubResponse#hub_name #hub_name} => String
|
10709
|
+
# * {Types::DescribeHubResponse#hub_arn #hub_arn} => String
|
10710
|
+
# * {Types::DescribeHubResponse#hub_display_name #hub_display_name} => String
|
10711
|
+
# * {Types::DescribeHubResponse#hub_description #hub_description} => String
|
10712
|
+
# * {Types::DescribeHubResponse#hub_search_keywords #hub_search_keywords} => Array<String>
|
10713
|
+
# * {Types::DescribeHubResponse#s3_storage_config #s3_storage_config} => Types::HubS3StorageConfig
|
10714
|
+
# * {Types::DescribeHubResponse#hub_status #hub_status} => String
|
10715
|
+
# * {Types::DescribeHubResponse#failure_reason #failure_reason} => String
|
10716
|
+
# * {Types::DescribeHubResponse#creation_time #creation_time} => Time
|
10717
|
+
# * {Types::DescribeHubResponse#last_modified_time #last_modified_time} => Time
|
10718
|
+
#
|
10719
|
+
# @example Request syntax with placeholder values
|
10720
|
+
#
|
10721
|
+
# resp = client.describe_hub({
|
10722
|
+
# hub_name: "HubName", # required
|
10723
|
+
# })
|
10724
|
+
#
|
10725
|
+
# @example Response structure
|
10726
|
+
#
|
10727
|
+
# resp.hub_name #=> String
|
10728
|
+
# resp.hub_arn #=> String
|
10729
|
+
# resp.hub_display_name #=> String
|
10730
|
+
# resp.hub_description #=> String
|
10731
|
+
# resp.hub_search_keywords #=> Array
|
10732
|
+
# resp.hub_search_keywords[0] #=> String
|
10733
|
+
# resp.s3_storage_config.s3_output_path #=> String
|
10734
|
+
# resp.hub_status #=> String, one of "InService", "Creating", "Updating", "Deleting", "CreateFailed", "UpdateFailed", "DeleteFailed"
|
10735
|
+
# resp.failure_reason #=> String
|
10736
|
+
# resp.creation_time #=> Time
|
10737
|
+
# resp.last_modified_time #=> Time
|
10738
|
+
#
|
10739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeHub AWS API Documentation
|
10740
|
+
#
|
10741
|
+
# @overload describe_hub(params = {})
|
10742
|
+
# @param [Hash] params ({})
|
10743
|
+
def describe_hub(params = {}, options = {})
|
10744
|
+
req = build_request(:describe_hub, params)
|
10745
|
+
req.send_request(options)
|
10746
|
+
end
|
10747
|
+
|
10748
|
+
# Describe the content of a hub.
|
10749
|
+
#
|
10750
|
+
# @option params [required, String] :hub_name
|
10751
|
+
# The name of the hub that contains the content to describe.
|
10752
|
+
#
|
10753
|
+
# @option params [required, String] :hub_content_type
|
10754
|
+
# The type of content in the hub.
|
10755
|
+
#
|
10756
|
+
# @option params [required, String] :hub_content_name
|
10757
|
+
# The name of the content to describe.
|
10758
|
+
#
|
10759
|
+
# @option params [String] :hub_content_version
|
10760
|
+
# The version of the content to describe.
|
10761
|
+
#
|
10762
|
+
# @return [Types::DescribeHubContentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10763
|
+
#
|
10764
|
+
# * {Types::DescribeHubContentResponse#hub_content_name #hub_content_name} => String
|
10765
|
+
# * {Types::DescribeHubContentResponse#hub_content_arn #hub_content_arn} => String
|
10766
|
+
# * {Types::DescribeHubContentResponse#hub_content_version #hub_content_version} => String
|
10767
|
+
# * {Types::DescribeHubContentResponse#hub_content_type #hub_content_type} => String
|
10768
|
+
# * {Types::DescribeHubContentResponse#document_schema_version #document_schema_version} => String
|
10769
|
+
# * {Types::DescribeHubContentResponse#hub_name #hub_name} => String
|
10770
|
+
# * {Types::DescribeHubContentResponse#hub_arn #hub_arn} => String
|
10771
|
+
# * {Types::DescribeHubContentResponse#hub_content_display_name #hub_content_display_name} => String
|
10772
|
+
# * {Types::DescribeHubContentResponse#hub_content_description #hub_content_description} => String
|
10773
|
+
# * {Types::DescribeHubContentResponse#hub_content_markdown #hub_content_markdown} => String
|
10774
|
+
# * {Types::DescribeHubContentResponse#hub_content_document #hub_content_document} => String
|
10775
|
+
# * {Types::DescribeHubContentResponse#hub_content_search_keywords #hub_content_search_keywords} => Array<String>
|
10776
|
+
# * {Types::DescribeHubContentResponse#hub_content_dependencies #hub_content_dependencies} => Array<Types::HubContentDependency>
|
10777
|
+
# * {Types::DescribeHubContentResponse#hub_content_status #hub_content_status} => String
|
10778
|
+
# * {Types::DescribeHubContentResponse#failure_reason #failure_reason} => String
|
10779
|
+
# * {Types::DescribeHubContentResponse#creation_time #creation_time} => Time
|
10780
|
+
#
|
10781
|
+
# @example Request syntax with placeholder values
|
10782
|
+
#
|
10783
|
+
# resp = client.describe_hub_content({
|
10784
|
+
# hub_name: "HubName", # required
|
10785
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook
|
10786
|
+
# hub_content_name: "HubContentName", # required
|
10787
|
+
# hub_content_version: "HubContentVersion",
|
10788
|
+
# })
|
10789
|
+
#
|
10790
|
+
# @example Response structure
|
10791
|
+
#
|
10792
|
+
# resp.hub_content_name #=> String
|
10793
|
+
# resp.hub_content_arn #=> String
|
10794
|
+
# resp.hub_content_version #=> String
|
10795
|
+
# resp.hub_content_type #=> String, one of "Model", "Notebook"
|
10796
|
+
# resp.document_schema_version #=> String
|
10797
|
+
# resp.hub_name #=> String
|
10798
|
+
# resp.hub_arn #=> String
|
10799
|
+
# resp.hub_content_display_name #=> String
|
10800
|
+
# resp.hub_content_description #=> String
|
10801
|
+
# resp.hub_content_markdown #=> String
|
10802
|
+
# resp.hub_content_document #=> String
|
10803
|
+
# resp.hub_content_search_keywords #=> Array
|
10804
|
+
# resp.hub_content_search_keywords[0] #=> String
|
10805
|
+
# resp.hub_content_dependencies #=> Array
|
10806
|
+
# resp.hub_content_dependencies[0].dependency_origin_path #=> String
|
10807
|
+
# resp.hub_content_dependencies[0].dependency_copy_path #=> String
|
10808
|
+
# resp.hub_content_status #=> String, one of "Available", "Importing", "Deleting", "ImportFailed", "DeleteFailed"
|
10809
|
+
# resp.failure_reason #=> String
|
10810
|
+
# resp.creation_time #=> Time
|
10811
|
+
#
|
10812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeHubContent AWS API Documentation
|
10813
|
+
#
|
10814
|
+
# @overload describe_hub_content(params = {})
|
10815
|
+
# @param [Hash] params ({})
|
10816
|
+
def describe_hub_content(params = {}, options = {})
|
10817
|
+
req = build_request(:describe_hub_content, params)
|
10818
|
+
req.send_request(options)
|
10819
|
+
end
|
10820
|
+
|
9927
10821
|
# Returns information about the requested human task user interface
|
9928
10822
|
# (worker task template).
|
9929
10823
|
#
|
@@ -10334,6 +11228,82 @@ module Aws::SageMaker
|
|
10334
11228
|
req.send_request(options)
|
10335
11229
|
end
|
10336
11230
|
|
11231
|
+
# Returns details about an inference experiment.
|
11232
|
+
#
|
11233
|
+
# @option params [required, String] :name
|
11234
|
+
# The name of the inference experiment to describe.
|
11235
|
+
#
|
11236
|
+
# @return [Types::DescribeInferenceExperimentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11237
|
+
#
|
11238
|
+
# * {Types::DescribeInferenceExperimentResponse#arn #arn} => String
|
11239
|
+
# * {Types::DescribeInferenceExperimentResponse#name #name} => String
|
11240
|
+
# * {Types::DescribeInferenceExperimentResponse#type #type} => String
|
11241
|
+
# * {Types::DescribeInferenceExperimentResponse#schedule #schedule} => Types::InferenceExperimentSchedule
|
11242
|
+
# * {Types::DescribeInferenceExperimentResponse#status #status} => String
|
11243
|
+
# * {Types::DescribeInferenceExperimentResponse#status_reason #status_reason} => String
|
11244
|
+
# * {Types::DescribeInferenceExperimentResponse#description #description} => String
|
11245
|
+
# * {Types::DescribeInferenceExperimentResponse#creation_time #creation_time} => Time
|
11246
|
+
# * {Types::DescribeInferenceExperimentResponse#completion_time #completion_time} => Time
|
11247
|
+
# * {Types::DescribeInferenceExperimentResponse#last_modified_time #last_modified_time} => Time
|
11248
|
+
# * {Types::DescribeInferenceExperimentResponse#role_arn #role_arn} => String
|
11249
|
+
# * {Types::DescribeInferenceExperimentResponse#endpoint_metadata #endpoint_metadata} => Types::EndpointMetadata
|
11250
|
+
# * {Types::DescribeInferenceExperimentResponse#model_variants #model_variants} => Array<Types::ModelVariantConfigSummary>
|
11251
|
+
# * {Types::DescribeInferenceExperimentResponse#data_storage_config #data_storage_config} => Types::InferenceExperimentDataStorageConfig
|
11252
|
+
# * {Types::DescribeInferenceExperimentResponse#shadow_mode_config #shadow_mode_config} => Types::ShadowModeConfig
|
11253
|
+
# * {Types::DescribeInferenceExperimentResponse#kms_key #kms_key} => String
|
11254
|
+
#
|
11255
|
+
# @example Request syntax with placeholder values
|
11256
|
+
#
|
11257
|
+
# resp = client.describe_inference_experiment({
|
11258
|
+
# name: "InferenceExperimentName", # required
|
11259
|
+
# })
|
11260
|
+
#
|
11261
|
+
# @example Response structure
|
11262
|
+
#
|
11263
|
+
# resp.arn #=> String
|
11264
|
+
# resp.name #=> String
|
11265
|
+
# resp.type #=> String, one of "ShadowMode"
|
11266
|
+
# resp.schedule.start_time #=> Time
|
11267
|
+
# resp.schedule.end_time #=> Time
|
11268
|
+
# resp.status #=> String, one of "Creating", "Created", "Updating", "Running", "Starting", "Stopping", "Completed", "Cancelled"
|
11269
|
+
# resp.status_reason #=> String
|
11270
|
+
# resp.description #=> String
|
11271
|
+
# resp.creation_time #=> Time
|
11272
|
+
# resp.completion_time #=> Time
|
11273
|
+
# resp.last_modified_time #=> Time
|
11274
|
+
# resp.role_arn #=> String
|
11275
|
+
# resp.endpoint_metadata.endpoint_name #=> String
|
11276
|
+
# resp.endpoint_metadata.endpoint_config_name #=> String
|
11277
|
+
# resp.endpoint_metadata.endpoint_status #=> String, one of "OutOfService", "Creating", "Updating", "SystemUpdating", "RollingBack", "InService", "Deleting", "Failed"
|
11278
|
+
# resp.endpoint_metadata.failure_reason #=> String
|
11279
|
+
# resp.model_variants #=> Array
|
11280
|
+
# resp.model_variants[0].model_name #=> String
|
11281
|
+
# resp.model_variants[0].variant_name #=> String
|
11282
|
+
# resp.model_variants[0].infrastructure_config.infrastructure_type #=> String, one of "RealTimeInference"
|
11283
|
+
# resp.model_variants[0].infrastructure_config.real_time_inference_config.instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
11284
|
+
# resp.model_variants[0].infrastructure_config.real_time_inference_config.instance_count #=> Integer
|
11285
|
+
# resp.model_variants[0].status #=> String, one of "Creating", "Updating", "InService", "Deleting", "Deleted"
|
11286
|
+
# resp.data_storage_config.destination #=> String
|
11287
|
+
# resp.data_storage_config.kms_key #=> String
|
11288
|
+
# resp.data_storage_config.content_type.csv_content_types #=> Array
|
11289
|
+
# resp.data_storage_config.content_type.csv_content_types[0] #=> String
|
11290
|
+
# resp.data_storage_config.content_type.json_content_types #=> Array
|
11291
|
+
# resp.data_storage_config.content_type.json_content_types[0] #=> String
|
11292
|
+
# resp.shadow_mode_config.source_model_variant_name #=> String
|
11293
|
+
# resp.shadow_mode_config.shadow_model_variants #=> Array
|
11294
|
+
# resp.shadow_mode_config.shadow_model_variants[0].shadow_model_variant_name #=> String
|
11295
|
+
# resp.shadow_mode_config.shadow_model_variants[0].sampling_percentage #=> Integer
|
11296
|
+
# resp.kms_key #=> String
|
11297
|
+
#
|
11298
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceExperiment AWS API Documentation
|
11299
|
+
#
|
11300
|
+
# @overload describe_inference_experiment(params = {})
|
11301
|
+
# @param [Hash] params ({})
|
11302
|
+
def describe_inference_experiment(params = {}, options = {})
|
11303
|
+
req = build_request(:describe_inference_experiment, params)
|
11304
|
+
req.send_request(options)
|
11305
|
+
end
|
11306
|
+
|
10337
11307
|
# Provides the results of the Inference Recommender job. One or more
|
10338
11308
|
# recommendation jobs are returned.
|
10339
11309
|
#
|
@@ -10405,6 +11375,10 @@ module Aws::SageMaker
|
|
10405
11375
|
# resp.input_config.container_config.supported_instance_types[0] #=> String
|
10406
11376
|
# resp.input_config.endpoints #=> Array
|
10407
11377
|
# resp.input_config.endpoints[0].endpoint_name #=> String
|
11378
|
+
# resp.input_config.vpc_config.security_group_ids #=> Array
|
11379
|
+
# resp.input_config.vpc_config.security_group_ids[0] #=> String
|
11380
|
+
# resp.input_config.vpc_config.subnets #=> Array
|
11381
|
+
# resp.input_config.vpc_config.subnets[0] #=> String
|
10408
11382
|
# resp.stopping_conditions.max_invocations #=> Integer
|
10409
11383
|
# resp.stopping_conditions.model_latency_thresholds #=> Array
|
10410
11384
|
# resp.stopping_conditions.model_latency_thresholds[0].percentile #=> String
|
@@ -10741,58 +11715,163 @@ module Aws::SageMaker
|
|
10741
11715
|
req.send_request(options)
|
10742
11716
|
end
|
10743
11717
|
|
10744
|
-
#
|
11718
|
+
# Describes the content, creation time, and security configuration of an
|
11719
|
+
# Amazon SageMaker Model Card.
|
10745
11720
|
#
|
10746
|
-
# @option params [required, String] :
|
10747
|
-
# The name of the model
|
10748
|
-
# unique within an Amazon Web Services Region in the Amazon Web Services
|
10749
|
-
# account.
|
11721
|
+
# @option params [required, String] :model_card_name
|
11722
|
+
# The name of the model card to describe.
|
10750
11723
|
#
|
10751
|
-
# @
|
11724
|
+
# @option params [Integer] :model_card_version
|
11725
|
+
# The version of the model card to describe. If a version is not
|
11726
|
+
# provided, then the latest version of the model card is described.
|
10752
11727
|
#
|
10753
|
-
#
|
10754
|
-
#
|
10755
|
-
# * {Types::
|
10756
|
-
# * {Types::
|
10757
|
-
# * {Types::
|
10758
|
-
# * {Types::
|
10759
|
-
# * {Types::
|
10760
|
-
# * {Types::
|
10761
|
-
# * {Types::
|
10762
|
-
# * {Types::
|
10763
|
-
# * {Types::
|
11728
|
+
# @return [Types::DescribeModelCardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11729
|
+
#
|
11730
|
+
# * {Types::DescribeModelCardResponse#model_card_arn #model_card_arn} => String
|
11731
|
+
# * {Types::DescribeModelCardResponse#model_card_name #model_card_name} => String
|
11732
|
+
# * {Types::DescribeModelCardResponse#model_card_version #model_card_version} => Integer
|
11733
|
+
# * {Types::DescribeModelCardResponse#content #content} => String
|
11734
|
+
# * {Types::DescribeModelCardResponse#model_card_status #model_card_status} => String
|
11735
|
+
# * {Types::DescribeModelCardResponse#security_config #security_config} => Types::ModelCardSecurityConfig
|
11736
|
+
# * {Types::DescribeModelCardResponse#creation_time #creation_time} => Time
|
11737
|
+
# * {Types::DescribeModelCardResponse#created_by #created_by} => Types::UserContext
|
11738
|
+
# * {Types::DescribeModelCardResponse#last_modified_time #last_modified_time} => Time
|
11739
|
+
# * {Types::DescribeModelCardResponse#last_modified_by #last_modified_by} => Types::UserContext
|
11740
|
+
# * {Types::DescribeModelCardResponse#model_card_processing_status #model_card_processing_status} => String
|
10764
11741
|
#
|
10765
11742
|
# @example Request syntax with placeholder values
|
10766
11743
|
#
|
10767
|
-
# resp = client.
|
10768
|
-
#
|
11744
|
+
# resp = client.describe_model_card({
|
11745
|
+
# model_card_name: "EntityName", # required
|
11746
|
+
# model_card_version: 1,
|
10769
11747
|
# })
|
10770
11748
|
#
|
10771
11749
|
# @example Response structure
|
10772
11750
|
#
|
10773
|
-
# resp.
|
10774
|
-
# resp.
|
11751
|
+
# resp.model_card_arn #=> String
|
11752
|
+
# resp.model_card_name #=> String
|
11753
|
+
# resp.model_card_version #=> Integer
|
11754
|
+
# resp.content #=> String
|
11755
|
+
# resp.model_card_status #=> String, one of "Draft", "PendingReview", "Approved", "Archived"
|
11756
|
+
# resp.security_config.kms_key_id #=> String
|
10775
11757
|
# resp.creation_time #=> Time
|
10776
|
-
# resp.
|
10777
|
-
# resp.
|
10778
|
-
# resp.
|
10779
|
-
# resp.
|
10780
|
-
# resp.
|
10781
|
-
# resp.
|
10782
|
-
# resp.
|
10783
|
-
# resp.
|
10784
|
-
#
|
10785
|
-
#
|
10786
|
-
#
|
10787
|
-
#
|
10788
|
-
#
|
10789
|
-
|
10790
|
-
|
10791
|
-
|
10792
|
-
|
10793
|
-
|
10794
|
-
#
|
10795
|
-
#
|
11758
|
+
# resp.created_by.user_profile_arn #=> String
|
11759
|
+
# resp.created_by.user_profile_name #=> String
|
11760
|
+
# resp.created_by.domain_id #=> String
|
11761
|
+
# resp.last_modified_time #=> Time
|
11762
|
+
# resp.last_modified_by.user_profile_arn #=> String
|
11763
|
+
# resp.last_modified_by.user_profile_name #=> String
|
11764
|
+
# resp.last_modified_by.domain_id #=> String
|
11765
|
+
# resp.model_card_processing_status #=> String, one of "DeleteInProgress", "DeletePending", "ContentDeleted", "ExportJobsDeleted", "DeleteCompleted", "DeleteFailed"
|
11766
|
+
#
|
11767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelCard AWS API Documentation
|
11768
|
+
#
|
11769
|
+
# @overload describe_model_card(params = {})
|
11770
|
+
# @param [Hash] params ({})
|
11771
|
+
def describe_model_card(params = {}, options = {})
|
11772
|
+
req = build_request(:describe_model_card, params)
|
11773
|
+
req.send_request(options)
|
11774
|
+
end
|
11775
|
+
|
11776
|
+
# Describes an Amazon SageMaker Model Card export job.
|
11777
|
+
#
|
11778
|
+
# @option params [required, String] :model_card_export_job_arn
|
11779
|
+
# The Amazon Resource Name (ARN) of the model card export job to
|
11780
|
+
# describe.
|
11781
|
+
#
|
11782
|
+
# @return [Types::DescribeModelCardExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11783
|
+
#
|
11784
|
+
# * {Types::DescribeModelCardExportJobResponse#model_card_export_job_name #model_card_export_job_name} => String
|
11785
|
+
# * {Types::DescribeModelCardExportJobResponse#model_card_export_job_arn #model_card_export_job_arn} => String
|
11786
|
+
# * {Types::DescribeModelCardExportJobResponse#status #status} => String
|
11787
|
+
# * {Types::DescribeModelCardExportJobResponse#model_card_name #model_card_name} => String
|
11788
|
+
# * {Types::DescribeModelCardExportJobResponse#model_card_version #model_card_version} => Integer
|
11789
|
+
# * {Types::DescribeModelCardExportJobResponse#output_config #output_config} => Types::ModelCardExportOutputConfig
|
11790
|
+
# * {Types::DescribeModelCardExportJobResponse#created_at #created_at} => Time
|
11791
|
+
# * {Types::DescribeModelCardExportJobResponse#last_modified_at #last_modified_at} => Time
|
11792
|
+
# * {Types::DescribeModelCardExportJobResponse#failure_reason #failure_reason} => String
|
11793
|
+
# * {Types::DescribeModelCardExportJobResponse#export_artifacts #export_artifacts} => Types::ModelCardExportArtifacts
|
11794
|
+
#
|
11795
|
+
# @example Request syntax with placeholder values
|
11796
|
+
#
|
11797
|
+
# resp = client.describe_model_card_export_job({
|
11798
|
+
# model_card_export_job_arn: "ModelCardExportJobArn", # required
|
11799
|
+
# })
|
11800
|
+
#
|
11801
|
+
# @example Response structure
|
11802
|
+
#
|
11803
|
+
# resp.model_card_export_job_name #=> String
|
11804
|
+
# resp.model_card_export_job_arn #=> String
|
11805
|
+
# resp.status #=> String, one of "InProgress", "Completed", "Failed"
|
11806
|
+
# resp.model_card_name #=> String
|
11807
|
+
# resp.model_card_version #=> Integer
|
11808
|
+
# resp.output_config.s3_output_path #=> String
|
11809
|
+
# resp.created_at #=> Time
|
11810
|
+
# resp.last_modified_at #=> Time
|
11811
|
+
# resp.failure_reason #=> String
|
11812
|
+
# resp.export_artifacts.s3_export_artifacts #=> String
|
11813
|
+
#
|
11814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelCardExportJob AWS API Documentation
|
11815
|
+
#
|
11816
|
+
# @overload describe_model_card_export_job(params = {})
|
11817
|
+
# @param [Hash] params ({})
|
11818
|
+
def describe_model_card_export_job(params = {}, options = {})
|
11819
|
+
req = build_request(:describe_model_card_export_job, params)
|
11820
|
+
req.send_request(options)
|
11821
|
+
end
|
11822
|
+
|
11823
|
+
# Returns a description of a model explainability job definition.
|
11824
|
+
#
|
11825
|
+
# @option params [required, String] :job_definition_name
|
11826
|
+
# The name of the model explainability job definition. The name must be
|
11827
|
+
# unique within an Amazon Web Services Region in the Amazon Web Services
|
11828
|
+
# account.
|
11829
|
+
#
|
11830
|
+
# @return [Types::DescribeModelExplainabilityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11831
|
+
#
|
11832
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
|
11833
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#job_definition_name #job_definition_name} => String
|
11834
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#creation_time #creation_time} => Time
|
11835
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_baseline_config #model_explainability_baseline_config} => Types::ModelExplainabilityBaselineConfig
|
11836
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_app_specification #model_explainability_app_specification} => Types::ModelExplainabilityAppSpecification
|
11837
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_job_input #model_explainability_job_input} => Types::ModelExplainabilityJobInput
|
11838
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_job_output_config #model_explainability_job_output_config} => Types::MonitoringOutputConfig
|
11839
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#job_resources #job_resources} => Types::MonitoringResources
|
11840
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#network_config #network_config} => Types::MonitoringNetworkConfig
|
11841
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#role_arn #role_arn} => String
|
11842
|
+
# * {Types::DescribeModelExplainabilityJobDefinitionResponse#stopping_condition #stopping_condition} => Types::MonitoringStoppingCondition
|
11843
|
+
#
|
11844
|
+
# @example Request syntax with placeholder values
|
11845
|
+
#
|
11846
|
+
# resp = client.describe_model_explainability_job_definition({
|
11847
|
+
# job_definition_name: "MonitoringJobDefinitionName", # required
|
11848
|
+
# })
|
11849
|
+
#
|
11850
|
+
# @example Response structure
|
11851
|
+
#
|
11852
|
+
# resp.job_definition_arn #=> String
|
11853
|
+
# resp.job_definition_name #=> String
|
11854
|
+
# resp.creation_time #=> Time
|
11855
|
+
# resp.model_explainability_baseline_config.baselining_job_name #=> String
|
11856
|
+
# resp.model_explainability_baseline_config.constraints_resource.s3_uri #=> String
|
11857
|
+
# resp.model_explainability_app_specification.image_uri #=> String
|
11858
|
+
# resp.model_explainability_app_specification.config_uri #=> String
|
11859
|
+
# resp.model_explainability_app_specification.environment #=> Hash
|
11860
|
+
# resp.model_explainability_app_specification.environment["ProcessingEnvironmentKey"] #=> String
|
11861
|
+
# resp.model_explainability_job_input.endpoint_input.endpoint_name #=> String
|
11862
|
+
# resp.model_explainability_job_input.endpoint_input.local_path #=> String
|
11863
|
+
# resp.model_explainability_job_input.endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
|
11864
|
+
# resp.model_explainability_job_input.endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
11865
|
+
# resp.model_explainability_job_input.endpoint_input.features_attribute #=> String
|
11866
|
+
# resp.model_explainability_job_input.endpoint_input.inference_attribute #=> String
|
11867
|
+
# resp.model_explainability_job_input.endpoint_input.probability_attribute #=> String
|
11868
|
+
# resp.model_explainability_job_input.endpoint_input.probability_threshold_attribute #=> Float
|
11869
|
+
# resp.model_explainability_job_input.endpoint_input.start_time_offset #=> String
|
11870
|
+
# resp.model_explainability_job_input.endpoint_input.end_time_offset #=> String
|
11871
|
+
# resp.model_explainability_job_input.batch_transform_input.data_captured_destination_s3_uri #=> String
|
11872
|
+
# resp.model_explainability_job_input.batch_transform_input.dataset_format.csv.header #=> Boolean
|
11873
|
+
# resp.model_explainability_job_input.batch_transform_input.dataset_format.json.line #=> Boolean
|
11874
|
+
# resp.model_explainability_job_input.batch_transform_input.local_path #=> String
|
10796
11875
|
# resp.model_explainability_job_input.batch_transform_input.s3_input_mode #=> String, one of "Pipe", "File"
|
10797
11876
|
# resp.model_explainability_job_input.batch_transform_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
10798
11877
|
# resp.model_explainability_job_input.batch_transform_input.features_attribute #=> String
|
@@ -11432,7 +12511,7 @@ module Aws::SageMaker
|
|
11432
12511
|
# @example Request syntax with placeholder values
|
11433
12512
|
#
|
11434
12513
|
# resp = client.describe_pipeline({
|
11435
|
-
# pipeline_name: "
|
12514
|
+
# pipeline_name: "PipelineNameOrArn", # required
|
11436
12515
|
# })
|
11437
12516
|
#
|
11438
12517
|
# @example Response structure
|
@@ -11647,6 +12726,7 @@ module Aws::SageMaker
|
|
11647
12726
|
# resp.experiment_config.experiment_name #=> String
|
11648
12727
|
# resp.experiment_config.trial_name #=> String
|
11649
12728
|
# resp.experiment_config.trial_component_display_name #=> String
|
12729
|
+
# resp.experiment_config.run_name #=> String
|
11650
12730
|
# resp.processing_job_arn #=> String
|
11651
12731
|
# resp.processing_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
11652
12732
|
# resp.exit_message #=> String
|
@@ -11731,6 +12811,71 @@ module Aws::SageMaker
|
|
11731
12811
|
req.send_request(options)
|
11732
12812
|
end
|
11733
12813
|
|
12814
|
+
# Describes the space.
|
12815
|
+
#
|
12816
|
+
# @option params [required, String] :domain_id
|
12817
|
+
# The ID of the associated Domain.
|
12818
|
+
#
|
12819
|
+
# @option params [required, String] :space_name
|
12820
|
+
# The name of the space.
|
12821
|
+
#
|
12822
|
+
# @return [Types::DescribeSpaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12823
|
+
#
|
12824
|
+
# * {Types::DescribeSpaceResponse#domain_id #domain_id} => String
|
12825
|
+
# * {Types::DescribeSpaceResponse#space_arn #space_arn} => String
|
12826
|
+
# * {Types::DescribeSpaceResponse#space_name #space_name} => String
|
12827
|
+
# * {Types::DescribeSpaceResponse#home_efs_file_system_uid #home_efs_file_system_uid} => String
|
12828
|
+
# * {Types::DescribeSpaceResponse#status #status} => String
|
12829
|
+
# * {Types::DescribeSpaceResponse#last_modified_time #last_modified_time} => Time
|
12830
|
+
# * {Types::DescribeSpaceResponse#creation_time #creation_time} => Time
|
12831
|
+
# * {Types::DescribeSpaceResponse#failure_reason #failure_reason} => String
|
12832
|
+
# * {Types::DescribeSpaceResponse#space_settings #space_settings} => Types::SpaceSettings
|
12833
|
+
#
|
12834
|
+
# @example Request syntax with placeholder values
|
12835
|
+
#
|
12836
|
+
# resp = client.describe_space({
|
12837
|
+
# domain_id: "DomainId", # required
|
12838
|
+
# space_name: "SpaceName", # required
|
12839
|
+
# })
|
12840
|
+
#
|
12841
|
+
# @example Response structure
|
12842
|
+
#
|
12843
|
+
# resp.domain_id #=> String
|
12844
|
+
# resp.space_arn #=> String
|
12845
|
+
# resp.space_name #=> String
|
12846
|
+
# resp.home_efs_file_system_uid #=> String
|
12847
|
+
# resp.status #=> String, one of "Deleting", "Failed", "InService", "Pending", "Updating", "Update_Failed", "Delete_Failed"
|
12848
|
+
# resp.last_modified_time #=> Time
|
12849
|
+
# resp.creation_time #=> Time
|
12850
|
+
# resp.failure_reason #=> String
|
12851
|
+
# resp.space_settings.jupyter_server_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
12852
|
+
# resp.space_settings.jupyter_server_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
12853
|
+
# resp.space_settings.jupyter_server_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
12854
|
+
# resp.space_settings.jupyter_server_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
12855
|
+
# resp.space_settings.jupyter_server_app_settings.lifecycle_config_arns #=> Array
|
12856
|
+
# resp.space_settings.jupyter_server_app_settings.lifecycle_config_arns[0] #=> String
|
12857
|
+
# resp.space_settings.jupyter_server_app_settings.code_repositories #=> Array
|
12858
|
+
# resp.space_settings.jupyter_server_app_settings.code_repositories[0].repository_url #=> String
|
12859
|
+
# resp.space_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
12860
|
+
# resp.space_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
12861
|
+
# resp.space_settings.kernel_gateway_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
12862
|
+
# resp.space_settings.kernel_gateway_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
12863
|
+
# resp.space_settings.kernel_gateway_app_settings.custom_images #=> Array
|
12864
|
+
# resp.space_settings.kernel_gateway_app_settings.custom_images[0].image_name #=> String
|
12865
|
+
# resp.space_settings.kernel_gateway_app_settings.custom_images[0].image_version_number #=> Integer
|
12866
|
+
# resp.space_settings.kernel_gateway_app_settings.custom_images[0].app_image_config_name #=> String
|
12867
|
+
# resp.space_settings.kernel_gateway_app_settings.lifecycle_config_arns #=> Array
|
12868
|
+
# resp.space_settings.kernel_gateway_app_settings.lifecycle_config_arns[0] #=> String
|
12869
|
+
#
|
12870
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeSpace AWS API Documentation
|
12871
|
+
#
|
12872
|
+
# @overload describe_space(params = {})
|
12873
|
+
# @param [Hash] params ({})
|
12874
|
+
def describe_space(params = {}, options = {})
|
12875
|
+
req = build_request(:describe_space, params)
|
12876
|
+
req.send_request(options)
|
12877
|
+
end
|
12878
|
+
|
11734
12879
|
# Describes the Studio Lifecycle Configuration.
|
11735
12880
|
#
|
11736
12881
|
# @option params [required, String] :studio_lifecycle_config_name
|
@@ -11956,6 +13101,7 @@ module Aws::SageMaker
|
|
11956
13101
|
# resp.experiment_config.experiment_name #=> String
|
11957
13102
|
# resp.experiment_config.trial_name #=> String
|
11958
13103
|
# resp.experiment_config.trial_component_display_name #=> String
|
13104
|
+
# resp.experiment_config.run_name #=> String
|
11959
13105
|
# resp.debug_rule_configurations #=> Array
|
11960
13106
|
# resp.debug_rule_configurations[0].rule_configuration_name #=> String
|
11961
13107
|
# resp.debug_rule_configurations[0].local_path #=> String
|
@@ -12090,6 +13236,7 @@ module Aws::SageMaker
|
|
12090
13236
|
# resp.experiment_config.experiment_name #=> String
|
12091
13237
|
# resp.experiment_config.trial_name #=> String
|
12092
13238
|
# resp.experiment_config.trial_component_display_name #=> String
|
13239
|
+
# resp.experiment_config.run_name #=> String
|
12093
13240
|
#
|
12094
13241
|
#
|
12095
13242
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -12183,6 +13330,7 @@ module Aws::SageMaker
|
|
12183
13330
|
# * {Types::DescribeTrialComponentResponse#metadata_properties #metadata_properties} => Types::MetadataProperties
|
12184
13331
|
# * {Types::DescribeTrialComponentResponse#metrics #metrics} => Array<Types::TrialComponentMetricSummary>
|
12185
13332
|
# * {Types::DescribeTrialComponentResponse#lineage_group_arn #lineage_group_arn} => String
|
13333
|
+
# * {Types::DescribeTrialComponentResponse#sources #sources} => Array<Types::TrialComponentSource>
|
12186
13334
|
#
|
12187
13335
|
# @example Request syntax with placeholder values
|
12188
13336
|
#
|
@@ -12233,6 +13381,9 @@ module Aws::SageMaker
|
|
12233
13381
|
# resp.metrics[0].avg #=> Float
|
12234
13382
|
# resp.metrics[0].std_dev #=> Float
|
12235
13383
|
# resp.lineage_group_arn #=> String
|
13384
|
+
# resp.sources #=> Array
|
13385
|
+
# resp.sources[0].source_arn #=> String
|
13386
|
+
# resp.sources[0].source_type #=> String
|
12236
13387
|
#
|
12237
13388
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrialComponent AWS API Documentation
|
12238
13389
|
#
|
@@ -12297,6 +13448,8 @@ module Aws::SageMaker
|
|
12297
13448
|
# resp.user_settings.jupyter_server_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
12298
13449
|
# resp.user_settings.jupyter_server_app_settings.lifecycle_config_arns #=> Array
|
12299
13450
|
# resp.user_settings.jupyter_server_app_settings.lifecycle_config_arns[0] #=> String
|
13451
|
+
# resp.user_settings.jupyter_server_app_settings.code_repositories #=> Array
|
13452
|
+
# resp.user_settings.jupyter_server_app_settings.code_repositories[0].repository_url #=> String
|
12300
13453
|
# resp.user_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
12301
13454
|
# resp.user_settings.kernel_gateway_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
12302
13455
|
# resp.user_settings.kernel_gateway_app_settings.default_resource_spec.instance_type #=> String, one of "system", "ml.t3.micro", "ml.t3.small", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge"
|
@@ -12668,7 +13821,7 @@ module Aws::SageMaker
|
|
12668
13821
|
# @example Request syntax with placeholder values
|
12669
13822
|
#
|
12670
13823
|
# resp = client.get_search_suggestions({
|
12671
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata, HyperParameterTuningJob
|
13824
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata, HyperParameterTuningJob, ModelCard, Model
|
12672
13825
|
# suggestion_query: {
|
12673
13826
|
# property_name_query: {
|
12674
13827
|
# property_name_hint: "PropertyNameHint", # required
|
@@ -12690,6 +13843,82 @@ module Aws::SageMaker
|
|
12690
13843
|
req.send_request(options)
|
12691
13844
|
end
|
12692
13845
|
|
13846
|
+
# Import hub content.
|
13847
|
+
#
|
13848
|
+
# @option params [required, String] :hub_content_name
|
13849
|
+
# The name of the hub content to import.
|
13850
|
+
#
|
13851
|
+
# @option params [String] :hub_content_version
|
13852
|
+
# The version of the hub content to import.
|
13853
|
+
#
|
13854
|
+
# @option params [required, String] :hub_content_type
|
13855
|
+
# The type of hub content to import.
|
13856
|
+
#
|
13857
|
+
# @option params [required, String] :document_schema_version
|
13858
|
+
# The version of the hub content schema to import.
|
13859
|
+
#
|
13860
|
+
# @option params [required, String] :hub_name
|
13861
|
+
# The name of the hub to import content into.
|
13862
|
+
#
|
13863
|
+
# @option params [String] :hub_content_display_name
|
13864
|
+
# The display name of the hub content to import.
|
13865
|
+
#
|
13866
|
+
# @option params [String] :hub_content_description
|
13867
|
+
# A description of the hub content to import.
|
13868
|
+
#
|
13869
|
+
# @option params [String] :hub_content_markdown
|
13870
|
+
# Markdown files associated with the hub content to import.
|
13871
|
+
#
|
13872
|
+
# @option params [required, String] :hub_content_document
|
13873
|
+
# The hub content document that describes information about the hub
|
13874
|
+
# content such as type, associated containers, scripts, and more.
|
13875
|
+
#
|
13876
|
+
# @option params [Array<String>] :hub_content_search_keywords
|
13877
|
+
# The searchable keywords of the hub content.
|
13878
|
+
#
|
13879
|
+
# @option params [Array<Types::Tag>] :tags
|
13880
|
+
# Any tags associated with the hub content.
|
13881
|
+
#
|
13882
|
+
# @return [Types::ImportHubContentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13883
|
+
#
|
13884
|
+
# * {Types::ImportHubContentResponse#hub_arn #hub_arn} => String
|
13885
|
+
# * {Types::ImportHubContentResponse#hub_content_arn #hub_content_arn} => String
|
13886
|
+
#
|
13887
|
+
# @example Request syntax with placeholder values
|
13888
|
+
#
|
13889
|
+
# resp = client.import_hub_content({
|
13890
|
+
# hub_content_name: "HubContentName", # required
|
13891
|
+
# hub_content_version: "HubContentVersion",
|
13892
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook
|
13893
|
+
# document_schema_version: "DocumentSchemaVersion", # required
|
13894
|
+
# hub_name: "HubName", # required
|
13895
|
+
# hub_content_display_name: "HubContentDisplayName",
|
13896
|
+
# hub_content_description: "HubContentDescription",
|
13897
|
+
# hub_content_markdown: "HubContentMarkdown",
|
13898
|
+
# hub_content_document: "HubContentDocument", # required
|
13899
|
+
# hub_content_search_keywords: ["HubSearchKeyword"],
|
13900
|
+
# tags: [
|
13901
|
+
# {
|
13902
|
+
# key: "TagKey", # required
|
13903
|
+
# value: "TagValue", # required
|
13904
|
+
# },
|
13905
|
+
# ],
|
13906
|
+
# })
|
13907
|
+
#
|
13908
|
+
# @example Response structure
|
13909
|
+
#
|
13910
|
+
# resp.hub_arn #=> String
|
13911
|
+
# resp.hub_content_arn #=> String
|
13912
|
+
#
|
13913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ImportHubContent AWS API Documentation
|
13914
|
+
#
|
13915
|
+
# @overload import_hub_content(params = {})
|
13916
|
+
# @param [Hash] params ({})
|
13917
|
+
def import_hub_content(params = {}, options = {})
|
13918
|
+
req = build_request(:import_hub_content, params)
|
13919
|
+
req.send_request(options)
|
13920
|
+
end
|
13921
|
+
|
12693
13922
|
# Lists the actions in your account and their properties.
|
12694
13923
|
#
|
12695
13924
|
# @option params [String] :source_uri
|
@@ -12938,6 +14167,9 @@ module Aws::SageMaker
|
|
12938
14167
|
# @option params [String] :user_profile_name_equals
|
12939
14168
|
# A parameter to search by user profile name.
|
12940
14169
|
#
|
14170
|
+
# @option params [String] :space_name_equals
|
14171
|
+
# A parameter to search by space name.
|
14172
|
+
#
|
12941
14173
|
# @return [Types::ListAppsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12942
14174
|
#
|
12943
14175
|
# * {Types::ListAppsResponse#apps #apps} => Array<Types::AppDetails>
|
@@ -12954,6 +14186,7 @@ module Aws::SageMaker
|
|
12954
14186
|
# sort_by: "CreationTime", # accepts CreationTime
|
12955
14187
|
# domain_id_equals: "DomainId",
|
12956
14188
|
# user_profile_name_equals: "UserProfileName",
|
14189
|
+
# space_name_equals: "SpaceName",
|
12957
14190
|
# })
|
12958
14191
|
#
|
12959
14192
|
# @example Response structure
|
@@ -12965,6 +14198,7 @@ module Aws::SageMaker
|
|
12965
14198
|
# resp.apps[0].app_name #=> String
|
12966
14199
|
# resp.apps[0].status #=> String, one of "Deleted", "Deleting", "Failed", "InService", "Pending"
|
12967
14200
|
# resp.apps[0].creation_time #=> Time
|
14201
|
+
# resp.apps[0].space_name #=> String
|
12968
14202
|
# resp.next_token #=> String
|
12969
14203
|
#
|
12970
14204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListApps AWS API Documentation
|
@@ -14301,145 +15535,382 @@ module Aws::SageMaker
|
|
14301
15535
|
req.send_request(options)
|
14302
15536
|
end
|
14303
15537
|
|
14304
|
-
#
|
14305
|
-
# account.
|
15538
|
+
# List hub content versions.
|
14306
15539
|
#
|
14307
|
-
# @option params [
|
14308
|
-
#
|
14309
|
-
#
|
15540
|
+
# @option params [required, String] :hub_name
|
15541
|
+
# The name of the hub to list the content versions of.
|
15542
|
+
#
|
15543
|
+
# @option params [required, String] :hub_content_type
|
15544
|
+
# The type of hub content to list versions of.
|
15545
|
+
#
|
15546
|
+
# @option params [required, String] :hub_content_name
|
15547
|
+
# The name of the hub content.
|
15548
|
+
#
|
15549
|
+
# @option params [String] :min_version
|
15550
|
+
# The lower bound of the hub content versions to list.
|
15551
|
+
#
|
15552
|
+
# @option params [String] :max_schema_version
|
15553
|
+
# The upper bound of the hub content schema version.
|
14310
15554
|
#
|
14311
15555
|
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
14312
|
-
#
|
14313
|
-
#
|
15556
|
+
# Only list hub content versions that were created before the time
|
15557
|
+
# specified.
|
14314
15558
|
#
|
14315
|
-
# @option params [String] :
|
14316
|
-
#
|
14317
|
-
#
|
15559
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
15560
|
+
# Only list hub content versions that were created after the time
|
15561
|
+
# specified.
|
14318
15562
|
#
|
14319
|
-
# @option params [String] :
|
14320
|
-
#
|
15563
|
+
# @option params [String] :sort_by
|
15564
|
+
# Sort hub content versions by either name or creation time.
|
15565
|
+
#
|
15566
|
+
# @option params [String] :sort_order
|
15567
|
+
# Sort hub content versions by ascending or descending order.
|
14321
15568
|
#
|
14322
15569
|
# @option params [Integer] :max_results
|
14323
|
-
# The
|
14324
|
-
# items is more than the value specified in `MaxResults`, then a
|
14325
|
-
# `NextToken` will be provided in the output that you can use to resume
|
14326
|
-
# pagination.
|
15570
|
+
# The maximum number of hub content versions to list.
|
14327
15571
|
#
|
14328
|
-
# @
|
15572
|
+
# @option params [String] :next_token
|
15573
|
+
# If the response to a previous `ListHubContentVersions` request was
|
15574
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
15575
|
+
# set of hub content versions, use the token in the next request.
|
14329
15576
|
#
|
14330
|
-
#
|
14331
|
-
# * {Types::ListHumanTaskUisResponse#next_token #next_token} => String
|
15577
|
+
# @return [Types::ListHubContentVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14332
15578
|
#
|
14333
|
-
#
|
15579
|
+
# * {Types::ListHubContentVersionsResponse#hub_content_summaries #hub_content_summaries} => Array<Types::HubContentInfo>
|
15580
|
+
# * {Types::ListHubContentVersionsResponse#next_token #next_token} => String
|
14334
15581
|
#
|
14335
15582
|
# @example Request syntax with placeholder values
|
14336
15583
|
#
|
14337
|
-
# resp = client.
|
14338
|
-
#
|
15584
|
+
# resp = client.list_hub_content_versions({
|
15585
|
+
# hub_name: "HubName", # required
|
15586
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook
|
15587
|
+
# hub_content_name: "HubContentName", # required
|
15588
|
+
# min_version: "HubContentVersion",
|
15589
|
+
# max_schema_version: "DocumentSchemaVersion",
|
14339
15590
|
# creation_time_before: Time.now,
|
15591
|
+
# creation_time_after: Time.now,
|
15592
|
+
# sort_by: "HubContentName", # accepts HubContentName, CreationTime, HubContentStatus
|
14340
15593
|
# sort_order: "Ascending", # accepts Ascending, Descending
|
14341
|
-
# next_token: "NextToken",
|
14342
15594
|
# max_results: 1,
|
15595
|
+
# next_token: "NextToken",
|
14343
15596
|
# })
|
14344
15597
|
#
|
14345
15598
|
# @example Response structure
|
14346
15599
|
#
|
14347
|
-
# resp.
|
14348
|
-
# resp.
|
14349
|
-
# resp.
|
14350
|
-
# resp.
|
15600
|
+
# resp.hub_content_summaries #=> Array
|
15601
|
+
# resp.hub_content_summaries[0].hub_content_name #=> String
|
15602
|
+
# resp.hub_content_summaries[0].hub_content_arn #=> String
|
15603
|
+
# resp.hub_content_summaries[0].hub_content_version #=> String
|
15604
|
+
# resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook"
|
15605
|
+
# resp.hub_content_summaries[0].document_schema_version #=> String
|
15606
|
+
# resp.hub_content_summaries[0].hub_content_display_name #=> String
|
15607
|
+
# resp.hub_content_summaries[0].hub_content_description #=> String
|
15608
|
+
# resp.hub_content_summaries[0].hub_content_search_keywords #=> Array
|
15609
|
+
# resp.hub_content_summaries[0].hub_content_search_keywords[0] #=> String
|
15610
|
+
# resp.hub_content_summaries[0].hub_content_status #=> String, one of "Available", "Importing", "Deleting", "ImportFailed", "DeleteFailed"
|
15611
|
+
# resp.hub_content_summaries[0].creation_time #=> Time
|
14351
15612
|
# resp.next_token #=> String
|
14352
15613
|
#
|
14353
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/
|
15614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHubContentVersions AWS API Documentation
|
14354
15615
|
#
|
14355
|
-
# @overload
|
15616
|
+
# @overload list_hub_content_versions(params = {})
|
14356
15617
|
# @param [Hash] params ({})
|
14357
|
-
def
|
14358
|
-
req = build_request(:
|
15618
|
+
def list_hub_content_versions(params = {}, options = {})
|
15619
|
+
req = build_request(:list_hub_content_versions, params)
|
14359
15620
|
req.send_request(options)
|
14360
15621
|
end
|
14361
15622
|
|
14362
|
-
#
|
14363
|
-
# the hyperparameter tuning jobs launched in your account.
|
14364
|
-
#
|
14365
|
-
# @option params [String] :next_token
|
14366
|
-
# If the result of the previous `ListHyperParameterTuningJobs` request
|
14367
|
-
# was truncated, the response includes a `NextToken`. To retrieve the
|
14368
|
-
# next set of tuning jobs, use the token in the next request.
|
14369
|
-
#
|
14370
|
-
# @option params [Integer] :max_results
|
14371
|
-
# The maximum number of tuning jobs to return. The default value is 10.
|
15623
|
+
# List the contents of a hub.
|
14372
15624
|
#
|
14373
|
-
# @option params [String] :
|
14374
|
-
# The
|
15625
|
+
# @option params [required, String] :hub_name
|
15626
|
+
# The name of the hub to list the contents of.
|
14375
15627
|
#
|
14376
|
-
# @option params [String] :
|
14377
|
-
# The
|
15628
|
+
# @option params [required, String] :hub_content_type
|
15629
|
+
# The type of hub content to list.
|
14378
15630
|
#
|
14379
15631
|
# @option params [String] :name_contains
|
14380
|
-
#
|
14381
|
-
# whose name contains the specified string.
|
15632
|
+
# Only list hub content if the name contains the specified string.
|
14382
15633
|
#
|
14383
|
-
# @option params [
|
14384
|
-
#
|
14385
|
-
# specified time.
|
15634
|
+
# @option params [String] :max_schema_version
|
15635
|
+
# The upper bound of the hub content schema verion.
|
14386
15636
|
#
|
14387
15637
|
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
14388
|
-
#
|
14389
|
-
# specified time.
|
15638
|
+
# Only list hub content that was created before the time specified.
|
14390
15639
|
#
|
14391
|
-
# @option params [Time,DateTime,Date,Integer,String] :
|
14392
|
-
#
|
14393
|
-
# specified time.
|
15640
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
15641
|
+
# Only list hub content that was created after the time specified.
|
14394
15642
|
#
|
14395
|
-
# @option params [
|
14396
|
-
#
|
14397
|
-
# specified time.
|
15643
|
+
# @option params [String] :sort_by
|
15644
|
+
# Sort hub content versions by either name or creation time.
|
14398
15645
|
#
|
14399
|
-
# @option params [String] :
|
14400
|
-
#
|
15646
|
+
# @option params [String] :sort_order
|
15647
|
+
# Sort hubs by ascending or descending order.
|
14401
15648
|
#
|
14402
|
-
# @
|
15649
|
+
# @option params [Integer] :max_results
|
15650
|
+
# The maximum amount of hub content to list.
|
14403
15651
|
#
|
14404
|
-
#
|
14405
|
-
#
|
15652
|
+
# @option params [String] :next_token
|
15653
|
+
# If the response to a previous `ListHubContents` request was truncated,
|
15654
|
+
# the response includes a `NextToken`. To retrieve the next set of hub
|
15655
|
+
# content, use the token in the next request.
|
14406
15656
|
#
|
14407
|
-
#
|
15657
|
+
# @return [Types::ListHubContentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15658
|
+
#
|
15659
|
+
# * {Types::ListHubContentsResponse#hub_content_summaries #hub_content_summaries} => Array<Types::HubContentInfo>
|
15660
|
+
# * {Types::ListHubContentsResponse#next_token #next_token} => String
|
14408
15661
|
#
|
14409
15662
|
# @example Request syntax with placeholder values
|
14410
15663
|
#
|
14411
|
-
# resp = client.
|
14412
|
-
#
|
14413
|
-
#
|
14414
|
-
# sort_by: "Name", # accepts Name, Status, CreationTime
|
14415
|
-
# sort_order: "Ascending", # accepts Ascending, Descending
|
15664
|
+
# resp = client.list_hub_contents({
|
15665
|
+
# hub_name: "HubName", # required
|
15666
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook
|
14416
15667
|
# name_contains: "NameContains",
|
14417
|
-
#
|
15668
|
+
# max_schema_version: "DocumentSchemaVersion",
|
14418
15669
|
# creation_time_before: Time.now,
|
14419
|
-
#
|
14420
|
-
#
|
14421
|
-
#
|
15670
|
+
# creation_time_after: Time.now,
|
15671
|
+
# sort_by: "HubContentName", # accepts HubContentName, CreationTime, HubContentStatus
|
15672
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
15673
|
+
# max_results: 1,
|
15674
|
+
# next_token: "NextToken",
|
14422
15675
|
# })
|
14423
15676
|
#
|
14424
15677
|
# @example Response structure
|
14425
15678
|
#
|
14426
|
-
# resp.
|
14427
|
-
# resp.
|
14428
|
-
# resp.
|
14429
|
-
# resp.
|
14430
|
-
# resp.
|
14431
|
-
# resp.
|
14432
|
-
# resp.
|
14433
|
-
# resp.
|
14434
|
-
# resp.
|
14435
|
-
# resp.
|
14436
|
-
# resp.
|
14437
|
-
# resp.
|
14438
|
-
# resp.
|
14439
|
-
#
|
14440
|
-
#
|
14441
|
-
#
|
14442
|
-
#
|
15679
|
+
# resp.hub_content_summaries #=> Array
|
15680
|
+
# resp.hub_content_summaries[0].hub_content_name #=> String
|
15681
|
+
# resp.hub_content_summaries[0].hub_content_arn #=> String
|
15682
|
+
# resp.hub_content_summaries[0].hub_content_version #=> String
|
15683
|
+
# resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook"
|
15684
|
+
# resp.hub_content_summaries[0].document_schema_version #=> String
|
15685
|
+
# resp.hub_content_summaries[0].hub_content_display_name #=> String
|
15686
|
+
# resp.hub_content_summaries[0].hub_content_description #=> String
|
15687
|
+
# resp.hub_content_summaries[0].hub_content_search_keywords #=> Array
|
15688
|
+
# resp.hub_content_summaries[0].hub_content_search_keywords[0] #=> String
|
15689
|
+
# resp.hub_content_summaries[0].hub_content_status #=> String, one of "Available", "Importing", "Deleting", "ImportFailed", "DeleteFailed"
|
15690
|
+
# resp.hub_content_summaries[0].creation_time #=> Time
|
15691
|
+
# resp.next_token #=> String
|
15692
|
+
#
|
15693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHubContents AWS API Documentation
|
15694
|
+
#
|
15695
|
+
# @overload list_hub_contents(params = {})
|
15696
|
+
# @param [Hash] params ({})
|
15697
|
+
def list_hub_contents(params = {}, options = {})
|
15698
|
+
req = build_request(:list_hub_contents, params)
|
15699
|
+
req.send_request(options)
|
15700
|
+
end
|
15701
|
+
|
15702
|
+
# List all existing hubs.
|
15703
|
+
#
|
15704
|
+
# @option params [String] :name_contains
|
15705
|
+
# Only list hubs with names that contain the specified string.
|
15706
|
+
#
|
15707
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
15708
|
+
# Only list hubs that were created before the time specified.
|
15709
|
+
#
|
15710
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
15711
|
+
# Only list hubs that were created after the time specified.
|
15712
|
+
#
|
15713
|
+
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
|
15714
|
+
# Only list hubs that were last modified before the time specified.
|
15715
|
+
#
|
15716
|
+
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
|
15717
|
+
# Only list hubs that were last modified after the time specified.
|
15718
|
+
#
|
15719
|
+
# @option params [String] :sort_by
|
15720
|
+
# Sort hubs by either name or creation time.
|
15721
|
+
#
|
15722
|
+
# @option params [String] :sort_order
|
15723
|
+
# Sort hubs by ascending or descending order.
|
15724
|
+
#
|
15725
|
+
# @option params [Integer] :max_results
|
15726
|
+
# The maximum number of hubs to list.
|
15727
|
+
#
|
15728
|
+
# @option params [String] :next_token
|
15729
|
+
# If the response to a previous `ListHubs` request was truncated, the
|
15730
|
+
# response includes a `NextToken`. To retrieve the next set of hubs, use
|
15731
|
+
# the token in the next request.
|
15732
|
+
#
|
15733
|
+
# @return [Types::ListHubsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15734
|
+
#
|
15735
|
+
# * {Types::ListHubsResponse#hub_summaries #hub_summaries} => Array<Types::HubInfo>
|
15736
|
+
# * {Types::ListHubsResponse#next_token #next_token} => String
|
15737
|
+
#
|
15738
|
+
# @example Request syntax with placeholder values
|
15739
|
+
#
|
15740
|
+
# resp = client.list_hubs({
|
15741
|
+
# name_contains: "NameContains",
|
15742
|
+
# creation_time_before: Time.now,
|
15743
|
+
# creation_time_after: Time.now,
|
15744
|
+
# last_modified_time_before: Time.now,
|
15745
|
+
# last_modified_time_after: Time.now,
|
15746
|
+
# sort_by: "HubName", # accepts HubName, CreationTime, HubStatus, AccountIdOwner
|
15747
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
15748
|
+
# max_results: 1,
|
15749
|
+
# next_token: "NextToken",
|
15750
|
+
# })
|
15751
|
+
#
|
15752
|
+
# @example Response structure
|
15753
|
+
#
|
15754
|
+
# resp.hub_summaries #=> Array
|
15755
|
+
# resp.hub_summaries[0].hub_name #=> String
|
15756
|
+
# resp.hub_summaries[0].hub_arn #=> String
|
15757
|
+
# resp.hub_summaries[0].hub_display_name #=> String
|
15758
|
+
# resp.hub_summaries[0].hub_description #=> String
|
15759
|
+
# resp.hub_summaries[0].hub_search_keywords #=> Array
|
15760
|
+
# resp.hub_summaries[0].hub_search_keywords[0] #=> String
|
15761
|
+
# resp.hub_summaries[0].hub_status #=> String, one of "InService", "Creating", "Updating", "Deleting", "CreateFailed", "UpdateFailed", "DeleteFailed"
|
15762
|
+
# resp.hub_summaries[0].creation_time #=> Time
|
15763
|
+
# resp.hub_summaries[0].last_modified_time #=> Time
|
15764
|
+
# resp.next_token #=> String
|
15765
|
+
#
|
15766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHubs AWS API Documentation
|
15767
|
+
#
|
15768
|
+
# @overload list_hubs(params = {})
|
15769
|
+
# @param [Hash] params ({})
|
15770
|
+
def list_hubs(params = {}, options = {})
|
15771
|
+
req = build_request(:list_hubs, params)
|
15772
|
+
req.send_request(options)
|
15773
|
+
end
|
15774
|
+
|
15775
|
+
# Returns information about the human task user interfaces in your
|
15776
|
+
# account.
|
15777
|
+
#
|
15778
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
15779
|
+
# A filter that returns only human task user interfaces with a creation
|
15780
|
+
# time greater than or equal to the specified timestamp.
|
15781
|
+
#
|
15782
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
15783
|
+
# A filter that returns only human task user interfaces that were
|
15784
|
+
# created before the specified timestamp.
|
15785
|
+
#
|
15786
|
+
# @option params [String] :sort_order
|
15787
|
+
# An optional value that specifies whether you want the results sorted
|
15788
|
+
# in `Ascending` or `Descending` order.
|
15789
|
+
#
|
15790
|
+
# @option params [String] :next_token
|
15791
|
+
# A token to resume pagination.
|
15792
|
+
#
|
15793
|
+
# @option params [Integer] :max_results
|
15794
|
+
# The total number of items to return. If the total number of available
|
15795
|
+
# items is more than the value specified in `MaxResults`, then a
|
15796
|
+
# `NextToken` will be provided in the output that you can use to resume
|
15797
|
+
# pagination.
|
15798
|
+
#
|
15799
|
+
# @return [Types::ListHumanTaskUisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15800
|
+
#
|
15801
|
+
# * {Types::ListHumanTaskUisResponse#human_task_ui_summaries #human_task_ui_summaries} => Array<Types::HumanTaskUiSummary>
|
15802
|
+
# * {Types::ListHumanTaskUisResponse#next_token #next_token} => String
|
15803
|
+
#
|
15804
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
15805
|
+
#
|
15806
|
+
# @example Request syntax with placeholder values
|
15807
|
+
#
|
15808
|
+
# resp = client.list_human_task_uis({
|
15809
|
+
# creation_time_after: Time.now,
|
15810
|
+
# creation_time_before: Time.now,
|
15811
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
15812
|
+
# next_token: "NextToken",
|
15813
|
+
# max_results: 1,
|
15814
|
+
# })
|
15815
|
+
#
|
15816
|
+
# @example Response structure
|
15817
|
+
#
|
15818
|
+
# resp.human_task_ui_summaries #=> Array
|
15819
|
+
# resp.human_task_ui_summaries[0].human_task_ui_name #=> String
|
15820
|
+
# resp.human_task_ui_summaries[0].human_task_ui_arn #=> String
|
15821
|
+
# resp.human_task_ui_summaries[0].creation_time #=> Time
|
15822
|
+
# resp.next_token #=> String
|
15823
|
+
#
|
15824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHumanTaskUis AWS API Documentation
|
15825
|
+
#
|
15826
|
+
# @overload list_human_task_uis(params = {})
|
15827
|
+
# @param [Hash] params ({})
|
15828
|
+
def list_human_task_uis(params = {}, options = {})
|
15829
|
+
req = build_request(:list_human_task_uis, params)
|
15830
|
+
req.send_request(options)
|
15831
|
+
end
|
15832
|
+
|
15833
|
+
# Gets a list of HyperParameterTuningJobSummary objects that describe
|
15834
|
+
# the hyperparameter tuning jobs launched in your account.
|
15835
|
+
#
|
15836
|
+
# @option params [String] :next_token
|
15837
|
+
# If the result of the previous `ListHyperParameterTuningJobs` request
|
15838
|
+
# was truncated, the response includes a `NextToken`. To retrieve the
|
15839
|
+
# next set of tuning jobs, use the token in the next request.
|
15840
|
+
#
|
15841
|
+
# @option params [Integer] :max_results
|
15842
|
+
# The maximum number of tuning jobs to return. The default value is 10.
|
15843
|
+
#
|
15844
|
+
# @option params [String] :sort_by
|
15845
|
+
# The field to sort results by. The default is `Name`.
|
15846
|
+
#
|
15847
|
+
# @option params [String] :sort_order
|
15848
|
+
# The sort order for results. The default is `Ascending`.
|
15849
|
+
#
|
15850
|
+
# @option params [String] :name_contains
|
15851
|
+
# A string in the tuning job name. This filter returns only tuning jobs
|
15852
|
+
# whose name contains the specified string.
|
15853
|
+
#
|
15854
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
15855
|
+
# A filter that returns only tuning jobs that were created after the
|
15856
|
+
# specified time.
|
15857
|
+
#
|
15858
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
15859
|
+
# A filter that returns only tuning jobs that were created before the
|
15860
|
+
# specified time.
|
15861
|
+
#
|
15862
|
+
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
|
15863
|
+
# A filter that returns only tuning jobs that were modified after the
|
15864
|
+
# specified time.
|
15865
|
+
#
|
15866
|
+
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
|
15867
|
+
# A filter that returns only tuning jobs that were modified before the
|
15868
|
+
# specified time.
|
15869
|
+
#
|
15870
|
+
# @option params [String] :status_equals
|
15871
|
+
# A filter that returns only tuning jobs with the specified status.
|
15872
|
+
#
|
15873
|
+
# @return [Types::ListHyperParameterTuningJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15874
|
+
#
|
15875
|
+
# * {Types::ListHyperParameterTuningJobsResponse#hyper_parameter_tuning_job_summaries #hyper_parameter_tuning_job_summaries} => Array<Types::HyperParameterTuningJobSummary>
|
15876
|
+
# * {Types::ListHyperParameterTuningJobsResponse#next_token #next_token} => String
|
15877
|
+
#
|
15878
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
15879
|
+
#
|
15880
|
+
# @example Request syntax with placeholder values
|
15881
|
+
#
|
15882
|
+
# resp = client.list_hyper_parameter_tuning_jobs({
|
15883
|
+
# next_token: "NextToken",
|
15884
|
+
# max_results: 1,
|
15885
|
+
# sort_by: "Name", # accepts Name, Status, CreationTime
|
15886
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
15887
|
+
# name_contains: "NameContains",
|
15888
|
+
# creation_time_after: Time.now,
|
15889
|
+
# creation_time_before: Time.now,
|
15890
|
+
# last_modified_time_after: Time.now,
|
15891
|
+
# last_modified_time_before: Time.now,
|
15892
|
+
# status_equals: "Completed", # accepts Completed, InProgress, Failed, Stopped, Stopping
|
15893
|
+
# })
|
15894
|
+
#
|
15895
|
+
# @example Response structure
|
15896
|
+
#
|
15897
|
+
# resp.hyper_parameter_tuning_job_summaries #=> Array
|
15898
|
+
# resp.hyper_parameter_tuning_job_summaries[0].hyper_parameter_tuning_job_name #=> String
|
15899
|
+
# resp.hyper_parameter_tuning_job_summaries[0].hyper_parameter_tuning_job_arn #=> String
|
15900
|
+
# resp.hyper_parameter_tuning_job_summaries[0].hyper_parameter_tuning_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
|
15901
|
+
# resp.hyper_parameter_tuning_job_summaries[0].strategy #=> String, one of "Bayesian", "Random", "Hyperband", "Grid"
|
15902
|
+
# resp.hyper_parameter_tuning_job_summaries[0].creation_time #=> Time
|
15903
|
+
# resp.hyper_parameter_tuning_job_summaries[0].hyper_parameter_tuning_end_time #=> Time
|
15904
|
+
# resp.hyper_parameter_tuning_job_summaries[0].last_modified_time #=> Time
|
15905
|
+
# resp.hyper_parameter_tuning_job_summaries[0].training_job_status_counters.completed #=> Integer
|
15906
|
+
# resp.hyper_parameter_tuning_job_summaries[0].training_job_status_counters.in_progress #=> Integer
|
15907
|
+
# resp.hyper_parameter_tuning_job_summaries[0].training_job_status_counters.retryable_error #=> Integer
|
15908
|
+
# resp.hyper_parameter_tuning_job_summaries[0].training_job_status_counters.non_retryable_error #=> Integer
|
15909
|
+
# resp.hyper_parameter_tuning_job_summaries[0].training_job_status_counters.stopped #=> Integer
|
15910
|
+
# resp.hyper_parameter_tuning_job_summaries[0].objective_status_counters.succeeded #=> Integer
|
15911
|
+
# resp.hyper_parameter_tuning_job_summaries[0].objective_status_counters.pending #=> Integer
|
15912
|
+
# resp.hyper_parameter_tuning_job_summaries[0].objective_status_counters.failed #=> Integer
|
15913
|
+
# resp.hyper_parameter_tuning_job_summaries[0].resource_limits.max_number_of_training_jobs #=> Integer
|
14443
15914
|
# resp.hyper_parameter_tuning_job_summaries[0].resource_limits.max_parallel_training_jobs #=> Integer
|
14444
15915
|
# resp.next_token #=> String
|
14445
15916
|
#
|
@@ -14614,6 +16085,95 @@ module Aws::SageMaker
|
|
14614
16085
|
req.send_request(options)
|
14615
16086
|
end
|
14616
16087
|
|
16088
|
+
# Returns the list of all inference experiments.
|
16089
|
+
#
|
16090
|
+
# @option params [String] :name_contains
|
16091
|
+
# Selects inference experiments whose names contain this name.
|
16092
|
+
#
|
16093
|
+
# @option params [String] :type
|
16094
|
+
# Selects inference experiments of this type. For the possible types of
|
16095
|
+
# inference experiments, see CreateInferenceExperimentRequest$Type.
|
16096
|
+
#
|
16097
|
+
# @option params [String] :status_equals
|
16098
|
+
# Selects inference experiments which are in this status. For the
|
16099
|
+
# possible statuses, see DescribeInferenceExperimentResponse$Status.
|
16100
|
+
#
|
16101
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
16102
|
+
# Selects inference experiments which were created after this timestamp.
|
16103
|
+
#
|
16104
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
16105
|
+
# Selects inference experiments which were created before this
|
16106
|
+
# timestamp.
|
16107
|
+
#
|
16108
|
+
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
|
16109
|
+
# Selects inference experiments which were last modified after this
|
16110
|
+
# timestamp.
|
16111
|
+
#
|
16112
|
+
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
|
16113
|
+
# Selects inference experiments which were last modified before this
|
16114
|
+
# timestamp.
|
16115
|
+
#
|
16116
|
+
# @option params [String] :sort_by
|
16117
|
+
# The column by which to sort the listed inference experiments.
|
16118
|
+
#
|
16119
|
+
# @option params [String] :sort_order
|
16120
|
+
# The direction of sorting (ascending or descending).
|
16121
|
+
#
|
16122
|
+
# @option params [String] :next_token
|
16123
|
+
# The response from the last list when returning a list large enough to
|
16124
|
+
# need tokening.
|
16125
|
+
#
|
16126
|
+
# @option params [Integer] :max_results
|
16127
|
+
# The maximum number of results to select.
|
16128
|
+
#
|
16129
|
+
# @return [Types::ListInferenceExperimentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16130
|
+
#
|
16131
|
+
# * {Types::ListInferenceExperimentsResponse#inference_experiments #inference_experiments} => Array<Types::InferenceExperimentSummary>
|
16132
|
+
# * {Types::ListInferenceExperimentsResponse#next_token #next_token} => String
|
16133
|
+
#
|
16134
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
16135
|
+
#
|
16136
|
+
# @example Request syntax with placeholder values
|
16137
|
+
#
|
16138
|
+
# resp = client.list_inference_experiments({
|
16139
|
+
# name_contains: "NameContains",
|
16140
|
+
# type: "ShadowMode", # accepts ShadowMode
|
16141
|
+
# status_equals: "Creating", # accepts Creating, Created, Updating, Running, Starting, Stopping, Completed, Cancelled
|
16142
|
+
# creation_time_after: Time.now,
|
16143
|
+
# creation_time_before: Time.now,
|
16144
|
+
# last_modified_time_after: Time.now,
|
16145
|
+
# last_modified_time_before: Time.now,
|
16146
|
+
# sort_by: "Name", # accepts Name, CreationTime, Status
|
16147
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
16148
|
+
# next_token: "NextToken",
|
16149
|
+
# max_results: 1,
|
16150
|
+
# })
|
16151
|
+
#
|
16152
|
+
# @example Response structure
|
16153
|
+
#
|
16154
|
+
# resp.inference_experiments #=> Array
|
16155
|
+
# resp.inference_experiments[0].name #=> String
|
16156
|
+
# resp.inference_experiments[0].type #=> String, one of "ShadowMode"
|
16157
|
+
# resp.inference_experiments[0].schedule.start_time #=> Time
|
16158
|
+
# resp.inference_experiments[0].schedule.end_time #=> Time
|
16159
|
+
# resp.inference_experiments[0].status #=> String, one of "Creating", "Created", "Updating", "Running", "Starting", "Stopping", "Completed", "Cancelled"
|
16160
|
+
# resp.inference_experiments[0].status_reason #=> String
|
16161
|
+
# resp.inference_experiments[0].description #=> String
|
16162
|
+
# resp.inference_experiments[0].creation_time #=> Time
|
16163
|
+
# resp.inference_experiments[0].completion_time #=> Time
|
16164
|
+
# resp.inference_experiments[0].last_modified_time #=> Time
|
16165
|
+
# resp.inference_experiments[0].role_arn #=> String
|
16166
|
+
# resp.next_token #=> String
|
16167
|
+
#
|
16168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceExperiments AWS API Documentation
|
16169
|
+
#
|
16170
|
+
# @overload list_inference_experiments(params = {})
|
16171
|
+
# @param [Hash] params ({})
|
16172
|
+
def list_inference_experiments(params = {}, options = {})
|
16173
|
+
req = build_request(:list_inference_experiments, params)
|
16174
|
+
req.send_request(options)
|
16175
|
+
end
|
16176
|
+
|
14617
16177
|
# Returns a list of the subtasks for an Inference Recommender job.
|
14618
16178
|
#
|
14619
16179
|
# The supported subtasks are benchmarks, which evaluate the performance
|
@@ -15084,6 +16644,226 @@ module Aws::SageMaker
|
|
15084
16644
|
req.send_request(options)
|
15085
16645
|
end
|
15086
16646
|
|
16647
|
+
# List the export jobs for the Amazon SageMaker Model Card.
|
16648
|
+
#
|
16649
|
+
# @option params [required, String] :model_card_name
|
16650
|
+
# List export jobs for the model card with the specified name.
|
16651
|
+
#
|
16652
|
+
# @option params [Integer] :model_card_version
|
16653
|
+
# List export jobs for the model card with the specified version.
|
16654
|
+
#
|
16655
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
16656
|
+
# Only list model card export jobs that were created after the time
|
16657
|
+
# specified.
|
16658
|
+
#
|
16659
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
16660
|
+
# Only list model card export jobs that were created before the time
|
16661
|
+
# specified.
|
16662
|
+
#
|
16663
|
+
# @option params [String] :model_card_export_job_name_contains
|
16664
|
+
# Only list model card export jobs with names that contain the specified
|
16665
|
+
# string.
|
16666
|
+
#
|
16667
|
+
# @option params [String] :status_equals
|
16668
|
+
# Only list model card export jobs with the specified status.
|
16669
|
+
#
|
16670
|
+
# @option params [String] :sort_by
|
16671
|
+
# Sort model card export jobs by either name or creation time. Sorts by
|
16672
|
+
# creation time by default.
|
16673
|
+
#
|
16674
|
+
# @option params [String] :sort_order
|
16675
|
+
# Sort model card export jobs by ascending or descending order.
|
16676
|
+
#
|
16677
|
+
# @option params [String] :next_token
|
16678
|
+
# If the response to a previous `ListModelCardExportJobs` request was
|
16679
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
16680
|
+
# set of model card export jobs, use the token in the next request.
|
16681
|
+
#
|
16682
|
+
# @option params [Integer] :max_results
|
16683
|
+
# The maximum number of model card export jobs to list.
|
16684
|
+
#
|
16685
|
+
# @return [Types::ListModelCardExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16686
|
+
#
|
16687
|
+
# * {Types::ListModelCardExportJobsResponse#model_card_export_job_summaries #model_card_export_job_summaries} => Array<Types::ModelCardExportJobSummary>
|
16688
|
+
# * {Types::ListModelCardExportJobsResponse#next_token #next_token} => String
|
16689
|
+
#
|
16690
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
16691
|
+
#
|
16692
|
+
# @example Request syntax with placeholder values
|
16693
|
+
#
|
16694
|
+
# resp = client.list_model_card_export_jobs({
|
16695
|
+
# model_card_name: "EntityName", # required
|
16696
|
+
# model_card_version: 1,
|
16697
|
+
# creation_time_after: Time.now,
|
16698
|
+
# creation_time_before: Time.now,
|
16699
|
+
# model_card_export_job_name_contains: "EntityName",
|
16700
|
+
# status_equals: "InProgress", # accepts InProgress, Completed, Failed
|
16701
|
+
# sort_by: "Name", # accepts Name, CreationTime, Status
|
16702
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
16703
|
+
# next_token: "NextToken",
|
16704
|
+
# max_results: 1,
|
16705
|
+
# })
|
16706
|
+
#
|
16707
|
+
# @example Response structure
|
16708
|
+
#
|
16709
|
+
# resp.model_card_export_job_summaries #=> Array
|
16710
|
+
# resp.model_card_export_job_summaries[0].model_card_export_job_name #=> String
|
16711
|
+
# resp.model_card_export_job_summaries[0].model_card_export_job_arn #=> String
|
16712
|
+
# resp.model_card_export_job_summaries[0].status #=> String, one of "InProgress", "Completed", "Failed"
|
16713
|
+
# resp.model_card_export_job_summaries[0].model_card_name #=> String
|
16714
|
+
# resp.model_card_export_job_summaries[0].model_card_version #=> Integer
|
16715
|
+
# resp.model_card_export_job_summaries[0].created_at #=> Time
|
16716
|
+
# resp.model_card_export_job_summaries[0].last_modified_at #=> Time
|
16717
|
+
# resp.next_token #=> String
|
16718
|
+
#
|
16719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelCardExportJobs AWS API Documentation
|
16720
|
+
#
|
16721
|
+
# @overload list_model_card_export_jobs(params = {})
|
16722
|
+
# @param [Hash] params ({})
|
16723
|
+
def list_model_card_export_jobs(params = {}, options = {})
|
16724
|
+
req = build_request(:list_model_card_export_jobs, params)
|
16725
|
+
req.send_request(options)
|
16726
|
+
end
|
16727
|
+
|
16728
|
+
# List existing versions of an Amazon SageMaker Model Card.
|
16729
|
+
#
|
16730
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
16731
|
+
# Only list model card versions that were created after the time
|
16732
|
+
# specified.
|
16733
|
+
#
|
16734
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
16735
|
+
# Only list model card versions that were created before the time
|
16736
|
+
# specified.
|
16737
|
+
#
|
16738
|
+
# @option params [Integer] :max_results
|
16739
|
+
# The maximum number of model card versions to list.
|
16740
|
+
#
|
16741
|
+
# @option params [required, String] :model_card_name
|
16742
|
+
# List model card versions for the model card with the specified name.
|
16743
|
+
#
|
16744
|
+
# @option params [String] :model_card_status
|
16745
|
+
# Only list model card versions with the specified approval status.
|
16746
|
+
#
|
16747
|
+
# @option params [String] :next_token
|
16748
|
+
# If the response to a previous `ListModelCardVersions` request was
|
16749
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
16750
|
+
# set of model card versions, use the token in the next request.
|
16751
|
+
#
|
16752
|
+
# @option params [String] :sort_by
|
16753
|
+
# Sort listed model card versions by version. Sorts by version by
|
16754
|
+
# default.
|
16755
|
+
#
|
16756
|
+
# @option params [String] :sort_order
|
16757
|
+
# Sort model card versions by ascending or descending order.
|
16758
|
+
#
|
16759
|
+
# @return [Types::ListModelCardVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16760
|
+
#
|
16761
|
+
# * {Types::ListModelCardVersionsResponse#model_card_version_summary_list #model_card_version_summary_list} => Array<Types::ModelCardVersionSummary>
|
16762
|
+
# * {Types::ListModelCardVersionsResponse#next_token #next_token} => String
|
16763
|
+
#
|
16764
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
16765
|
+
#
|
16766
|
+
# @example Request syntax with placeholder values
|
16767
|
+
#
|
16768
|
+
# resp = client.list_model_card_versions({
|
16769
|
+
# creation_time_after: Time.now,
|
16770
|
+
# creation_time_before: Time.now,
|
16771
|
+
# max_results: 1,
|
16772
|
+
# model_card_name: "EntityName", # required
|
16773
|
+
# model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
|
16774
|
+
# next_token: "NextToken",
|
16775
|
+
# sort_by: "Version", # accepts Version
|
16776
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
16777
|
+
# })
|
16778
|
+
#
|
16779
|
+
# @example Response structure
|
16780
|
+
#
|
16781
|
+
# resp.model_card_version_summary_list #=> Array
|
16782
|
+
# resp.model_card_version_summary_list[0].model_card_name #=> String
|
16783
|
+
# resp.model_card_version_summary_list[0].model_card_arn #=> String
|
16784
|
+
# resp.model_card_version_summary_list[0].model_card_status #=> String, one of "Draft", "PendingReview", "Approved", "Archived"
|
16785
|
+
# resp.model_card_version_summary_list[0].model_card_version #=> Integer
|
16786
|
+
# resp.model_card_version_summary_list[0].creation_time #=> Time
|
16787
|
+
# resp.model_card_version_summary_list[0].last_modified_time #=> Time
|
16788
|
+
# resp.next_token #=> String
|
16789
|
+
#
|
16790
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelCardVersions AWS API Documentation
|
16791
|
+
#
|
16792
|
+
# @overload list_model_card_versions(params = {})
|
16793
|
+
# @param [Hash] params ({})
|
16794
|
+
def list_model_card_versions(params = {}, options = {})
|
16795
|
+
req = build_request(:list_model_card_versions, params)
|
16796
|
+
req.send_request(options)
|
16797
|
+
end
|
16798
|
+
|
16799
|
+
# List existing model cards.
|
16800
|
+
#
|
16801
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
16802
|
+
# Only list model cards that were created after the time specified.
|
16803
|
+
#
|
16804
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
16805
|
+
# Only list model cards that were created before the time specified.
|
16806
|
+
#
|
16807
|
+
# @option params [Integer] :max_results
|
16808
|
+
# The maximum number of model cards to list.
|
16809
|
+
#
|
16810
|
+
# @option params [String] :name_contains
|
16811
|
+
# Only list model cards with names that contain the specified string.
|
16812
|
+
#
|
16813
|
+
# @option params [String] :model_card_status
|
16814
|
+
# Only list model cards with the specified approval status.
|
16815
|
+
#
|
16816
|
+
# @option params [String] :next_token
|
16817
|
+
# If the response to a previous `ListModelCards` request was truncated,
|
16818
|
+
# the response includes a `NextToken`. To retrieve the next set of model
|
16819
|
+
# cards, use the token in the next request.
|
16820
|
+
#
|
16821
|
+
# @option params [String] :sort_by
|
16822
|
+
# Sort model cards by either name or creation time. Sorts by creation
|
16823
|
+
# time by default.
|
16824
|
+
#
|
16825
|
+
# @option params [String] :sort_order
|
16826
|
+
# Sort model cards by ascending or descending order.
|
16827
|
+
#
|
16828
|
+
# @return [Types::ListModelCardsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16829
|
+
#
|
16830
|
+
# * {Types::ListModelCardsResponse#model_card_summaries #model_card_summaries} => Array<Types::ModelCardSummary>
|
16831
|
+
# * {Types::ListModelCardsResponse#next_token #next_token} => String
|
16832
|
+
#
|
16833
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
16834
|
+
#
|
16835
|
+
# @example Request syntax with placeholder values
|
16836
|
+
#
|
16837
|
+
# resp = client.list_model_cards({
|
16838
|
+
# creation_time_after: Time.now,
|
16839
|
+
# creation_time_before: Time.now,
|
16840
|
+
# max_results: 1,
|
16841
|
+
# name_contains: "EntityName",
|
16842
|
+
# model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
|
16843
|
+
# next_token: "NextToken",
|
16844
|
+
# sort_by: "Name", # accepts Name, CreationTime
|
16845
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
16846
|
+
# })
|
16847
|
+
#
|
16848
|
+
# @example Response structure
|
16849
|
+
#
|
16850
|
+
# resp.model_card_summaries #=> Array
|
16851
|
+
# resp.model_card_summaries[0].model_card_name #=> String
|
16852
|
+
# resp.model_card_summaries[0].model_card_arn #=> String
|
16853
|
+
# resp.model_card_summaries[0].model_card_status #=> String, one of "Draft", "PendingReview", "Approved", "Archived"
|
16854
|
+
# resp.model_card_summaries[0].creation_time #=> Time
|
16855
|
+
# resp.model_card_summaries[0].last_modified_time #=> Time
|
16856
|
+
# resp.next_token #=> String
|
16857
|
+
#
|
16858
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelCards AWS API Documentation
|
16859
|
+
#
|
16860
|
+
# @overload list_model_cards(params = {})
|
16861
|
+
# @param [Hash] params ({})
|
16862
|
+
def list_model_cards(params = {}, options = {})
|
16863
|
+
req = build_request(:list_model_cards, params)
|
16864
|
+
req.send_request(options)
|
16865
|
+
end
|
16866
|
+
|
15087
16867
|
# Lists model explainability job definitions that satisfy various
|
15088
16868
|
# filters.
|
15089
16869
|
#
|
@@ -15511,6 +17291,128 @@ module Aws::SageMaker
|
|
15511
17291
|
req.send_request(options)
|
15512
17292
|
end
|
15513
17293
|
|
17294
|
+
# Gets a list of past alerts in a model monitoring schedule.
|
17295
|
+
#
|
17296
|
+
# @option params [String] :monitoring_schedule_name
|
17297
|
+
# The name of a monitoring schedule.
|
17298
|
+
#
|
17299
|
+
# @option params [String] :monitoring_alert_name
|
17300
|
+
# The name of a monitoring alert.
|
17301
|
+
#
|
17302
|
+
# @option params [String] :sort_by
|
17303
|
+
# The field used to sort results. The default is `CreationTime`.
|
17304
|
+
#
|
17305
|
+
# @option params [String] :sort_order
|
17306
|
+
# The sort order, whether `Ascending` or `Descending`, of the alert
|
17307
|
+
# history. The default is `Descending`.
|
17308
|
+
#
|
17309
|
+
# @option params [String] :next_token
|
17310
|
+
# If the result of the previous `ListMonitoringAlertHistory` request was
|
17311
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
17312
|
+
# set of alerts in the history, use the token in the next request.
|
17313
|
+
#
|
17314
|
+
# @option params [Integer] :max_results
|
17315
|
+
# The maximum number of results to display. The default is 100.
|
17316
|
+
#
|
17317
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
17318
|
+
# A filter that returns only alerts created on or before the specified
|
17319
|
+
# time.
|
17320
|
+
#
|
17321
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
17322
|
+
# A filter that returns only alerts created on or after the specified
|
17323
|
+
# time.
|
17324
|
+
#
|
17325
|
+
# @option params [String] :status_equals
|
17326
|
+
# A filter that retrieves only alerts with a specific status.
|
17327
|
+
#
|
17328
|
+
# @return [Types::ListMonitoringAlertHistoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17329
|
+
#
|
17330
|
+
# * {Types::ListMonitoringAlertHistoryResponse#monitoring_alert_history #monitoring_alert_history} => Array<Types::MonitoringAlertHistorySummary>
|
17331
|
+
# * {Types::ListMonitoringAlertHistoryResponse#next_token #next_token} => String
|
17332
|
+
#
|
17333
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
17334
|
+
#
|
17335
|
+
# @example Request syntax with placeholder values
|
17336
|
+
#
|
17337
|
+
# resp = client.list_monitoring_alert_history({
|
17338
|
+
# monitoring_schedule_name: "MonitoringScheduleName",
|
17339
|
+
# monitoring_alert_name: "MonitoringAlertName",
|
17340
|
+
# sort_by: "CreationTime", # accepts CreationTime, Status
|
17341
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
17342
|
+
# next_token: "NextToken",
|
17343
|
+
# max_results: 1,
|
17344
|
+
# creation_time_before: Time.now,
|
17345
|
+
# creation_time_after: Time.now,
|
17346
|
+
# status_equals: "InAlert", # accepts InAlert, OK
|
17347
|
+
# })
|
17348
|
+
#
|
17349
|
+
# @example Response structure
|
17350
|
+
#
|
17351
|
+
# resp.monitoring_alert_history #=> Array
|
17352
|
+
# resp.monitoring_alert_history[0].monitoring_schedule_name #=> String
|
17353
|
+
# resp.monitoring_alert_history[0].monitoring_alert_name #=> String
|
17354
|
+
# resp.monitoring_alert_history[0].creation_time #=> Time
|
17355
|
+
# resp.monitoring_alert_history[0].alert_status #=> String, one of "InAlert", "OK"
|
17356
|
+
# resp.next_token #=> String
|
17357
|
+
#
|
17358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringAlertHistory AWS API Documentation
|
17359
|
+
#
|
17360
|
+
# @overload list_monitoring_alert_history(params = {})
|
17361
|
+
# @param [Hash] params ({})
|
17362
|
+
def list_monitoring_alert_history(params = {}, options = {})
|
17363
|
+
req = build_request(:list_monitoring_alert_history, params)
|
17364
|
+
req.send_request(options)
|
17365
|
+
end
|
17366
|
+
|
17367
|
+
# Gets the alerts for a single monitoring schedule.
|
17368
|
+
#
|
17369
|
+
# @option params [required, String] :monitoring_schedule_name
|
17370
|
+
# The name of a monitoring schedule.
|
17371
|
+
#
|
17372
|
+
# @option params [String] :next_token
|
17373
|
+
# If the result of the previous `ListMonitoringAlerts` request was
|
17374
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
17375
|
+
# set of alerts in the history, use the token in the next request.
|
17376
|
+
#
|
17377
|
+
# @option params [Integer] :max_results
|
17378
|
+
# The maximum number of results to display. The default is 100.
|
17379
|
+
#
|
17380
|
+
# @return [Types::ListMonitoringAlertsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17381
|
+
#
|
17382
|
+
# * {Types::ListMonitoringAlertsResponse#monitoring_alert_summaries #monitoring_alert_summaries} => Array<Types::MonitoringAlertSummary>
|
17383
|
+
# * {Types::ListMonitoringAlertsResponse#next_token #next_token} => String
|
17384
|
+
#
|
17385
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
17386
|
+
#
|
17387
|
+
# @example Request syntax with placeholder values
|
17388
|
+
#
|
17389
|
+
# resp = client.list_monitoring_alerts({
|
17390
|
+
# monitoring_schedule_name: "MonitoringScheduleName", # required
|
17391
|
+
# next_token: "NextToken",
|
17392
|
+
# max_results: 1,
|
17393
|
+
# })
|
17394
|
+
#
|
17395
|
+
# @example Response structure
|
17396
|
+
#
|
17397
|
+
# resp.monitoring_alert_summaries #=> Array
|
17398
|
+
# resp.monitoring_alert_summaries[0].monitoring_alert_name #=> String
|
17399
|
+
# resp.monitoring_alert_summaries[0].creation_time #=> Time
|
17400
|
+
# resp.monitoring_alert_summaries[0].last_modified_time #=> Time
|
17401
|
+
# resp.monitoring_alert_summaries[0].alert_status #=> String, one of "InAlert", "OK"
|
17402
|
+
# resp.monitoring_alert_summaries[0].datapoints_to_alert #=> Integer
|
17403
|
+
# resp.monitoring_alert_summaries[0].evaluation_period #=> Integer
|
17404
|
+
# resp.monitoring_alert_summaries[0].actions.model_dashboard_indicator.enabled #=> Boolean
|
17405
|
+
# resp.next_token #=> String
|
17406
|
+
#
|
17407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringAlerts AWS API Documentation
|
17408
|
+
#
|
17409
|
+
# @overload list_monitoring_alerts(params = {})
|
17410
|
+
# @param [Hash] params ({})
|
17411
|
+
def list_monitoring_alerts(params = {}, options = {})
|
17412
|
+
req = build_request(:list_monitoring_alerts, params)
|
17413
|
+
req.send_request(options)
|
17414
|
+
end
|
17415
|
+
|
15514
17416
|
# Returns list of all monitoring job executions.
|
15515
17417
|
#
|
15516
17418
|
# @option params [String] :monitoring_schedule_name
|
@@ -15990,6 +17892,7 @@ module Aws::SageMaker
|
|
15990
17892
|
# resp.pipeline_execution_steps[0].metadata.emr.step_name #=> String
|
15991
17893
|
# resp.pipeline_execution_steps[0].metadata.emr.log_file_path #=> String
|
15992
17894
|
# resp.pipeline_execution_steps[0].metadata.fail.error_message #=> String
|
17895
|
+
# resp.pipeline_execution_steps[0].metadata.auto_ml_job.arn #=> String
|
15993
17896
|
# resp.next_token #=> String
|
15994
17897
|
#
|
15995
17898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
|
@@ -16038,7 +17941,7 @@ module Aws::SageMaker
|
|
16038
17941
|
# @example Request syntax with placeholder values
|
16039
17942
|
#
|
16040
17943
|
# resp = client.list_pipeline_executions({
|
16041
|
-
# pipeline_name: "
|
17944
|
+
# pipeline_name: "PipelineNameOrArn", # required
|
16042
17945
|
# created_after: Time.now,
|
16043
17946
|
# created_before: Time.now,
|
16044
17947
|
# sort_by: "CreationTime", # accepts CreationTime, PipelineExecutionArn
|
@@ -16321,12 +18224,71 @@ module Aws::SageMaker
|
|
16321
18224
|
# resp.project_summary_list[0].project_status #=> String, one of "Pending", "CreateInProgress", "CreateCompleted", "CreateFailed", "DeleteInProgress", "DeleteFailed", "DeleteCompleted", "UpdateInProgress", "UpdateCompleted", "UpdateFailed"
|
16322
18225
|
# resp.next_token #=> String
|
16323
18226
|
#
|
16324
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListProjects AWS API Documentation
|
18227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListProjects AWS API Documentation
|
18228
|
+
#
|
18229
|
+
# @overload list_projects(params = {})
|
18230
|
+
# @param [Hash] params ({})
|
18231
|
+
def list_projects(params = {}, options = {})
|
18232
|
+
req = build_request(:list_projects, params)
|
18233
|
+
req.send_request(options)
|
18234
|
+
end
|
18235
|
+
|
18236
|
+
# Lists spaces.
|
18237
|
+
#
|
18238
|
+
# @option params [String] :next_token
|
18239
|
+
# If the previous response was truncated, you will receive this token.
|
18240
|
+
# Use it in your next request to receive the next set of results.
|
18241
|
+
#
|
18242
|
+
# @option params [Integer] :max_results
|
18243
|
+
# Returns a list up to a specified limit.
|
18244
|
+
#
|
18245
|
+
# @option params [String] :sort_order
|
18246
|
+
# The sort order for the results. The default is `Ascending`.
|
18247
|
+
#
|
18248
|
+
# @option params [String] :sort_by
|
18249
|
+
# The parameter by which to sort the results. The default is
|
18250
|
+
# `CreationTime`.
|
18251
|
+
#
|
18252
|
+
# @option params [String] :domain_id_equals
|
18253
|
+
# A parameter to search for the Domain ID.
|
18254
|
+
#
|
18255
|
+
# @option params [String] :space_name_contains
|
18256
|
+
# A parameter by which to filter the results.
|
18257
|
+
#
|
18258
|
+
# @return [Types::ListSpacesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18259
|
+
#
|
18260
|
+
# * {Types::ListSpacesResponse#spaces #spaces} => Array<Types::SpaceDetails>
|
18261
|
+
# * {Types::ListSpacesResponse#next_token #next_token} => String
|
18262
|
+
#
|
18263
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
18264
|
+
#
|
18265
|
+
# @example Request syntax with placeholder values
|
18266
|
+
#
|
18267
|
+
# resp = client.list_spaces({
|
18268
|
+
# next_token: "NextToken",
|
18269
|
+
# max_results: 1,
|
18270
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
18271
|
+
# sort_by: "CreationTime", # accepts CreationTime, LastModifiedTime
|
18272
|
+
# domain_id_equals: "DomainId",
|
18273
|
+
# space_name_contains: "SpaceName",
|
18274
|
+
# })
|
18275
|
+
#
|
18276
|
+
# @example Response structure
|
18277
|
+
#
|
18278
|
+
# resp.spaces #=> Array
|
18279
|
+
# resp.spaces[0].domain_id #=> String
|
18280
|
+
# resp.spaces[0].space_name #=> String
|
18281
|
+
# resp.spaces[0].status #=> String, one of "Deleting", "Failed", "InService", "Pending", "Updating", "Update_Failed", "Delete_Failed"
|
18282
|
+
# resp.spaces[0].creation_time #=> Time
|
18283
|
+
# resp.spaces[0].last_modified_time #=> Time
|
18284
|
+
# resp.next_token #=> String
|
18285
|
+
#
|
18286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListSpaces AWS API Documentation
|
16325
18287
|
#
|
16326
|
-
# @overload
|
18288
|
+
# @overload list_spaces(params = {})
|
16327
18289
|
# @param [Hash] params ({})
|
16328
|
-
def
|
16329
|
-
req = build_request(:
|
18290
|
+
def list_spaces(params = {}, options = {})
|
18291
|
+
req = build_request(:list_spaces, params)
|
16330
18292
|
req.send_request(options)
|
16331
18293
|
end
|
16332
18294
|
|
@@ -17553,7 +19515,7 @@ module Aws::SageMaker
|
|
17553
19515
|
# @example Request syntax with placeholder values
|
17554
19516
|
#
|
17555
19517
|
# resp = client.search({
|
17556
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata, HyperParameterTuningJob
|
19518
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project, FeatureMetadata, HyperParameterTuningJob, ModelCard, Model
|
17557
19519
|
# search_expression: {
|
17558
19520
|
# filters: [
|
17559
19521
|
# {
|
@@ -17587,1046 +19549,6 @@ module Aws::SageMaker
|
|
17587
19549
|
# max_results: 1,
|
17588
19550
|
# })
|
17589
19551
|
#
|
17590
|
-
# @example Response structure
|
17591
|
-
#
|
17592
|
-
# resp.results #=> Array
|
17593
|
-
# resp.results[0].training_job.training_job_name #=> String
|
17594
|
-
# resp.results[0].training_job.training_job_arn #=> String
|
17595
|
-
# resp.results[0].training_job.tuning_job_arn #=> String
|
17596
|
-
# resp.results[0].training_job.labeling_job_arn #=> String
|
17597
|
-
# resp.results[0].training_job.auto_ml_job_arn #=> String
|
17598
|
-
# resp.results[0].training_job.model_artifacts.s3_model_artifacts #=> String
|
17599
|
-
# resp.results[0].training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
17600
|
-
# resp.results[0].training_job.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting"
|
17601
|
-
# resp.results[0].training_job.failure_reason #=> String
|
17602
|
-
# resp.results[0].training_job.hyper_parameters #=> Hash
|
17603
|
-
# resp.results[0].training_job.hyper_parameters["HyperParameterKey"] #=> String
|
17604
|
-
# resp.results[0].training_job.algorithm_specification.training_image #=> String
|
17605
|
-
# resp.results[0].training_job.algorithm_specification.algorithm_name #=> String
|
17606
|
-
# resp.results[0].training_job.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
17607
|
-
# resp.results[0].training_job.algorithm_specification.metric_definitions #=> Array
|
17608
|
-
# resp.results[0].training_job.algorithm_specification.metric_definitions[0].name #=> String
|
17609
|
-
# resp.results[0].training_job.algorithm_specification.metric_definitions[0].regex #=> String
|
17610
|
-
# resp.results[0].training_job.algorithm_specification.enable_sage_maker_metrics_time_series #=> Boolean
|
17611
|
-
# resp.results[0].training_job.algorithm_specification.container_entrypoint #=> Array
|
17612
|
-
# resp.results[0].training_job.algorithm_specification.container_entrypoint[0] #=> String
|
17613
|
-
# resp.results[0].training_job.algorithm_specification.container_arguments #=> Array
|
17614
|
-
# resp.results[0].training_job.algorithm_specification.container_arguments[0] #=> String
|
17615
|
-
# resp.results[0].training_job.role_arn #=> String
|
17616
|
-
# resp.results[0].training_job.input_data_config #=> Array
|
17617
|
-
# resp.results[0].training_job.input_data_config[0].channel_name #=> String
|
17618
|
-
# resp.results[0].training_job.input_data_config[0].data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
|
17619
|
-
# resp.results[0].training_job.input_data_config[0].data_source.s3_data_source.s3_uri #=> String
|
17620
|
-
# resp.results[0].training_job.input_data_config[0].data_source.s3_data_source.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
17621
|
-
# resp.results[0].training_job.input_data_config[0].data_source.s3_data_source.attribute_names #=> Array
|
17622
|
-
# resp.results[0].training_job.input_data_config[0].data_source.s3_data_source.attribute_names[0] #=> String
|
17623
|
-
# resp.results[0].training_job.input_data_config[0].data_source.s3_data_source.instance_group_names #=> Array
|
17624
|
-
# resp.results[0].training_job.input_data_config[0].data_source.s3_data_source.instance_group_names[0] #=> String
|
17625
|
-
# resp.results[0].training_job.input_data_config[0].data_source.file_system_data_source.file_system_id #=> String
|
17626
|
-
# resp.results[0].training_job.input_data_config[0].data_source.file_system_data_source.file_system_access_mode #=> String, one of "rw", "ro"
|
17627
|
-
# resp.results[0].training_job.input_data_config[0].data_source.file_system_data_source.file_system_type #=> String, one of "EFS", "FSxLustre"
|
17628
|
-
# resp.results[0].training_job.input_data_config[0].data_source.file_system_data_source.directory_path #=> String
|
17629
|
-
# resp.results[0].training_job.input_data_config[0].content_type #=> String
|
17630
|
-
# resp.results[0].training_job.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
17631
|
-
# resp.results[0].training_job.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
17632
|
-
# resp.results[0].training_job.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
17633
|
-
# resp.results[0].training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
17634
|
-
# resp.results[0].training_job.output_data_config.kms_key_id #=> String
|
17635
|
-
# resp.results[0].training_job.output_data_config.s3_output_path #=> String
|
17636
|
-
# resp.results[0].training_job.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
17637
|
-
# resp.results[0].training_job.resource_config.instance_count #=> Integer
|
17638
|
-
# resp.results[0].training_job.resource_config.volume_size_in_gb #=> Integer
|
17639
|
-
# resp.results[0].training_job.resource_config.volume_kms_key_id #=> String
|
17640
|
-
# resp.results[0].training_job.resource_config.instance_groups #=> Array
|
17641
|
-
# resp.results[0].training_job.resource_config.instance_groups[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
17642
|
-
# resp.results[0].training_job.resource_config.instance_groups[0].instance_count #=> Integer
|
17643
|
-
# resp.results[0].training_job.resource_config.instance_groups[0].instance_group_name #=> String
|
17644
|
-
# resp.results[0].training_job.resource_config.keep_alive_period_in_seconds #=> Integer
|
17645
|
-
# resp.results[0].training_job.vpc_config.security_group_ids #=> Array
|
17646
|
-
# resp.results[0].training_job.vpc_config.security_group_ids[0] #=> String
|
17647
|
-
# resp.results[0].training_job.vpc_config.subnets #=> Array
|
17648
|
-
# resp.results[0].training_job.vpc_config.subnets[0] #=> String
|
17649
|
-
# resp.results[0].training_job.stopping_condition.max_runtime_in_seconds #=> Integer
|
17650
|
-
# resp.results[0].training_job.stopping_condition.max_wait_time_in_seconds #=> Integer
|
17651
|
-
# resp.results[0].training_job.creation_time #=> Time
|
17652
|
-
# resp.results[0].training_job.training_start_time #=> Time
|
17653
|
-
# resp.results[0].training_job.training_end_time #=> Time
|
17654
|
-
# resp.results[0].training_job.last_modified_time #=> Time
|
17655
|
-
# resp.results[0].training_job.secondary_status_transitions #=> Array
|
17656
|
-
# resp.results[0].training_job.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting"
|
17657
|
-
# resp.results[0].training_job.secondary_status_transitions[0].start_time #=> Time
|
17658
|
-
# resp.results[0].training_job.secondary_status_transitions[0].end_time #=> Time
|
17659
|
-
# resp.results[0].training_job.secondary_status_transitions[0].status_message #=> String
|
17660
|
-
# resp.results[0].training_job.final_metric_data_list #=> Array
|
17661
|
-
# resp.results[0].training_job.final_metric_data_list[0].metric_name #=> String
|
17662
|
-
# resp.results[0].training_job.final_metric_data_list[0].value #=> Float
|
17663
|
-
# resp.results[0].training_job.final_metric_data_list[0].timestamp #=> Time
|
17664
|
-
# resp.results[0].training_job.enable_network_isolation #=> Boolean
|
17665
|
-
# resp.results[0].training_job.enable_inter_container_traffic_encryption #=> Boolean
|
17666
|
-
# resp.results[0].training_job.enable_managed_spot_training #=> Boolean
|
17667
|
-
# resp.results[0].training_job.checkpoint_config.s3_uri #=> String
|
17668
|
-
# resp.results[0].training_job.checkpoint_config.local_path #=> String
|
17669
|
-
# resp.results[0].training_job.training_time_in_seconds #=> Integer
|
17670
|
-
# resp.results[0].training_job.billable_time_in_seconds #=> Integer
|
17671
|
-
# resp.results[0].training_job.debug_hook_config.local_path #=> String
|
17672
|
-
# resp.results[0].training_job.debug_hook_config.s3_output_path #=> String
|
17673
|
-
# resp.results[0].training_job.debug_hook_config.hook_parameters #=> Hash
|
17674
|
-
# resp.results[0].training_job.debug_hook_config.hook_parameters["ConfigKey"] #=> String
|
17675
|
-
# resp.results[0].training_job.debug_hook_config.collection_configurations #=> Array
|
17676
|
-
# resp.results[0].training_job.debug_hook_config.collection_configurations[0].collection_name #=> String
|
17677
|
-
# resp.results[0].training_job.debug_hook_config.collection_configurations[0].collection_parameters #=> Hash
|
17678
|
-
# resp.results[0].training_job.debug_hook_config.collection_configurations[0].collection_parameters["ConfigKey"] #=> String
|
17679
|
-
# resp.results[0].training_job.experiment_config.experiment_name #=> String
|
17680
|
-
# resp.results[0].training_job.experiment_config.trial_name #=> String
|
17681
|
-
# resp.results[0].training_job.experiment_config.trial_component_display_name #=> String
|
17682
|
-
# resp.results[0].training_job.debug_rule_configurations #=> Array
|
17683
|
-
# resp.results[0].training_job.debug_rule_configurations[0].rule_configuration_name #=> String
|
17684
|
-
# resp.results[0].training_job.debug_rule_configurations[0].local_path #=> String
|
17685
|
-
# resp.results[0].training_job.debug_rule_configurations[0].s3_output_path #=> String
|
17686
|
-
# resp.results[0].training_job.debug_rule_configurations[0].rule_evaluator_image #=> String
|
17687
|
-
# resp.results[0].training_job.debug_rule_configurations[0].instance_type #=> String, one of "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "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.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
|
17688
|
-
# resp.results[0].training_job.debug_rule_configurations[0].volume_size_in_gb #=> Integer
|
17689
|
-
# resp.results[0].training_job.debug_rule_configurations[0].rule_parameters #=> Hash
|
17690
|
-
# resp.results[0].training_job.debug_rule_configurations[0].rule_parameters["ConfigKey"] #=> String
|
17691
|
-
# resp.results[0].training_job.tensor_board_output_config.local_path #=> String
|
17692
|
-
# resp.results[0].training_job.tensor_board_output_config.s3_output_path #=> String
|
17693
|
-
# resp.results[0].training_job.debug_rule_evaluation_statuses #=> Array
|
17694
|
-
# resp.results[0].training_job.debug_rule_evaluation_statuses[0].rule_configuration_name #=> String
|
17695
|
-
# resp.results[0].training_job.debug_rule_evaluation_statuses[0].rule_evaluation_job_arn #=> String
|
17696
|
-
# resp.results[0].training_job.debug_rule_evaluation_statuses[0].rule_evaluation_status #=> String, one of "InProgress", "NoIssuesFound", "IssuesFound", "Error", "Stopping", "Stopped"
|
17697
|
-
# resp.results[0].training_job.debug_rule_evaluation_statuses[0].status_details #=> String
|
17698
|
-
# resp.results[0].training_job.debug_rule_evaluation_statuses[0].last_modified_time #=> Time
|
17699
|
-
# resp.results[0].training_job.environment #=> Hash
|
17700
|
-
# resp.results[0].training_job.environment["TrainingEnvironmentKey"] #=> String
|
17701
|
-
# resp.results[0].training_job.retry_strategy.maximum_retry_attempts #=> Integer
|
17702
|
-
# resp.results[0].training_job.tags #=> Array
|
17703
|
-
# resp.results[0].training_job.tags[0].key #=> String
|
17704
|
-
# resp.results[0].training_job.tags[0].value #=> String
|
17705
|
-
# resp.results[0].experiment.experiment_name #=> String
|
17706
|
-
# resp.results[0].experiment.experiment_arn #=> String
|
17707
|
-
# resp.results[0].experiment.display_name #=> String
|
17708
|
-
# resp.results[0].experiment.source.source_arn #=> String
|
17709
|
-
# resp.results[0].experiment.source.source_type #=> String
|
17710
|
-
# resp.results[0].experiment.description #=> String
|
17711
|
-
# resp.results[0].experiment.creation_time #=> Time
|
17712
|
-
# resp.results[0].experiment.created_by.user_profile_arn #=> String
|
17713
|
-
# resp.results[0].experiment.created_by.user_profile_name #=> String
|
17714
|
-
# resp.results[0].experiment.created_by.domain_id #=> String
|
17715
|
-
# resp.results[0].experiment.last_modified_time #=> Time
|
17716
|
-
# resp.results[0].experiment.last_modified_by.user_profile_arn #=> String
|
17717
|
-
# resp.results[0].experiment.last_modified_by.user_profile_name #=> String
|
17718
|
-
# resp.results[0].experiment.last_modified_by.domain_id #=> String
|
17719
|
-
# resp.results[0].experiment.tags #=> Array
|
17720
|
-
# resp.results[0].experiment.tags[0].key #=> String
|
17721
|
-
# resp.results[0].experiment.tags[0].value #=> String
|
17722
|
-
# resp.results[0].trial.trial_name #=> String
|
17723
|
-
# resp.results[0].trial.trial_arn #=> String
|
17724
|
-
# resp.results[0].trial.display_name #=> String
|
17725
|
-
# resp.results[0].trial.experiment_name #=> String
|
17726
|
-
# resp.results[0].trial.source.source_arn #=> String
|
17727
|
-
# resp.results[0].trial.source.source_type #=> String
|
17728
|
-
# resp.results[0].trial.creation_time #=> Time
|
17729
|
-
# resp.results[0].trial.created_by.user_profile_arn #=> String
|
17730
|
-
# resp.results[0].trial.created_by.user_profile_name #=> String
|
17731
|
-
# resp.results[0].trial.created_by.domain_id #=> String
|
17732
|
-
# resp.results[0].trial.last_modified_time #=> Time
|
17733
|
-
# resp.results[0].trial.last_modified_by.user_profile_arn #=> String
|
17734
|
-
# resp.results[0].trial.last_modified_by.user_profile_name #=> String
|
17735
|
-
# resp.results[0].trial.last_modified_by.domain_id #=> String
|
17736
|
-
# resp.results[0].trial.metadata_properties.commit_id #=> String
|
17737
|
-
# resp.results[0].trial.metadata_properties.repository #=> String
|
17738
|
-
# resp.results[0].trial.metadata_properties.generated_by #=> String
|
17739
|
-
# resp.results[0].trial.metadata_properties.project_id #=> String
|
17740
|
-
# resp.results[0].trial.tags #=> Array
|
17741
|
-
# resp.results[0].trial.tags[0].key #=> String
|
17742
|
-
# resp.results[0].trial.tags[0].value #=> String
|
17743
|
-
# resp.results[0].trial.trial_component_summaries #=> Array
|
17744
|
-
# resp.results[0].trial.trial_component_summaries[0].trial_component_name #=> String
|
17745
|
-
# resp.results[0].trial.trial_component_summaries[0].trial_component_arn #=> String
|
17746
|
-
# resp.results[0].trial.trial_component_summaries[0].trial_component_source.source_arn #=> String
|
17747
|
-
# resp.results[0].trial.trial_component_summaries[0].trial_component_source.source_type #=> String
|
17748
|
-
# resp.results[0].trial.trial_component_summaries[0].creation_time #=> Time
|
17749
|
-
# resp.results[0].trial.trial_component_summaries[0].created_by.user_profile_arn #=> String
|
17750
|
-
# resp.results[0].trial.trial_component_summaries[0].created_by.user_profile_name #=> String
|
17751
|
-
# resp.results[0].trial.trial_component_summaries[0].created_by.domain_id #=> String
|
17752
|
-
# resp.results[0].trial_component.trial_component_name #=> String
|
17753
|
-
# resp.results[0].trial_component.display_name #=> String
|
17754
|
-
# resp.results[0].trial_component.trial_component_arn #=> String
|
17755
|
-
# resp.results[0].trial_component.source.source_arn #=> String
|
17756
|
-
# resp.results[0].trial_component.source.source_type #=> String
|
17757
|
-
# resp.results[0].trial_component.status.primary_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
17758
|
-
# resp.results[0].trial_component.status.message #=> String
|
17759
|
-
# resp.results[0].trial_component.start_time #=> Time
|
17760
|
-
# resp.results[0].trial_component.end_time #=> Time
|
17761
|
-
# resp.results[0].trial_component.creation_time #=> Time
|
17762
|
-
# resp.results[0].trial_component.created_by.user_profile_arn #=> String
|
17763
|
-
# resp.results[0].trial_component.created_by.user_profile_name #=> String
|
17764
|
-
# resp.results[0].trial_component.created_by.domain_id #=> String
|
17765
|
-
# resp.results[0].trial_component.last_modified_time #=> Time
|
17766
|
-
# resp.results[0].trial_component.last_modified_by.user_profile_arn #=> String
|
17767
|
-
# resp.results[0].trial_component.last_modified_by.user_profile_name #=> String
|
17768
|
-
# resp.results[0].trial_component.last_modified_by.domain_id #=> String
|
17769
|
-
# resp.results[0].trial_component.parameters #=> Hash
|
17770
|
-
# resp.results[0].trial_component.parameters["TrialComponentKey256"].string_value #=> String
|
17771
|
-
# resp.results[0].trial_component.parameters["TrialComponentKey256"].number_value #=> Float
|
17772
|
-
# resp.results[0].trial_component.input_artifacts #=> Hash
|
17773
|
-
# resp.results[0].trial_component.input_artifacts["TrialComponentKey64"].media_type #=> String
|
17774
|
-
# resp.results[0].trial_component.input_artifacts["TrialComponentKey64"].value #=> String
|
17775
|
-
# resp.results[0].trial_component.output_artifacts #=> Hash
|
17776
|
-
# resp.results[0].trial_component.output_artifacts["TrialComponentKey64"].media_type #=> String
|
17777
|
-
# resp.results[0].trial_component.output_artifacts["TrialComponentKey64"].value #=> String
|
17778
|
-
# resp.results[0].trial_component.metrics #=> Array
|
17779
|
-
# resp.results[0].trial_component.metrics[0].metric_name #=> String
|
17780
|
-
# resp.results[0].trial_component.metrics[0].source_arn #=> String
|
17781
|
-
# resp.results[0].trial_component.metrics[0].time_stamp #=> Time
|
17782
|
-
# resp.results[0].trial_component.metrics[0].max #=> Float
|
17783
|
-
# resp.results[0].trial_component.metrics[0].min #=> Float
|
17784
|
-
# resp.results[0].trial_component.metrics[0].last #=> Float
|
17785
|
-
# resp.results[0].trial_component.metrics[0].count #=> Integer
|
17786
|
-
# resp.results[0].trial_component.metrics[0].avg #=> Float
|
17787
|
-
# resp.results[0].trial_component.metrics[0].std_dev #=> Float
|
17788
|
-
# resp.results[0].trial_component.metadata_properties.commit_id #=> String
|
17789
|
-
# resp.results[0].trial_component.metadata_properties.repository #=> String
|
17790
|
-
# resp.results[0].trial_component.metadata_properties.generated_by #=> String
|
17791
|
-
# resp.results[0].trial_component.metadata_properties.project_id #=> String
|
17792
|
-
# resp.results[0].trial_component.source_detail.source_arn #=> String
|
17793
|
-
# resp.results[0].trial_component.source_detail.training_job.training_job_name #=> String
|
17794
|
-
# resp.results[0].trial_component.source_detail.training_job.training_job_arn #=> String
|
17795
|
-
# resp.results[0].trial_component.source_detail.training_job.tuning_job_arn #=> String
|
17796
|
-
# resp.results[0].trial_component.source_detail.training_job.labeling_job_arn #=> String
|
17797
|
-
# resp.results[0].trial_component.source_detail.training_job.auto_ml_job_arn #=> String
|
17798
|
-
# resp.results[0].trial_component.source_detail.training_job.model_artifacts.s3_model_artifacts #=> String
|
17799
|
-
# resp.results[0].trial_component.source_detail.training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
17800
|
-
# resp.results[0].trial_component.source_detail.training_job.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting"
|
17801
|
-
# resp.results[0].trial_component.source_detail.training_job.failure_reason #=> String
|
17802
|
-
# resp.results[0].trial_component.source_detail.training_job.hyper_parameters #=> Hash
|
17803
|
-
# resp.results[0].trial_component.source_detail.training_job.hyper_parameters["HyperParameterKey"] #=> String
|
17804
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.training_image #=> String
|
17805
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.algorithm_name #=> String
|
17806
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
17807
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions #=> Array
|
17808
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions[0].name #=> String
|
17809
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.metric_definitions[0].regex #=> String
|
17810
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.enable_sage_maker_metrics_time_series #=> Boolean
|
17811
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.container_entrypoint #=> Array
|
17812
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.container_entrypoint[0] #=> String
|
17813
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.container_arguments #=> Array
|
17814
|
-
# resp.results[0].trial_component.source_detail.training_job.algorithm_specification.container_arguments[0] #=> String
|
17815
|
-
# resp.results[0].trial_component.source_detail.training_job.role_arn #=> String
|
17816
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config #=> Array
|
17817
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].channel_name #=> String
|
17818
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
|
17819
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.s3_data_source.s3_uri #=> String
|
17820
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.s3_data_source.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
17821
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.s3_data_source.attribute_names #=> Array
|
17822
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.s3_data_source.attribute_names[0] #=> String
|
17823
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.s3_data_source.instance_group_names #=> Array
|
17824
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.s3_data_source.instance_group_names[0] #=> String
|
17825
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.file_system_data_source.file_system_id #=> String
|
17826
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.file_system_data_source.file_system_access_mode #=> String, one of "rw", "ro"
|
17827
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.file_system_data_source.file_system_type #=> String, one of "EFS", "FSxLustre"
|
17828
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].data_source.file_system_data_source.directory_path #=> String
|
17829
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].content_type #=> String
|
17830
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
17831
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
17832
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
17833
|
-
# resp.results[0].trial_component.source_detail.training_job.input_data_config[0].shuffle_config.seed #=> Integer
|
17834
|
-
# resp.results[0].trial_component.source_detail.training_job.output_data_config.kms_key_id #=> String
|
17835
|
-
# resp.results[0].trial_component.source_detail.training_job.output_data_config.s3_output_path #=> String
|
17836
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
17837
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_count #=> Integer
|
17838
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.volume_size_in_gb #=> Integer
|
17839
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.volume_kms_key_id #=> String
|
17840
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_groups #=> Array
|
17841
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_groups[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
17842
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_groups[0].instance_count #=> Integer
|
17843
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.instance_groups[0].instance_group_name #=> String
|
17844
|
-
# resp.results[0].trial_component.source_detail.training_job.resource_config.keep_alive_period_in_seconds #=> Integer
|
17845
|
-
# resp.results[0].trial_component.source_detail.training_job.vpc_config.security_group_ids #=> Array
|
17846
|
-
# resp.results[0].trial_component.source_detail.training_job.vpc_config.security_group_ids[0] #=> String
|
17847
|
-
# resp.results[0].trial_component.source_detail.training_job.vpc_config.subnets #=> Array
|
17848
|
-
# resp.results[0].trial_component.source_detail.training_job.vpc_config.subnets[0] #=> String
|
17849
|
-
# resp.results[0].trial_component.source_detail.training_job.stopping_condition.max_runtime_in_seconds #=> Integer
|
17850
|
-
# resp.results[0].trial_component.source_detail.training_job.stopping_condition.max_wait_time_in_seconds #=> Integer
|
17851
|
-
# resp.results[0].trial_component.source_detail.training_job.creation_time #=> Time
|
17852
|
-
# resp.results[0].trial_component.source_detail.training_job.training_start_time #=> Time
|
17853
|
-
# resp.results[0].trial_component.source_detail.training_job.training_end_time #=> Time
|
17854
|
-
# resp.results[0].trial_component.source_detail.training_job.last_modified_time #=> Time
|
17855
|
-
# resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions #=> Array
|
17856
|
-
# resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting"
|
17857
|
-
# resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].start_time #=> Time
|
17858
|
-
# resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].end_time #=> Time
|
17859
|
-
# resp.results[0].trial_component.source_detail.training_job.secondary_status_transitions[0].status_message #=> String
|
17860
|
-
# resp.results[0].trial_component.source_detail.training_job.final_metric_data_list #=> Array
|
17861
|
-
# resp.results[0].trial_component.source_detail.training_job.final_metric_data_list[0].metric_name #=> String
|
17862
|
-
# resp.results[0].trial_component.source_detail.training_job.final_metric_data_list[0].value #=> Float
|
17863
|
-
# resp.results[0].trial_component.source_detail.training_job.final_metric_data_list[0].timestamp #=> Time
|
17864
|
-
# resp.results[0].trial_component.source_detail.training_job.enable_network_isolation #=> Boolean
|
17865
|
-
# resp.results[0].trial_component.source_detail.training_job.enable_inter_container_traffic_encryption #=> Boolean
|
17866
|
-
# resp.results[0].trial_component.source_detail.training_job.enable_managed_spot_training #=> Boolean
|
17867
|
-
# resp.results[0].trial_component.source_detail.training_job.checkpoint_config.s3_uri #=> String
|
17868
|
-
# resp.results[0].trial_component.source_detail.training_job.checkpoint_config.local_path #=> String
|
17869
|
-
# resp.results[0].trial_component.source_detail.training_job.training_time_in_seconds #=> Integer
|
17870
|
-
# resp.results[0].trial_component.source_detail.training_job.billable_time_in_seconds #=> Integer
|
17871
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.local_path #=> String
|
17872
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.s3_output_path #=> String
|
17873
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.hook_parameters #=> Hash
|
17874
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.hook_parameters["ConfigKey"] #=> String
|
17875
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.collection_configurations #=> Array
|
17876
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.collection_configurations[0].collection_name #=> String
|
17877
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.collection_configurations[0].collection_parameters #=> Hash
|
17878
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_hook_config.collection_configurations[0].collection_parameters["ConfigKey"] #=> String
|
17879
|
-
# resp.results[0].trial_component.source_detail.training_job.experiment_config.experiment_name #=> String
|
17880
|
-
# resp.results[0].trial_component.source_detail.training_job.experiment_config.trial_name #=> String
|
17881
|
-
# resp.results[0].trial_component.source_detail.training_job.experiment_config.trial_component_display_name #=> String
|
17882
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations #=> Array
|
17883
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].rule_configuration_name #=> String
|
17884
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].local_path #=> String
|
17885
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].s3_output_path #=> String
|
17886
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].rule_evaluator_image #=> String
|
17887
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].instance_type #=> String, one of "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "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.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
|
17888
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].volume_size_in_gb #=> Integer
|
17889
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].rule_parameters #=> Hash
|
17890
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_configurations[0].rule_parameters["ConfigKey"] #=> String
|
17891
|
-
# resp.results[0].trial_component.source_detail.training_job.tensor_board_output_config.local_path #=> String
|
17892
|
-
# resp.results[0].trial_component.source_detail.training_job.tensor_board_output_config.s3_output_path #=> String
|
17893
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_evaluation_statuses #=> Array
|
17894
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_evaluation_statuses[0].rule_configuration_name #=> String
|
17895
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_evaluation_statuses[0].rule_evaluation_job_arn #=> String
|
17896
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_evaluation_statuses[0].rule_evaluation_status #=> String, one of "InProgress", "NoIssuesFound", "IssuesFound", "Error", "Stopping", "Stopped"
|
17897
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_evaluation_statuses[0].status_details #=> String
|
17898
|
-
# resp.results[0].trial_component.source_detail.training_job.debug_rule_evaluation_statuses[0].last_modified_time #=> Time
|
17899
|
-
# resp.results[0].trial_component.source_detail.training_job.environment #=> Hash
|
17900
|
-
# resp.results[0].trial_component.source_detail.training_job.environment["TrainingEnvironmentKey"] #=> String
|
17901
|
-
# resp.results[0].trial_component.source_detail.training_job.retry_strategy.maximum_retry_attempts #=> Integer
|
17902
|
-
# resp.results[0].trial_component.source_detail.training_job.tags #=> Array
|
17903
|
-
# resp.results[0].trial_component.source_detail.training_job.tags[0].key #=> String
|
17904
|
-
# resp.results[0].trial_component.source_detail.training_job.tags[0].value #=> String
|
17905
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs #=> Array
|
17906
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].input_name #=> String
|
17907
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].app_managed #=> Boolean
|
17908
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_uri #=> String
|
17909
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.local_path #=> String
|
17910
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_data_type #=> String, one of "ManifestFile", "S3Prefix"
|
17911
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_input_mode #=> String, one of "Pipe", "File"
|
17912
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
17913
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].s3_input.s3_compression_type #=> String, one of "None", "Gzip"
|
17914
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.catalog #=> String
|
17915
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.database #=> String
|
17916
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.query_string #=> String
|
17917
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.work_group #=> String
|
17918
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.output_s3_uri #=> String
|
17919
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.kms_key_id #=> String
|
17920
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.output_format #=> String, one of "PARQUET", "ORC", "AVRO", "JSON", "TEXTFILE"
|
17921
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.athena_dataset_definition.output_compression #=> String, one of "GZIP", "SNAPPY", "ZLIB"
|
17922
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.cluster_id #=> String
|
17923
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.database #=> String
|
17924
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.db_user #=> String
|
17925
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.query_string #=> String
|
17926
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.cluster_role_arn #=> String
|
17927
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_s3_uri #=> String
|
17928
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.kms_key_id #=> String
|
17929
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_format #=> String, one of "PARQUET", "CSV"
|
17930
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.redshift_dataset_definition.output_compression #=> String, one of "None", "GZIP", "BZIP2", "ZSTD", "SNAPPY"
|
17931
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.local_path #=> String
|
17932
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
17933
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_inputs[0].dataset_definition.input_mode #=> String, one of "Pipe", "File"
|
17934
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs #=> Array
|
17935
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].output_name #=> String
|
17936
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].s3_output.s3_uri #=> String
|
17937
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].s3_output.local_path #=> String
|
17938
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
|
17939
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].feature_store_output.feature_group_name #=> String
|
17940
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.outputs[0].app_managed #=> Boolean
|
17941
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_output_config.kms_key_id #=> String
|
17942
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_job_name #=> String
|
17943
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_resources.cluster_config.instance_count #=> Integer
|
17944
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_resources.cluster_config.instance_type #=> String, one of "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "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.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
|
17945
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_resources.cluster_config.volume_size_in_gb #=> Integer
|
17946
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_resources.cluster_config.volume_kms_key_id #=> String
|
17947
|
-
# resp.results[0].trial_component.source_detail.processing_job.stopping_condition.max_runtime_in_seconds #=> Integer
|
17948
|
-
# resp.results[0].trial_component.source_detail.processing_job.app_specification.image_uri #=> String
|
17949
|
-
# resp.results[0].trial_component.source_detail.processing_job.app_specification.container_entrypoint #=> Array
|
17950
|
-
# resp.results[0].trial_component.source_detail.processing_job.app_specification.container_entrypoint[0] #=> String
|
17951
|
-
# resp.results[0].trial_component.source_detail.processing_job.app_specification.container_arguments #=> Array
|
17952
|
-
# resp.results[0].trial_component.source_detail.processing_job.app_specification.container_arguments[0] #=> String
|
17953
|
-
# resp.results[0].trial_component.source_detail.processing_job.environment #=> Hash
|
17954
|
-
# resp.results[0].trial_component.source_detail.processing_job.environment["ProcessingEnvironmentKey"] #=> String
|
17955
|
-
# resp.results[0].trial_component.source_detail.processing_job.network_config.enable_inter_container_traffic_encryption #=> Boolean
|
17956
|
-
# resp.results[0].trial_component.source_detail.processing_job.network_config.enable_network_isolation #=> Boolean
|
17957
|
-
# resp.results[0].trial_component.source_detail.processing_job.network_config.vpc_config.security_group_ids #=> Array
|
17958
|
-
# resp.results[0].trial_component.source_detail.processing_job.network_config.vpc_config.security_group_ids[0] #=> String
|
17959
|
-
# resp.results[0].trial_component.source_detail.processing_job.network_config.vpc_config.subnets #=> Array
|
17960
|
-
# resp.results[0].trial_component.source_detail.processing_job.network_config.vpc_config.subnets[0] #=> String
|
17961
|
-
# resp.results[0].trial_component.source_detail.processing_job.role_arn #=> String
|
17962
|
-
# resp.results[0].trial_component.source_detail.processing_job.experiment_config.experiment_name #=> String
|
17963
|
-
# resp.results[0].trial_component.source_detail.processing_job.experiment_config.trial_name #=> String
|
17964
|
-
# resp.results[0].trial_component.source_detail.processing_job.experiment_config.trial_component_display_name #=> String
|
17965
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_job_arn #=> String
|
17966
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
17967
|
-
# resp.results[0].trial_component.source_detail.processing_job.exit_message #=> String
|
17968
|
-
# resp.results[0].trial_component.source_detail.processing_job.failure_reason #=> String
|
17969
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_end_time #=> Time
|
17970
|
-
# resp.results[0].trial_component.source_detail.processing_job.processing_start_time #=> Time
|
17971
|
-
# resp.results[0].trial_component.source_detail.processing_job.last_modified_time #=> Time
|
17972
|
-
# resp.results[0].trial_component.source_detail.processing_job.creation_time #=> Time
|
17973
|
-
# resp.results[0].trial_component.source_detail.processing_job.monitoring_schedule_arn #=> String
|
17974
|
-
# resp.results[0].trial_component.source_detail.processing_job.auto_ml_job_arn #=> String
|
17975
|
-
# resp.results[0].trial_component.source_detail.processing_job.training_job_arn #=> String
|
17976
|
-
# resp.results[0].trial_component.source_detail.processing_job.tags #=> Array
|
17977
|
-
# resp.results[0].trial_component.source_detail.processing_job.tags[0].key #=> String
|
17978
|
-
# resp.results[0].trial_component.source_detail.processing_job.tags[0].value #=> String
|
17979
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_job_name #=> String
|
17980
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_job_arn #=> String
|
17981
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
17982
|
-
# resp.results[0].trial_component.source_detail.transform_job.failure_reason #=> String
|
17983
|
-
# resp.results[0].trial_component.source_detail.transform_job.model_name #=> String
|
17984
|
-
# resp.results[0].trial_component.source_detail.transform_job.max_concurrent_transforms #=> Integer
|
17985
|
-
# resp.results[0].trial_component.source_detail.transform_job.model_client_config.invocations_timeout_in_seconds #=> Integer
|
17986
|
-
# resp.results[0].trial_component.source_detail.transform_job.model_client_config.invocations_max_retries #=> Integer
|
17987
|
-
# resp.results[0].trial_component.source_detail.transform_job.max_payload_in_mb #=> Integer
|
17988
|
-
# resp.results[0].trial_component.source_detail.transform_job.batch_strategy #=> String, one of "MultiRecord", "SingleRecord"
|
17989
|
-
# resp.results[0].trial_component.source_detail.transform_job.environment #=> Hash
|
17990
|
-
# resp.results[0].trial_component.source_detail.transform_job.environment["TransformEnvironmentKey"] #=> String
|
17991
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_input.data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
|
17992
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_input.data_source.s3_data_source.s3_uri #=> String
|
17993
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_input.content_type #=> String
|
17994
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_input.compression_type #=> String, one of "None", "Gzip"
|
17995
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_input.split_type #=> String, one of "None", "Line", "RecordIO", "TFRecord"
|
17996
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_output.s3_output_path #=> String
|
17997
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_output.accept #=> String
|
17998
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_output.assemble_with #=> String, one of "None", "Line"
|
17999
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_output.kms_key_id #=> String
|
18000
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_resources.instance_type #=> 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"
|
18001
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_resources.instance_count #=> Integer
|
18002
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_resources.volume_kms_key_id #=> String
|
18003
|
-
# resp.results[0].trial_component.source_detail.transform_job.creation_time #=> Time
|
18004
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_start_time #=> Time
|
18005
|
-
# resp.results[0].trial_component.source_detail.transform_job.transform_end_time #=> Time
|
18006
|
-
# resp.results[0].trial_component.source_detail.transform_job.labeling_job_arn #=> String
|
18007
|
-
# resp.results[0].trial_component.source_detail.transform_job.auto_ml_job_arn #=> String
|
18008
|
-
# resp.results[0].trial_component.source_detail.transform_job.data_processing.input_filter #=> String
|
18009
|
-
# resp.results[0].trial_component.source_detail.transform_job.data_processing.output_filter #=> String
|
18010
|
-
# resp.results[0].trial_component.source_detail.transform_job.data_processing.join_source #=> String, one of "Input", "None"
|
18011
|
-
# resp.results[0].trial_component.source_detail.transform_job.experiment_config.experiment_name #=> String
|
18012
|
-
# resp.results[0].trial_component.source_detail.transform_job.experiment_config.trial_name #=> String
|
18013
|
-
# resp.results[0].trial_component.source_detail.transform_job.experiment_config.trial_component_display_name #=> String
|
18014
|
-
# resp.results[0].trial_component.source_detail.transform_job.tags #=> Array
|
18015
|
-
# resp.results[0].trial_component.source_detail.transform_job.tags[0].key #=> String
|
18016
|
-
# resp.results[0].trial_component.source_detail.transform_job.tags[0].value #=> String
|
18017
|
-
# resp.results[0].trial_component.lineage_group_arn #=> String
|
18018
|
-
# resp.results[0].trial_component.tags #=> Array
|
18019
|
-
# resp.results[0].trial_component.tags[0].key #=> String
|
18020
|
-
# resp.results[0].trial_component.tags[0].value #=> String
|
18021
|
-
# resp.results[0].trial_component.parents #=> Array
|
18022
|
-
# resp.results[0].trial_component.parents[0].trial_name #=> String
|
18023
|
-
# resp.results[0].trial_component.parents[0].experiment_name #=> String
|
18024
|
-
# resp.results[0].endpoint.endpoint_name #=> String
|
18025
|
-
# resp.results[0].endpoint.endpoint_arn #=> String
|
18026
|
-
# resp.results[0].endpoint.endpoint_config_name #=> String
|
18027
|
-
# resp.results[0].endpoint.production_variants #=> Array
|
18028
|
-
# resp.results[0].endpoint.production_variants[0].variant_name #=> String
|
18029
|
-
# resp.results[0].endpoint.production_variants[0].deployed_images #=> Array
|
18030
|
-
# resp.results[0].endpoint.production_variants[0].deployed_images[0].specified_image #=> String
|
18031
|
-
# resp.results[0].endpoint.production_variants[0].deployed_images[0].resolved_image #=> String
|
18032
|
-
# resp.results[0].endpoint.production_variants[0].deployed_images[0].resolution_time #=> Time
|
18033
|
-
# resp.results[0].endpoint.production_variants[0].current_weight #=> Float
|
18034
|
-
# resp.results[0].endpoint.production_variants[0].desired_weight #=> Float
|
18035
|
-
# resp.results[0].endpoint.production_variants[0].current_instance_count #=> Integer
|
18036
|
-
# resp.results[0].endpoint.production_variants[0].desired_instance_count #=> Integer
|
18037
|
-
# resp.results[0].endpoint.production_variants[0].variant_status #=> Array
|
18038
|
-
# resp.results[0].endpoint.production_variants[0].variant_status[0].status #=> String, one of "Creating", "Updating", "Deleting", "ActivatingTraffic", "Baking"
|
18039
|
-
# resp.results[0].endpoint.production_variants[0].variant_status[0].status_message #=> String
|
18040
|
-
# resp.results[0].endpoint.production_variants[0].variant_status[0].start_time #=> Time
|
18041
|
-
# resp.results[0].endpoint.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
|
18042
|
-
# resp.results[0].endpoint.production_variants[0].current_serverless_config.max_concurrency #=> Integer
|
18043
|
-
# resp.results[0].endpoint.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
18044
|
-
# resp.results[0].endpoint.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
18045
|
-
# resp.results[0].endpoint.data_capture_config.enable_capture #=> Boolean
|
18046
|
-
# resp.results[0].endpoint.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
|
18047
|
-
# resp.results[0].endpoint.data_capture_config.current_sampling_percentage #=> Integer
|
18048
|
-
# resp.results[0].endpoint.data_capture_config.destination_s3_uri #=> String
|
18049
|
-
# resp.results[0].endpoint.data_capture_config.kms_key_id #=> String
|
18050
|
-
# resp.results[0].endpoint.endpoint_status #=> String, one of "OutOfService", "Creating", "Updating", "SystemUpdating", "RollingBack", "InService", "Deleting", "Failed"
|
18051
|
-
# resp.results[0].endpoint.failure_reason #=> String
|
18052
|
-
# resp.results[0].endpoint.creation_time #=> Time
|
18053
|
-
# resp.results[0].endpoint.last_modified_time #=> Time
|
18054
|
-
# resp.results[0].endpoint.monitoring_schedules #=> Array
|
18055
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_arn #=> String
|
18056
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_name #=> String
|
18057
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_status #=> String, one of "Pending", "Failed", "Scheduled", "Stopped"
|
18058
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
|
18059
|
-
# resp.results[0].endpoint.monitoring_schedules[0].failure_reason #=> String
|
18060
|
-
# resp.results[0].endpoint.monitoring_schedules[0].creation_time #=> Time
|
18061
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_modified_time #=> Time
|
18062
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.schedule_config.schedule_expression #=> String
|
18063
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.baselining_job_name #=> String
|
18064
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.constraints_resource.s3_uri #=> String
|
18065
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.statistics_resource.s3_uri #=> String
|
18066
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs #=> Array
|
18067
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.endpoint_name #=> String
|
18068
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.local_path #=> String
|
18069
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
|
18070
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
18071
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.features_attribute #=> String
|
18072
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.inference_attribute #=> String
|
18073
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.probability_attribute #=> String
|
18074
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.probability_threshold_attribute #=> Float
|
18075
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.start_time_offset #=> String
|
18076
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.end_time_offset #=> String
|
18077
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.data_captured_destination_s3_uri #=> String
|
18078
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.dataset_format.csv.header #=> Boolean
|
18079
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.dataset_format.json.line #=> Boolean
|
18080
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.local_path #=> String
|
18081
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.s3_input_mode #=> String, one of "Pipe", "File"
|
18082
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
18083
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.features_attribute #=> String
|
18084
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.inference_attribute #=> String
|
18085
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.probability_attribute #=> String
|
18086
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.probability_threshold_attribute #=> Float
|
18087
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.start_time_offset #=> String
|
18088
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.end_time_offset #=> String
|
18089
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs #=> Array
|
18090
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
|
18091
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.local_path #=> String
|
18092
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
|
18093
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.kms_key_id #=> String
|
18094
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.instance_count #=> Integer
|
18095
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.instance_type #=> String, one of "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "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.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
|
18096
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.volume_size_in_gb #=> Integer
|
18097
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_resources.cluster_config.volume_kms_key_id #=> String
|
18098
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.image_uri #=> String
|
18099
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_entrypoint #=> Array
|
18100
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_entrypoint[0] #=> String
|
18101
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_arguments #=> Array
|
18102
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.container_arguments[0] #=> String
|
18103
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.record_preprocessor_source_uri #=> String
|
18104
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_app_specification.post_analytics_processor_source_uri #=> String
|
18105
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.stopping_condition.max_runtime_in_seconds #=> Integer
|
18106
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.environment #=> Hash
|
18107
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.environment["ProcessingEnvironmentKey"] #=> String
|
18108
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.enable_inter_container_traffic_encryption #=> Boolean
|
18109
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.enable_network_isolation #=> Boolean
|
18110
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.security_group_ids #=> Array
|
18111
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.security_group_ids[0] #=> String
|
18112
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets #=> Array
|
18113
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets[0] #=> String
|
18114
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.role_arn #=> String
|
18115
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition_name #=> String
|
18116
|
-
# resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
|
18117
|
-
# resp.results[0].endpoint.monitoring_schedules[0].endpoint_name #=> String
|
18118
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_schedule_name #=> String
|
18119
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.scheduled_time #=> Time
|
18120
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.creation_time #=> Time
|
18121
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.last_modified_time #=> Time
|
18122
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_execution_status #=> String, one of "Pending", "Completed", "CompletedWithViolations", "InProgress", "Failed", "Stopping", "Stopped"
|
18123
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.processing_job_arn #=> String
|
18124
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.endpoint_name #=> String
|
18125
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.failure_reason #=> String
|
18126
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_job_definition_name #=> String
|
18127
|
-
# resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
|
18128
|
-
# resp.results[0].endpoint.monitoring_schedules[0].tags #=> Array
|
18129
|
-
# resp.results[0].endpoint.monitoring_schedules[0].tags[0].key #=> String
|
18130
|
-
# resp.results[0].endpoint.monitoring_schedules[0].tags[0].value #=> String
|
18131
|
-
# resp.results[0].endpoint.tags #=> Array
|
18132
|
-
# resp.results[0].endpoint.tags[0].key #=> String
|
18133
|
-
# resp.results[0].endpoint.tags[0].value #=> String
|
18134
|
-
# resp.results[0].model_package.model_package_name #=> String
|
18135
|
-
# resp.results[0].model_package.model_package_group_name #=> String
|
18136
|
-
# resp.results[0].model_package.model_package_version #=> Integer
|
18137
|
-
# resp.results[0].model_package.model_package_arn #=> String
|
18138
|
-
# resp.results[0].model_package.model_package_description #=> String
|
18139
|
-
# resp.results[0].model_package.creation_time #=> Time
|
18140
|
-
# resp.results[0].model_package.inference_specification.containers #=> Array
|
18141
|
-
# resp.results[0].model_package.inference_specification.containers[0].container_hostname #=> String
|
18142
|
-
# resp.results[0].model_package.inference_specification.containers[0].image #=> String
|
18143
|
-
# resp.results[0].model_package.inference_specification.containers[0].image_digest #=> String
|
18144
|
-
# resp.results[0].model_package.inference_specification.containers[0].model_data_url #=> String
|
18145
|
-
# resp.results[0].model_package.inference_specification.containers[0].product_id #=> String
|
18146
|
-
# resp.results[0].model_package.inference_specification.containers[0].environment #=> Hash
|
18147
|
-
# resp.results[0].model_package.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
|
18148
|
-
# resp.results[0].model_package.inference_specification.containers[0].model_input.data_input_config #=> String
|
18149
|
-
# resp.results[0].model_package.inference_specification.containers[0].framework #=> String
|
18150
|
-
# resp.results[0].model_package.inference_specification.containers[0].framework_version #=> String
|
18151
|
-
# resp.results[0].model_package.inference_specification.containers[0].nearest_model_name #=> String
|
18152
|
-
# resp.results[0].model_package.inference_specification.supported_transform_instance_types #=> Array
|
18153
|
-
# 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"
|
18154
|
-
# resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types #=> Array
|
18155
|
-
# resp.results[0].model_package.inference_specification.supported_realtime_inference_instance_types[0] #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge", "ml.c6i.large", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.4xlarge", "ml.c6i.8xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.p4d.24xlarge", "ml.c7g.large", "ml.c7g.xlarge", "ml.c7g.2xlarge", "ml.c7g.4xlarge", "ml.c7g.8xlarge", "ml.c7g.12xlarge", "ml.c7g.16xlarge", "ml.m6g.large", "ml.m6g.xlarge", "ml.m6g.2xlarge", "ml.m6g.4xlarge", "ml.m6g.8xlarge", "ml.m6g.12xlarge", "ml.m6g.16xlarge", "ml.m6gd.large", "ml.m6gd.xlarge", "ml.m6gd.2xlarge", "ml.m6gd.4xlarge", "ml.m6gd.8xlarge", "ml.m6gd.12xlarge", "ml.m6gd.16xlarge", "ml.c6g.large", "ml.c6g.xlarge", "ml.c6g.2xlarge", "ml.c6g.4xlarge", "ml.c6g.8xlarge", "ml.c6g.12xlarge", "ml.c6g.16xlarge", "ml.c6gd.large", "ml.c6gd.xlarge", "ml.c6gd.2xlarge", "ml.c6gd.4xlarge", "ml.c6gd.8xlarge", "ml.c6gd.12xlarge", "ml.c6gd.16xlarge", "ml.c6gn.large", "ml.c6gn.xlarge", "ml.c6gn.2xlarge", "ml.c6gn.4xlarge", "ml.c6gn.8xlarge", "ml.c6gn.12xlarge", "ml.c6gn.16xlarge", "ml.r6g.large", "ml.r6g.xlarge", "ml.r6g.2xlarge", "ml.r6g.4xlarge", "ml.r6g.8xlarge", "ml.r6g.12xlarge", "ml.r6g.16xlarge", "ml.r6gd.large", "ml.r6gd.xlarge", "ml.r6gd.2xlarge", "ml.r6gd.4xlarge", "ml.r6gd.8xlarge", "ml.r6gd.12xlarge", "ml.r6gd.16xlarge"
|
18156
|
-
# resp.results[0].model_package.inference_specification.supported_content_types #=> Array
|
18157
|
-
# resp.results[0].model_package.inference_specification.supported_content_types[0] #=> String
|
18158
|
-
# resp.results[0].model_package.inference_specification.supported_response_mime_types #=> Array
|
18159
|
-
# resp.results[0].model_package.inference_specification.supported_response_mime_types[0] #=> String
|
18160
|
-
# resp.results[0].model_package.source_algorithm_specification.source_algorithms #=> Array
|
18161
|
-
# resp.results[0].model_package.source_algorithm_specification.source_algorithms[0].model_data_url #=> String
|
18162
|
-
# resp.results[0].model_package.source_algorithm_specification.source_algorithms[0].algorithm_name #=> String
|
18163
|
-
# resp.results[0].model_package.validation_specification.validation_role #=> String
|
18164
|
-
# resp.results[0].model_package.validation_specification.validation_profiles #=> Array
|
18165
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].profile_name #=> String
|
18166
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.max_concurrent_transforms #=> Integer
|
18167
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.max_payload_in_mb #=> Integer
|
18168
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.batch_strategy #=> String, one of "MultiRecord", "SingleRecord"
|
18169
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.environment #=> Hash
|
18170
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.environment["TransformEnvironmentKey"] #=> String
|
18171
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
|
18172
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.data_source.s3_data_source.s3_uri #=> String
|
18173
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.content_type #=> String
|
18174
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.compression_type #=> String, one of "None", "Gzip"
|
18175
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_input.split_type #=> String, one of "None", "Line", "RecordIO", "TFRecord"
|
18176
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.s3_output_path #=> String
|
18177
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.accept #=> String
|
18178
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.assemble_with #=> String, one of "None", "Line"
|
18179
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_output.kms_key_id #=> String
|
18180
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_resources.instance_type #=> 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"
|
18181
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_resources.instance_count #=> Integer
|
18182
|
-
# resp.results[0].model_package.validation_specification.validation_profiles[0].transform_job_definition.transform_resources.volume_kms_key_id #=> String
|
18183
|
-
# resp.results[0].model_package.model_package_status #=> String, one of "Pending", "InProgress", "Completed", "Failed", "Deleting"
|
18184
|
-
# resp.results[0].model_package.model_package_status_details.validation_statuses #=> Array
|
18185
|
-
# resp.results[0].model_package.model_package_status_details.validation_statuses[0].name #=> String
|
18186
|
-
# resp.results[0].model_package.model_package_status_details.validation_statuses[0].status #=> String, one of "NotStarted", "InProgress", "Completed", "Failed"
|
18187
|
-
# resp.results[0].model_package.model_package_status_details.validation_statuses[0].failure_reason #=> String
|
18188
|
-
# resp.results[0].model_package.model_package_status_details.image_scan_statuses #=> Array
|
18189
|
-
# resp.results[0].model_package.model_package_status_details.image_scan_statuses[0].name #=> String
|
18190
|
-
# resp.results[0].model_package.model_package_status_details.image_scan_statuses[0].status #=> String, one of "NotStarted", "InProgress", "Completed", "Failed"
|
18191
|
-
# resp.results[0].model_package.model_package_status_details.image_scan_statuses[0].failure_reason #=> String
|
18192
|
-
# resp.results[0].model_package.certify_for_marketplace #=> Boolean
|
18193
|
-
# resp.results[0].model_package.model_approval_status #=> String, one of "Approved", "Rejected", "PendingManualApproval"
|
18194
|
-
# resp.results[0].model_package.created_by.user_profile_arn #=> String
|
18195
|
-
# resp.results[0].model_package.created_by.user_profile_name #=> String
|
18196
|
-
# resp.results[0].model_package.created_by.domain_id #=> String
|
18197
|
-
# resp.results[0].model_package.metadata_properties.commit_id #=> String
|
18198
|
-
# resp.results[0].model_package.metadata_properties.repository #=> String
|
18199
|
-
# resp.results[0].model_package.metadata_properties.generated_by #=> String
|
18200
|
-
# resp.results[0].model_package.metadata_properties.project_id #=> String
|
18201
|
-
# resp.results[0].model_package.model_metrics.model_quality.statistics.content_type #=> String
|
18202
|
-
# resp.results[0].model_package.model_metrics.model_quality.statistics.content_digest #=> String
|
18203
|
-
# resp.results[0].model_package.model_metrics.model_quality.statistics.s3_uri #=> String
|
18204
|
-
# resp.results[0].model_package.model_metrics.model_quality.constraints.content_type #=> String
|
18205
|
-
# resp.results[0].model_package.model_metrics.model_quality.constraints.content_digest #=> String
|
18206
|
-
# resp.results[0].model_package.model_metrics.model_quality.constraints.s3_uri #=> String
|
18207
|
-
# resp.results[0].model_package.model_metrics.model_data_quality.statistics.content_type #=> String
|
18208
|
-
# resp.results[0].model_package.model_metrics.model_data_quality.statistics.content_digest #=> String
|
18209
|
-
# resp.results[0].model_package.model_metrics.model_data_quality.statistics.s3_uri #=> String
|
18210
|
-
# resp.results[0].model_package.model_metrics.model_data_quality.constraints.content_type #=> String
|
18211
|
-
# resp.results[0].model_package.model_metrics.model_data_quality.constraints.content_digest #=> String
|
18212
|
-
# resp.results[0].model_package.model_metrics.model_data_quality.constraints.s3_uri #=> String
|
18213
|
-
# resp.results[0].model_package.model_metrics.bias.report.content_type #=> String
|
18214
|
-
# resp.results[0].model_package.model_metrics.bias.report.content_digest #=> String
|
18215
|
-
# resp.results[0].model_package.model_metrics.bias.report.s3_uri #=> String
|
18216
|
-
# resp.results[0].model_package.model_metrics.bias.pre_training_report.content_type #=> String
|
18217
|
-
# resp.results[0].model_package.model_metrics.bias.pre_training_report.content_digest #=> String
|
18218
|
-
# resp.results[0].model_package.model_metrics.bias.pre_training_report.s3_uri #=> String
|
18219
|
-
# resp.results[0].model_package.model_metrics.bias.post_training_report.content_type #=> String
|
18220
|
-
# resp.results[0].model_package.model_metrics.bias.post_training_report.content_digest #=> String
|
18221
|
-
# resp.results[0].model_package.model_metrics.bias.post_training_report.s3_uri #=> String
|
18222
|
-
# resp.results[0].model_package.model_metrics.explainability.report.content_type #=> String
|
18223
|
-
# resp.results[0].model_package.model_metrics.explainability.report.content_digest #=> String
|
18224
|
-
# resp.results[0].model_package.model_metrics.explainability.report.s3_uri #=> String
|
18225
|
-
# resp.results[0].model_package.last_modified_time #=> Time
|
18226
|
-
# resp.results[0].model_package.last_modified_by.user_profile_arn #=> String
|
18227
|
-
# resp.results[0].model_package.last_modified_by.user_profile_name #=> String
|
18228
|
-
# resp.results[0].model_package.last_modified_by.domain_id #=> String
|
18229
|
-
# resp.results[0].model_package.approval_description #=> String
|
18230
|
-
# resp.results[0].model_package.domain #=> String
|
18231
|
-
# resp.results[0].model_package.task #=> String
|
18232
|
-
# resp.results[0].model_package.sample_payload_url #=> String
|
18233
|
-
# resp.results[0].model_package.additional_inference_specifications #=> Array
|
18234
|
-
# resp.results[0].model_package.additional_inference_specifications[0].name #=> String
|
18235
|
-
# resp.results[0].model_package.additional_inference_specifications[0].description #=> String
|
18236
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers #=> Array
|
18237
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].container_hostname #=> String
|
18238
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].image #=> String
|
18239
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].image_digest #=> String
|
18240
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].model_data_url #=> String
|
18241
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].product_id #=> String
|
18242
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].environment #=> Hash
|
18243
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
|
18244
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].model_input.data_input_config #=> String
|
18245
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].framework #=> String
|
18246
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].framework_version #=> String
|
18247
|
-
# resp.results[0].model_package.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
|
18248
|
-
# resp.results[0].model_package.additional_inference_specifications[0].supported_transform_instance_types #=> Array
|
18249
|
-
# resp.results[0].model_package.additional_inference_specifications[0].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"
|
18250
|
-
# resp.results[0].model_package.additional_inference_specifications[0].supported_realtime_inference_instance_types #=> Array
|
18251
|
-
# resp.results[0].model_package.additional_inference_specifications[0].supported_realtime_inference_instance_types[0] #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge", "ml.c6i.large", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.4xlarge", "ml.c6i.8xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.p4d.24xlarge", "ml.c7g.large", "ml.c7g.xlarge", "ml.c7g.2xlarge", "ml.c7g.4xlarge", "ml.c7g.8xlarge", "ml.c7g.12xlarge", "ml.c7g.16xlarge", "ml.m6g.large", "ml.m6g.xlarge", "ml.m6g.2xlarge", "ml.m6g.4xlarge", "ml.m6g.8xlarge", "ml.m6g.12xlarge", "ml.m6g.16xlarge", "ml.m6gd.large", "ml.m6gd.xlarge", "ml.m6gd.2xlarge", "ml.m6gd.4xlarge", "ml.m6gd.8xlarge", "ml.m6gd.12xlarge", "ml.m6gd.16xlarge", "ml.c6g.large", "ml.c6g.xlarge", "ml.c6g.2xlarge", "ml.c6g.4xlarge", "ml.c6g.8xlarge", "ml.c6g.12xlarge", "ml.c6g.16xlarge", "ml.c6gd.large", "ml.c6gd.xlarge", "ml.c6gd.2xlarge", "ml.c6gd.4xlarge", "ml.c6gd.8xlarge", "ml.c6gd.12xlarge", "ml.c6gd.16xlarge", "ml.c6gn.large", "ml.c6gn.xlarge", "ml.c6gn.2xlarge", "ml.c6gn.4xlarge", "ml.c6gn.8xlarge", "ml.c6gn.12xlarge", "ml.c6gn.16xlarge", "ml.r6g.large", "ml.r6g.xlarge", "ml.r6g.2xlarge", "ml.r6g.4xlarge", "ml.r6g.8xlarge", "ml.r6g.12xlarge", "ml.r6g.16xlarge", "ml.r6gd.large", "ml.r6gd.xlarge", "ml.r6gd.2xlarge", "ml.r6gd.4xlarge", "ml.r6gd.8xlarge", "ml.r6gd.12xlarge", "ml.r6gd.16xlarge"
|
18252
|
-
# resp.results[0].model_package.additional_inference_specifications[0].supported_content_types #=> Array
|
18253
|
-
# resp.results[0].model_package.additional_inference_specifications[0].supported_content_types[0] #=> String
|
18254
|
-
# resp.results[0].model_package.additional_inference_specifications[0].supported_response_mime_types #=> Array
|
18255
|
-
# resp.results[0].model_package.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
|
18256
|
-
# resp.results[0].model_package.tags #=> Array
|
18257
|
-
# resp.results[0].model_package.tags[0].key #=> String
|
18258
|
-
# resp.results[0].model_package.tags[0].value #=> String
|
18259
|
-
# resp.results[0].model_package.customer_metadata_properties #=> Hash
|
18260
|
-
# resp.results[0].model_package.customer_metadata_properties["CustomerMetadataKey"] #=> String
|
18261
|
-
# resp.results[0].model_package.drift_check_baselines.bias.config_file.content_type #=> String
|
18262
|
-
# resp.results[0].model_package.drift_check_baselines.bias.config_file.content_digest #=> String
|
18263
|
-
# resp.results[0].model_package.drift_check_baselines.bias.config_file.s3_uri #=> String
|
18264
|
-
# resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.content_type #=> String
|
18265
|
-
# resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.content_digest #=> String
|
18266
|
-
# resp.results[0].model_package.drift_check_baselines.bias.pre_training_constraints.s3_uri #=> String
|
18267
|
-
# resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.content_type #=> String
|
18268
|
-
# resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.content_digest #=> String
|
18269
|
-
# resp.results[0].model_package.drift_check_baselines.bias.post_training_constraints.s3_uri #=> String
|
18270
|
-
# resp.results[0].model_package.drift_check_baselines.explainability.constraints.content_type #=> String
|
18271
|
-
# resp.results[0].model_package.drift_check_baselines.explainability.constraints.content_digest #=> String
|
18272
|
-
# resp.results[0].model_package.drift_check_baselines.explainability.constraints.s3_uri #=> String
|
18273
|
-
# resp.results[0].model_package.drift_check_baselines.explainability.config_file.content_type #=> String
|
18274
|
-
# resp.results[0].model_package.drift_check_baselines.explainability.config_file.content_digest #=> String
|
18275
|
-
# resp.results[0].model_package.drift_check_baselines.explainability.config_file.s3_uri #=> String
|
18276
|
-
# resp.results[0].model_package.drift_check_baselines.model_quality.statistics.content_type #=> String
|
18277
|
-
# resp.results[0].model_package.drift_check_baselines.model_quality.statistics.content_digest #=> String
|
18278
|
-
# resp.results[0].model_package.drift_check_baselines.model_quality.statistics.s3_uri #=> String
|
18279
|
-
# resp.results[0].model_package.drift_check_baselines.model_quality.constraints.content_type #=> String
|
18280
|
-
# resp.results[0].model_package.drift_check_baselines.model_quality.constraints.content_digest #=> String
|
18281
|
-
# resp.results[0].model_package.drift_check_baselines.model_quality.constraints.s3_uri #=> String
|
18282
|
-
# resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.content_type #=> String
|
18283
|
-
# resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.content_digest #=> String
|
18284
|
-
# resp.results[0].model_package.drift_check_baselines.model_data_quality.statistics.s3_uri #=> String
|
18285
|
-
# resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.content_type #=> String
|
18286
|
-
# resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.content_digest #=> String
|
18287
|
-
# resp.results[0].model_package.drift_check_baselines.model_data_quality.constraints.s3_uri #=> String
|
18288
|
-
# resp.results[0].model_package_group.model_package_group_name #=> String
|
18289
|
-
# resp.results[0].model_package_group.model_package_group_arn #=> String
|
18290
|
-
# resp.results[0].model_package_group.model_package_group_description #=> String
|
18291
|
-
# resp.results[0].model_package_group.creation_time #=> Time
|
18292
|
-
# resp.results[0].model_package_group.created_by.user_profile_arn #=> String
|
18293
|
-
# resp.results[0].model_package_group.created_by.user_profile_name #=> String
|
18294
|
-
# resp.results[0].model_package_group.created_by.domain_id #=> String
|
18295
|
-
# resp.results[0].model_package_group.model_package_group_status #=> String, one of "Pending", "InProgress", "Completed", "Failed", "Deleting", "DeleteFailed"
|
18296
|
-
# resp.results[0].model_package_group.tags #=> Array
|
18297
|
-
# resp.results[0].model_package_group.tags[0].key #=> String
|
18298
|
-
# resp.results[0].model_package_group.tags[0].value #=> String
|
18299
|
-
# resp.results[0].pipeline.pipeline_arn #=> String
|
18300
|
-
# resp.results[0].pipeline.pipeline_name #=> String
|
18301
|
-
# resp.results[0].pipeline.pipeline_display_name #=> String
|
18302
|
-
# resp.results[0].pipeline.pipeline_description #=> String
|
18303
|
-
# resp.results[0].pipeline.role_arn #=> String
|
18304
|
-
# resp.results[0].pipeline.pipeline_status #=> String, one of "Active"
|
18305
|
-
# resp.results[0].pipeline.creation_time #=> Time
|
18306
|
-
# resp.results[0].pipeline.last_modified_time #=> Time
|
18307
|
-
# resp.results[0].pipeline.last_run_time #=> Time
|
18308
|
-
# resp.results[0].pipeline.created_by.user_profile_arn #=> String
|
18309
|
-
# resp.results[0].pipeline.created_by.user_profile_name #=> String
|
18310
|
-
# resp.results[0].pipeline.created_by.domain_id #=> String
|
18311
|
-
# resp.results[0].pipeline.last_modified_by.user_profile_arn #=> String
|
18312
|
-
# resp.results[0].pipeline.last_modified_by.user_profile_name #=> String
|
18313
|
-
# resp.results[0].pipeline.last_modified_by.domain_id #=> String
|
18314
|
-
# resp.results[0].pipeline.parallelism_configuration.max_parallel_execution_steps #=> Integer
|
18315
|
-
# resp.results[0].pipeline.tags #=> Array
|
18316
|
-
# resp.results[0].pipeline.tags[0].key #=> String
|
18317
|
-
# resp.results[0].pipeline.tags[0].value #=> String
|
18318
|
-
# resp.results[0].pipeline_execution.pipeline_arn #=> String
|
18319
|
-
# resp.results[0].pipeline_execution.pipeline_execution_arn #=> String
|
18320
|
-
# resp.results[0].pipeline_execution.pipeline_execution_display_name #=> String
|
18321
|
-
# resp.results[0].pipeline_execution.pipeline_execution_status #=> String, one of "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
|
18322
|
-
# resp.results[0].pipeline_execution.pipeline_execution_description #=> String
|
18323
|
-
# resp.results[0].pipeline_execution.pipeline_experiment_config.experiment_name #=> String
|
18324
|
-
# resp.results[0].pipeline_execution.pipeline_experiment_config.trial_name #=> String
|
18325
|
-
# resp.results[0].pipeline_execution.failure_reason #=> String
|
18326
|
-
# resp.results[0].pipeline_execution.creation_time #=> Time
|
18327
|
-
# resp.results[0].pipeline_execution.last_modified_time #=> Time
|
18328
|
-
# resp.results[0].pipeline_execution.created_by.user_profile_arn #=> String
|
18329
|
-
# resp.results[0].pipeline_execution.created_by.user_profile_name #=> String
|
18330
|
-
# resp.results[0].pipeline_execution.created_by.domain_id #=> String
|
18331
|
-
# resp.results[0].pipeline_execution.last_modified_by.user_profile_arn #=> String
|
18332
|
-
# resp.results[0].pipeline_execution.last_modified_by.user_profile_name #=> String
|
18333
|
-
# resp.results[0].pipeline_execution.last_modified_by.domain_id #=> String
|
18334
|
-
# resp.results[0].pipeline_execution.parallelism_configuration.max_parallel_execution_steps #=> Integer
|
18335
|
-
# resp.results[0].pipeline_execution.pipeline_parameters #=> Array
|
18336
|
-
# resp.results[0].pipeline_execution.pipeline_parameters[0].name #=> String
|
18337
|
-
# resp.results[0].pipeline_execution.pipeline_parameters[0].value #=> String
|
18338
|
-
# resp.results[0].feature_group.feature_group_arn #=> String
|
18339
|
-
# resp.results[0].feature_group.feature_group_name #=> String
|
18340
|
-
# resp.results[0].feature_group.record_identifier_feature_name #=> String
|
18341
|
-
# resp.results[0].feature_group.event_time_feature_name #=> String
|
18342
|
-
# resp.results[0].feature_group.feature_definitions #=> Array
|
18343
|
-
# resp.results[0].feature_group.feature_definitions[0].feature_name #=> String
|
18344
|
-
# resp.results[0].feature_group.feature_definitions[0].feature_type #=> String, one of "Integral", "Fractional", "String"
|
18345
|
-
# resp.results[0].feature_group.creation_time #=> Time
|
18346
|
-
# resp.results[0].feature_group.last_modified_time #=> Time
|
18347
|
-
# resp.results[0].feature_group.online_store_config.security_config.kms_key_id #=> String
|
18348
|
-
# resp.results[0].feature_group.online_store_config.enable_online_store #=> Boolean
|
18349
|
-
# resp.results[0].feature_group.offline_store_config.s3_storage_config.s3_uri #=> String
|
18350
|
-
# resp.results[0].feature_group.offline_store_config.s3_storage_config.kms_key_id #=> String
|
18351
|
-
# resp.results[0].feature_group.offline_store_config.s3_storage_config.resolved_output_s3_uri #=> String
|
18352
|
-
# resp.results[0].feature_group.offline_store_config.disable_glue_table_creation #=> Boolean
|
18353
|
-
# resp.results[0].feature_group.offline_store_config.data_catalog_config.table_name #=> String
|
18354
|
-
# resp.results[0].feature_group.offline_store_config.data_catalog_config.catalog #=> String
|
18355
|
-
# resp.results[0].feature_group.offline_store_config.data_catalog_config.database #=> String
|
18356
|
-
# resp.results[0].feature_group.role_arn #=> String
|
18357
|
-
# resp.results[0].feature_group.feature_group_status #=> String, one of "Creating", "Created", "CreateFailed", "Deleting", "DeleteFailed"
|
18358
|
-
# resp.results[0].feature_group.offline_store_status.status #=> String, one of "Active", "Blocked", "Disabled"
|
18359
|
-
# resp.results[0].feature_group.offline_store_status.blocked_reason #=> String
|
18360
|
-
# resp.results[0].feature_group.last_update_status.status #=> String, one of "Successful", "Failed", "InProgress"
|
18361
|
-
# resp.results[0].feature_group.last_update_status.failure_reason #=> String
|
18362
|
-
# resp.results[0].feature_group.failure_reason #=> String
|
18363
|
-
# resp.results[0].feature_group.description #=> String
|
18364
|
-
# resp.results[0].feature_group.tags #=> Array
|
18365
|
-
# resp.results[0].feature_group.tags[0].key #=> String
|
18366
|
-
# resp.results[0].feature_group.tags[0].value #=> String
|
18367
|
-
# resp.results[0].project.project_arn #=> String
|
18368
|
-
# resp.results[0].project.project_name #=> String
|
18369
|
-
# resp.results[0].project.project_id #=> String
|
18370
|
-
# resp.results[0].project.project_description #=> String
|
18371
|
-
# resp.results[0].project.service_catalog_provisioning_details.product_id #=> String
|
18372
|
-
# resp.results[0].project.service_catalog_provisioning_details.provisioning_artifact_id #=> String
|
18373
|
-
# resp.results[0].project.service_catalog_provisioning_details.path_id #=> String
|
18374
|
-
# resp.results[0].project.service_catalog_provisioning_details.provisioning_parameters #=> Array
|
18375
|
-
# resp.results[0].project.service_catalog_provisioning_details.provisioning_parameters[0].key #=> String
|
18376
|
-
# resp.results[0].project.service_catalog_provisioning_details.provisioning_parameters[0].value #=> String
|
18377
|
-
# resp.results[0].project.service_catalog_provisioned_product_details.provisioned_product_id #=> String
|
18378
|
-
# resp.results[0].project.service_catalog_provisioned_product_details.provisioned_product_status_message #=> String
|
18379
|
-
# resp.results[0].project.project_status #=> String, one of "Pending", "CreateInProgress", "CreateCompleted", "CreateFailed", "DeleteInProgress", "DeleteFailed", "DeleteCompleted", "UpdateInProgress", "UpdateCompleted", "UpdateFailed"
|
18380
|
-
# resp.results[0].project.created_by.user_profile_arn #=> String
|
18381
|
-
# resp.results[0].project.created_by.user_profile_name #=> String
|
18382
|
-
# resp.results[0].project.created_by.domain_id #=> String
|
18383
|
-
# resp.results[0].project.creation_time #=> Time
|
18384
|
-
# resp.results[0].project.tags #=> Array
|
18385
|
-
# resp.results[0].project.tags[0].key #=> String
|
18386
|
-
# resp.results[0].project.tags[0].value #=> String
|
18387
|
-
# resp.results[0].project.last_modified_time #=> Time
|
18388
|
-
# resp.results[0].project.last_modified_by.user_profile_arn #=> String
|
18389
|
-
# resp.results[0].project.last_modified_by.user_profile_name #=> String
|
18390
|
-
# resp.results[0].project.last_modified_by.domain_id #=> String
|
18391
|
-
# resp.results[0].feature_metadata.feature_group_arn #=> String
|
18392
|
-
# resp.results[0].feature_metadata.feature_group_name #=> String
|
18393
|
-
# resp.results[0].feature_metadata.feature_name #=> String
|
18394
|
-
# resp.results[0].feature_metadata.feature_type #=> String, one of "Integral", "Fractional", "String"
|
18395
|
-
# resp.results[0].feature_metadata.creation_time #=> Time
|
18396
|
-
# resp.results[0].feature_metadata.last_modified_time #=> Time
|
18397
|
-
# resp.results[0].feature_metadata.description #=> String
|
18398
|
-
# resp.results[0].feature_metadata.parameters #=> Array
|
18399
|
-
# resp.results[0].feature_metadata.parameters[0].key #=> String
|
18400
|
-
# resp.results[0].feature_metadata.parameters[0].value #=> String
|
18401
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_name #=> String
|
18402
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_arn #=> String
|
18403
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.strategy #=> String, one of "Bayesian", "Random", "Hyperband", "Grid"
|
18404
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.strategy_config.hyperband_strategy_config.min_resource #=> Integer
|
18405
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.strategy_config.hyperband_strategy_config.max_resource #=> Integer
|
18406
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.hyper_parameter_tuning_job_objective.type #=> String, one of "Maximize", "Minimize"
|
18407
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.hyper_parameter_tuning_job_objective.metric_name #=> String
|
18408
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.resource_limits.max_number_of_training_jobs #=> Integer
|
18409
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.resource_limits.max_parallel_training_jobs #=> Integer
|
18410
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.integer_parameter_ranges #=> Array
|
18411
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.integer_parameter_ranges[0].name #=> String
|
18412
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.integer_parameter_ranges[0].min_value #=> String
|
18413
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.integer_parameter_ranges[0].max_value #=> String
|
18414
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.integer_parameter_ranges[0].scaling_type #=> String, one of "Auto", "Linear", "Logarithmic", "ReverseLogarithmic"
|
18415
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.continuous_parameter_ranges #=> Array
|
18416
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.continuous_parameter_ranges[0].name #=> String
|
18417
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.continuous_parameter_ranges[0].min_value #=> String
|
18418
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.continuous_parameter_ranges[0].max_value #=> String
|
18419
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.continuous_parameter_ranges[0].scaling_type #=> String, one of "Auto", "Linear", "Logarithmic", "ReverseLogarithmic"
|
18420
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.categorical_parameter_ranges #=> Array
|
18421
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.categorical_parameter_ranges[0].name #=> String
|
18422
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.categorical_parameter_ranges[0].values #=> Array
|
18423
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.parameter_ranges.categorical_parameter_ranges[0].values[0] #=> String
|
18424
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.training_job_early_stopping_type #=> String, one of "Off", "Auto"
|
18425
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_config.tuning_job_completion_criteria.target_objective_metric_value #=> Float
|
18426
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.definition_name #=> String
|
18427
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.tuning_objective.type #=> String, one of "Maximize", "Minimize"
|
18428
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.tuning_objective.metric_name #=> String
|
18429
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.integer_parameter_ranges #=> Array
|
18430
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.integer_parameter_ranges[0].name #=> String
|
18431
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.integer_parameter_ranges[0].min_value #=> String
|
18432
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.integer_parameter_ranges[0].max_value #=> String
|
18433
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.integer_parameter_ranges[0].scaling_type #=> String, one of "Auto", "Linear", "Logarithmic", "ReverseLogarithmic"
|
18434
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.continuous_parameter_ranges #=> Array
|
18435
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.continuous_parameter_ranges[0].name #=> String
|
18436
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.continuous_parameter_ranges[0].min_value #=> String
|
18437
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.continuous_parameter_ranges[0].max_value #=> String
|
18438
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.continuous_parameter_ranges[0].scaling_type #=> String, one of "Auto", "Linear", "Logarithmic", "ReverseLogarithmic"
|
18439
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.categorical_parameter_ranges #=> Array
|
18440
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.categorical_parameter_ranges[0].name #=> String
|
18441
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.categorical_parameter_ranges[0].values #=> Array
|
18442
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_ranges.categorical_parameter_ranges[0].values[0] #=> String
|
18443
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.static_hyper_parameters #=> Hash
|
18444
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.static_hyper_parameters["HyperParameterKey"] #=> String
|
18445
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.algorithm_specification.training_image #=> String
|
18446
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
18447
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.algorithm_specification.algorithm_name #=> String
|
18448
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.algorithm_specification.metric_definitions #=> Array
|
18449
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.algorithm_specification.metric_definitions[0].name #=> String
|
18450
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.algorithm_specification.metric_definitions[0].regex #=> String
|
18451
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.role_arn #=> String
|
18452
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config #=> Array
|
18453
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].channel_name #=> String
|
18454
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
|
18455
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.s3_data_source.s3_uri #=> String
|
18456
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.s3_data_source.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
18457
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.s3_data_source.attribute_names #=> Array
|
18458
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.s3_data_source.attribute_names[0] #=> String
|
18459
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.s3_data_source.instance_group_names #=> Array
|
18460
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.s3_data_source.instance_group_names[0] #=> String
|
18461
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.file_system_data_source.file_system_id #=> String
|
18462
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.file_system_data_source.file_system_access_mode #=> String, one of "rw", "ro"
|
18463
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.file_system_data_source.file_system_type #=> String, one of "EFS", "FSxLustre"
|
18464
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].data_source.file_system_data_source.directory_path #=> String
|
18465
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].content_type #=> String
|
18466
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
18467
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
18468
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
18469
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.input_data_config[0].shuffle_config.seed #=> Integer
|
18470
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.vpc_config.security_group_ids #=> Array
|
18471
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.vpc_config.security_group_ids[0] #=> String
|
18472
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.vpc_config.subnets #=> Array
|
18473
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.vpc_config.subnets[0] #=> String
|
18474
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.output_data_config.kms_key_id #=> String
|
18475
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.output_data_config.s3_output_path #=> String
|
18476
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18477
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.instance_count #=> Integer
|
18478
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.volume_size_in_gb #=> Integer
|
18479
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.volume_kms_key_id #=> String
|
18480
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.instance_groups #=> Array
|
18481
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.instance_groups[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18482
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.instance_groups[0].instance_count #=> Integer
|
18483
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.instance_groups[0].instance_group_name #=> String
|
18484
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.resource_config.keep_alive_period_in_seconds #=> Integer
|
18485
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.stopping_condition.max_runtime_in_seconds #=> Integer
|
18486
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.stopping_condition.max_wait_time_in_seconds #=> Integer
|
18487
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.enable_network_isolation #=> Boolean
|
18488
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.enable_inter_container_traffic_encryption #=> Boolean
|
18489
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.enable_managed_spot_training #=> Boolean
|
18490
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.checkpoint_config.s3_uri #=> String
|
18491
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.checkpoint_config.local_path #=> String
|
18492
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.retry_strategy.maximum_retry_attempts #=> Integer
|
18493
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18494
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.instance_count #=> Integer
|
18495
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.volume_size_in_gb #=> Integer
|
18496
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.volume_kms_key_id #=> String
|
18497
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.allocation_strategy #=> String, one of "Prioritized"
|
18498
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs #=> Array
|
18499
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18500
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs[0].instance_count #=> Integer
|
18501
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definition.hyper_parameter_tuning_resource_config.instance_configs[0].volume_size_in_gb #=> Integer
|
18502
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions #=> Array
|
18503
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].definition_name #=> String
|
18504
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].tuning_objective.type #=> String, one of "Maximize", "Minimize"
|
18505
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].tuning_objective.metric_name #=> String
|
18506
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.integer_parameter_ranges #=> Array
|
18507
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.integer_parameter_ranges[0].name #=> String
|
18508
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.integer_parameter_ranges[0].min_value #=> String
|
18509
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.integer_parameter_ranges[0].max_value #=> String
|
18510
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.integer_parameter_ranges[0].scaling_type #=> String, one of "Auto", "Linear", "Logarithmic", "ReverseLogarithmic"
|
18511
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.continuous_parameter_ranges #=> Array
|
18512
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.continuous_parameter_ranges[0].name #=> String
|
18513
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.continuous_parameter_ranges[0].min_value #=> String
|
18514
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.continuous_parameter_ranges[0].max_value #=> String
|
18515
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.continuous_parameter_ranges[0].scaling_type #=> String, one of "Auto", "Linear", "Logarithmic", "ReverseLogarithmic"
|
18516
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.categorical_parameter_ranges #=> Array
|
18517
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.categorical_parameter_ranges[0].name #=> String
|
18518
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.categorical_parameter_ranges[0].values #=> Array
|
18519
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_ranges.categorical_parameter_ranges[0].values[0] #=> String
|
18520
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].static_hyper_parameters #=> Hash
|
18521
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].static_hyper_parameters["HyperParameterKey"] #=> String
|
18522
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].algorithm_specification.training_image #=> String
|
18523
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].algorithm_specification.training_input_mode #=> String, one of "Pipe", "File", "FastFile"
|
18524
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].algorithm_specification.algorithm_name #=> String
|
18525
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].algorithm_specification.metric_definitions #=> Array
|
18526
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].algorithm_specification.metric_definitions[0].name #=> String
|
18527
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].algorithm_specification.metric_definitions[0].regex #=> String
|
18528
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].role_arn #=> String
|
18529
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config #=> Array
|
18530
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].channel_name #=> String
|
18531
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
|
18532
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.s3_data_source.s3_uri #=> String
|
18533
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.s3_data_source.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
18534
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.s3_data_source.attribute_names #=> Array
|
18535
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.s3_data_source.attribute_names[0] #=> String
|
18536
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.s3_data_source.instance_group_names #=> Array
|
18537
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.s3_data_source.instance_group_names[0] #=> String
|
18538
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.file_system_data_source.file_system_id #=> String
|
18539
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.file_system_data_source.file_system_access_mode #=> String, one of "rw", "ro"
|
18540
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.file_system_data_source.file_system_type #=> String, one of "EFS", "FSxLustre"
|
18541
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].data_source.file_system_data_source.directory_path #=> String
|
18542
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].content_type #=> String
|
18543
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].compression_type #=> String, one of "None", "Gzip"
|
18544
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].record_wrapper_type #=> String, one of "None", "RecordIO"
|
18545
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].input_mode #=> String, one of "Pipe", "File", "FastFile"
|
18546
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].input_data_config[0].shuffle_config.seed #=> Integer
|
18547
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].vpc_config.security_group_ids #=> Array
|
18548
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].vpc_config.security_group_ids[0] #=> String
|
18549
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].vpc_config.subnets #=> Array
|
18550
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].vpc_config.subnets[0] #=> String
|
18551
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].output_data_config.kms_key_id #=> String
|
18552
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].output_data_config.s3_output_path #=> String
|
18553
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18554
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.instance_count #=> Integer
|
18555
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.volume_size_in_gb #=> Integer
|
18556
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.volume_kms_key_id #=> String
|
18557
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.instance_groups #=> Array
|
18558
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.instance_groups[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18559
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.instance_groups[0].instance_count #=> Integer
|
18560
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.instance_groups[0].instance_group_name #=> String
|
18561
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].resource_config.keep_alive_period_in_seconds #=> Integer
|
18562
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].stopping_condition.max_runtime_in_seconds #=> Integer
|
18563
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].stopping_condition.max_wait_time_in_seconds #=> Integer
|
18564
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].enable_network_isolation #=> Boolean
|
18565
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].enable_inter_container_traffic_encryption #=> Boolean
|
18566
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].enable_managed_spot_training #=> Boolean
|
18567
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].checkpoint_config.s3_uri #=> String
|
18568
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].checkpoint_config.local_path #=> String
|
18569
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].retry_strategy.maximum_retry_attempts #=> Integer
|
18570
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18571
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_count #=> Integer
|
18572
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.volume_size_in_gb #=> Integer
|
18573
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.volume_kms_key_id #=> String
|
18574
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.allocation_strategy #=> String, one of "Prioritized"
|
18575
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs #=> Array
|
18576
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs[0].instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "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.p3dn.24xlarge", "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5n.xlarge", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.16xlarge", "ml.g5.12xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.trn1.2xlarge", "ml.trn1.32xlarge"
|
18577
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs[0].instance_count #=> Integer
|
18578
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_definitions[0].hyper_parameter_tuning_resource_config.instance_configs[0].volume_size_in_gb #=> Integer
|
18579
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
|
18580
|
-
# resp.results[0].hyper_parameter_tuning_job.creation_time #=> Time
|
18581
|
-
# resp.results[0].hyper_parameter_tuning_job.hyper_parameter_tuning_end_time #=> Time
|
18582
|
-
# resp.results[0].hyper_parameter_tuning_job.last_modified_time #=> Time
|
18583
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_status_counters.completed #=> Integer
|
18584
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_status_counters.in_progress #=> Integer
|
18585
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_status_counters.retryable_error #=> Integer
|
18586
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_status_counters.non_retryable_error #=> Integer
|
18587
|
-
# resp.results[0].hyper_parameter_tuning_job.training_job_status_counters.stopped #=> Integer
|
18588
|
-
# resp.results[0].hyper_parameter_tuning_job.objective_status_counters.succeeded #=> Integer
|
18589
|
-
# resp.results[0].hyper_parameter_tuning_job.objective_status_counters.pending #=> Integer
|
18590
|
-
# resp.results[0].hyper_parameter_tuning_job.objective_status_counters.failed #=> Integer
|
18591
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.training_job_definition_name #=> String
|
18592
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.training_job_name #=> String
|
18593
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.training_job_arn #=> String
|
18594
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.tuning_job_name #=> String
|
18595
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.creation_time #=> Time
|
18596
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.training_start_time #=> Time
|
18597
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.training_end_time #=> Time
|
18598
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
18599
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.tuned_hyper_parameters #=> Hash
|
18600
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.tuned_hyper_parameters["HyperParameterKey"] #=> String
|
18601
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.failure_reason #=> String
|
18602
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.final_hyper_parameter_tuning_job_objective_metric.type #=> String, one of "Maximize", "Minimize"
|
18603
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.final_hyper_parameter_tuning_job_objective_metric.metric_name #=> String
|
18604
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.final_hyper_parameter_tuning_job_objective_metric.value #=> Float
|
18605
|
-
# resp.results[0].hyper_parameter_tuning_job.best_training_job.objective_status #=> String, one of "Succeeded", "Pending", "Failed"
|
18606
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.training_job_definition_name #=> String
|
18607
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.training_job_name #=> String
|
18608
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.training_job_arn #=> String
|
18609
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.tuning_job_name #=> String
|
18610
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.creation_time #=> Time
|
18611
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.training_start_time #=> Time
|
18612
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.training_end_time #=> Time
|
18613
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
18614
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.tuned_hyper_parameters #=> Hash
|
18615
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.tuned_hyper_parameters["HyperParameterKey"] #=> String
|
18616
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.failure_reason #=> String
|
18617
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.final_hyper_parameter_tuning_job_objective_metric.type #=> String, one of "Maximize", "Minimize"
|
18618
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.final_hyper_parameter_tuning_job_objective_metric.metric_name #=> String
|
18619
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.final_hyper_parameter_tuning_job_objective_metric.value #=> Float
|
18620
|
-
# resp.results[0].hyper_parameter_tuning_job.overall_best_training_job.objective_status #=> String, one of "Succeeded", "Pending", "Failed"
|
18621
|
-
# resp.results[0].hyper_parameter_tuning_job.warm_start_config.parent_hyper_parameter_tuning_jobs #=> Array
|
18622
|
-
# resp.results[0].hyper_parameter_tuning_job.warm_start_config.parent_hyper_parameter_tuning_jobs[0].hyper_parameter_tuning_job_name #=> String
|
18623
|
-
# resp.results[0].hyper_parameter_tuning_job.warm_start_config.warm_start_type #=> String, one of "IdenticalDataAndAlgorithm", "TransferLearning"
|
18624
|
-
# resp.results[0].hyper_parameter_tuning_job.failure_reason #=> String
|
18625
|
-
# resp.results[0].hyper_parameter_tuning_job.tags #=> Array
|
18626
|
-
# resp.results[0].hyper_parameter_tuning_job.tags[0].key #=> String
|
18627
|
-
# resp.results[0].hyper_parameter_tuning_job.tags[0].value #=> String
|
18628
|
-
# resp.next_token #=> String
|
18629
|
-
#
|
18630
19552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
|
18631
19553
|
#
|
18632
19554
|
# @overload search(params = {})
|
@@ -18755,6 +19677,34 @@ module Aws::SageMaker
|
|
18755
19677
|
req.send_request(options)
|
18756
19678
|
end
|
18757
19679
|
|
19680
|
+
# Starts an inference experiment.
|
19681
|
+
#
|
19682
|
+
# @option params [required, String] :name
|
19683
|
+
# The name of the inference experiment to start.
|
19684
|
+
#
|
19685
|
+
# @return [Types::StartInferenceExperimentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19686
|
+
#
|
19687
|
+
# * {Types::StartInferenceExperimentResponse#inference_experiment_arn #inference_experiment_arn} => String
|
19688
|
+
#
|
19689
|
+
# @example Request syntax with placeholder values
|
19690
|
+
#
|
19691
|
+
# resp = client.start_inference_experiment({
|
19692
|
+
# name: "InferenceExperimentName", # required
|
19693
|
+
# })
|
19694
|
+
#
|
19695
|
+
# @example Response structure
|
19696
|
+
#
|
19697
|
+
# resp.inference_experiment_arn #=> String
|
19698
|
+
#
|
19699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartInferenceExperiment AWS API Documentation
|
19700
|
+
#
|
19701
|
+
# @overload start_inference_experiment(params = {})
|
19702
|
+
# @param [Hash] params ({})
|
19703
|
+
def start_inference_experiment(params = {}, options = {})
|
19704
|
+
req = build_request(:start_inference_experiment, params)
|
19705
|
+
req.send_request(options)
|
19706
|
+
end
|
19707
|
+
|
18758
19708
|
# Starts a previously stopped monitoring schedule.
|
18759
19709
|
#
|
18760
19710
|
# <note markdown="1"> By default, when you successfully create a new schedule, the status of
|
@@ -18841,7 +19791,7 @@ module Aws::SageMaker
|
|
18841
19791
|
# @example Request syntax with placeholder values
|
18842
19792
|
#
|
18843
19793
|
# resp = client.start_pipeline_execution({
|
18844
|
-
# pipeline_name: "
|
19794
|
+
# pipeline_name: "PipelineNameOrArn", # required
|
18845
19795
|
# pipeline_execution_display_name: "PipelineExecutionName",
|
18846
19796
|
# pipeline_parameters: [
|
18847
19797
|
# {
|
@@ -18999,6 +19949,79 @@ module Aws::SageMaker
|
|
18999
19949
|
req.send_request(options)
|
19000
19950
|
end
|
19001
19951
|
|
19952
|
+
# Stops an inference experiment.
|
19953
|
+
#
|
19954
|
+
# @option params [required, String] :name
|
19955
|
+
# The name of the inference experiment to stop.
|
19956
|
+
#
|
19957
|
+
# @option params [required, Hash<String,String>] :model_variant_actions
|
19958
|
+
# Array of key-value pairs, with names of variants mapped to actions.
|
19959
|
+
# The possible actions are the following:
|
19960
|
+
#
|
19961
|
+
# * `Promote` - Promote the shadow variant to a production variant
|
19962
|
+
#
|
19963
|
+
# * `Remove` - Delete the variant
|
19964
|
+
#
|
19965
|
+
# * `Retain` - Keep the variant as it is
|
19966
|
+
#
|
19967
|
+
# @option params [Array<Types::ModelVariantConfig>] :desired_model_variants
|
19968
|
+
# An array of `ModelVariantConfig` objects. There is one for each
|
19969
|
+
# variant that you want to deploy after the inference experiment stops.
|
19970
|
+
# Each `ModelVariantConfig` describes the infrastructure configuration
|
19971
|
+
# for deploying the corresponding variant.
|
19972
|
+
#
|
19973
|
+
# @option params [String] :desired_state
|
19974
|
+
# The desired state of the experiment after stopping. The possible
|
19975
|
+
# states are the following:
|
19976
|
+
#
|
19977
|
+
# * `Completed`\: The experiment completed successfully
|
19978
|
+
#
|
19979
|
+
# * `Cancelled`\: The experiment was canceled
|
19980
|
+
#
|
19981
|
+
# @option params [String] :reason
|
19982
|
+
# The reason for stopping the experiment.
|
19983
|
+
#
|
19984
|
+
# @return [Types::StopInferenceExperimentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19985
|
+
#
|
19986
|
+
# * {Types::StopInferenceExperimentResponse#inference_experiment_arn #inference_experiment_arn} => String
|
19987
|
+
#
|
19988
|
+
# @example Request syntax with placeholder values
|
19989
|
+
#
|
19990
|
+
# resp = client.stop_inference_experiment({
|
19991
|
+
# name: "InferenceExperimentName", # required
|
19992
|
+
# model_variant_actions: { # required
|
19993
|
+
# "ModelVariantName" => "Retain", # accepts Retain, Remove, Promote
|
19994
|
+
# },
|
19995
|
+
# desired_model_variants: [
|
19996
|
+
# {
|
19997
|
+
# model_name: "ModelName", # required
|
19998
|
+
# variant_name: "ModelVariantName", # required
|
19999
|
+
# infrastructure_config: { # required
|
20000
|
+
# infrastructure_type: "RealTimeInference", # required, accepts RealTimeInference
|
20001
|
+
# real_time_inference_config: { # required
|
20002
|
+
# instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
20003
|
+
# instance_count: 1, # required
|
20004
|
+
# },
|
20005
|
+
# },
|
20006
|
+
# },
|
20007
|
+
# ],
|
20008
|
+
# desired_state: "Completed", # accepts Completed, Cancelled
|
20009
|
+
# reason: "InferenceExperimentStatusReason",
|
20010
|
+
# })
|
20011
|
+
#
|
20012
|
+
# @example Response structure
|
20013
|
+
#
|
20014
|
+
# resp.inference_experiment_arn #=> String
|
20015
|
+
#
|
20016
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopInferenceExperiment AWS API Documentation
|
20017
|
+
#
|
20018
|
+
# @overload stop_inference_experiment(params = {})
|
20019
|
+
# @param [Hash] params ({})
|
20020
|
+
def stop_inference_experiment(params = {}, options = {})
|
20021
|
+
req = build_request(:stop_inference_experiment, params)
|
20022
|
+
req.send_request(options)
|
20023
|
+
end
|
20024
|
+
|
19002
20025
|
# Stops an Inference Recommender job.
|
19003
20026
|
#
|
19004
20027
|
# @option params [required, String] :job_name
|
@@ -19546,6 +20569,9 @@ module Aws::SageMaker
|
|
19546
20569
|
# @option params [Types::DomainSettingsForUpdate] :domain_settings_for_update
|
19547
20570
|
# A collection of `DomainSettings` configuration values to update.
|
19548
20571
|
#
|
20572
|
+
# @option params [Types::DefaultSpaceSettings] :default_space_settings
|
20573
|
+
# The default settings used to create a space within the Domain.
|
20574
|
+
#
|
19549
20575
|
# @return [Types::UpdateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19550
20576
|
#
|
19551
20577
|
# * {Types::UpdateDomainResponse#domain_arn #domain_arn} => String
|
@@ -19570,6 +20596,11 @@ module Aws::SageMaker
|
|
19570
20596
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
19571
20597
|
# },
|
19572
20598
|
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
20599
|
+
# code_repositories: [
|
20600
|
+
# {
|
20601
|
+
# repository_url: "RepositoryUrl", # required
|
20602
|
+
# },
|
20603
|
+
# ],
|
19573
20604
|
# },
|
19574
20605
|
# kernel_gateway_app_settings: {
|
19575
20606
|
# default_resource_spec: {
|
@@ -19633,6 +20664,40 @@ module Aws::SageMaker
|
|
19633
20664
|
# },
|
19634
20665
|
# execution_role_identity_config: "USER_PROFILE_NAME", # accepts USER_PROFILE_NAME, DISABLED
|
19635
20666
|
# },
|
20667
|
+
# default_space_settings: {
|
20668
|
+
# execution_role: "RoleArn",
|
20669
|
+
# security_groups: ["SecurityGroupId"],
|
20670
|
+
# jupyter_server_app_settings: {
|
20671
|
+
# default_resource_spec: {
|
20672
|
+
# sage_maker_image_arn: "ImageArn",
|
20673
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
20674
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
20675
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
20676
|
+
# },
|
20677
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
20678
|
+
# code_repositories: [
|
20679
|
+
# {
|
20680
|
+
# repository_url: "RepositoryUrl", # required
|
20681
|
+
# },
|
20682
|
+
# ],
|
20683
|
+
# },
|
20684
|
+
# kernel_gateway_app_settings: {
|
20685
|
+
# default_resource_spec: {
|
20686
|
+
# sage_maker_image_arn: "ImageArn",
|
20687
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
20688
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
20689
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
20690
|
+
# },
|
20691
|
+
# custom_images: [
|
20692
|
+
# {
|
20693
|
+
# image_name: "ImageName", # required
|
20694
|
+
# image_version_number: 1,
|
20695
|
+
# app_image_config_name: "AppImageConfigName", # required
|
20696
|
+
# },
|
20697
|
+
# ],
|
20698
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
20699
|
+
# },
|
20700
|
+
# },
|
19636
20701
|
# })
|
19637
20702
|
#
|
19638
20703
|
# @example Response structure
|
@@ -19929,6 +20994,46 @@ module Aws::SageMaker
|
|
19929
20994
|
req.send_request(options)
|
19930
20995
|
end
|
19931
20996
|
|
20997
|
+
# Update a hub.
|
20998
|
+
#
|
20999
|
+
# @option params [required, String] :hub_name
|
21000
|
+
# The name of the hub to update.
|
21001
|
+
#
|
21002
|
+
# @option params [String] :hub_description
|
21003
|
+
# A description of the updated hub.
|
21004
|
+
#
|
21005
|
+
# @option params [String] :hub_display_name
|
21006
|
+
# The display name of the hub.
|
21007
|
+
#
|
21008
|
+
# @option params [Array<String>] :hub_search_keywords
|
21009
|
+
# The searchable keywords for the hub.
|
21010
|
+
#
|
21011
|
+
# @return [Types::UpdateHubResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21012
|
+
#
|
21013
|
+
# * {Types::UpdateHubResponse#hub_arn #hub_arn} => String
|
21014
|
+
#
|
21015
|
+
# @example Request syntax with placeholder values
|
21016
|
+
#
|
21017
|
+
# resp = client.update_hub({
|
21018
|
+
# hub_name: "HubName", # required
|
21019
|
+
# hub_description: "HubDescription",
|
21020
|
+
# hub_display_name: "HubDisplayName",
|
21021
|
+
# hub_search_keywords: ["HubSearchKeyword"],
|
21022
|
+
# })
|
21023
|
+
#
|
21024
|
+
# @example Response structure
|
21025
|
+
#
|
21026
|
+
# resp.hub_arn #=> String
|
21027
|
+
#
|
21028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateHub AWS API Documentation
|
21029
|
+
#
|
21030
|
+
# @overload update_hub(params = {})
|
21031
|
+
# @param [Hash] params ({})
|
21032
|
+
def update_hub(params = {}, options = {})
|
21033
|
+
req = build_request(:update_hub, params)
|
21034
|
+
req.send_request(options)
|
21035
|
+
end
|
21036
|
+
|
19932
21037
|
# Updates the properties of a SageMaker image. To change the image's
|
19933
21038
|
# tags, use the AddTags and DeleteTags APIs.
|
19934
21039
|
#
|
@@ -19976,6 +21081,154 @@ module Aws::SageMaker
|
|
19976
21081
|
req.send_request(options)
|
19977
21082
|
end
|
19978
21083
|
|
21084
|
+
# Updates an inference experiment that you created. The status of the
|
21085
|
+
# inference experiment has to be either `Created`, `Running`. For more
|
21086
|
+
# information on the status of an inference experiment, see
|
21087
|
+
# DescribeInferenceExperimentResponse$Status.
|
21088
|
+
#
|
21089
|
+
# @option params [required, String] :name
|
21090
|
+
# The name of the inference experiment to be updated.
|
21091
|
+
#
|
21092
|
+
# @option params [Types::InferenceExperimentSchedule] :schedule
|
21093
|
+
# The duration for which the inference experiment will run. If the
|
21094
|
+
# status of the inference experiment is `Created`, then you can update
|
21095
|
+
# both the start and end dates. If the status of the inference
|
21096
|
+
# experiment is `Running`, then you can update only the end date.
|
21097
|
+
#
|
21098
|
+
# @option params [String] :description
|
21099
|
+
# The description of the inference experiment.
|
21100
|
+
#
|
21101
|
+
# @option params [Array<Types::ModelVariantConfig>] :model_variants
|
21102
|
+
# An array of `ModelVariantConfig` objects. There is one for each
|
21103
|
+
# variant, whose infrastructure configuration you want to update.
|
21104
|
+
#
|
21105
|
+
# @option params [Types::InferenceExperimentDataStorageConfig] :data_storage_config
|
21106
|
+
# The Amazon S3 location and configuration for storing inference request
|
21107
|
+
# and response data.
|
21108
|
+
#
|
21109
|
+
# @option params [Types::ShadowModeConfig] :shadow_mode_config
|
21110
|
+
# The configuration of `ShadowMode` inference experiment type. Use this
|
21111
|
+
# field to specify a production variant which takes all the inference
|
21112
|
+
# requests, and a shadow variant to which Amazon SageMaker replicates a
|
21113
|
+
# percentage of the inference requests. For the shadow variant also
|
21114
|
+
# specify the percentage of requests that Amazon SageMaker replicates.
|
21115
|
+
#
|
21116
|
+
# @return [Types::UpdateInferenceExperimentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21117
|
+
#
|
21118
|
+
# * {Types::UpdateInferenceExperimentResponse#inference_experiment_arn #inference_experiment_arn} => String
|
21119
|
+
#
|
21120
|
+
# @example Request syntax with placeholder values
|
21121
|
+
#
|
21122
|
+
# resp = client.update_inference_experiment({
|
21123
|
+
# name: "InferenceExperimentName", # required
|
21124
|
+
# schedule: {
|
21125
|
+
# start_time: Time.now,
|
21126
|
+
# end_time: Time.now,
|
21127
|
+
# },
|
21128
|
+
# description: "InferenceExperimentDescription",
|
21129
|
+
# model_variants: [
|
21130
|
+
# {
|
21131
|
+
# model_name: "ModelName", # required
|
21132
|
+
# variant_name: "ModelVariantName", # required
|
21133
|
+
# infrastructure_config: { # required
|
21134
|
+
# infrastructure_type: "RealTimeInference", # required, accepts RealTimeInference
|
21135
|
+
# real_time_inference_config: { # required
|
21136
|
+
# instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
21137
|
+
# instance_count: 1, # required
|
21138
|
+
# },
|
21139
|
+
# },
|
21140
|
+
# },
|
21141
|
+
# ],
|
21142
|
+
# data_storage_config: {
|
21143
|
+
# destination: "DestinationS3Uri", # required
|
21144
|
+
# kms_key: "KmsKeyId",
|
21145
|
+
# content_type: {
|
21146
|
+
# csv_content_types: ["CsvContentType"],
|
21147
|
+
# json_content_types: ["JsonContentType"],
|
21148
|
+
# },
|
21149
|
+
# },
|
21150
|
+
# shadow_mode_config: {
|
21151
|
+
# source_model_variant_name: "ModelVariantName", # required
|
21152
|
+
# shadow_model_variants: [ # required
|
21153
|
+
# {
|
21154
|
+
# shadow_model_variant_name: "ModelVariantName", # required
|
21155
|
+
# sampling_percentage: 1, # required
|
21156
|
+
# },
|
21157
|
+
# ],
|
21158
|
+
# },
|
21159
|
+
# })
|
21160
|
+
#
|
21161
|
+
# @example Response structure
|
21162
|
+
#
|
21163
|
+
# resp.inference_experiment_arn #=> String
|
21164
|
+
#
|
21165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceExperiment AWS API Documentation
|
21166
|
+
#
|
21167
|
+
# @overload update_inference_experiment(params = {})
|
21168
|
+
# @param [Hash] params ({})
|
21169
|
+
def update_inference_experiment(params = {}, options = {})
|
21170
|
+
req = build_request(:update_inference_experiment, params)
|
21171
|
+
req.send_request(options)
|
21172
|
+
end
|
21173
|
+
|
21174
|
+
# Update an Amazon SageMaker Model Card.
|
21175
|
+
#
|
21176
|
+
# You cannot update both model card content and model card status in a
|
21177
|
+
# single call.
|
21178
|
+
#
|
21179
|
+
# @option params [required, String] :model_card_name
|
21180
|
+
# The name of the model card to update.
|
21181
|
+
#
|
21182
|
+
# @option params [String] :content
|
21183
|
+
# The updated model card content. Content must be in [model card JSON
|
21184
|
+
# schema][1] and provided as a string.
|
21185
|
+
#
|
21186
|
+
# When updating model card content, be sure to include the full content
|
21187
|
+
# and not just updated content.
|
21188
|
+
#
|
21189
|
+
#
|
21190
|
+
#
|
21191
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-cards-api-json-schema.html
|
21192
|
+
#
|
21193
|
+
# @option params [String] :model_card_status
|
21194
|
+
# The approval status of the model card within your organization.
|
21195
|
+
# Different organizations might have different criteria for model card
|
21196
|
+
# review and approval.
|
21197
|
+
#
|
21198
|
+
# * `Draft`\: The model card is a work in progress.
|
21199
|
+
#
|
21200
|
+
# * `PendingReview`\: The model card is pending review.
|
21201
|
+
#
|
21202
|
+
# * `Approved`\: The model card is approved.
|
21203
|
+
#
|
21204
|
+
# * `Archived`\: The model card is archived. No more updates should be
|
21205
|
+
# made to the model card, but it can still be exported.
|
21206
|
+
#
|
21207
|
+
# @return [Types::UpdateModelCardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21208
|
+
#
|
21209
|
+
# * {Types::UpdateModelCardResponse#model_card_arn #model_card_arn} => String
|
21210
|
+
#
|
21211
|
+
# @example Request syntax with placeholder values
|
21212
|
+
#
|
21213
|
+
# resp = client.update_model_card({
|
21214
|
+
# model_card_name: "EntityName", # required
|
21215
|
+
# content: "ModelCardContent",
|
21216
|
+
# model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
|
21217
|
+
# })
|
21218
|
+
#
|
21219
|
+
# @example Response structure
|
21220
|
+
#
|
21221
|
+
# resp.model_card_arn #=> String
|
21222
|
+
#
|
21223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelCard AWS API Documentation
|
21224
|
+
#
|
21225
|
+
# @overload update_model_card(params = {})
|
21226
|
+
# @param [Hash] params ({})
|
21227
|
+
def update_model_card(params = {}, options = {})
|
21228
|
+
req = build_request(:update_model_card, params)
|
21229
|
+
req.send_request(options)
|
21230
|
+
end
|
21231
|
+
|
19979
21232
|
# Updates a versioned model.
|
19980
21233
|
#
|
19981
21234
|
# @option params [required, String] :model_package_arn
|
@@ -20059,6 +21312,50 @@ module Aws::SageMaker
|
|
20059
21312
|
req.send_request(options)
|
20060
21313
|
end
|
20061
21314
|
|
21315
|
+
# Update the parameters of a model monitor alert.
|
21316
|
+
#
|
21317
|
+
# @option params [required, String] :monitoring_schedule_name
|
21318
|
+
# The name of a monitoring schedule.
|
21319
|
+
#
|
21320
|
+
# @option params [required, String] :monitoring_alert_name
|
21321
|
+
# The name of a monitoring alert.
|
21322
|
+
#
|
21323
|
+
# @option params [required, Integer] :datapoints_to_alert
|
21324
|
+
# Within `EvaluationPeriod`, how many execution failures will raise an
|
21325
|
+
# alert.
|
21326
|
+
#
|
21327
|
+
# @option params [required, Integer] :evaluation_period
|
21328
|
+
# The number of most recent monitoring executions to consider when
|
21329
|
+
# evaluating alert status.
|
21330
|
+
#
|
21331
|
+
# @return [Types::UpdateMonitoringAlertResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21332
|
+
#
|
21333
|
+
# * {Types::UpdateMonitoringAlertResponse#monitoring_schedule_arn #monitoring_schedule_arn} => String
|
21334
|
+
# * {Types::UpdateMonitoringAlertResponse#monitoring_alert_name #monitoring_alert_name} => String
|
21335
|
+
#
|
21336
|
+
# @example Request syntax with placeholder values
|
21337
|
+
#
|
21338
|
+
# resp = client.update_monitoring_alert({
|
21339
|
+
# monitoring_schedule_name: "MonitoringScheduleName", # required
|
21340
|
+
# monitoring_alert_name: "MonitoringAlertName", # required
|
21341
|
+
# datapoints_to_alert: 1, # required
|
21342
|
+
# evaluation_period: 1, # required
|
21343
|
+
# })
|
21344
|
+
#
|
21345
|
+
# @example Response structure
|
21346
|
+
#
|
21347
|
+
# resp.monitoring_schedule_arn #=> String
|
21348
|
+
# resp.monitoring_alert_name #=> String
|
21349
|
+
#
|
21350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMonitoringAlert AWS API Documentation
|
21351
|
+
#
|
21352
|
+
# @overload update_monitoring_alert(params = {})
|
21353
|
+
# @param [Hash] params ({})
|
21354
|
+
def update_monitoring_alert(params = {}, options = {})
|
21355
|
+
req = build_request(:update_monitoring_alert, params)
|
21356
|
+
req.send_request(options)
|
21357
|
+
end
|
21358
|
+
|
20062
21359
|
# Updates a previously created schedule.
|
20063
21360
|
#
|
20064
21361
|
# @option params [required, String] :monitoring_schedule_name
|
@@ -20568,6 +21865,73 @@ module Aws::SageMaker
|
|
20568
21865
|
req.send_request(options)
|
20569
21866
|
end
|
20570
21867
|
|
21868
|
+
# Updates the settings of a space.
|
21869
|
+
#
|
21870
|
+
# @option params [required, String] :domain_id
|
21871
|
+
# The ID of the associated Domain.
|
21872
|
+
#
|
21873
|
+
# @option params [required, String] :space_name
|
21874
|
+
# The name of the space.
|
21875
|
+
#
|
21876
|
+
# @option params [Types::SpaceSettings] :space_settings
|
21877
|
+
# A collection of space settings.
|
21878
|
+
#
|
21879
|
+
# @return [Types::UpdateSpaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21880
|
+
#
|
21881
|
+
# * {Types::UpdateSpaceResponse#space_arn #space_arn} => String
|
21882
|
+
#
|
21883
|
+
# @example Request syntax with placeholder values
|
21884
|
+
#
|
21885
|
+
# resp = client.update_space({
|
21886
|
+
# domain_id: "DomainId", # required
|
21887
|
+
# space_name: "SpaceName", # required
|
21888
|
+
# space_settings: {
|
21889
|
+
# jupyter_server_app_settings: {
|
21890
|
+
# default_resource_spec: {
|
21891
|
+
# sage_maker_image_arn: "ImageArn",
|
21892
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
21893
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
21894
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
21895
|
+
# },
|
21896
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
21897
|
+
# code_repositories: [
|
21898
|
+
# {
|
21899
|
+
# repository_url: "RepositoryUrl", # required
|
21900
|
+
# },
|
21901
|
+
# ],
|
21902
|
+
# },
|
21903
|
+
# kernel_gateway_app_settings: {
|
21904
|
+
# default_resource_spec: {
|
21905
|
+
# sage_maker_image_arn: "ImageArn",
|
21906
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
21907
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
|
21908
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
21909
|
+
# },
|
21910
|
+
# custom_images: [
|
21911
|
+
# {
|
21912
|
+
# image_name: "ImageName", # required
|
21913
|
+
# image_version_number: 1,
|
21914
|
+
# app_image_config_name: "AppImageConfigName", # required
|
21915
|
+
# },
|
21916
|
+
# ],
|
21917
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
21918
|
+
# },
|
21919
|
+
# },
|
21920
|
+
# })
|
21921
|
+
#
|
21922
|
+
# @example Response structure
|
21923
|
+
#
|
21924
|
+
# resp.space_arn #=> String
|
21925
|
+
#
|
21926
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateSpace AWS API Documentation
|
21927
|
+
#
|
21928
|
+
# @overload update_space(params = {})
|
21929
|
+
# @param [Hash] params ({})
|
21930
|
+
def update_space(params = {}, options = {})
|
21931
|
+
req = build_request(:update_space, params)
|
21932
|
+
req.send_request(options)
|
21933
|
+
end
|
21934
|
+
|
20571
21935
|
# Update a model training job to request a new Debugger profiling
|
20572
21936
|
# configuration or to change warm pool retention length.
|
20573
21937
|
#
|
@@ -20576,12 +21940,12 @@ module Aws::SageMaker
|
|
20576
21940
|
# configuration.
|
20577
21941
|
#
|
20578
21942
|
# @option params [Types::ProfilerConfigForUpdate] :profiler_config
|
20579
|
-
# Configuration information for Debugger system
|
20580
|
-
# profiling, and storage paths.
|
21943
|
+
# Configuration information for Amazon SageMaker Debugger system
|
21944
|
+
# monitoring, framework profiling, and storage paths.
|
20581
21945
|
#
|
20582
21946
|
# @option params [Array<Types::ProfilerRuleConfiguration>] :profiler_rule_configurations
|
20583
|
-
# Configuration information for Debugger rules for
|
20584
|
-
# framework metrics.
|
21947
|
+
# Configuration information for Amazon SageMaker Debugger rules for
|
21948
|
+
# profiling system and framework metrics.
|
20585
21949
|
#
|
20586
21950
|
# @option params [Types::ResourceConfigForUpdate] :resource_config
|
20587
21951
|
# The training job `ResourceConfig` to update warm pool retention
|
@@ -20794,6 +22158,11 @@ module Aws::SageMaker
|
|
20794
22158
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
20795
22159
|
# },
|
20796
22160
|
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
22161
|
+
# code_repositories: [
|
22162
|
+
# {
|
22163
|
+
# repository_url: "RepositoryUrl", # required
|
22164
|
+
# },
|
22165
|
+
# ],
|
20797
22166
|
# },
|
20798
22167
|
# kernel_gateway_app_settings: {
|
20799
22168
|
# default_resource_spec: {
|
@@ -21094,7 +22463,7 @@ module Aws::SageMaker
|
|
21094
22463
|
params: params,
|
21095
22464
|
config: config)
|
21096
22465
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
21097
|
-
context[:gem_version] = '1.
|
22466
|
+
context[:gem_version] = '1.155.0'
|
21098
22467
|
Seahorse::Client::Request.new(handlers, context)
|
21099
22468
|
end
|
21100
22469
|
|