/**
* 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;} private: Aws::String m_configSnapshotId; }; } // namespace Model } // namespace ConfigService } // namespace Aws