This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-config/include/aws/config/model/DescribeRetentionConfigurationsRequest.h

171 lines
8.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/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace ConfigService
{
namespace Model
{
/**
*/
class AWS_CONFIGSERVICE_API DescribeRetentionConfigurationsRequest : public ConfigServiceRequest
{
public:
DescribeRetentionConfigurationsRequest();
// 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 "DescribeRetentionConfigurations"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline const Aws::Vector<Aws::String>& GetRetentionConfigurationNames() const{ return m_retentionConfigurationNames; }
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline bool RetentionConfigurationNamesHasBeenSet() const { return m_retentionConfigurationNamesHasBeenSet; }
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline void SetRetentionConfigurationNames(const Aws::Vector<Aws::String>& value) { m_retentionConfigurationNamesHasBeenSet = true; m_retentionConfigurationNames = value; }
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline void SetRetentionConfigurationNames(Aws::Vector<Aws::String>&& value) { m_retentionConfigurationNamesHasBeenSet = true; m_retentionConfigurationNames = std::move(value); }
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline DescribeRetentionConfigurationsRequest& WithRetentionConfigurationNames(const Aws::Vector<Aws::String>& value) { SetRetentionConfigurationNames(value); return *this;}
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline DescribeRetentionConfigurationsRequest& WithRetentionConfigurationNames(Aws::Vector<Aws::String>&& value) { SetRetentionConfigurationNames(std::move(value)); return *this;}
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline DescribeRetentionConfigurationsRequest& AddRetentionConfigurationNames(const Aws::String& value) { m_retentionConfigurationNamesHasBeenSet = true; m_retentionConfigurationNames.push_back(value); return *this; }
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline DescribeRetentionConfigurationsRequest& AddRetentionConfigurationNames(Aws::String&& value) { m_retentionConfigurationNamesHasBeenSet = true; m_retentionConfigurationNames.push_back(std::move(value)); return *this; }
/**
* <p>A list of names of retention configurations for which you want details. If
* you do not specify a name, AWS Config returns details for all the retention
* configurations for that account.</p> <p>Currently, AWS Config supports
* only one retention configuration per region in your account.</p>
*/
inline DescribeRetentionConfigurationsRequest& AddRetentionConfigurationNames(const char* value) { m_retentionConfigurationNamesHasBeenSet = true; m_retentionConfigurationNames.push_back(value); return *this; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline DescribeRetentionConfigurationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline DescribeRetentionConfigurationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>The <code>nextToken</code> string returned on a previous page that you use to
* get the next page of results in a paginated response. </p>
*/
inline DescribeRetentionConfigurationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
private:
Aws::Vector<Aws::String> m_retentionConfigurationNames;
bool m_retentionConfigurationNamesHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
};
} // namespace Model
} // namespace ConfigService
} // namespace Aws