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-es/include/aws/es/model/EncryptionAtRestOptionsStatus.h

127 lines
4.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/es/ElasticsearchService_EXPORTS.h>
#include <aws/es/model/EncryptionAtRestOptions.h>
#include <aws/es/model/OptionStatus.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ElasticsearchService
{
namespace Model
{
/**
* <p> Status of the Encryption At Rest options for the specified Elasticsearch
* domain.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/es-2015-01-01/EncryptionAtRestOptionsStatus">AWS
* API Reference</a></p>
*/
class AWS_ELASTICSEARCHSERVICE_API EncryptionAtRestOptionsStatus
{
public:
EncryptionAtRestOptionsStatus();
EncryptionAtRestOptionsStatus(Aws::Utils::Json::JsonView jsonValue);
EncryptionAtRestOptionsStatus& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p> Specifies the Encryption At Rest options for the specified Elasticsearch
* domain.</p>
*/
inline const EncryptionAtRestOptions& GetOptions() const{ return m_options; }
/**
* <p> Specifies the Encryption At Rest options for the specified Elasticsearch
* domain.</p>
*/
inline bool OptionsHasBeenSet() const { return m_optionsHasBeenSet; }
/**
* <p> Specifies the Encryption At Rest options for the specified Elasticsearch
* domain.</p>
*/
inline void SetOptions(const EncryptionAtRestOptions& value) { m_optionsHasBeenSet = true; m_options = value; }
/**
* <p> Specifies the Encryption At Rest options for the specified Elasticsearch
* domain.</p>
*/
inline void SetOptions(EncryptionAtRestOptions&& value) { m_optionsHasBeenSet = true; m_options = std::move(value); }
/**
* <p> Specifies the Encryption At Rest options for the specified Elasticsearch
* domain.</p>
*/
inline EncryptionAtRestOptionsStatus& WithOptions(const EncryptionAtRestOptions& value) { SetOptions(value); return *this;}
/**
* <p> Specifies the Encryption At Rest options for the specified Elasticsearch
* domain.</p>
*/
inline EncryptionAtRestOptionsStatus& WithOptions(EncryptionAtRestOptions&& value) { SetOptions(std::move(value)); return *this;}
/**
* <p> Specifies the status of the Encryption At Rest options for the specified
* Elasticsearch domain.</p>
*/
inline const OptionStatus& GetStatus() const{ return m_status; }
/**
* <p> Specifies the status of the Encryption At Rest options for the specified
* Elasticsearch domain.</p>
*/
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
/**
* <p> Specifies the status of the Encryption At Rest options for the specified
* Elasticsearch domain.</p>
*/
inline void SetStatus(const OptionStatus& value) { m_statusHasBeenSet = true; m_status = value; }
/**
* <p> Specifies the status of the Encryption At Rest options for the specified
* Elasticsearch domain.</p>
*/
inline void SetStatus(OptionStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
/**
* <p> Specifies the status of the Encryption At Rest options for the specified
* Elasticsearch domain.</p>
*/
inline EncryptionAtRestOptionsStatus& WithStatus(const OptionStatus& value) { SetStatus(value); return *this;}
/**
* <p> Specifies the status of the Encryption At Rest options for the specified
* Elasticsearch domain.</p>
*/
inline EncryptionAtRestOptionsStatus& WithStatus(OptionStatus&& value) { SetStatus(std::move(value)); return *this;}
private:
EncryptionAtRestOptions m_options;
bool m_optionsHasBeenSet;
OptionStatus m_status;
bool m_statusHasBeenSet;
};
} // namespace Model
} // namespace ElasticsearchService
} // namespace Aws