/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/workspaces-web/WorkSpacesWeb_EXPORTS.h> #include <aws/workspaces-web/WorkSpacesWebRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Http { class URI; } //namespace Http namespace WorkSpacesWeb { namespace Model { /** */ class AssociateTrustStoreRequest : public WorkSpacesWebRequest { public: AWS_WORKSPACESWEB_API AssociateTrustStoreRequest(); // 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 "AssociateTrustStore"; } AWS_WORKSPACESWEB_API Aws::String SerializePayload() const override; AWS_WORKSPACESWEB_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** * <p>The ARN of the web portal.</p> */ inline const Aws::String& GetPortalArn() const{ return m_portalArn; } /** * <p>The ARN of the web portal.</p> */ inline bool PortalArnHasBeenSet() const { return m_portalArnHasBeenSet; } /** * <p>The ARN of the web portal.</p> */ inline void SetPortalArn(const Aws::String& value) { m_portalArnHasBeenSet = true; m_portalArn = value; } /** * <p>The ARN of the web portal.</p> */ inline void SetPortalArn(Aws::String&& value) { m_portalArnHasBeenSet = true; m_portalArn = std::move(value); } /** * <p>The ARN of the web portal.</p> */ inline void SetPortalArn(const char* value) { m_portalArnHasBeenSet = true; m_portalArn.assign(value); } /** * <p>The ARN of the web portal.</p> */ inline AssociateTrustStoreRequest& WithPortalArn(const Aws::String& value) { SetPortalArn(value); return *this;} /** * <p>The ARN of the web portal.</p> */ inline AssociateTrustStoreRequest& WithPortalArn(Aws::String&& value) { SetPortalArn(std::move(value)); return *this;} /** * <p>The ARN of the web portal.</p> */ inline AssociateTrustStoreRequest& WithPortalArn(const char* value) { SetPortalArn(value); return *this;} /** * <p>The ARN of the trust store.</p> */ inline const Aws::String& GetTrustStoreArn() const{ return m_trustStoreArn; } /** * <p>The ARN of the trust store.</p> */ inline bool TrustStoreArnHasBeenSet() const { return m_trustStoreArnHasBeenSet; } /** * <p>The ARN of the trust store.</p> */ inline void SetTrustStoreArn(const Aws::String& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = value; } /** * <p>The ARN of the trust store.</p> */ inline void SetTrustStoreArn(Aws::String&& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = std::move(value); } /** * <p>The ARN of the trust store.</p> */ inline void SetTrustStoreArn(const char* value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn.assign(value); } /** * <p>The ARN of the trust store.</p> */ inline AssociateTrustStoreRequest& WithTrustStoreArn(const Aws::String& value) { SetTrustStoreArn(value); return *this;} /** * <p>The ARN of the trust store.</p> */ inline AssociateTrustStoreRequest& WithTrustStoreArn(Aws::String&& value) { SetTrustStoreArn(std::move(value)); return *this;} /** * <p>The ARN of the trust store.</p> */ inline AssociateTrustStoreRequest& WithTrustStoreArn(const char* value) { SetTrustStoreArn(value); return *this;} private: Aws::String m_portalArn; bool m_portalArnHasBeenSet = false; Aws::String m_trustStoreArn; bool m_trustStoreArnHasBeenSet = false; }; } // namespace Model } // namespace WorkSpacesWeb } // namespace Aws