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-kafka/include/aws/kafka/model/DescribeConfigurationRequest.h

108 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/kafka/Kafka_EXPORTS.h>
#include <aws/kafka/KafkaRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Kafka
{
namespace Model
{
/**
*/
class AWS_KAFKA_API DescribeConfigurationRequest : public KafkaRequest
{
public:
DescribeConfigurationRequest();
// 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 "DescribeConfiguration"; }
Aws::String SerializePayload() const override;
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline DescribeConfigurationRequest& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline DescribeConfigurationRequest& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
*
<p>The Amazon Resource Name (ARN) that uniquely identifies an MSK
* configuration and all of its revisions.</p>
*/
inline DescribeConfigurationRequest& WithArn(const char* value) { SetArn(value); return *this;}
private:
Aws::String m_arn;
bool m_arnHasBeenSet;
};
} // namespace Model
} // namespace Kafka
} // namespace Aws