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-iot/include/aws/iot/model/DescribeScheduledAuditRequest.h

84 lines
2.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iot/IoT_EXPORTS.h>
#include <aws/iot/IoTRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace IoT
{
namespace Model
{
/**
*/
class AWS_IOT_API DescribeScheduledAuditRequest : public IoTRequest
{
public:
DescribeScheduledAuditRequest();
// 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 "DescribeScheduledAudit"; }
Aws::String SerializePayload() const override;
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline const Aws::String& GetScheduledAuditName() const{ return m_scheduledAuditName; }
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline bool ScheduledAuditNameHasBeenSet() const { return m_scheduledAuditNameHasBeenSet; }
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline void SetScheduledAuditName(const Aws::String& value) { m_scheduledAuditNameHasBeenSet = true; m_scheduledAuditName = value; }
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline void SetScheduledAuditName(Aws::String&& value) { m_scheduledAuditNameHasBeenSet = true; m_scheduledAuditName = std::move(value); }
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline void SetScheduledAuditName(const char* value) { m_scheduledAuditNameHasBeenSet = true; m_scheduledAuditName.assign(value); }
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline DescribeScheduledAuditRequest& WithScheduledAuditName(const Aws::String& value) { SetScheduledAuditName(value); return *this;}
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline DescribeScheduledAuditRequest& WithScheduledAuditName(Aws::String&& value) { SetScheduledAuditName(std::move(value)); return *this;}
/**
* <p>The name of the scheduled audit whose information you want to get.</p>
*/
inline DescribeScheduledAuditRequest& WithScheduledAuditName(const char* value) { SetScheduledAuditName(value); return *this;}
private:
Aws::String m_scheduledAuditName;
bool m_scheduledAuditNameHasBeenSet;
};
} // namespace Model
} // namespace IoT
} // namespace Aws