This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-xray/include/aws/xray/model/GetEncryptionConfigResult.h

68 lines
1.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/xray/XRay_EXPORTS.h>
#include <aws/xray/model/EncryptionConfig.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
GetEncryptionConfigResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The encryption configuration document.</p>
*/
inline const EncryptionConfig& GetEncryptionConfig() const{ return m_encryptionConfig; }
/**
* <p>The encryption configuration document.</p>
*/
inline void SetEncryptionConfig(const EncryptionConfig& value) { m_encryptionConfig = value; }
/**
* <p>The encryption configuration document.</p>
*/
inline void SetEncryptionConfig(EncryptionConfig&& value) { m_encryptionConfig = std::move(value); }
/**
* <p>The encryption configuration document.</p>
*/
inline GetEncryptionConfigResult& WithEncryptionConfig(const EncryptionConfig& value) { SetEncryptionConfig(value); return *this;}
/**
* <p>The encryption configuration document.</p>
*/
inline GetEncryptionConfigResult& WithEncryptionConfig(EncryptionConfig&& value) { SetEncryptionConfig(std::move(value)); return *this;}
private:
EncryptionConfig m_encryptionConfig;
};
} // namespace Model
} // namespace XRay
} // namespace Aws