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