Skip to content

Commit 0b13d2a

Browse files
authored
Change: Mention "FastFile" support for s3_input_mode in docstrings (#4311)
1 parent 730d29e commit 0b13d2a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/sagemaker/dataset_definition/inputs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def __init__(
198198
the path to a local directory. If not provided, skips data download
199199
by SageMaker platform.
200200
s3_data_type (str, default="S3Prefix"): Valid options are "ManifestFile" or "S3Prefix".
201-
s3_input_mode (str, default="File"): Valid options are "Pipe" or "File".
201+
s3_input_mode (str, default="File"): Valid options are "Pipe", "File" or "FastFile".
202202
s3_data_distribution_type (str, default="FullyReplicated"):
203203
Valid options are "FullyReplicated" or "ShardedByS3Key".
204204
s3_compression_type (str, default=None): Valid options are "None" or "Gzip".

src/sagemaker/model_monitor/model_monitoring.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -3933,7 +3933,8 @@ def __init__(
39333933
Args:
39343934
endpoint_name (str): The name of the endpoint.
39353935
destination (str): The destination of the input.
3936-
s3_input_mode (str): The S3 input mode. Can be one of: "File", "Pipe. Default: "File".
3936+
s3_input_mode (str): The S3 input mode. Can be one of: "File", "Pipe" or "FastFile".
3937+
Default: "File".
39373938
s3_data_distribution_type (str): The S3 Data Distribution Type. Can be one of:
39383939
"FullyReplicated", "ShardedByS3Key"
39393940
start_time_offset (str): Monitoring start time offset, e.g. "-PT1H"
@@ -4043,7 +4044,8 @@ def __init__(
40434044
data_captured_destination_s3_uri (str): Location to the batch transform captured data
40444045
file which needs to be analysed.
40454046
destination (str): The destination of the input.
4046-
s3_input_mode (str): The S3 input mode. Can be one of: "File", "Pipe. (default: File)
4047+
s3_input_mode (str): The S3 input mode. Can be one of: "File", "Pipe" or
4048+
"FastFile". (default: File)
40474049
s3_data_distribution_type (str): The S3 Data Distribution Type. Can be one of:
40484050
"FullyReplicated", "ShardedByS3Key" (default: FullyReplicated)
40494051
start_time_offset (str): Monitoring start time offset, e.g. "-PT1H" (default: None)

src/sagemaker/processing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1242,7 +1242,7 @@ def __init__(
12421242
input_name (str or PipelineVariable): The name for the input. If a name
12431243
is not provided, one will be generated (eg. "input-1").
12441244
s3_data_type (str or PipelineVariable): Valid options are "ManifestFile" or "S3Prefix".
1245-
s3_input_mode (str or PipelineVariable): Valid options are "Pipe" or "File".
1245+
s3_input_mode (str or PipelineVariable): Valid options are "Pipe", "File" or "FastFile".
12461246
s3_data_distribution_type (str or PipelineVariable): Valid options are "FullyReplicated"
12471247
or "ShardedByS3Key".
12481248
s3_compression_type (str or PipelineVariable): Valid options are "None" or "Gzip".

0 commit comments

Comments
 (0)