132 lines
5.1 KiB
C++
132 lines
5.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ds/DirectoryService_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/ds/model/LDAPSSettingInfo.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace DirectoryService
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_DIRECTORYSERVICE_API DescribeLDAPSSettingsResult
|
|
{
|
|
public:
|
|
DescribeLDAPSSettingsResult();
|
|
DescribeLDAPSSettingsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeLDAPSSettingsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>Information about LDAP security for the specified directory, including status
|
|
* of enablement, state last updated date time, and the reason for the state.</p>
|
|
*/
|
|
inline const Aws::Vector<LDAPSSettingInfo>& GetLDAPSSettingsInfo() const{ return m_lDAPSSettingsInfo; }
|
|
|
|
/**
|
|
* <p>Information about LDAP security for the specified directory, including status
|
|
* of enablement, state last updated date time, and the reason for the state.</p>
|
|
*/
|
|
inline void SetLDAPSSettingsInfo(const Aws::Vector<LDAPSSettingInfo>& value) { m_lDAPSSettingsInfo = value; }
|
|
|
|
/**
|
|
* <p>Information about LDAP security for the specified directory, including status
|
|
* of enablement, state last updated date time, and the reason for the state.</p>
|
|
*/
|
|
inline void SetLDAPSSettingsInfo(Aws::Vector<LDAPSSettingInfo>&& value) { m_lDAPSSettingsInfo = std::move(value); }
|
|
|
|
/**
|
|
* <p>Information about LDAP security for the specified directory, including status
|
|
* of enablement, state last updated date time, and the reason for the state.</p>
|
|
*/
|
|
inline DescribeLDAPSSettingsResult& WithLDAPSSettingsInfo(const Aws::Vector<LDAPSSettingInfo>& value) { SetLDAPSSettingsInfo(value); return *this;}
|
|
|
|
/**
|
|
* <p>Information about LDAP security for the specified directory, including status
|
|
* of enablement, state last updated date time, and the reason for the state.</p>
|
|
*/
|
|
inline DescribeLDAPSSettingsResult& WithLDAPSSettingsInfo(Aws::Vector<LDAPSSettingInfo>&& value) { SetLDAPSSettingsInfo(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Information about LDAP security for the specified directory, including status
|
|
* of enablement, state last updated date time, and the reason for the state.</p>
|
|
*/
|
|
inline DescribeLDAPSSettingsResult& AddLDAPSSettingsInfo(const LDAPSSettingInfo& value) { m_lDAPSSettingsInfo.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>Information about LDAP security for the specified directory, including status
|
|
* of enablement, state last updated date time, and the reason for the state.</p>
|
|
*/
|
|
inline DescribeLDAPSSettingsResult& AddLDAPSSettingsInfo(LDAPSSettingInfo&& value) { m_lDAPSSettingsInfo.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The next token used to retrieve the LDAPS settings if the number of setting
|
|
* types exceeds page limit and there is another page.</p>
|
|
*/
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|
|
|
/**
|
|
* <p>The next token used to retrieve the LDAPS settings if the number of setting
|
|
* types exceeds page limit and there is another page.</p>
|
|
*/
|
|
inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
|
|
|
|
/**
|
|
* <p>The next token used to retrieve the LDAPS settings if the number of setting
|
|
* types exceeds page limit and there is another page.</p>
|
|
*/
|
|
inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>The next token used to retrieve the LDAPS settings if the number of setting
|
|
* types exceeds page limit and there is another page.</p>
|
|
*/
|
|
inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
|
|
|
|
/**
|
|
* <p>The next token used to retrieve the LDAPS settings if the number of setting
|
|
* types exceeds page limit and there is another page.</p>
|
|
*/
|
|
inline DescribeLDAPSSettingsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The next token used to retrieve the LDAPS settings if the number of setting
|
|
* types exceeds page limit and there is another page.</p>
|
|
*/
|
|
inline DescribeLDAPSSettingsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The next token used to retrieve the LDAPS settings if the number of setting
|
|
* types exceeds page limit and there is another page.</p>
|
|
*/
|
|
inline DescribeLDAPSSettingsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<LDAPSSettingInfo> m_lDAPSSettingsInfo;
|
|
|
|
Aws::String m_nextToken;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DirectoryService
|
|
} // namespace Aws
|