/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about where and how you want to store the results of an
* processing job.See Also:
AWS
* API Reference
A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline const Aws::String& GetS3Uri() const{ return m_s3Uri; } /** *A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; } /** *A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; } /** *A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); } /** *A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); } /** *A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline ProcessingS3Output& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;} /** *A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline ProcessingS3Output& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;} /** *A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to * save the results of a processing job.
*/ inline ProcessingS3Output& WithS3Uri(const char* value) { SetS3Uri(value); return *this;} /** *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.
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.
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.
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.
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.
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.
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.
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.
Whether to upload the results of the processing job continuously or after the * job completes.
*/ inline const ProcessingS3UploadMode& GetS3UploadMode() const{ return m_s3UploadMode; } /** *Whether to upload the results of the processing job continuously or after the * job completes.
*/ inline bool S3UploadModeHasBeenSet() const { return m_s3UploadModeHasBeenSet; } /** *Whether to upload the results of the processing job continuously or after the * job completes.
*/ inline void SetS3UploadMode(const ProcessingS3UploadMode& value) { m_s3UploadModeHasBeenSet = true; m_s3UploadMode = value; } /** *Whether to upload the results of the processing job continuously or after the * job completes.
*/ inline void SetS3UploadMode(ProcessingS3UploadMode&& value) { m_s3UploadModeHasBeenSet = true; m_s3UploadMode = std::move(value); } /** *Whether to upload the results of the processing job continuously or after the * job completes.
*/ inline ProcessingS3Output& WithS3UploadMode(const ProcessingS3UploadMode& value) { SetS3UploadMode(value); return *this;} /** *Whether to upload the results of the processing job continuously or after the * job completes.
*/ inline ProcessingS3Output& WithS3UploadMode(ProcessingS3UploadMode&& value) { SetS3UploadMode(std::move(value)); return *this;} private: Aws::String m_s3Uri; bool m_s3UriHasBeenSet; Aws::String m_localPath; bool m_localPathHasBeenSet; ProcessingS3UploadMode m_s3UploadMode; bool m_s3UploadModeHasBeenSet; }; } // namespace Model } // namespace SageMaker } // namespace Aws