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/UpdateScheduledAuditResult.h

78 lines
2.0 KiB
C
Raw Normal View History

/**
* 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/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace IoT
{
namespace Model
{
class AWS_IOT_API UpdateScheduledAuditResult
{
public:
UpdateScheduledAuditResult();
UpdateScheduledAuditResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
UpdateScheduledAuditResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The ARN of the scheduled audit.</p>
*/
inline const Aws::String& GetScheduledAuditArn() const{ return m_scheduledAuditArn; }
/**
* <p>The ARN of the scheduled audit.</p>
*/
inline void SetScheduledAuditArn(const Aws::String& value) { m_scheduledAuditArn = value; }
/**
* <p>The ARN of the scheduled audit.</p>
*/
inline void SetScheduledAuditArn(Aws::String&& value) { m_scheduledAuditArn = std::move(value); }
/**
* <p>The ARN of the scheduled audit.</p>
*/
inline void SetScheduledAuditArn(const char* value) { m_scheduledAuditArn.assign(value); }
/**
* <p>The ARN of the scheduled audit.</p>
*/
inline UpdateScheduledAuditResult& WithScheduledAuditArn(const Aws::String& value) { SetScheduledAuditArn(value); return *this;}
/**
* <p>The ARN of the scheduled audit.</p>
*/
inline UpdateScheduledAuditResult& WithScheduledAuditArn(Aws::String&& value) { SetScheduledAuditArn(std::move(value)); return *this;}
/**
* <p>The ARN of the scheduled audit.</p>
*/
inline UpdateScheduledAuditResult& WithScheduledAuditArn(const char* value) { SetScheduledAuditArn(value); return *this;}
private:
Aws::String m_scheduledAuditArn;
};
} // namespace Model
} // namespace IoT
} // namespace Aws