aws-sdk-sagemaker 1.27.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +86 -74
- data/lib/aws-sdk-sagemaker/client_api.rb +3 -0
- data/lib/aws-sdk-sagemaker/types.rb +197 -182
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 263c69bf59fd7693d9b46864fdcf4dd30eea7f3a
|
4
|
+
data.tar.gz: cbd7b6e26c3bc871105ced7948e2c6d7f5344a2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6b64d62e78502610144d2612a687e3e4aadfce2bdc0bc81f67e942e6481004b6f9a2962cdac6cef1a4ea443adafabe1e04a30f713500f242b3de68e14b087aa
|
7
|
+
data.tar.gz: bfc77070742c68d9a440204c8b9f41973a70c459fbd53f8ca2ea7eb0b84a6aa86781af9a9997d2a13ef1b2a14b71592abd47b650d4b4d73fd4a17e142f2954f4
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -331,7 +331,7 @@ module Aws::SageMaker
|
|
331
331
|
#
|
332
332
|
# @option params [Boolean] :certify_for_marketplace
|
333
333
|
# Whether to certify the algorithm so that it can be listed in AWS
|
334
|
-
#
|
334
|
+
# Marketplace.
|
335
335
|
#
|
336
336
|
# @return [Types::CreateAlgorithmOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
337
337
|
#
|
@@ -501,23 +501,23 @@ module Aws::SageMaker
|
|
501
501
|
req.send_request(options)
|
502
502
|
end
|
503
503
|
|
504
|
-
#
|
504
|
+
# Creates a Git repository as a resource in your Amazon SageMaker
|
505
505
|
# account. You can associate the repository with notebook instances so
|
506
|
-
# that you can use
|
507
|
-
#
|
506
|
+
# that you can use Git source control for the notebooks you create. The
|
507
|
+
# Git repository is a resource in your Amazon SageMaker account, so it
|
508
508
|
# can be associated with more than one notebook instance, and it
|
509
509
|
# persists independently from the lifecycle of any notebook instances it
|
510
510
|
# is associated with.
|
511
511
|
#
|
512
512
|
# The repository can be hosted either in [AWS CodeCommit][1] or in any
|
513
|
-
# other
|
513
|
+
# other Git repository.
|
514
514
|
#
|
515
515
|
#
|
516
516
|
#
|
517
517
|
# [1]: http://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html
|
518
518
|
#
|
519
519
|
# @option params [required, String] :code_repository_name
|
520
|
-
# The name of the
|
520
|
+
# The name of the Git repository. The name must have 1 to 63 characters.
|
521
521
|
# Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
522
522
|
#
|
523
523
|
# @option params [required, Types::GitConfig] :git_config
|
@@ -872,19 +872,19 @@ module Aws::SageMaker
|
|
872
872
|
# resource configuration, and stopping condition.
|
873
873
|
#
|
874
874
|
# @option params [Types::HyperParameterTuningJobWarmStartConfig] :warm_start_config
|
875
|
-
# Specifies configuration for starting the hyperparameter tuning job
|
875
|
+
# Specifies the configuration for starting the hyperparameter tuning job
|
876
876
|
# using one or more previous tuning jobs as a starting point. The
|
877
877
|
# results of previous tuning jobs are used to inform which combinations
|
878
878
|
# of hyperparameters to search over in the new tuning job.
|
879
879
|
#
|
880
880
|
# All training jobs launched by the new hyperparameter tuning job are
|
881
881
|
# evaluated by using the objective metric. If you specify
|
882
|
-
# `IDENTICAL_DATA_AND_ALGORITHM` as the `WarmStartType` for the
|
883
|
-
# start configuration, the training job that performs the best in
|
884
|
-
# new tuning job is compared to the best training jobs from the
|
885
|
-
# tuning jobs. From these, the training job that performs the
|
886
|
-
# measured by the objective metric is returned as the overall
|
887
|
-
# training job.
|
882
|
+
# `IDENTICAL_DATA_AND_ALGORITHM` as the `WarmStartType` value for the
|
883
|
+
# warm start configuration, the training job that performs the best in
|
884
|
+
# the new tuning job is compared to the best training jobs from the
|
885
|
+
# parent tuning jobs. From these, the training job that performs the
|
886
|
+
# best as measured by the objective metric is returned as the overall
|
887
|
+
# best training job.
|
888
888
|
#
|
889
889
|
# <note markdown="1"> All training jobs launched by parent hyperparameter tuning jobs and
|
890
890
|
# the new hyperparameter tuning jobs count against the limit of training
|
@@ -1000,6 +1000,7 @@ module Aws::SageMaker
|
|
1000
1000
|
# max_runtime_in_seconds: 1,
|
1001
1001
|
# },
|
1002
1002
|
# enable_network_isolation: false,
|
1003
|
+
# enable_inter_container_traffic_encryption: false,
|
1003
1004
|
# },
|
1004
1005
|
# warm_start_config: {
|
1005
1006
|
# parent_hyper_parameter_tuning_jobs: [ # required
|
@@ -1625,7 +1626,7 @@ module Aws::SageMaker
|
|
1625
1626
|
# @option params [Array<String>] :accelerator_types
|
1626
1627
|
# A list of Elastic Inference (EI) instance types to associate with this
|
1627
1628
|
# notebook instance. Currently, only one instance type can be associated
|
1628
|
-
# with a notebook
|
1629
|
+
# with a notebook instance. For more information, see [Using Elastic
|
1629
1630
|
# Inference in Amazon SageMaker][1].
|
1630
1631
|
#
|
1631
1632
|
#
|
@@ -1633,10 +1634,10 @@ module Aws::SageMaker
|
|
1633
1634
|
# [1]: http://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
|
1634
1635
|
#
|
1635
1636
|
# @option params [String] :default_code_repository
|
1636
|
-
# A
|
1637
|
-
# default code repository. This can be either the name of a
|
1638
|
-
# repository stored as a resource in your account, or the URL of a
|
1639
|
-
# repository in [AWS CodeCommit][1] or in any other
|
1637
|
+
# A Git repository to associate with the notebook instance as its
|
1638
|
+
# default code repository. This can be either the name of a Git
|
1639
|
+
# repository stored as a resource in your account, or the URL of a Git
|
1640
|
+
# repository in [AWS CodeCommit][1] or in any other Git repository. When
|
1640
1641
|
# you open a notebook instance, it opens in the directory that contains
|
1641
1642
|
# this repository. For more information, see [Associating Git
|
1642
1643
|
# Repositories with Amazon SageMaker Notebook Instances][2].
|
@@ -1647,13 +1648,13 @@ module Aws::SageMaker
|
|
1647
1648
|
# [2]: http://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html
|
1648
1649
|
#
|
1649
1650
|
# @option params [Array<String>] :additional_code_repositories
|
1650
|
-
# An array of up to
|
1651
|
-
# instance. These can be either the names of
|
1652
|
-
# resources in your account, or the URL of
|
1653
|
-
# CodeCommit][1] or in any other
|
1654
|
-
# cloned at the same level as the default repository of your
|
1655
|
-
# instance. For more information, see [Associating Git
|
1656
|
-
# Amazon SageMaker Notebook Instances][2].
|
1651
|
+
# An array of up to three Git repositories to associate with the
|
1652
|
+
# notebook instance. These can be either the names of Git repositories
|
1653
|
+
# stored as resources in your account, or the URL of Git repositories in
|
1654
|
+
# [AWS CodeCommit][1] or in any other Git repository. These repositories
|
1655
|
+
# are cloned at the same level as the default repository of your
|
1656
|
+
# notebook instance. For more information, see [Associating Git
|
1657
|
+
# Repositories with Amazon SageMaker Notebook Instances][2].
|
1657
1658
|
#
|
1658
1659
|
#
|
1659
1660
|
#
|
@@ -1982,9 +1983,9 @@ module Aws::SageMaker
|
|
1982
1983
|
# @option params [Boolean] :enable_network_isolation
|
1983
1984
|
# Isolates the training container. No inbound or outbound network calls
|
1984
1985
|
# can be made, except for calls between peers within a training cluster
|
1985
|
-
# for distributed training. If network isolation
|
1986
|
+
# for distributed training. If you enable network isolation for training
|
1986
1987
|
# jobs that are configured to use a VPC, Amazon SageMaker downloads and
|
1987
|
-
# uploads customer data and model artifacts through the
|
1988
|
+
# uploads customer data and model artifacts through the specified VPC,
|
1988
1989
|
# but the training container does not have network access.
|
1989
1990
|
#
|
1990
1991
|
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support network
|
@@ -1992,6 +1993,12 @@ module Aws::SageMaker
|
|
1992
1993
|
#
|
1993
1994
|
# </note>
|
1994
1995
|
#
|
1996
|
+
# @option params [Boolean] :enable_inter_container_traffic_encryption
|
1997
|
+
# To encrypt all communications between ML compute instances in
|
1998
|
+
# distributed training, choose `True`,. Encryption provides greater
|
1999
|
+
# security for distributed training, but training can take longer
|
2000
|
+
# because of additional communications between ML compute instances.
|
2001
|
+
#
|
1995
2002
|
# @return [Types::CreateTrainingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1996
2003
|
#
|
1997
2004
|
# * {Types::CreateTrainingJobResponse#training_job_arn #training_job_arn} => String
|
@@ -2059,6 +2066,7 @@ module Aws::SageMaker
|
|
2059
2066
|
# },
|
2060
2067
|
# ],
|
2061
2068
|
# enable_network_isolation: false,
|
2069
|
+
# enable_inter_container_traffic_encryption: false,
|
2062
2070
|
# })
|
2063
2071
|
#
|
2064
2072
|
# @example Response structure
|
@@ -2117,11 +2125,11 @@ module Aws::SageMaker
|
|
2117
2125
|
# within an AWS Region in an AWS account.
|
2118
2126
|
#
|
2119
2127
|
# @option params [Integer] :max_concurrent_transforms
|
2120
|
-
# The maximum number of parallel requests that can be sent to
|
2121
|
-
#
|
2128
|
+
# The maximum number of parallel requests that can be sent to an
|
2129
|
+
# algorithm container on an instance. This is good for algorithms that
|
2122
2130
|
# implement multiple workers on larger instances . The default value is
|
2123
2131
|
# `1`. To allow Amazon SageMaker to determine the appropriate number for
|
2124
|
-
# `MaxConcurrentTransforms`, set the value
|
2132
|
+
# `MaxConcurrentTransforms`, do not set the value in the API.
|
2125
2133
|
#
|
2126
2134
|
# @option params [Integer] :max_payload_in_mb
|
2127
2135
|
# The maximum payload size allowed, in MB. A payload is the data portion
|
@@ -2139,16 +2147,17 @@ module Aws::SageMaker
|
|
2139
2147
|
# SageMaker built-in algorithms do not support this feature.
|
2140
2148
|
#
|
2141
2149
|
# @option params [String] :batch_strategy
|
2142
|
-
# Determines the number of records
|
2143
|
-
#
|
2144
|
-
# `
|
2145
|
-
#
|
2146
|
-
#
|
2147
|
-
#
|
2148
|
-
#
|
2149
|
-
#
|
2150
|
-
#
|
2151
|
-
#
|
2150
|
+
# Determines the number of records to include in a mini-batch. If you
|
2151
|
+
# want to include only one record in a mini-batch, specify
|
2152
|
+
# `SingleRecord`.. If you want mini-batches to contain a maximum of the
|
2153
|
+
# number of records specified in the `MaxPayloadInMB` parameter, specify
|
2154
|
+
# `MultiRecord`.
|
2155
|
+
#
|
2156
|
+
# If you set `SplitType` to `Line` and `BatchStrategy` to `MultiRecord`,
|
2157
|
+
# a batch transform automatically splits your input data into the
|
2158
|
+
# specified payload size. There's no need to split the dataset into
|
2159
|
+
# smaller files or to use larger payload sizes unless the records in
|
2160
|
+
# your dataset are very large.
|
2152
2161
|
#
|
2153
2162
|
# @option params [Hash<String,String>] :environment
|
2154
2163
|
# The environment variables to set in the Docker container. We support
|
@@ -2165,9 +2174,9 @@ module Aws::SageMaker
|
|
2165
2174
|
# count, to use for the transform job.
|
2166
2175
|
#
|
2167
2176
|
# @option params [Array<Types::Tag>] :tags
|
2168
|
-
# An array of key-value pairs.
|
2169
|
-
#
|
2170
|
-
#
|
2177
|
+
# (Optional) An array of key-value pairs. For more information, see
|
2178
|
+
# [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
|
2179
|
+
# Management User Guide*.
|
2171
2180
|
#
|
2172
2181
|
#
|
2173
2182
|
#
|
@@ -2318,10 +2327,10 @@ module Aws::SageMaker
|
|
2318
2327
|
req.send_request(options)
|
2319
2328
|
end
|
2320
2329
|
|
2321
|
-
# Deletes the specified
|
2330
|
+
# Deletes the specified Git repository from your account.
|
2322
2331
|
#
|
2323
2332
|
# @option params [required, String] :code_repository_name
|
2324
|
-
# The name of the
|
2333
|
+
# The name of the Git repository to delete.
|
2325
2334
|
#
|
2326
2335
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2327
2336
|
#
|
@@ -2707,10 +2716,10 @@ module Aws::SageMaker
|
|
2707
2716
|
req.send_request(options)
|
2708
2717
|
end
|
2709
2718
|
|
2710
|
-
# Gets details about the specified
|
2719
|
+
# Gets details about the specified Git repository.
|
2711
2720
|
#
|
2712
2721
|
# @option params [required, String] :code_repository_name
|
2713
|
-
# The name of the
|
2722
|
+
# The name of the Git repository to describe.
|
2714
2723
|
#
|
2715
2724
|
# @return [Types::DescribeCodeRepositoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2716
2725
|
#
|
@@ -2981,6 +2990,7 @@ module Aws::SageMaker
|
|
2981
2990
|
# resp.training_job_definition.resource_config.volume_kms_key_id #=> String
|
2982
2991
|
# resp.training_job_definition.stopping_condition.max_runtime_in_seconds #=> Integer
|
2983
2992
|
# resp.training_job_definition.enable_network_isolation #=> Boolean
|
2993
|
+
# resp.training_job_definition.enable_inter_container_traffic_encryption #=> Boolean
|
2984
2994
|
# resp.hyper_parameter_tuning_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
|
2985
2995
|
# resp.creation_time #=> Time
|
2986
2996
|
# resp.hyper_parameter_tuning_end_time #=> Time
|
@@ -3449,6 +3459,7 @@ module Aws::SageMaker
|
|
3449
3459
|
# * {Types::DescribeTrainingJobResponse#secondary_status_transitions #secondary_status_transitions} => Array<Types::SecondaryStatusTransition>
|
3450
3460
|
# * {Types::DescribeTrainingJobResponse#final_metric_data_list #final_metric_data_list} => Array<Types::MetricData>
|
3451
3461
|
# * {Types::DescribeTrainingJobResponse#enable_network_isolation #enable_network_isolation} => Boolean
|
3462
|
+
# * {Types::DescribeTrainingJobResponse#enable_inter_container_traffic_encryption #enable_inter_container_traffic_encryption} => Boolean
|
3452
3463
|
#
|
3453
3464
|
# @example Request syntax with placeholder values
|
3454
3465
|
#
|
@@ -3512,6 +3523,7 @@ module Aws::SageMaker
|
|
3512
3523
|
# resp.final_metric_data_list[0].value #=> Float
|
3513
3524
|
# resp.final_metric_data_list[0].timestamp #=> Time
|
3514
3525
|
# resp.enable_network_isolation #=> Boolean
|
3526
|
+
# resp.enable_inter_container_traffic_encryption #=> Boolean
|
3515
3527
|
#
|
3516
3528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingJob AWS API Documentation
|
3517
3529
|
#
|
@@ -3737,34 +3749,34 @@ module Aws::SageMaker
|
|
3737
3749
|
req.send_request(options)
|
3738
3750
|
end
|
3739
3751
|
|
3740
|
-
# Gets a list of the
|
3752
|
+
# Gets a list of the Git repositories in your account.
|
3741
3753
|
#
|
3742
3754
|
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
3743
|
-
# A filter that returns only
|
3755
|
+
# A filter that returns only Git repositories that were created after
|
3744
3756
|
# the specified time.
|
3745
3757
|
#
|
3746
3758
|
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
3747
|
-
# A filter that returns only
|
3759
|
+
# A filter that returns only Git repositories that were created before
|
3748
3760
|
# the specified time.
|
3749
3761
|
#
|
3750
3762
|
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
|
3751
|
-
# A filter that returns only
|
3763
|
+
# A filter that returns only Git repositories that were last modified
|
3752
3764
|
# after the specified time.
|
3753
3765
|
#
|
3754
3766
|
# @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
|
3755
|
-
# A filter that returns only
|
3767
|
+
# A filter that returns only Git repositories that were last modified
|
3756
3768
|
# before the specified time.
|
3757
3769
|
#
|
3758
3770
|
# @option params [Integer] :max_results
|
3759
|
-
# The maximum number of
|
3771
|
+
# The maximum number of Git repositories to return in the response.
|
3760
3772
|
#
|
3761
3773
|
# @option params [String] :name_contains
|
3762
|
-
# A string in the
|
3774
|
+
# A string in the Git repositories name. This filter returns only
|
3763
3775
|
# repositories whose name contains the specified string.
|
3764
3776
|
#
|
3765
3777
|
# @option params [String] :next_token
|
3766
3778
|
# If the result of a `ListCodeRepositoriesOutput` request was truncated,
|
3767
|
-
# the response includes a `NextToken`. To get the next set of
|
3779
|
+
# the response includes a `NextToken`. To get the next set of Git
|
3768
3780
|
# repositories, use the token in the next request.
|
3769
3781
|
#
|
3770
3782
|
# @option params [String] :sort_by
|
@@ -4557,14 +4569,14 @@ module Aws::SageMaker
|
|
4557
4569
|
# name that contains the specified string.
|
4558
4570
|
#
|
4559
4571
|
# @option params [String] :default_code_repository_contains
|
4560
|
-
# A string in the name or URL of a
|
4572
|
+
# A string in the name or URL of a Git repository associated with this
|
4561
4573
|
# notebook instance. This filter returns only notebook instances
|
4562
4574
|
# associated with a git repository with a name that contains the
|
4563
4575
|
# specified string.
|
4564
4576
|
#
|
4565
4577
|
# @option params [String] :additional_code_repository_equals
|
4566
4578
|
# A filter that returns only notebook instances with associated with the
|
4567
|
-
# specified git
|
4579
|
+
# specified git repository.
|
4568
4580
|
#
|
4569
4581
|
# @return [Types::ListNotebookInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4570
4582
|
#
|
@@ -5006,7 +5018,7 @@ module Aws::SageMaker
|
|
5006
5018
|
# experience.
|
5007
5019
|
#
|
5008
5020
|
# @option params [required, Types::UiTemplate] :ui_template
|
5009
|
-
# A `Template`object containing the worker UI template to render.
|
5021
|
+
# A `Template` object containing the worker UI template to render.
|
5010
5022
|
#
|
5011
5023
|
# @option params [required, Types::RenderableTask] :task
|
5012
5024
|
# A `RenderableTask` object containing a representative task to render.
|
@@ -5400,10 +5412,10 @@ module Aws::SageMaker
|
|
5400
5412
|
req.send_request(options)
|
5401
5413
|
end
|
5402
5414
|
|
5403
|
-
# Updates the specified
|
5415
|
+
# Updates the specified Git repository with the specified values.
|
5404
5416
|
#
|
5405
5417
|
# @option params [required, String] :code_repository_name
|
5406
|
-
# The name of the
|
5418
|
+
# The name of the Git repository to update.
|
5407
5419
|
#
|
5408
5420
|
# @option params [Types::GitConfigForUpdate] :git_config
|
5409
5421
|
# The configuration of the git repository, including the URL and the
|
@@ -5579,10 +5591,10 @@ module Aws::SageMaker
|
|
5579
5591
|
# instance. The default value is 5 GB.
|
5580
5592
|
#
|
5581
5593
|
# @option params [String] :default_code_repository
|
5582
|
-
# The
|
5583
|
-
# default code repository. This can be either the name of a
|
5584
|
-
# repository stored as a resource in your account, or the URL of a
|
5585
|
-
# repository in [AWS CodeCommit][1] or in any other
|
5594
|
+
# The Git repository to associate with the notebook instance as its
|
5595
|
+
# default code repository. This can be either the name of a Git
|
5596
|
+
# repository stored as a resource in your account, or the URL of a Git
|
5597
|
+
# repository in [AWS CodeCommit][1] or in any other Git repository. When
|
5586
5598
|
# you open a notebook instance, it opens in the directory that contains
|
5587
5599
|
# this repository. For more information, see [Associating Git
|
5588
5600
|
# Repositories with Amazon SageMaker Notebook Instances][2].
|
@@ -5593,13 +5605,13 @@ module Aws::SageMaker
|
|
5593
5605
|
# [2]: http://docs.aws.amazon.com/sagemaker/latest/dg/nbi-git-repo.html
|
5594
5606
|
#
|
5595
5607
|
# @option params [Array<String>] :additional_code_repositories
|
5596
|
-
# An array of up to
|
5597
|
-
# instance. These can be either the names of
|
5598
|
-
# resources in your account, or the URL of
|
5599
|
-
# CodeCommit][1] or in any other
|
5600
|
-
# cloned at the same level as the default repository of
|
5601
|
-
# instance. For more information, see [Associating Git
|
5602
|
-
# Amazon SageMaker Notebook Instances][2].
|
5608
|
+
# An array of up to three Git repositories to associate with the
|
5609
|
+
# notebook instance. These can be either the names of Git repositories
|
5610
|
+
# stored as resources in your account, or the URL of Git repositories in
|
5611
|
+
# [AWS CodeCommit][1] or in any other Git repository.. These
|
5612
|
+
# repositories are cloned at the same level as the default repository of
|
5613
|
+
# your notebook instance. For more information, see [Associating Git
|
5614
|
+
# Repositories with Amazon SageMaker Notebook Instances][2].
|
5603
5615
|
#
|
5604
5616
|
#
|
5605
5617
|
#
|
@@ -5621,11 +5633,11 @@ module Aws::SageMaker
|
|
5621
5633
|
# this notebook instance.
|
5622
5634
|
#
|
5623
5635
|
# @option params [Boolean] :disassociate_default_code_repository
|
5624
|
-
# The name or URL of the default
|
5636
|
+
# The name or URL of the default Git repository to remove from this
|
5625
5637
|
# notebook instance.
|
5626
5638
|
#
|
5627
5639
|
# @option params [Boolean] :disassociate_additional_code_repositories
|
5628
|
-
# A list of names or URLs of the default
|
5640
|
+
# A list of names or URLs of the default Git repositories to remove from
|
5629
5641
|
# this notebook instance.
|
5630
5642
|
#
|
5631
5643
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -5767,7 +5779,7 @@ module Aws::SageMaker
|
|
5767
5779
|
params: params,
|
5768
5780
|
config: config)
|
5769
5781
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
5770
|
-
context[:gem_version] = '1.
|
5782
|
+
context[:gem_version] = '1.28.0'
|
5771
5783
|
Seahorse::Client::Request.new(handlers, context)
|
5772
5784
|
end
|
5773
5785
|
|
@@ -790,6 +790,7 @@ module Aws::SageMaker
|
|
790
790
|
CreateTrainingJobRequest.add_member(:stopping_condition, Shapes::ShapeRef.new(shape: StoppingCondition, required: true, location_name: "StoppingCondition"))
|
791
791
|
CreateTrainingJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
792
792
|
CreateTrainingJobRequest.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
793
|
+
CreateTrainingJobRequest.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
793
794
|
CreateTrainingJobRequest.struct_class = Types::CreateTrainingJobRequest
|
794
795
|
|
795
796
|
CreateTrainingJobResponse.add_member(:training_job_arn, Shapes::ShapeRef.new(shape: TrainingJobArn, required: true, location_name: "TrainingJobArn"))
|
@@ -1069,6 +1070,7 @@ module Aws::SageMaker
|
|
1069
1070
|
DescribeTrainingJobResponse.add_member(:secondary_status_transitions, Shapes::ShapeRef.new(shape: SecondaryStatusTransitions, location_name: "SecondaryStatusTransitions"))
|
1070
1071
|
DescribeTrainingJobResponse.add_member(:final_metric_data_list, Shapes::ShapeRef.new(shape: FinalMetricDataList, location_name: "FinalMetricDataList"))
|
1071
1072
|
DescribeTrainingJobResponse.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
1073
|
+
DescribeTrainingJobResponse.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
1072
1074
|
DescribeTrainingJobResponse.struct_class = Types::DescribeTrainingJobResponse
|
1073
1075
|
|
1074
1076
|
DescribeTransformJobRequest.add_member(:transform_job_name, Shapes::ShapeRef.new(shape: TransformJobName, required: true, location_name: "TransformJobName"))
|
@@ -1193,6 +1195,7 @@ module Aws::SageMaker
|
|
1193
1195
|
HyperParameterTrainingJobDefinition.add_member(:resource_config, Shapes::ShapeRef.new(shape: ResourceConfig, required: true, location_name: "ResourceConfig"))
|
1194
1196
|
HyperParameterTrainingJobDefinition.add_member(:stopping_condition, Shapes::ShapeRef.new(shape: StoppingCondition, required: true, location_name: "StoppingCondition"))
|
1195
1197
|
HyperParameterTrainingJobDefinition.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
1198
|
+
HyperParameterTrainingJobDefinition.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
1196
1199
|
HyperParameterTrainingJobDefinition.struct_class = Types::HyperParameterTrainingJobDefinition
|
1197
1200
|
|
1198
1201
|
HyperParameterTrainingJobSummaries.member = Shapes::ShapeRef.new(shape: HyperParameterTrainingJobSummary)
|
@@ -719,26 +719,26 @@ module Aws::SageMaker
|
|
719
719
|
include Aws::Structure
|
720
720
|
end
|
721
721
|
|
722
|
-
# Specifies summary information about a
|
722
|
+
# Specifies summary information about a Git repository.
|
723
723
|
#
|
724
724
|
# @!attribute [rw] code_repository_name
|
725
|
-
# The name of the
|
725
|
+
# The name of the Git repository.
|
726
726
|
# @return [String]
|
727
727
|
#
|
728
728
|
# @!attribute [rw] code_repository_arn
|
729
|
-
# The Amazon Resource Name (ARN) of the
|
729
|
+
# The Amazon Resource Name (ARN) of the Git repository.
|
730
730
|
# @return [String]
|
731
731
|
#
|
732
732
|
# @!attribute [rw] creation_time
|
733
|
-
# The date and time that the
|
733
|
+
# The date and time that the Git repository was created.
|
734
734
|
# @return [Time]
|
735
735
|
#
|
736
736
|
# @!attribute [rw] last_modified_time
|
737
|
-
# The date and time that the
|
737
|
+
# The date and time that the Git repository was last modified.
|
738
738
|
# @return [Time]
|
739
739
|
#
|
740
740
|
# @!attribute [rw] git_config
|
741
|
-
# Configuration details for the
|
741
|
+
# Configuration details for the Git repository, including the URL
|
742
742
|
# where it is located and the ARN of the AWS Secrets Manager secret
|
743
743
|
# that contains the credentials used to access the repository.
|
744
744
|
# @return [Types::GitConfig]
|
@@ -1178,7 +1178,7 @@ module Aws::SageMaker
|
|
1178
1178
|
#
|
1179
1179
|
# @!attribute [rw] certify_for_marketplace
|
1180
1180
|
# Whether to certify the algorithm so that it can be listed in AWS
|
1181
|
-
#
|
1181
|
+
# Marketplace.
|
1182
1182
|
# @return [Boolean]
|
1183
1183
|
#
|
1184
1184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAlgorithmInput AWS API Documentation
|
@@ -1217,7 +1217,7 @@ module Aws::SageMaker
|
|
1217
1217
|
# }
|
1218
1218
|
#
|
1219
1219
|
# @!attribute [rw] code_repository_name
|
1220
|
-
# The name of the
|
1220
|
+
# The name of the Git repository. The name must have 1 to 63
|
1221
1221
|
# characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
1222
1222
|
# @return [String]
|
1223
1223
|
#
|
@@ -1565,6 +1565,7 @@ module Aws::SageMaker
|
|
1565
1565
|
# max_runtime_in_seconds: 1,
|
1566
1566
|
# },
|
1567
1567
|
# enable_network_isolation: false,
|
1568
|
+
# enable_inter_container_traffic_encryption: false,
|
1568
1569
|
# },
|
1569
1570
|
# warm_start_config: {
|
1570
1571
|
# parent_hyper_parameter_tuning_jobs: [ # required
|
@@ -1606,20 +1607,20 @@ module Aws::SageMaker
|
|
1606
1607
|
# @return [Types::HyperParameterTrainingJobDefinition]
|
1607
1608
|
#
|
1608
1609
|
# @!attribute [rw] warm_start_config
|
1609
|
-
# Specifies configuration for starting the hyperparameter tuning
|
1610
|
-
# using one or more previous tuning jobs as a starting point. The
|
1610
|
+
# Specifies the configuration for starting the hyperparameter tuning
|
1611
|
+
# job using one or more previous tuning jobs as a starting point. The
|
1611
1612
|
# results of previous tuning jobs are used to inform which
|
1612
1613
|
# combinations of hyperparameters to search over in the new tuning
|
1613
1614
|
# job.
|
1614
1615
|
#
|
1615
1616
|
# All training jobs launched by the new hyperparameter tuning job are
|
1616
1617
|
# evaluated by using the objective metric. If you specify
|
1617
|
-
# `IDENTICAL_DATA_AND_ALGORITHM` as the `WarmStartType` for the
|
1618
|
-
# start configuration, the training job that performs the best in
|
1619
|
-
# new tuning job is compared to the best training jobs from the
|
1620
|
-
# tuning jobs. From these, the training job that performs the
|
1621
|
-
# measured by the objective metric is returned as the overall
|
1622
|
-
# training job.
|
1618
|
+
# `IDENTICAL_DATA_AND_ALGORITHM` as the `WarmStartType` value for the
|
1619
|
+
# warm start configuration, the training job that performs the best in
|
1620
|
+
# the new tuning job is compared to the best training jobs from the
|
1621
|
+
# parent tuning jobs. From these, the training job that performs the
|
1622
|
+
# best as measured by the objective metric is returned as the overall
|
1623
|
+
# best training job.
|
1623
1624
|
#
|
1624
1625
|
# <note markdown="1"> All training jobs launched by parent hyperparameter tuning jobs and
|
1625
1626
|
# the new hyperparameter tuning jobs count against the limit of
|
@@ -2223,8 +2224,8 @@ module Aws::SageMaker
|
|
2223
2224
|
# @!attribute [rw] accelerator_types
|
2224
2225
|
# A list of Elastic Inference (EI) instance types to associate with
|
2225
2226
|
# this notebook instance. Currently, only one instance type can be
|
2226
|
-
# associated with a notebook
|
2227
|
-
# Elastic Inference in Amazon SageMaker][1].
|
2227
|
+
# associated with a notebook instance. For more information, see
|
2228
|
+
# [Using Elastic Inference in Amazon SageMaker][1].
|
2228
2229
|
#
|
2229
2230
|
#
|
2230
2231
|
#
|
@@ -2232,10 +2233,10 @@ module Aws::SageMaker
|
|
2232
2233
|
# @return [Array<String>]
|
2233
2234
|
#
|
2234
2235
|
# @!attribute [rw] default_code_repository
|
2235
|
-
# A
|
2236
|
-
# default code repository. This can be either the name of a
|
2237
|
-
# repository stored as a resource in your account, or the URL of a
|
2238
|
-
# repository in [AWS CodeCommit][1] or in any other
|
2236
|
+
# A Git repository to associate with the notebook instance as its
|
2237
|
+
# default code repository. This can be either the name of a Git
|
2238
|
+
# repository stored as a resource in your account, or the URL of a Git
|
2239
|
+
# repository in [AWS CodeCommit][1] or in any other Git repository.
|
2239
2240
|
# When you open a notebook instance, it opens in the directory that
|
2240
2241
|
# contains this repository. For more information, see [Associating Git
|
2241
2242
|
# Repositories with Amazon SageMaker Notebook Instances][2].
|
@@ -2247,13 +2248,13 @@ module Aws::SageMaker
|
|
2247
2248
|
# @return [String]
|
2248
2249
|
#
|
2249
2250
|
# @!attribute [rw] additional_code_repositories
|
2250
|
-
# An array of up to
|
2251
|
-
# instance. These can be either the names of
|
2252
|
-
# as resources in your account, or the URL of
|
2253
|
-
# CodeCommit][1] or in any other
|
2254
|
-
# are cloned at the same level as the default repository
|
2255
|
-
# notebook instance. For more information, see [Associating
|
2256
|
-
# Repositories with Amazon SageMaker Notebook Instances][2].
|
2251
|
+
# An array of up to three Git repositories to associate with the
|
2252
|
+
# notebook instance. These can be either the names of Git repositories
|
2253
|
+
# stored as resources in your account, or the URL of Git repositories
|
2254
|
+
# in [AWS CodeCommit][1] or in any other Git repository. These
|
2255
|
+
# repositories are cloned at the same level as the default repository
|
2256
|
+
# of your notebook instance. For more information, see [Associating
|
2257
|
+
# Git Repositories with Amazon SageMaker Notebook Instances][2].
|
2257
2258
|
#
|
2258
2259
|
#
|
2259
2260
|
#
|
@@ -2442,6 +2443,7 @@ module Aws::SageMaker
|
|
2442
2443
|
# },
|
2443
2444
|
# ],
|
2444
2445
|
# enable_network_isolation: false,
|
2446
|
+
# enable_inter_container_traffic_encryption: false,
|
2445
2447
|
# }
|
2446
2448
|
#
|
2447
2449
|
# @!attribute [rw] training_job_name
|
@@ -2572,10 +2574,10 @@ module Aws::SageMaker
|
|
2572
2574
|
# @!attribute [rw] enable_network_isolation
|
2573
2575
|
# Isolates the training container. No inbound or outbound network
|
2574
2576
|
# calls can be made, except for calls between peers within a training
|
2575
|
-
# cluster for distributed training. If network isolation
|
2576
|
-
# training jobs that are configured to use a VPC, Amazon SageMaker
|
2577
|
+
# cluster for distributed training. If you enable network isolation
|
2578
|
+
# for training jobs that are configured to use a VPC, Amazon SageMaker
|
2577
2579
|
# downloads and uploads customer data and model artifacts through the
|
2578
|
-
#
|
2580
|
+
# specified VPC, but the training container does not have network
|
2579
2581
|
# access.
|
2580
2582
|
#
|
2581
2583
|
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
@@ -2584,6 +2586,13 @@ module Aws::SageMaker
|
|
2584
2586
|
# </note>
|
2585
2587
|
# @return [Boolean]
|
2586
2588
|
#
|
2589
|
+
# @!attribute [rw] enable_inter_container_traffic_encryption
|
2590
|
+
# To encrypt all communications between ML compute instances in
|
2591
|
+
# distributed training, choose `True`,. Encryption provides greater
|
2592
|
+
# security for distributed training, but training can take longer
|
2593
|
+
# because of additional communications between ML compute instances.
|
2594
|
+
# @return [Boolean]
|
2595
|
+
#
|
2587
2596
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateTrainingJobRequest AWS API Documentation
|
2588
2597
|
#
|
2589
2598
|
class CreateTrainingJobRequest < Struct.new(
|
@@ -2597,7 +2606,8 @@ module Aws::SageMaker
|
|
2597
2606
|
:vpc_config,
|
2598
2607
|
:stopping_condition,
|
2599
2608
|
:tags,
|
2600
|
-
:enable_network_isolation
|
2609
|
+
:enable_network_isolation,
|
2610
|
+
:enable_inter_container_traffic_encryption)
|
2601
2611
|
include Aws::Structure
|
2602
2612
|
end
|
2603
2613
|
|
@@ -2666,11 +2676,12 @@ module Aws::SageMaker
|
|
2666
2676
|
# @return [String]
|
2667
2677
|
#
|
2668
2678
|
# @!attribute [rw] max_concurrent_transforms
|
2669
|
-
# The maximum number of parallel requests that can be sent to
|
2670
|
-
#
|
2679
|
+
# The maximum number of parallel requests that can be sent to an
|
2680
|
+
# algorithm container on an instance. This is good for algorithms that
|
2671
2681
|
# implement multiple workers on larger instances . The default value
|
2672
2682
|
# is `1`. To allow Amazon SageMaker to determine the appropriate
|
2673
|
-
# number for `MaxConcurrentTransforms`, set the value
|
2683
|
+
# number for `MaxConcurrentTransforms`, do not set the value in the
|
2684
|
+
# API.
|
2674
2685
|
# @return [Integer]
|
2675
2686
|
#
|
2676
2687
|
# @!attribute [rw] max_payload_in_mb
|
@@ -2691,14 +2702,15 @@ module Aws::SageMaker
|
|
2691
2702
|
# @return [Integer]
|
2692
2703
|
#
|
2693
2704
|
# @!attribute [rw] batch_strategy
|
2694
|
-
# Determines the number of records
|
2695
|
-
#
|
2696
|
-
# `
|
2697
|
-
#
|
2698
|
-
#
|
2699
|
-
#
|
2700
|
-
#
|
2701
|
-
#
|
2705
|
+
# Determines the number of records to include in a mini-batch. If you
|
2706
|
+
# want to include only one record in a mini-batch, specify
|
2707
|
+
# `SingleRecord`.. If you want mini-batches to contain a maximum of
|
2708
|
+
# the number of records specified in the `MaxPayloadInMB` parameter,
|
2709
|
+
# specify `MultiRecord`.
|
2710
|
+
#
|
2711
|
+
# If you set `SplitType` to `Line` and `BatchStrategy` to
|
2712
|
+
# `MultiRecord`, a batch transform automatically splits your input
|
2713
|
+
# data into the specified payload size. There's no need to split the
|
2702
2714
|
# dataset into smaller files or to use larger payload sizes unless the
|
2703
2715
|
# records in your dataset are very large.
|
2704
2716
|
# @return [String]
|
@@ -2723,9 +2735,9 @@ module Aws::SageMaker
|
|
2723
2735
|
# @return [Types::TransformResources]
|
2724
2736
|
#
|
2725
2737
|
# @!attribute [rw] tags
|
2726
|
-
# An array of key-value pairs.
|
2727
|
-
#
|
2728
|
-
#
|
2738
|
+
# (Optional) An array of key-value pairs. For more information, see
|
2739
|
+
# [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
|
2740
|
+
# Management User Guide*.
|
2729
2741
|
#
|
2730
2742
|
#
|
2731
2743
|
#
|
@@ -2880,7 +2892,7 @@ module Aws::SageMaker
|
|
2880
2892
|
# }
|
2881
2893
|
#
|
2882
2894
|
# @!attribute [rw] code_repository_name
|
2883
|
-
# The name of the
|
2895
|
+
# The name of the Git repository to delete.
|
2884
2896
|
# @return [String]
|
2885
2897
|
#
|
2886
2898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteCodeRepositoryInput AWS API Documentation
|
@@ -3156,7 +3168,7 @@ module Aws::SageMaker
|
|
3156
3168
|
# @return [String]
|
3157
3169
|
#
|
3158
3170
|
# @!attribute [rw] certify_for_marketplace
|
3159
|
-
# Whether the algorithm is certified to be listed in AWS
|
3171
|
+
# Whether the algorithm is certified to be listed in AWS Marketplace.
|
3160
3172
|
# @return [Boolean]
|
3161
3173
|
#
|
3162
3174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAlgorithmOutput AWS API Documentation
|
@@ -3184,7 +3196,7 @@ module Aws::SageMaker
|
|
3184
3196
|
# }
|
3185
3197
|
#
|
3186
3198
|
# @!attribute [rw] code_repository_name
|
3187
|
-
# The name of the
|
3199
|
+
# The name of the Git repository to describe.
|
3188
3200
|
# @return [String]
|
3189
3201
|
#
|
3190
3202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCodeRepositoryInput AWS API Documentation
|
@@ -3195,11 +3207,11 @@ module Aws::SageMaker
|
|
3195
3207
|
end
|
3196
3208
|
|
3197
3209
|
# @!attribute [rw] code_repository_name
|
3198
|
-
# The name of the
|
3210
|
+
# The name of the Git repository.
|
3199
3211
|
# @return [String]
|
3200
3212
|
#
|
3201
3213
|
# @!attribute [rw] code_repository_arn
|
3202
|
-
# The Amazon Resource Name (ARN) of the
|
3214
|
+
# The Amazon Resource Name (ARN) of the Git repository.
|
3203
3215
|
# @return [String]
|
3204
3216
|
#
|
3205
3217
|
# @!attribute [rw] creation_time
|
@@ -3991,7 +4003,7 @@ module Aws::SageMaker
|
|
3991
4003
|
# @return [String]
|
3992
4004
|
#
|
3993
4005
|
# @!attribute [rw] notebook_instance_name
|
3994
|
-
#
|
4006
|
+
# The name of the Amazon SageMaker notebook instance.
|
3995
4007
|
# @return [String]
|
3996
4008
|
#
|
3997
4009
|
# @!attribute [rw] notebook_instance_status
|
@@ -3999,7 +4011,7 @@ module Aws::SageMaker
|
|
3999
4011
|
# @return [String]
|
4000
4012
|
#
|
4001
4013
|
# @!attribute [rw] failure_reason
|
4002
|
-
# If status is
|
4014
|
+
# If status is `Failed`, the reason it failed.
|
4003
4015
|
# @return [String]
|
4004
4016
|
#
|
4005
4017
|
# @!attribute [rw] url
|
@@ -4020,18 +4032,18 @@ module Aws::SageMaker
|
|
4020
4032
|
# @return [Array<String>]
|
4021
4033
|
#
|
4022
4034
|
# @!attribute [rw] role_arn
|
4023
|
-
# Amazon Resource Name (ARN) of the IAM role associated with the
|
4035
|
+
# The Amazon Resource Name (ARN) of the IAM role associated with the
|
4024
4036
|
# instance.
|
4025
4037
|
# @return [String]
|
4026
4038
|
#
|
4027
4039
|
# @!attribute [rw] kms_key_id
|
4028
|
-
# AWS KMS key ID Amazon SageMaker uses to encrypt data when
|
4029
|
-
# on the ML storage volume attached to the instance.
|
4040
|
+
# The AWS KMS key ID Amazon SageMaker uses to encrypt data when
|
4041
|
+
# storing it on the ML storage volume attached to the instance.
|
4030
4042
|
# @return [String]
|
4031
4043
|
#
|
4032
4044
|
# @!attribute [rw] network_interface_id
|
4033
|
-
#
|
4034
|
-
# creating the instance.
|
4045
|
+
# The network interface IDs that Amazon SageMaker created at the time
|
4046
|
+
# of creating the instance.
|
4035
4047
|
# @return [String]
|
4036
4048
|
#
|
4037
4049
|
# @!attribute [rw] last_modified_time
|
@@ -4086,10 +4098,10 @@ module Aws::SageMaker
|
|
4086
4098
|
# @return [Array<String>]
|
4087
4099
|
#
|
4088
4100
|
# @!attribute [rw] default_code_repository
|
4089
|
-
# The
|
4090
|
-
# default code repository. This can be either the name of a
|
4091
|
-
# repository stored as a resource in your account, or the URL of a
|
4092
|
-
# repository in [AWS CodeCommit][1] or in any other
|
4101
|
+
# The Git repository associated with the notebook instance as its
|
4102
|
+
# default code repository. This can be either the name of a Git
|
4103
|
+
# repository stored as a resource in your account, or the URL of a Git
|
4104
|
+
# repository in [AWS CodeCommit][1] or in any other Git repository.
|
4093
4105
|
# When you open a notebook instance, it opens in the directory that
|
4094
4106
|
# contains this repository. For more information, see [Associating Git
|
4095
4107
|
# Repositories with Amazon SageMaker Notebook Instances][2].
|
@@ -4101,13 +4113,13 @@ module Aws::SageMaker
|
|
4101
4113
|
# @return [String]
|
4102
4114
|
#
|
4103
4115
|
# @!attribute [rw] additional_code_repositories
|
4104
|
-
# An array of up to
|
4105
|
-
# instance. These can be either the names of
|
4106
|
-
# as resources in your account, or the URL of
|
4107
|
-
# CodeCommit][1] or in any other
|
4108
|
-
# are cloned at the same level as the default repository
|
4109
|
-
# notebook instance. For more information, see [Associating
|
4110
|
-
# Repositories with Amazon SageMaker Notebook Instances][2].
|
4116
|
+
# An array of up to three Git repositories associated with the
|
4117
|
+
# notebook instance. These can be either the names of Git repositories
|
4118
|
+
# stored as resources in your account, or the URL of Git repositories
|
4119
|
+
# in [AWS CodeCommit][1] or in any other Git repository. These
|
4120
|
+
# repositories are cloned at the same level as the default repository
|
4121
|
+
# of your notebook instance. For more information, see [Associating
|
4122
|
+
# Git Repositories with Amazon SageMaker Notebook Instances][2].
|
4111
4123
|
#
|
4112
4124
|
#
|
4113
4125
|
#
|
@@ -4373,12 +4385,13 @@ module Aws::SageMaker
|
|
4373
4385
|
# @return [Array<Types::MetricData>]
|
4374
4386
|
#
|
4375
4387
|
# @!attribute [rw] enable_network_isolation
|
4376
|
-
# If
|
4388
|
+
# If you want to allow inbound or outbound network calls, except for
|
4377
4389
|
# calls between peers within a training cluster for distributed
|
4378
|
-
# training
|
4379
|
-
# configured to use a VPC, Amazon SageMaker
|
4380
|
-
# customer data and model artifacts through the
|
4381
|
-
# training container does not have network
|
4390
|
+
# training, choose `True`. If you enable network isolation for
|
4391
|
+
# training jobs that are configured to use a VPC, Amazon SageMaker
|
4392
|
+
# downloads and uploads customer data and model artifacts through the
|
4393
|
+
# specified VPC, but the training container does not have network
|
4394
|
+
# access.
|
4382
4395
|
#
|
4383
4396
|
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
4384
4397
|
# network isolation.
|
@@ -4386,6 +4399,13 @@ module Aws::SageMaker
|
|
4386
4399
|
# </note>
|
4387
4400
|
# @return [Boolean]
|
4388
4401
|
#
|
4402
|
+
# @!attribute [rw] enable_inter_container_traffic_encryption
|
4403
|
+
# To encrypt all communications between ML compute instances in
|
4404
|
+
# distributed training, specify `True`. Encryption provides greater
|
4405
|
+
# security for distributed training, but training take longer because
|
4406
|
+
# of the additional communications between ML compute instances.
|
4407
|
+
# @return [Boolean]
|
4408
|
+
#
|
4389
4409
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingJobResponse AWS API Documentation
|
4390
4410
|
#
|
4391
4411
|
class DescribeTrainingJobResponse < Struct.new(
|
@@ -4411,7 +4431,8 @@ module Aws::SageMaker
|
|
4411
4431
|
:last_modified_time,
|
4412
4432
|
:secondary_status_transitions,
|
4413
4433
|
:final_metric_data_list,
|
4414
|
-
:enable_network_isolation
|
4434
|
+
:enable_network_isolation,
|
4435
|
+
:enable_inter_container_traffic_encryption)
|
4415
4436
|
include Aws::Structure
|
4416
4437
|
end
|
4417
4438
|
|
@@ -4460,13 +4481,14 @@ module Aws::SageMaker
|
|
4460
4481
|
# @return [Integer]
|
4461
4482
|
#
|
4462
4483
|
# @!attribute [rw] max_payload_in_mb
|
4463
|
-
# The maximum payload size
|
4484
|
+
# The maximum payload size, in MB, used in the transform job.
|
4464
4485
|
# @return [Integer]
|
4465
4486
|
#
|
4466
4487
|
# @!attribute [rw] batch_strategy
|
4467
|
-
#
|
4468
|
-
# `
|
4469
|
-
#
|
4488
|
+
# If you want to include only one record in a batch, specify
|
4489
|
+
# `SingleRecord`.. If you want batches to contain a maximum of the
|
4490
|
+
# number of records specified in the `MaxPayloadInMB` parameter,
|
4491
|
+
# specify `MultiRecord`.S
|
4470
4492
|
# @return [String]
|
4471
4493
|
#
|
4472
4494
|
# @!attribute [rw] environment
|
@@ -4498,9 +4520,9 @@ module Aws::SageMaker
|
|
4498
4520
|
# @return [Time]
|
4499
4521
|
#
|
4500
4522
|
# @!attribute [rw] transform_end_time
|
4501
|
-
# Indicates when the transform job
|
4502
|
-
#
|
4503
|
-
# the value of `TransformStartTime`.
|
4523
|
+
# Indicates when the transform job has been completed, or has stopped
|
4524
|
+
# or failed. You are billed for the time interval between this time
|
4525
|
+
# and the value of `TransformStartTime`.
|
4504
4526
|
# @return [Time]
|
4505
4527
|
#
|
4506
4528
|
# @!attribute [rw] labeling_job_arn
|
@@ -4878,7 +4900,7 @@ module Aws::SageMaker
|
|
4878
4900
|
include Aws::Structure
|
4879
4901
|
end
|
4880
4902
|
|
4881
|
-
# Specifies configuration details for a
|
4903
|
+
# Specifies configuration details for a Git repository in your AWS
|
4882
4904
|
# account.
|
4883
4905
|
#
|
4884
4906
|
# @note When making an API call, you may pass GitConfig
|
@@ -4891,11 +4913,11 @@ module Aws::SageMaker
|
|
4891
4913
|
# }
|
4892
4914
|
#
|
4893
4915
|
# @!attribute [rw] repository_url
|
4894
|
-
# The URL where the
|
4916
|
+
# The URL where the Git repository is located.
|
4895
4917
|
# @return [String]
|
4896
4918
|
#
|
4897
4919
|
# @!attribute [rw] branch
|
4898
|
-
# The default
|
4920
|
+
# The default branch for the Git repository.
|
4899
4921
|
# @return [String]
|
4900
4922
|
#
|
4901
4923
|
# @!attribute [rw] secret_arn
|
@@ -4916,7 +4938,7 @@ module Aws::SageMaker
|
|
4916
4938
|
include Aws::Structure
|
4917
4939
|
end
|
4918
4940
|
|
4919
|
-
# Specifies configuration details for a
|
4941
|
+
# Specifies configuration details for a Git repository when the
|
4920
4942
|
# repository is updated.
|
4921
4943
|
#
|
4922
4944
|
# @note When making an API call, you may pass GitConfigForUpdate
|
@@ -5302,6 +5324,7 @@ module Aws::SageMaker
|
|
5302
5324
|
# max_runtime_in_seconds: 1,
|
5303
5325
|
# },
|
5304
5326
|
# enable_network_isolation: false,
|
5327
|
+
# enable_inter_container_traffic_encryption: false,
|
5305
5328
|
# }
|
5306
5329
|
#
|
5307
5330
|
# @!attribute [rw] static_hyper_parameters
|
@@ -5382,6 +5405,13 @@ module Aws::SageMaker
|
|
5382
5405
|
# </note>
|
5383
5406
|
# @return [Boolean]
|
5384
5407
|
#
|
5408
|
+
# @!attribute [rw] enable_inter_container_traffic_encryption
|
5409
|
+
# To encrypt all communications between ML compute instances in
|
5410
|
+
# distributed training, specify `True`. Encryption provides greater
|
5411
|
+
# security for distributed training, but training take longer because
|
5412
|
+
# of the additional communications between ML compute instances.
|
5413
|
+
# @return [Boolean]
|
5414
|
+
#
|
5385
5415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTrainingJobDefinition AWS API Documentation
|
5386
5416
|
#
|
5387
5417
|
class HyperParameterTrainingJobDefinition < Struct.new(
|
@@ -5393,7 +5423,8 @@ module Aws::SageMaker
|
|
5393
5423
|
:output_data_config,
|
5394
5424
|
:resource_config,
|
5395
5425
|
:stopping_condition,
|
5396
|
-
:enable_network_isolation
|
5426
|
+
:enable_network_isolation,
|
5427
|
+
:enable_inter_container_traffic_encryption)
|
5397
5428
|
include Aws::Structure
|
5398
5429
|
end
|
5399
5430
|
|
@@ -5420,7 +5451,12 @@ module Aws::SageMaker
|
|
5420
5451
|
# @return [Time]
|
5421
5452
|
#
|
5422
5453
|
# @!attribute [rw] training_end_time
|
5423
|
-
#
|
5454
|
+
# Specifies the time when the training job ends on training instances.
|
5455
|
+
# You are billed for the time interval between the value of
|
5456
|
+
# `TrainingStartTime` and this time. For successful jobs and stopped
|
5457
|
+
# jobs, this is the time after model artifacts are uploaded. For
|
5458
|
+
# failed jobs, this is the time when Amazon SageMaker detects a job
|
5459
|
+
# failure.
|
5424
5460
|
# @return [Time]
|
5425
5461
|
#
|
5426
5462
|
# @!attribute [rw] training_job_status
|
@@ -6485,38 +6521,38 @@ module Aws::SageMaker
|
|
6485
6521
|
# }
|
6486
6522
|
#
|
6487
6523
|
# @!attribute [rw] creation_time_after
|
6488
|
-
# A filter that returns only
|
6524
|
+
# A filter that returns only Git repositories that were created after
|
6489
6525
|
# the specified time.
|
6490
6526
|
# @return [Time]
|
6491
6527
|
#
|
6492
6528
|
# @!attribute [rw] creation_time_before
|
6493
|
-
# A filter that returns only
|
6529
|
+
# A filter that returns only Git repositories that were created before
|
6494
6530
|
# the specified time.
|
6495
6531
|
# @return [Time]
|
6496
6532
|
#
|
6497
6533
|
# @!attribute [rw] last_modified_time_after
|
6498
|
-
# A filter that returns only
|
6534
|
+
# A filter that returns only Git repositories that were last modified
|
6499
6535
|
# after the specified time.
|
6500
6536
|
# @return [Time]
|
6501
6537
|
#
|
6502
6538
|
# @!attribute [rw] last_modified_time_before
|
6503
|
-
# A filter that returns only
|
6539
|
+
# A filter that returns only Git repositories that were last modified
|
6504
6540
|
# before the specified time.
|
6505
6541
|
# @return [Time]
|
6506
6542
|
#
|
6507
6543
|
# @!attribute [rw] max_results
|
6508
|
-
# The maximum number of
|
6544
|
+
# The maximum number of Git repositories to return in the response.
|
6509
6545
|
# @return [Integer]
|
6510
6546
|
#
|
6511
6547
|
# @!attribute [rw] name_contains
|
6512
|
-
# A string in the
|
6548
|
+
# A string in the Git repositories name. This filter returns only
|
6513
6549
|
# repositories whose name contains the specified string.
|
6514
6550
|
# @return [String]
|
6515
6551
|
#
|
6516
6552
|
# @!attribute [rw] next_token
|
6517
6553
|
# If the result of a `ListCodeRepositoriesOutput` request was
|
6518
6554
|
# truncated, the response includes a `NextToken`. To get the next set
|
6519
|
-
# of
|
6555
|
+
# of Git repositories, use the token in the next request.
|
6520
6556
|
# @return [String]
|
6521
6557
|
#
|
6522
6558
|
# @!attribute [rw] sort_by
|
@@ -6543,7 +6579,7 @@ module Aws::SageMaker
|
|
6543
6579
|
end
|
6544
6580
|
|
6545
6581
|
# @!attribute [rw] code_repository_summary_list
|
6546
|
-
# Gets a list of summaries of the
|
6582
|
+
# Gets a list of summaries of the Git repositories. Each summary
|
6547
6583
|
# specifies the following values for the repository:
|
6548
6584
|
#
|
6549
6585
|
# * Name
|
@@ -6557,14 +6593,12 @@ module Aws::SageMaker
|
|
6557
6593
|
# * Configuration information, including the URL location of the
|
6558
6594
|
# repository and the ARN of the AWS Secrets Manager secret that
|
6559
6595
|
# contains the credentials used to access the repository.
|
6560
|
-
#
|
6561
|
-
# *
|
6562
6596
|
# @return [Array<Types::CodeRepositorySummary>]
|
6563
6597
|
#
|
6564
6598
|
# @!attribute [rw] next_token
|
6565
6599
|
# If the result of a `ListCodeRepositoriesOutput` request was
|
6566
6600
|
# truncated, the response includes a `NextToken`. To get the next set
|
6567
|
-
# of
|
6601
|
+
# of Git repositories, use the token in the next request.
|
6568
6602
|
# @return [String]
|
6569
6603
|
#
|
6570
6604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListCodeRepositoriesOutput AWS API Documentation
|
@@ -7467,7 +7501,7 @@ module Aws::SageMaker
|
|
7467
7501
|
# @return [String]
|
7468
7502
|
#
|
7469
7503
|
# @!attribute [rw] default_code_repository_contains
|
7470
|
-
# A string in the name or URL of a
|
7504
|
+
# A string in the name or URL of a Git repository associated with this
|
7471
7505
|
# notebook instance. This filter returns only notebook instances
|
7472
7506
|
# associated with a git repository with a name that contains the
|
7473
7507
|
# specified string.
|
@@ -7475,7 +7509,7 @@ module Aws::SageMaker
|
|
7475
7509
|
#
|
7476
7510
|
# @!attribute [rw] additional_code_repository_equals
|
7477
7511
|
# A filter that returns only notebook instances with associated with
|
7478
|
-
# the specified git
|
7512
|
+
# the specified git repository.
|
7479
7513
|
# @return [String]
|
7480
7514
|
#
|
7481
7515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListNotebookInstancesInput AWS API Documentation
|
@@ -8336,13 +8370,12 @@ module Aws::SageMaker
|
|
8336
8370
|
include Aws::Structure
|
8337
8371
|
end
|
8338
8372
|
|
8339
|
-
# Defines a list of `
|
8373
|
+
# Defines a list of `NestedFilters` objects. To satisfy the conditions
|
8340
8374
|
# specified in the `NestedFilters` call, a resource must satisfy the
|
8341
8375
|
# conditions of all of the filters.
|
8342
8376
|
#
|
8343
|
-
# For example, a `NestedFilters`
|
8344
|
-
# job's `InputDataConfig` property
|
8345
|
-
# `Channel` objects.
|
8377
|
+
# For example, you could define a `NestedFilters` using the training
|
8378
|
+
# job's `InputDataConfig` property to filter on `Channel` objects.
|
8346
8379
|
#
|
8347
8380
|
# A `NestedFilters` object contains multiple filters. For example, to
|
8348
8381
|
# find all training jobs whose name contains `train` and that have
|
@@ -8507,10 +8540,10 @@ module Aws::SageMaker
|
|
8507
8540
|
# @return [String]
|
8508
8541
|
#
|
8509
8542
|
# @!attribute [rw] default_code_repository
|
8510
|
-
# The
|
8511
|
-
# default code repository. This can be either the name of a
|
8512
|
-
# repository stored as a resource in your account, or the URL of a
|
8513
|
-
# repository in [AWS CodeCommit][1] or in any other
|
8543
|
+
# The Git repository associated with the notebook instance as its
|
8544
|
+
# default code repository. This can be either the name of a Git
|
8545
|
+
# repository stored as a resource in your account, or the URL of a Git
|
8546
|
+
# repository in [AWS CodeCommit][1] or in any other Git repository.
|
8514
8547
|
# When you open a notebook instance, it opens in the directory that
|
8515
8548
|
# contains this repository. For more information, see [Associating Git
|
8516
8549
|
# Repositories with Amazon SageMaker Notebook Instances][2].
|
@@ -8522,13 +8555,13 @@ module Aws::SageMaker
|
|
8522
8555
|
# @return [String]
|
8523
8556
|
#
|
8524
8557
|
# @!attribute [rw] additional_code_repositories
|
8525
|
-
# An array of up to
|
8526
|
-
# instance. These can be either the names of
|
8527
|
-
# as resources in your account, or the URL of
|
8528
|
-
# CodeCommit][1] or in any other
|
8529
|
-
# are cloned at the same level as the default repository
|
8530
|
-
# notebook instance. For more information, see [Associating
|
8531
|
-
# Repositories with Amazon SageMaker Notebook Instances][2].
|
8558
|
+
# An array of up to three Git repositories associated with the
|
8559
|
+
# notebook instance. These can be either the names of Git repositories
|
8560
|
+
# stored as resources in your account, or the URL of Git repositories
|
8561
|
+
# in [AWS CodeCommit][1] or in any other Git repository. These
|
8562
|
+
# repositories are cloned at the same level as the default repository
|
8563
|
+
# of your notebook instance. For more information, see [Associating
|
8564
|
+
# Git Repositories with Amazon SageMaker Notebook Instances][2].
|
8532
8565
|
#
|
8533
8566
|
#
|
8534
8567
|
#
|
@@ -9073,7 +9106,7 @@ module Aws::SageMaker
|
|
9073
9106
|
# }
|
9074
9107
|
#
|
9075
9108
|
# @!attribute [rw] ui_template
|
9076
|
-
# A `Template`object containing the worker UI template to render.
|
9109
|
+
# A `Template` object containing the worker UI template to render.
|
9077
9110
|
# @return [Types::UiTemplate]
|
9078
9111
|
#
|
9079
9112
|
# @!attribute [rw] task
|
@@ -9944,7 +9977,7 @@ module Aws::SageMaker
|
|
9944
9977
|
# The maximum length of time, in seconds, that the training job can
|
9945
9978
|
# run. If model training does not complete during this time, Amazon
|
9946
9979
|
# SageMaker ends the job. If value is not specified, default value is
|
9947
|
-
# 1 day. Maximum value is
|
9980
|
+
# 1 day. Maximum value is 28 days.
|
9948
9981
|
# @return [Integer]
|
9949
9982
|
#
|
9950
9983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StoppingCondition AWS API Documentation
|
@@ -10509,8 +10542,8 @@ module Aws::SageMaker
|
|
10509
10542
|
# }
|
10510
10543
|
#
|
10511
10544
|
# @!attribute [rw] training_image
|
10512
|
-
# The Amazon
|
10513
|
-
#
|
10545
|
+
# The Amazon ECR registry path of the Docker image that contains the
|
10546
|
+
# training algorithm.
|
10514
10547
|
# @return [String]
|
10515
10548
|
#
|
10516
10549
|
# @!attribute [rw] training_image_digest
|
@@ -10607,8 +10640,8 @@ module Aws::SageMaker
|
|
10607
10640
|
# }
|
10608
10641
|
#
|
10609
10642
|
# @!attribute [rw] data_source
|
10610
|
-
# Describes the location of the channel data,
|
10611
|
-
# of the input data that the model can consume.
|
10643
|
+
# Describes the location of the channel data, which is, the S3
|
10644
|
+
# location of the input data that the model can consume.
|
10612
10645
|
# @return [Types::TransformDataSource]
|
10613
10646
|
#
|
10614
10647
|
# @!attribute [rw] content_type
|
@@ -10618,49 +10651,29 @@ module Aws::SageMaker
|
|
10618
10651
|
# @return [String]
|
10619
10652
|
#
|
10620
10653
|
# @!attribute [rw] compression_type
|
10621
|
-
#
|
10622
|
-
#
|
10623
|
-
#
|
10624
|
-
# accordingly. The default value is `None`.
|
10654
|
+
# If your transform data is compressed, specify the compression type.
|
10655
|
+
# Amazon SageMaker automatically decompresses the data for the
|
10656
|
+
# transform job accordingly. The default value is `None`.
|
10625
10657
|
# @return [String]
|
10626
10658
|
#
|
10627
10659
|
# @!attribute [rw] split_type
|
10628
|
-
# The method to use to split the transform job's data
|
10629
|
-
#
|
10630
|
-
#
|
10631
|
-
#
|
10632
|
-
#
|
10633
|
-
# `None`, which indicates that input data files are not split, and
|
10634
|
-
# request payloads contain the entire contents of an input object. Set
|
10635
|
-
# the value of this parameter to `Line` to split records on a newline
|
10636
|
-
# character boundary. `SplitType` also supports a number of
|
10637
|
-
# record-oriented binary data formats.
|
10638
|
-
#
|
10639
|
-
# When splitting is enabled, the size of a mini-batch depends on the
|
10640
|
-
# values of the `BatchStrategy` and `MaxPayloadInMB` parameters. When
|
10641
|
-
# the value of `BatchStrategy` is `MultiRecord`, Amazon SageMaker
|
10642
|
-
# sends the maximum number of records in each request, up to the
|
10643
|
-
# `MaxPayloadInMB` limit. If the value of `BatchStrategy` is
|
10644
|
-
# `SingleRecord`, Amazon SageMaker sends individual records in each
|
10645
|
-
# request.
|
10660
|
+
# The method to use to split the transform job's data into smaller
|
10661
|
+
# batches. If you don't want to split the data, specify `None`. If
|
10662
|
+
# you want to split records on a newline character boundary, specify
|
10663
|
+
# `Line`. To split records according to the RecordIO format, specify
|
10664
|
+
# `RecordIO`. The default value is `None`.
|
10646
10665
|
#
|
10647
|
-
#
|
10648
|
-
#
|
10649
|
-
#
|
10650
|
-
# `SingleRecord`. Padding is not removed if the value of
|
10651
|
-
# `BatchStrategy` is set to `MultiRecord`.
|
10666
|
+
# Amazon SageMaker sends the maximum number of records per batch in
|
10667
|
+
# each request up to the MaxPayloadInMB limit. For more information,
|
10668
|
+
# see [RecordIO data format][1].
|
10652
10669
|
#
|
10653
|
-
#
|
10670
|
+
# <note markdown="1"> For information about the `RecordIO` format, see [Data Format][1].
|
10654
10671
|
#
|
10655
|
-
#
|
10656
|
-
# Format][1] in the MXNet documentation. For more information about
|
10657
|
-
# the TFRecord fofmat, see [Consuming TFRecord data][2] in the
|
10658
|
-
# TensorFlow documentation.
|
10672
|
+
# </note>
|
10659
10673
|
#
|
10660
10674
|
#
|
10661
10675
|
#
|
10662
10676
|
# [1]: http://mxnet.io/architecture/note_data_loading.html#data-format
|
10663
|
-
# [2]: https://www.tensorflow.org/guide/datasets#consuming_tfrecord_data
|
10664
10677
|
# @return [String]
|
10665
10678
|
#
|
10666
10679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformInput AWS API Documentation
|
@@ -10761,8 +10774,9 @@ module Aws::SageMaker
|
|
10761
10774
|
include Aws::Structure
|
10762
10775
|
end
|
10763
10776
|
|
10764
|
-
# Provides a summary of a transform job. Multiple TransformJobSummary
|
10765
|
-
# objects are returned as a list after
|
10777
|
+
# Provides a summary of a transform job. Multiple `TransformJobSummary`
|
10778
|
+
# objects are returned as a list after in response to a
|
10779
|
+
# ListTransformJobs call.
|
10766
10780
|
#
|
10767
10781
|
# @!attribute [rw] transform_job_name
|
10768
10782
|
# The name of the transform job.
|
@@ -10827,11 +10841,12 @@ module Aws::SageMaker
|
|
10827
10841
|
#
|
10828
10842
|
# For every S3 object used as input for the transform job, the
|
10829
10843
|
# transformed data is stored in a corresponding subfolder in the
|
10830
|
-
# location under the output prefix. For example, the input data
|
10831
|
-
# `s3://bucket-name/input-name-prefix/dataset01/data.csv`
|
10832
|
-
#
|
10833
|
-
# `s3://bucket-name/key-name-prefix/dataset01
|
10834
|
-
# name, as a series of .part files (.part0001, part0002,
|
10844
|
+
# location under the output prefix. For example, for the input data
|
10845
|
+
# `s3://bucket-name/input-name-prefix/dataset01/data.csv` the
|
10846
|
+
# transformed data is stored at
|
10847
|
+
# `s3://bucket-name/key-name-prefix/dataset01/`. This is based on the
|
10848
|
+
# original name, as a series of .part files (.part0001, part0002,
|
10849
|
+
# etc.).
|
10835
10850
|
# @return [String]
|
10836
10851
|
#
|
10837
10852
|
# @!attribute [rw] accept
|
@@ -10842,10 +10857,10 @@ module Aws::SageMaker
|
|
10842
10857
|
#
|
10843
10858
|
# @!attribute [rw] assemble_with
|
10844
10859
|
# Defines how to assemble the results of the transform job as a single
|
10845
|
-
# S3 object.
|
10846
|
-
#
|
10847
|
-
#
|
10848
|
-
#
|
10860
|
+
# S3 object. Choose a format that is most convenient to you. To
|
10861
|
+
# concatenate the results in binary format, specify `None`. To add a
|
10862
|
+
# newline character at the end of every transformed record, specify
|
10863
|
+
# `Line`.
|
10849
10864
|
# @return [String]
|
10850
10865
|
#
|
10851
10866
|
# @!attribute [rw] kms_key_id
|
@@ -11102,7 +11117,7 @@ module Aws::SageMaker
|
|
11102
11117
|
# }
|
11103
11118
|
#
|
11104
11119
|
# @!attribute [rw] code_repository_name
|
11105
|
-
# The name of the
|
11120
|
+
# The name of the Git repository to update.
|
11106
11121
|
# @return [String]
|
11107
11122
|
#
|
11108
11123
|
# @!attribute [rw] git_config
|
@@ -11124,7 +11139,7 @@ module Aws::SageMaker
|
|
11124
11139
|
end
|
11125
11140
|
|
11126
11141
|
# @!attribute [rw] code_repository_arn
|
11127
|
-
# The ARN of the
|
11142
|
+
# The ARN of the Git repository.
|
11128
11143
|
# @return [String]
|
11129
11144
|
#
|
11130
11145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateCodeRepositoryOutput AWS API Documentation
|
@@ -11273,10 +11288,10 @@ module Aws::SageMaker
|
|
11273
11288
|
# @return [Integer]
|
11274
11289
|
#
|
11275
11290
|
# @!attribute [rw] default_code_repository
|
11276
|
-
# The
|
11277
|
-
# default code repository. This can be either the name of a
|
11278
|
-
# repository stored as a resource in your account, or the URL of a
|
11279
|
-
# repository in [AWS CodeCommit][1] or in any other
|
11291
|
+
# The Git repository to associate with the notebook instance as its
|
11292
|
+
# default code repository. This can be either the name of a Git
|
11293
|
+
# repository stored as a resource in your account, or the URL of a Git
|
11294
|
+
# repository in [AWS CodeCommit][1] or in any other Git repository.
|
11280
11295
|
# When you open a notebook instance, it opens in the directory that
|
11281
11296
|
# contains this repository. For more information, see [Associating Git
|
11282
11297
|
# Repositories with Amazon SageMaker Notebook Instances][2].
|
@@ -11288,13 +11303,13 @@ module Aws::SageMaker
|
|
11288
11303
|
# @return [String]
|
11289
11304
|
#
|
11290
11305
|
# @!attribute [rw] additional_code_repositories
|
11291
|
-
# An array of up to
|
11292
|
-
# instance. These can be either the names of
|
11293
|
-
# as resources in your account, or the URL of
|
11294
|
-
# CodeCommit][1] or in any other
|
11295
|
-
# are cloned at the same level as the default repository
|
11296
|
-
# notebook instance. For more information, see [Associating
|
11297
|
-
# Repositories with Amazon SageMaker Notebook Instances][2].
|
11306
|
+
# An array of up to three Git repositories to associate with the
|
11307
|
+
# notebook instance. These can be either the names of Git repositories
|
11308
|
+
# stored as resources in your account, or the URL of Git repositories
|
11309
|
+
# in [AWS CodeCommit][1] or in any other Git repository.. These
|
11310
|
+
# repositories are cloned at the same level as the default repository
|
11311
|
+
# of your notebook instance. For more information, see [Associating
|
11312
|
+
# Git Repositories with Amazon SageMaker Notebook Instances][2].
|
11298
11313
|
#
|
11299
11314
|
#
|
11300
11315
|
#
|
@@ -11319,12 +11334,12 @@ module Aws::SageMaker
|
|
11319
11334
|
# @return [Boolean]
|
11320
11335
|
#
|
11321
11336
|
# @!attribute [rw] disassociate_default_code_repository
|
11322
|
-
# The name or URL of the default
|
11337
|
+
# The name or URL of the default Git repository to remove from this
|
11323
11338
|
# notebook instance.
|
11324
11339
|
# @return [Boolean]
|
11325
11340
|
#
|
11326
11341
|
# @!attribute [rw] disassociate_additional_code_repositories
|
11327
|
-
# A list of names or URLs of the default
|
11342
|
+
# A list of names or URLs of the default Git repositories to remove
|
11328
11343
|
# from this notebook instance.
|
11329
11344
|
# @return [Boolean]
|
11330
11345
|
#
|