86 lines
3.1 KiB
C++
86 lines
3.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/config/ConfigService_EXPORTS.h>
|
|
#include <aws/config/ConfigServiceRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ConfigService
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CONFIGSERVICE_API DeleteRetentionConfigurationRequest : public ConfigServiceRequest
|
|
{
|
|
public:
|
|
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::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline const Aws::String& GetRetentionConfigurationName() const{ return m_retentionConfigurationName; }
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline bool RetentionConfigurationNameHasBeenSet() const { return m_retentionConfigurationNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline void SetRetentionConfigurationName(const Aws::String& value) { m_retentionConfigurationNameHasBeenSet = true; m_retentionConfigurationName = value; }
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline void SetRetentionConfigurationName(Aws::String&& value) { m_retentionConfigurationNameHasBeenSet = true; m_retentionConfigurationName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline void SetRetentionConfigurationName(const char* value) { m_retentionConfigurationNameHasBeenSet = true; m_retentionConfigurationName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline DeleteRetentionConfigurationRequest& WithRetentionConfigurationName(const Aws::String& value) { SetRetentionConfigurationName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline DeleteRetentionConfigurationRequest& WithRetentionConfigurationName(Aws::String&& value) { SetRetentionConfigurationName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the retention configuration to delete.</p>
|
|
*/
|
|
inline DeleteRetentionConfigurationRequest& WithRetentionConfigurationName(const char* value) { SetRetentionConfigurationName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_retentionConfigurationName;
|
|
bool m_retentionConfigurationNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ConfigService
|
|
} // namespace Aws
|