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

The output configuration for the processing job.

See Also:

* AWS * API Reference

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

Output configuration information for a processing job.

*/ inline const Aws::Vector& GetOutputs() const{ return m_outputs; } /** *

Output configuration information for a processing job.

*/ inline bool OutputsHasBeenSet() const { return m_outputsHasBeenSet; } /** *

Output configuration information for a processing job.

*/ inline void SetOutputs(const Aws::Vector& value) { m_outputsHasBeenSet = true; m_outputs = value; } /** *

Output configuration information for a processing job.

*/ inline void SetOutputs(Aws::Vector&& value) { m_outputsHasBeenSet = true; m_outputs = std::move(value); } /** *

Output configuration information for a processing job.

*/ inline ProcessingOutputConfig& WithOutputs(const Aws::Vector& value) { SetOutputs(value); return *this;} /** *

Output configuration information for a processing job.

*/ inline ProcessingOutputConfig& WithOutputs(Aws::Vector&& value) { SetOutputs(std::move(value)); return *this;} /** *

Output configuration information for a processing job.

*/ inline ProcessingOutputConfig& AddOutputs(const ProcessingOutput& value) { m_outputsHasBeenSet = true; m_outputs.push_back(value); return *this; } /** *

Output configuration information for a processing job.

*/ inline ProcessingOutputConfig& AddOutputs(ProcessingOutput&& value) { m_outputsHasBeenSet = true; m_outputs.push_back(std::move(value)); return *this; } /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; } /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; } /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; } /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); } /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); } /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline ProcessingOutputConfig& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;} /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline ProcessingOutputConfig& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;} /** *

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to * encrypt the processing job output. KmsKeyId can be an ID of a KMS * key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The * KmsKeyId is applied to all outputs.

*/ inline ProcessingOutputConfig& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;} private: Aws::Vector m_outputs; bool m_outputsHasBeenSet; Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet; }; } // namespace Model } // namespace SageMaker } // namespace Aws