/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Initiates the verification of an existing trust relationship between an
* Managed Microsoft AD directory and an external domain.See Also:
* AWS
* API Reference
The unique Trust ID of the trust relationship to verify.
*/ inline const Aws::String& GetTrustId() const{ return m_trustId; } /** *The unique Trust ID of the trust relationship to verify.
*/ inline bool TrustIdHasBeenSet() const { return m_trustIdHasBeenSet; } /** *The unique Trust ID of the trust relationship to verify.
*/ inline void SetTrustId(const Aws::String& value) { m_trustIdHasBeenSet = true; m_trustId = value; } /** *The unique Trust ID of the trust relationship to verify.
*/ inline void SetTrustId(Aws::String&& value) { m_trustIdHasBeenSet = true; m_trustId = std::move(value); } /** *The unique Trust ID of the trust relationship to verify.
*/ inline void SetTrustId(const char* value) { m_trustIdHasBeenSet = true; m_trustId.assign(value); } /** *The unique Trust ID of the trust relationship to verify.
*/ inline VerifyTrustRequest& WithTrustId(const Aws::String& value) { SetTrustId(value); return *this;} /** *The unique Trust ID of the trust relationship to verify.
*/ inline VerifyTrustRequest& WithTrustId(Aws::String&& value) { SetTrustId(std::move(value)); return *this;} /** *The unique Trust ID of the trust relationship to verify.
*/ inline VerifyTrustRequest& WithTrustId(const char* value) { SetTrustId(value); return *this;} private: Aws::String m_trustId; bool m_trustIdHasBeenSet = false; }; } // namespace Model } // namespace DirectoryService } // namespace Aws