/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CodeDeploy { namespace Model { /** *

A revision for an Lambda deployment that is a YAML-formatted or * JSON-formatted string. For Lambda deployments, the revision is the same as the * AppSpec file.

See Also:

AWS * API Reference

*/ class RawString { public: AWS_CODEDEPLOY_API RawString(); AWS_CODEDEPLOY_API RawString(Aws::Utils::Json::JsonView jsonValue); AWS_CODEDEPLOY_API RawString& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CODEDEPLOY_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline const Aws::String& GetContent() const{ return m_content; } /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline bool ContentHasBeenSet() const { return m_contentHasBeenSet; } /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline void SetContent(const Aws::String& value) { m_contentHasBeenSet = true; m_content = value; } /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline void SetContent(Aws::String&& value) { m_contentHasBeenSet = true; m_content = std::move(value); } /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline void SetContent(const char* value) { m_contentHasBeenSet = true; m_content.assign(value); } /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline RawString& WithContent(const Aws::String& value) { SetContent(value); return *this;} /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline RawString& WithContent(Aws::String&& value) { SetContent(std::move(value)); return *this;} /** *

The YAML-formatted or JSON-formatted revision string. It includes information * about which Lambda function to update and optional Lambda functions that * validate deployment lifecycle events.

*/ inline RawString& WithContent(const char* value) { SetContent(value); return *this;} /** *

The SHA256 hash value of the revision content.

*/ inline const Aws::String& GetSha256() const{ return m_sha256; } /** *

The SHA256 hash value of the revision content.

*/ inline bool Sha256HasBeenSet() const { return m_sha256HasBeenSet; } /** *

The SHA256 hash value of the revision content.

*/ inline void SetSha256(const Aws::String& value) { m_sha256HasBeenSet = true; m_sha256 = value; } /** *

The SHA256 hash value of the revision content.

*/ inline void SetSha256(Aws::String&& value) { m_sha256HasBeenSet = true; m_sha256 = std::move(value); } /** *

The SHA256 hash value of the revision content.

*/ inline void SetSha256(const char* value) { m_sha256HasBeenSet = true; m_sha256.assign(value); } /** *

The SHA256 hash value of the revision content.

*/ inline RawString& WithSha256(const Aws::String& value) { SetSha256(value); return *this;} /** *

The SHA256 hash value of the revision content.

*/ inline RawString& WithSha256(Aws::String&& value) { SetSha256(std::move(value)); return *this;} /** *

The SHA256 hash value of the revision content.

*/ inline RawString& WithSha256(const char* value) { SetSha256(value); return *this;} private: Aws::String m_content; bool m_contentHasBeenSet = false; Aws::String m_sha256; bool m_sha256HasBeenSet = false; }; } // namespace Model } // namespace CodeDeploy } // namespace Aws