/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A application verion's manifest file. This is a JSON document that has a
* single key (PayloadData
) where the value is an escaped string
* representation of the application manifest (graph.json
). This file
* is located in the graphs
folder in your application
* source.See Also:
AWS
* API Reference
The application manifest.
*/ inline const Aws::String& GetPayloadData() const{ return m_payloadData; } /** *The application manifest.
*/ inline bool PayloadDataHasBeenSet() const { return m_payloadDataHasBeenSet; } /** *The application manifest.
*/ inline void SetPayloadData(const Aws::String& value) { m_payloadDataHasBeenSet = true; m_payloadData = value; } /** *The application manifest.
*/ inline void SetPayloadData(Aws::String&& value) { m_payloadDataHasBeenSet = true; m_payloadData = std::move(value); } /** *The application manifest.
*/ inline void SetPayloadData(const char* value) { m_payloadDataHasBeenSet = true; m_payloadData.assign(value); } /** *The application manifest.
*/ inline ManifestPayload& WithPayloadData(const Aws::String& value) { SetPayloadData(value); return *this;} /** *The application manifest.
*/ inline ManifestPayload& WithPayloadData(Aws::String&& value) { SetPayloadData(std::move(value)); return *this;} /** *The application manifest.
*/ inline ManifestPayload& WithPayloadData(const char* value) { SetPayloadData(value); return *this;} private: Aws::String m_payloadData; bool m_payloadDataHasBeenSet = false; }; } // namespace Model } // namespace Panorama } // namespace Aws