/** * 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 GetConfiguredTableRequest : public CleanRoomsRequest { public: AWS_CLEANROOMS_API GetConfiguredTableRequest(); // 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 "GetConfiguredTable"; } AWS_CLEANROOMS_API Aws::String SerializePayload() const override; /** *

The unique ID for the configured table to retrieve.

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

The unique ID for the configured table to retrieve.

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

The unique ID for the configured table to retrieve.

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

The unique ID for the configured table to retrieve.

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

The unique ID for the configured table to retrieve.

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

The unique ID for the configured table to retrieve.

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

The unique ID for the configured table to retrieve.

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

The unique ID for the configured table to retrieve.

*/ inline GetConfiguredTableRequest& WithConfiguredTableIdentifier(const char* value) { SetConfiguredTableIdentifier(value); return *this;} private: Aws::String m_configuredTableIdentifier; bool m_configuredTableIdentifierHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws