/** * 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 ConfigService { namespace Model { /** *

The output for the DeliverConfigSnapshot action, in JSON * format.

See Also:

AWS * API Reference

*/ class AWS_CONFIGSERVICE_API DeliverConfigSnapshotResult { public: DeliverConfigSnapshotResult(); DeliverConfigSnapshotResult(const Aws::AmazonWebServiceResult& result); DeliverConfigSnapshotResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the snapshot that is being created.

*/ inline const Aws::String& GetConfigSnapshotId() const{ return m_configSnapshotId; } /** *

The ID of the snapshot that is being created.

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

The ID of the snapshot that is being created.

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

The ID of the snapshot that is being created.

*/ inline void SetConfigSnapshotId(const char* value) { m_configSnapshotId.assign(value); } /** *

The ID of the snapshot that is being created.

*/ inline DeliverConfigSnapshotResult& WithConfigSnapshotId(const Aws::String& value) { SetConfigSnapshotId(value); return *this;} /** *

The ID of the snapshot that is being created.

*/ inline DeliverConfigSnapshotResult& WithConfigSnapshotId(Aws::String&& value) { SetConfigSnapshotId(std::move(value)); return *this;} /** *

The ID of the snapshot that is being created.

*/ inline DeliverConfigSnapshotResult& WithConfigSnapshotId(const char* value) { SetConfigSnapshotId(value); return *this;} private: Aws::String m_configSnapshotId; }; } // namespace Model } // namespace ConfigService } // namespace Aws