/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace XRay { namespace Model { class AWS_XRAY_API GetEncryptionConfigResult { public: GetEncryptionConfigResult(); GetEncryptionConfigResult(const Aws::AmazonWebServiceResult& result); GetEncryptionConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The encryption configuration document.

*/ inline const EncryptionConfig& GetEncryptionConfig() const{ return m_encryptionConfig; } /** *

The encryption configuration document.

*/ inline void SetEncryptionConfig(const EncryptionConfig& value) { m_encryptionConfig = value; } /** *

The encryption configuration document.

*/ inline void SetEncryptionConfig(EncryptionConfig&& value) { m_encryptionConfig = std::move(value); } /** *

The encryption configuration document.

*/ inline GetEncryptionConfigResult& WithEncryptionConfig(const EncryptionConfig& value) { SetEncryptionConfig(value); return *this;} /** *

The encryption configuration document.

*/ inline GetEncryptionConfigResult& WithEncryptionConfig(EncryptionConfig&& value) { SetEncryptionConfig(std::move(value)); return *this;} private: EncryptionConfig m_encryptionConfig; }; } // namespace Model } // namespace XRay } // namespace Aws