/** * 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 LookoutEquipment { namespace Model { /** *

Specifies configuration information for the output results from for the * inference, including KMS key ID and output S3 location.

See * Also:

AWS * API Reference

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

Specifies configuration information for the output results from for the * inference, output S3 location.

*/ inline const InferenceS3OutputConfiguration& GetS3OutputConfiguration() const{ return m_s3OutputConfiguration; } /** *

Specifies configuration information for the output results from for the * inference, output S3 location.

*/ inline bool S3OutputConfigurationHasBeenSet() const { return m_s3OutputConfigurationHasBeenSet; } /** *

Specifies configuration information for the output results from for the * inference, output S3 location.

*/ inline void SetS3OutputConfiguration(const InferenceS3OutputConfiguration& value) { m_s3OutputConfigurationHasBeenSet = true; m_s3OutputConfiguration = value; } /** *

Specifies configuration information for the output results from for the * inference, output S3 location.

*/ inline void SetS3OutputConfiguration(InferenceS3OutputConfiguration&& value) { m_s3OutputConfigurationHasBeenSet = true; m_s3OutputConfiguration = std::move(value); } /** *

Specifies configuration information for the output results from for the * inference, output S3 location.

*/ inline InferenceOutputConfiguration& WithS3OutputConfiguration(const InferenceS3OutputConfiguration& value) { SetS3OutputConfiguration(value); return *this;} /** *

Specifies configuration information for the output results from for the * inference, output S3 location.

*/ inline InferenceOutputConfiguration& WithS3OutputConfiguration(InferenceS3OutputConfiguration&& value) { SetS3OutputConfiguration(std::move(value)); return *this;} /** *

The ID number for the AWS KMS key used to encrypt the inference output.

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

The ID number for the AWS KMS key used to encrypt the inference output.

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

The ID number for the AWS KMS key used to encrypt the inference output.

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

The ID number for the AWS KMS key used to encrypt the inference output.

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

The ID number for the AWS KMS key used to encrypt the inference output.

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

The ID number for the AWS KMS key used to encrypt the inference output.

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

The ID number for the AWS KMS key used to encrypt the inference output.

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

The ID number for the AWS KMS key used to encrypt the inference output.

*/ inline InferenceOutputConfiguration& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;} private: InferenceS3OutputConfiguration m_s3OutputConfiguration; bool m_s3OutputConfigurationHasBeenSet = false; Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws