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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The unique identifier for the configured table that the analysis rule applies * to. Currently accepts the configured table ID.

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

The analysis rule type to be deleted. Configured table analysis rules are * uniquely identified by their configured table identifier and analysis rule * type.

*/ inline const ConfiguredTableAnalysisRuleType& GetAnalysisRuleType() const{ return m_analysisRuleType; } /** *

The analysis rule type to be deleted. Configured table analysis rules are * uniquely identified by their configured table identifier and analysis rule * type.

*/ inline bool AnalysisRuleTypeHasBeenSet() const { return m_analysisRuleTypeHasBeenSet; } /** *

The analysis rule type to be deleted. Configured table analysis rules are * uniquely identified by their configured table identifier and analysis rule * type.

*/ inline void SetAnalysisRuleType(const ConfiguredTableAnalysisRuleType& value) { m_analysisRuleTypeHasBeenSet = true; m_analysisRuleType = value; } /** *

The analysis rule type to be deleted. Configured table analysis rules are * uniquely identified by their configured table identifier and analysis rule * type.

*/ inline void SetAnalysisRuleType(ConfiguredTableAnalysisRuleType&& value) { m_analysisRuleTypeHasBeenSet = true; m_analysisRuleType = std::move(value); } /** *

The analysis rule type to be deleted. Configured table analysis rules are * uniquely identified by their configured table identifier and analysis rule * type.

*/ inline DeleteConfiguredTableAnalysisRuleRequest& WithAnalysisRuleType(const ConfiguredTableAnalysisRuleType& value) { SetAnalysisRuleType(value); return *this;} /** *

The analysis rule type to be deleted. Configured table analysis rules are * uniquely identified by their configured table identifier and analysis rule * type.

*/ inline DeleteConfiguredTableAnalysisRuleRequest& WithAnalysisRuleType(ConfiguredTableAnalysisRuleType&& value) { SetAnalysisRuleType(std::move(value)); return *this;} private: Aws::String m_configuredTableIdentifier; bool m_configuredTableIdentifierHasBeenSet = false; ConfiguredTableAnalysisRuleType m_analysisRuleType; bool m_analysisRuleTypeHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws