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

Information about the type of client authentication for the specified * directory. The following information is retrieved: The date and time when the * status of the client authentication type was last updated, whether the client * authentication type is enabled or disabled, and the type of client * authentication.

*/ inline const Aws::Vector& GetClientAuthenticationSettingsInfo() const{ return m_clientAuthenticationSettingsInfo; } /** *

Information about the type of client authentication for the specified * directory. The following information is retrieved: The date and time when the * status of the client authentication type was last updated, whether the client * authentication type is enabled or disabled, and the type of client * authentication.

*/ inline void SetClientAuthenticationSettingsInfo(const Aws::Vector& value) { m_clientAuthenticationSettingsInfo = value; } /** *

Information about the type of client authentication for the specified * directory. The following information is retrieved: The date and time when the * status of the client authentication type was last updated, whether the client * authentication type is enabled or disabled, and the type of client * authentication.

*/ inline void SetClientAuthenticationSettingsInfo(Aws::Vector&& value) { m_clientAuthenticationSettingsInfo = std::move(value); } /** *

Information about the type of client authentication for the specified * directory. The following information is retrieved: The date and time when the * status of the client authentication type was last updated, whether the client * authentication type is enabled or disabled, and the type of client * authentication.

*/ inline DescribeClientAuthenticationSettingsResult& WithClientAuthenticationSettingsInfo(const Aws::Vector& value) { SetClientAuthenticationSettingsInfo(value); return *this;} /** *

Information about the type of client authentication for the specified * directory. The following information is retrieved: The date and time when the * status of the client authentication type was last updated, whether the client * authentication type is enabled or disabled, and the type of client * authentication.

*/ inline DescribeClientAuthenticationSettingsResult& WithClientAuthenticationSettingsInfo(Aws::Vector&& value) { SetClientAuthenticationSettingsInfo(std::move(value)); return *this;} /** *

Information about the type of client authentication for the specified * directory. The following information is retrieved: The date and time when the * status of the client authentication type was last updated, whether the client * authentication type is enabled or disabled, and the type of client * authentication.

*/ inline DescribeClientAuthenticationSettingsResult& AddClientAuthenticationSettingsInfo(const ClientAuthenticationSettingInfo& value) { m_clientAuthenticationSettingsInfo.push_back(value); return *this; } /** *

Information about the type of client authentication for the specified * directory. The following information is retrieved: The date and time when the * status of the client authentication type was last updated, whether the client * authentication type is enabled or disabled, and the type of client * authentication.

*/ inline DescribeClientAuthenticationSettingsResult& AddClientAuthenticationSettingsInfo(ClientAuthenticationSettingInfo&& value) { m_clientAuthenticationSettingsInfo.push_back(std::move(value)); return *this; } /** *

The next token used to retrieve the client authentication settings if the * number of setting types exceeds page limit and there is another page.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The next token used to retrieve the client authentication settings if the * number of setting types exceeds page limit and there is another page.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

The next token used to retrieve the client authentication settings if the * number of setting types exceeds page limit and there is another page.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

The next token used to retrieve the client authentication settings if the * number of setting types exceeds page limit and there is another page.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The next token used to retrieve the client authentication settings if the * number of setting types exceeds page limit and there is another page.

*/ inline DescribeClientAuthenticationSettingsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The next token used to retrieve the client authentication settings if the * number of setting types exceeds page limit and there is another page.

*/ inline DescribeClientAuthenticationSettingsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The next token used to retrieve the client authentication settings if the * number of setting types exceeds page limit and there is another page.

*/ inline DescribeClientAuthenticationSettingsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeClientAuthenticationSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeClientAuthenticationSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeClientAuthenticationSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_clientAuthenticationSettingsInfo; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace DirectoryService } // namespace Aws