/** * 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 CleanRooms { namespace Model { /** */ class UpdateConfiguredTableRequest : public CleanRoomsRequest { public: AWS_CLEANROOMS_API UpdateConfiguredTableRequest(); // 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 "UpdateConfiguredTable"; } AWS_CLEANROOMS_API Aws::String SerializePayload() const override; /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline const Aws::String& GetConfiguredTableIdentifier() const{ return m_configuredTableIdentifier; } /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline bool ConfiguredTableIdentifierHasBeenSet() const { return m_configuredTableIdentifierHasBeenSet; } /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline void SetConfiguredTableIdentifier(const Aws::String& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = value; } /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline void SetConfiguredTableIdentifier(Aws::String&& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = std::move(value); } /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline void SetConfiguredTableIdentifier(const char* value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier.assign(value); } /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline UpdateConfiguredTableRequest& WithConfiguredTableIdentifier(const Aws::String& value) { SetConfiguredTableIdentifier(value); return *this;} /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline UpdateConfiguredTableRequest& WithConfiguredTableIdentifier(Aws::String&& value) { SetConfiguredTableIdentifier(std::move(value)); return *this;} /** *

The identifier for the configured table to update. Currently accepts the * configured table ID.

*/ inline UpdateConfiguredTableRequest& WithConfiguredTableIdentifier(const char* value) { SetConfiguredTableIdentifier(value); return *this;} /** *

A new name for the configured table.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

A new name for the configured table.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

A new name for the configured table.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

A new name for the configured table.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

A new name for the configured table.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

A new name for the configured table.

*/ inline UpdateConfiguredTableRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

A new name for the configured table.

*/ inline UpdateConfiguredTableRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

A new name for the configured table.

*/ inline UpdateConfiguredTableRequest& WithName(const char* value) { SetName(value); return *this;} /** *

A new description for the configured table.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A new description for the configured table.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A new description for the configured table.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A new description for the configured table.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A new description for the configured table.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A new description for the configured table.

*/ inline UpdateConfiguredTableRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A new description for the configured table.

*/ inline UpdateConfiguredTableRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A new description for the configured table.

*/ inline UpdateConfiguredTableRequest& WithDescription(const char* value) { SetDescription(value); return *this;} private: Aws::String m_configuredTableIdentifier; bool m_configuredTableIdentifierHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws