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

Contains information about where human output will be stored.

See * Also:

AWS * API Reference

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

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline const Aws::String& GetS3OutputPath() const{ return m_s3OutputPath; } /** *

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline bool S3OutputPathHasBeenSet() const { return m_s3OutputPathHasBeenSet; } /** *

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline void SetS3OutputPath(const Aws::String& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = value; } /** *

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline void SetS3OutputPath(Aws::String&& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = std::move(value); } /** *

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline void SetS3OutputPath(const char* value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath.assign(value); } /** *

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline FlowDefinitionOutputConfig& WithS3OutputPath(const Aws::String& value) { SetS3OutputPath(value); return *this;} /** *

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline FlowDefinitionOutputConfig& WithS3OutputPath(Aws::String&& value) { SetS3OutputPath(std::move(value)); return *this;} /** *

The Amazon S3 path where the object containing human output will be made * available.

To learn more about the format of Amazon A2I output data, see * Amazon * A2I Output Data.

*/ inline FlowDefinitionOutputConfig& WithS3OutputPath(const char* value) { SetS3OutputPath(value); return *this;} /** *

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

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

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

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

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

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

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

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

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

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

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

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

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

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

The Amazon Key Management Service (KMS) key ID for server-side * encryption.

*/ inline FlowDefinitionOutputConfig& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;} private: Aws::String m_s3OutputPath; bool m_s3OutputPathHasBeenSet = false; Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws