/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The summary of the trust store.See Also:
AWS
* API Reference
The ARN of the trust store.
*/ inline const Aws::String& GetTrustStoreArn() const{ return m_trustStoreArn; } /** *The ARN of the trust store.
*/ inline bool TrustStoreArnHasBeenSet() const { return m_trustStoreArnHasBeenSet; } /** *The ARN of the trust store.
*/ inline void SetTrustStoreArn(const Aws::String& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = value; } /** *The ARN of the trust store.
*/ inline void SetTrustStoreArn(Aws::String&& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = std::move(value); } /** *The ARN of the trust store.
*/ inline void SetTrustStoreArn(const char* value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn.assign(value); } /** *The ARN of the trust store.
*/ inline TrustStoreSummary& WithTrustStoreArn(const Aws::String& value) { SetTrustStoreArn(value); return *this;} /** *The ARN of the trust store.
*/ inline TrustStoreSummary& WithTrustStoreArn(Aws::String&& value) { SetTrustStoreArn(std::move(value)); return *this;} /** *The ARN of the trust store.
*/ inline TrustStoreSummary& WithTrustStoreArn(const char* value) { SetTrustStoreArn(value); return *this;} private: Aws::String m_trustStoreArn; bool m_trustStoreArnHasBeenSet = false; }; } // namespace Model } // namespace WorkSpacesWeb } // namespace Aws