/** * 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 ConfigService { namespace Model { /** */ class DeleteRetentionConfigurationRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API DeleteRetentionConfigurationRequest(); // 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 "DeleteRetentionConfiguration"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the retention configuration to delete.

*/ inline const Aws::String& GetRetentionConfigurationName() const{ return m_retentionConfigurationName; } /** *

The name of the retention configuration to delete.

*/ inline bool RetentionConfigurationNameHasBeenSet() const { return m_retentionConfigurationNameHasBeenSet; } /** *

The name of the retention configuration to delete.

*/ inline void SetRetentionConfigurationName(const Aws::String& value) { m_retentionConfigurationNameHasBeenSet = true; m_retentionConfigurationName = value; } /** *

The name of the retention configuration to delete.

*/ inline void SetRetentionConfigurationName(Aws::String&& value) { m_retentionConfigurationNameHasBeenSet = true; m_retentionConfigurationName = std::move(value); } /** *

The name of the retention configuration to delete.

*/ inline void SetRetentionConfigurationName(const char* value) { m_retentionConfigurationNameHasBeenSet = true; m_retentionConfigurationName.assign(value); } /** *

The name of the retention configuration to delete.

*/ inline DeleteRetentionConfigurationRequest& WithRetentionConfigurationName(const Aws::String& value) { SetRetentionConfigurationName(value); return *this;} /** *

The name of the retention configuration to delete.

*/ inline DeleteRetentionConfigurationRequest& WithRetentionConfigurationName(Aws::String&& value) { SetRetentionConfigurationName(std::move(value)); return *this;} /** *

The name of the retention configuration to delete.

*/ inline DeleteRetentionConfigurationRequest& WithRetentionConfigurationName(const char* value) { SetRetentionConfigurationName(value); return *this;} private: Aws::String m_retentionConfigurationName; bool m_retentionConfigurationNameHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws