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

An object containing information about the application snapshot.

*/ inline const SnapshotDetails& GetSnapshotDetails() const{ return m_snapshotDetails; } /** *

An object containing information about the application snapshot.

*/ inline void SetSnapshotDetails(const SnapshotDetails& value) { m_snapshotDetails = value; } /** *

An object containing information about the application snapshot.

*/ inline void SetSnapshotDetails(SnapshotDetails&& value) { m_snapshotDetails = std::move(value); } /** *

An object containing information about the application snapshot.

*/ inline DescribeApplicationSnapshotResult& WithSnapshotDetails(const SnapshotDetails& value) { SetSnapshotDetails(value); return *this;} /** *

An object containing information about the application snapshot.

*/ inline DescribeApplicationSnapshotResult& WithSnapshotDetails(SnapshotDetails&& value) { SetSnapshotDetails(std::move(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 DescribeApplicationSnapshotResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeApplicationSnapshotResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeApplicationSnapshotResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: SnapshotDetails m_snapshotDetails; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws