/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the response to a CreateLayer
request.See
* Also:
AWS
* API Reference
The layer ID.
*/ inline const Aws::String& GetLayerId() const{ return m_layerId; } /** *The layer ID.
*/ inline void SetLayerId(const Aws::String& value) { m_layerId = value; } /** *The layer ID.
*/ inline void SetLayerId(Aws::String&& value) { m_layerId = std::move(value); } /** *The layer ID.
*/ inline void SetLayerId(const char* value) { m_layerId.assign(value); } /** *The layer ID.
*/ inline CreateLayerResult& WithLayerId(const Aws::String& value) { SetLayerId(value); return *this;} /** *The layer ID.
*/ inline CreateLayerResult& WithLayerId(Aws::String&& value) { SetLayerId(std::move(value)); return *this;} /** *The layer ID.
*/ inline CreateLayerResult& WithLayerId(const char* value) { SetLayerId(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 CreateLayerResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateLayerResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateLayerResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_layerId; Aws::String m_requestId; }; } // namespace Model } // namespace OpsWorks } // namespace Aws