/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The output for the DeliverConfigSnapshot action, in JSON
* format.See Also:
AWS
* API Reference
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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeliverConfigSnapshotResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeliverConfigSnapshotResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeliverConfigSnapshotResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_configSnapshotId; Aws::String m_requestId; }; } // namespace Model } // namespace ConfigService } // namespace Aws