/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoT { namespace Model { class AWS_IOT_API CreateScheduledAuditResult { public: CreateScheduledAuditResult(); CreateScheduledAuditResult(const Aws::AmazonWebServiceResult& result); CreateScheduledAuditResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ARN of the scheduled audit.

*/ inline const Aws::String& GetScheduledAuditArn() const{ return m_scheduledAuditArn; } /** *

The ARN of the scheduled audit.

*/ inline void SetScheduledAuditArn(const Aws::String& value) { m_scheduledAuditArn = value; } /** *

The ARN of the scheduled audit.

*/ inline void SetScheduledAuditArn(Aws::String&& value) { m_scheduledAuditArn = std::move(value); } /** *

The ARN of the scheduled audit.

*/ inline void SetScheduledAuditArn(const char* value) { m_scheduledAuditArn.assign(value); } /** *

The ARN of the scheduled audit.

*/ inline CreateScheduledAuditResult& WithScheduledAuditArn(const Aws::String& value) { SetScheduledAuditArn(value); return *this;} /** *

The ARN of the scheduled audit.

*/ inline CreateScheduledAuditResult& WithScheduledAuditArn(Aws::String&& value) { SetScheduledAuditArn(std::move(value)); return *this;} /** *

The ARN of the scheduled audit.

*/ inline CreateScheduledAuditResult& WithScheduledAuditArn(const char* value) { SetScheduledAuditArn(value); return *this;} private: Aws::String m_scheduledAuditArn; }; } // namespace Model } // namespace IoT } // namespace Aws