/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

The inputs for a processing job.

See Also:

AWS * API Reference

*/ class AWS_SAGEMAKER_API ProcessingInput { public: ProcessingInput(); ProcessingInput(Aws::Utils::Json::JsonView jsonValue); ProcessingInput& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the inputs for the processing job.

*/ inline const Aws::String& GetInputName() const{ return m_inputName; } /** *

The name of the inputs for the processing job.

*/ inline bool InputNameHasBeenSet() const { return m_inputNameHasBeenSet; } /** *

The name of the inputs for the processing job.

*/ inline void SetInputName(const Aws::String& value) { m_inputNameHasBeenSet = true; m_inputName = value; } /** *

The name of the inputs for the processing job.

*/ inline void SetInputName(Aws::String&& value) { m_inputNameHasBeenSet = true; m_inputName = std::move(value); } /** *

The name of the inputs for the processing job.

*/ inline void SetInputName(const char* value) { m_inputNameHasBeenSet = true; m_inputName.assign(value); } /** *

The name of the inputs for the processing job.

*/ inline ProcessingInput& WithInputName(const Aws::String& value) { SetInputName(value); return *this;} /** *

The name of the inputs for the processing job.

*/ inline ProcessingInput& WithInputName(Aws::String&& value) { SetInputName(std::move(value)); return *this;} /** *

The name of the inputs for the processing job.

*/ inline ProcessingInput& WithInputName(const char* value) { SetInputName(value); return *this;} /** *

The S3 inputs for the processing job.

*/ inline const ProcessingS3Input& GetS3Input() const{ return m_s3Input; } /** *

The S3 inputs for the processing job.

*/ inline bool S3InputHasBeenSet() const { return m_s3InputHasBeenSet; } /** *

The S3 inputs for the processing job.

*/ inline void SetS3Input(const ProcessingS3Input& value) { m_s3InputHasBeenSet = true; m_s3Input = value; } /** *

The S3 inputs for the processing job.

*/ inline void SetS3Input(ProcessingS3Input&& value) { m_s3InputHasBeenSet = true; m_s3Input = std::move(value); } /** *

The S3 inputs for the processing job.

*/ inline ProcessingInput& WithS3Input(const ProcessingS3Input& value) { SetS3Input(value); return *this;} /** *

The S3 inputs for the processing job.

*/ inline ProcessingInput& WithS3Input(ProcessingS3Input&& value) { SetS3Input(std::move(value)); return *this;} private: Aws::String m_inputName; bool m_inputNameHasBeenSet; ProcessingS3Input m_s3Input; bool m_s3InputHasBeenSet; }; } // namespace Model } // namespace SageMaker } // namespace Aws