This is the new AWS CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::SageMaker::ProcessingJob S3Input
Configuration for downloading input data from Amazon S3 into the processing container.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "LocalPath" :String, "S3CompressionType" :String, "S3DataDistributionType" :String, "S3DataType" :String, "S3InputMode" :String, "S3Uri" :String}
YAML
LocalPath:StringS3CompressionType:StringS3DataDistributionType:StringS3DataType:StringS3InputMode:StringS3Uri:String
Properties
LocalPath-
The local path in your container where you want Amazon SageMaker to write input data to.
LocalPathis an absolute path to the input data and must begin with/opt/ml/processing/.LocalPathis a required parameter whenAppManagedisFalse(default).Required: No
Type: String
Pattern:
.*Minimum:
0Maximum:
256Update requires: Replacement
S3CompressionType-
Whether to GZIP-decompress the data in Amazon S3 as it is streamed into the processing container.
Gzipcan only be used whenPipemode is specified as theS3InputMode. InPipemode, Amazon SageMaker streams input data from the source directly to your container without using the EBS volume.Required: No
Type: String
Allowed values:
None | GzipUpdate requires: Replacement
S3DataDistributionType-
Whether to distribute the data from Amazon S3 to all processing instances with
FullyReplicated, or whether the data from Amazon S3 is sharded by Amazon S3 key, downloading one shard of data to each processing instance.Required: No
Type: String
Allowed values:
FullyReplicated | ShardedByS3KeyUpdate requires: Replacement
S3DataType-
Whether you use an
S3Prefixor aManifestFilefor the data type. If you chooseS3Prefix,S3Uriidentifies a key name prefix. Amazon SageMaker uses all objects with the specified key name prefix for the processing job. If you chooseManifestFile,S3Uriidentifies an object that is a manifest file containing a list of object keys that you want Amazon SageMaker to use for the processing job.Required: Yes
Type: String
Allowed values:
ManifestFile | S3PrefixUpdate requires: Replacement
S3InputMode-
Whether to use
FileorPipeinput mode. In File mode, Amazon SageMaker copies the data from the input source onto the local ML storage volume before starting your processing container. This is the most commonly used input mode. InPipemode, Amazon SageMaker streams input data from the source directly to your processing container into named pipes without using the ML storage volume.Required: No
Type: String
Allowed values:
File | PipeUpdate requires: Replacement
S3Uri-
The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.
Required: Yes
Type: String
Pattern:
(https|s3)://([^/]+)/?(.*)Minimum:
0Maximum:
1024Update requires: Replacement