@@ -423,6 +423,13 @@ def __init__(
423
423
hyperparameters (dict[str, str] or dict[str, PipelineVariable]):
424
424
A dictionary containing the hyperparameters to
425
425
initialize this estimator with. (Default: None).
426
+
427
+ .. caution::
428
+ You must not include any security-sensitive information, such as
429
+ account access IDs, secrets, and tokens, in the dictionary for configuring
430
+ hyperparameters. SageMaker rejects the training job request and returns an
431
+ validation error for detected credentials, if such user input is found.
432
+
426
433
container_log_level (int or PipelineVariable): The log level to use within the container
427
434
(default: logging.INFO). Valid values are defined in the Python
428
435
logging module.
@@ -2462,6 +2469,13 @@ def __init__(
2462
2469
using the default AWS configuration chain.
2463
2470
hyperparameters (dict[str, str] or dict[str, PipelineVariable]):
2464
2471
Dictionary containing the hyperparameters to initialize this estimator with.
2472
+
2473
+ .. caution::
2474
+ You must not include any security-sensitive information, such as
2475
+ account access IDs, secrets, and tokens, in the dictionary for configuring
2476
+ hyperparameters. SageMaker rejects the training job request and returns an
2477
+ validation error for detected credentials, if such user input is found.
2478
+
2465
2479
tags (list[dict[str, str] or list[dict[str, PipelineVariable]]): List of tags for
2466
2480
labeling a training job. For more, see
2467
2481
https://docs.aws.amazon.com/sagemaker/latest/dg/API_Tag.html.
@@ -2939,6 +2953,13 @@ def __init__(
2939
2953
SageMaker. For convenience, this accepts other types for keys
2940
2954
and values, but ``str()`` will be called to convert them before
2941
2955
training.
2956
+
2957
+ .. caution::
2958
+ You must not include any security-sensitive information, such as
2959
+ account access IDs, secrets, and tokens, in the dictionary for configuring
2960
+ hyperparameters. SageMaker rejects the training job request and returns an
2961
+ validation error for detected credentials, if such user input is found.
2962
+
2942
2963
container_log_level (int or PipelineVariable): Log level to use within the container
2943
2964
(default: logging.INFO). Valid values are defined in the Python
2944
2965
logging module.
0 commit comments