/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace WorkSpacesWeb { namespace Model { /** */ class GetTrustStoreRequest : public WorkSpacesWebRequest { public: AWS_WORKSPACESWEB_API GetTrustStoreRequest(); // 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 "GetTrustStore"; } AWS_WORKSPACESWEB_API Aws::String SerializePayload() const override; /** *

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 GetTrustStoreRequest& WithTrustStoreArn(const Aws::String& value) { SetTrustStoreArn(value); return *this;} /** *

The ARN of the trust store.

*/ inline GetTrustStoreRequest& WithTrustStoreArn(Aws::String&& value) { SetTrustStoreArn(std::move(value)); return *this;} /** *

The ARN of the trust store.

*/ inline GetTrustStoreRequest& WithTrustStoreArn(const char* value) { SetTrustStoreArn(value); return *this;} private: Aws::String m_trustStoreArn; bool m_trustStoreArnHasBeenSet = false; }; } // namespace Model } // namespace WorkSpacesWeb } // namespace Aws