/** * 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 DeleteUserSettingsRequest : public WorkSpacesWebRequest { public: AWS_WORKSPACESWEB_API DeleteUserSettingsRequest(); // 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 "DeleteUserSettings"; } AWS_WORKSPACESWEB_API Aws::String SerializePayload() const override; /** *

The ARN of the user settings.

*/ inline const Aws::String& GetUserSettingsArn() const{ return m_userSettingsArn; } /** *

The ARN of the user settings.

*/ inline bool UserSettingsArnHasBeenSet() const { return m_userSettingsArnHasBeenSet; } /** *

The ARN of the user settings.

*/ inline void SetUserSettingsArn(const Aws::String& value) { m_userSettingsArnHasBeenSet = true; m_userSettingsArn = value; } /** *

The ARN of the user settings.

*/ inline void SetUserSettingsArn(Aws::String&& value) { m_userSettingsArnHasBeenSet = true; m_userSettingsArn = std::move(value); } /** *

The ARN of the user settings.

*/ inline void SetUserSettingsArn(const char* value) { m_userSettingsArnHasBeenSet = true; m_userSettingsArn.assign(value); } /** *

The ARN of the user settings.

*/ inline DeleteUserSettingsRequest& WithUserSettingsArn(const Aws::String& value) { SetUserSettingsArn(value); return *this;} /** *

The ARN of the user settings.

*/ inline DeleteUserSettingsRequest& WithUserSettingsArn(Aws::String&& value) { SetUserSettingsArn(std::move(value)); return *this;} /** *

The ARN of the user settings.

*/ inline DeleteUserSettingsRequest& WithUserSettingsArn(const char* value) { SetUserSettingsArn(value); return *this;} private: Aws::String m_userSettingsArn; bool m_userSettingsArnHasBeenSet = false; }; } // namespace Model } // namespace WorkSpacesWeb } // namespace Aws