/**
* 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 Redshift
{
namespace Model
{
/**
* See Also:
AWS
* API Reference
*/
class DescribeLoggingStatusRequest : public RedshiftRequest
{
public:
AWS_REDSHIFT_API DescribeLoggingStatusRequest();
// 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 "DescribeLoggingStatus"; }
AWS_REDSHIFT_API Aws::String SerializePayload() const override;
protected:
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline const Aws::String& GetClusterIdentifier() const{ return m_clusterIdentifier; }
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline bool ClusterIdentifierHasBeenSet() const { return m_clusterIdentifierHasBeenSet; }
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline void SetClusterIdentifier(const Aws::String& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = value; }
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline void SetClusterIdentifier(Aws::String&& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = std::move(value); }
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline void SetClusterIdentifier(const char* value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier.assign(value); }
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline DescribeLoggingStatusRequest& WithClusterIdentifier(const Aws::String& value) { SetClusterIdentifier(value); return *this;}
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline DescribeLoggingStatusRequest& WithClusterIdentifier(Aws::String&& value) { SetClusterIdentifier(std::move(value)); return *this;}
/**
* The identifier of the cluster from which to get the logging status.
* Example: examplecluster
*/
inline DescribeLoggingStatusRequest& WithClusterIdentifier(const char* value) { SetClusterIdentifier(value); return *this;}
private:
Aws::String m_clusterIdentifier;
bool m_clusterIdentifierHasBeenSet = false;
};
} // namespace Model
} // namespace Redshift
} // namespace Aws