pub struct ProcessingS3Output {
pub local_path: String,
pub s3_upload_mode: String,
pub s3_uri: String,
}
Expand description
Information about where and how you want to store the results of an processing job.
Fields§
§local_path: String
The local path to the Amazon S3 bucket where you want Amazon SageMaker to save the results of an processing job. LocalPath
is an absolute path to the input data.
s3_upload_mode: String
Whether to upload the results of the processing job continuously or after the job completes.
s3_uri: String
A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.
Trait Implementations§
Source§impl Clone for ProcessingS3Output
impl Clone for ProcessingS3Output
Source§fn clone(&self) -> ProcessingS3Output
fn clone(&self) -> ProcessingS3Output
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProcessingS3Output
impl Debug for ProcessingS3Output
Source§impl Default for ProcessingS3Output
impl Default for ProcessingS3Output
Source§fn default() -> ProcessingS3Output
fn default() -> ProcessingS3Output
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessingS3Output
impl<'de> Deserialize<'de> for ProcessingS3Output
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProcessingS3Output
impl PartialEq for ProcessingS3Output
Source§impl Serialize for ProcessingS3Output
impl Serialize for ProcessingS3Output
impl StructuralPartialEq for ProcessingS3Output
Auto Trait Implementations§
impl Freeze for ProcessingS3Output
impl RefUnwindSafe for ProcessingS3Output
impl Send for ProcessingS3Output
impl Sync for ProcessingS3Output
impl Unpin for ProcessingS3Output
impl UnwindSafe for ProcessingS3Output
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more