/** * 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 { namespace DirectoryService { namespace Model { /** */ class UpdateTrustRequest : public DirectoryServiceRequest { public: AWS_DIRECTORYSERVICE_API UpdateTrustRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateTrust"; } AWS_DIRECTORYSERVICE_API Aws::String SerializePayload() const override; AWS_DIRECTORYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Identifier of the trust relationship.

*/ inline const Aws::String& GetTrustId() const{ return m_trustId; } /** *

Identifier of the trust relationship.

*/ inline bool TrustIdHasBeenSet() const { return m_trustIdHasBeenSet; } /** *

Identifier of the trust relationship.

*/ inline void SetTrustId(const Aws::String& value) { m_trustIdHasBeenSet = true; m_trustId = value; } /** *

Identifier of the trust relationship.

*/ inline void SetTrustId(Aws::String&& value) { m_trustIdHasBeenSet = true; m_trustId = std::move(value); } /** *

Identifier of the trust relationship.

*/ inline void SetTrustId(const char* value) { m_trustIdHasBeenSet = true; m_trustId.assign(value); } /** *

Identifier of the trust relationship.

*/ inline UpdateTrustRequest& WithTrustId(const Aws::String& value) { SetTrustId(value); return *this;} /** *

Identifier of the trust relationship.

*/ inline UpdateTrustRequest& WithTrustId(Aws::String&& value) { SetTrustId(std::move(value)); return *this;} /** *

Identifier of the trust relationship.

*/ inline UpdateTrustRequest& WithTrustId(const char* value) { SetTrustId(value); return *this;} /** *

Updates selective authentication for the trust.

*/ inline const SelectiveAuth& GetSelectiveAuth() const{ return m_selectiveAuth; } /** *

Updates selective authentication for the trust.

*/ inline bool SelectiveAuthHasBeenSet() const { return m_selectiveAuthHasBeenSet; } /** *

Updates selective authentication for the trust.

*/ inline void SetSelectiveAuth(const SelectiveAuth& value) { m_selectiveAuthHasBeenSet = true; m_selectiveAuth = value; } /** *

Updates selective authentication for the trust.

*/ inline void SetSelectiveAuth(SelectiveAuth&& value) { m_selectiveAuthHasBeenSet = true; m_selectiveAuth = std::move(value); } /** *

Updates selective authentication for the trust.

*/ inline UpdateTrustRequest& WithSelectiveAuth(const SelectiveAuth& value) { SetSelectiveAuth(value); return *this;} /** *

Updates selective authentication for the trust.

*/ inline UpdateTrustRequest& WithSelectiveAuth(SelectiveAuth&& value) { SetSelectiveAuth(std::move(value)); return *this;} private: Aws::String m_trustId; bool m_trustIdHasBeenSet = false; SelectiveAuth m_selectiveAuth; bool m_selectiveAuthHasBeenSet = false; }; } // namespace Model } // namespace DirectoryService } // namespace Aws