/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include GetInfrastructureConfiguration response object.See Also:
AWS
* API Reference
The request ID that uniquely identifies this request.
*/ inline const Aws::String& GetRequestId() const{ return m_requestId; } /** *The request ID that uniquely identifies this request.
*/ inline void SetRequestId(const Aws::String& value) { m_requestId = value; } /** *The request ID that uniquely identifies this request.
*/ inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } /** *The request ID that uniquely identifies this request.
*/ inline void SetRequestId(const char* value) { m_requestId.assign(value); } /** *The request ID that uniquely identifies this request.
*/ inline GetInfrastructureConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} /** *The request ID that uniquely identifies this request.
*/ inline GetInfrastructureConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} /** *The request ID that uniquely identifies this request.
*/ inline GetInfrastructureConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *The infrastructure configuration object.
*/ inline const InfrastructureConfiguration& GetInfrastructureConfiguration() const{ return m_infrastructureConfiguration; } /** *The infrastructure configuration object.
*/ inline void SetInfrastructureConfiguration(const InfrastructureConfiguration& value) { m_infrastructureConfiguration = value; } /** *The infrastructure configuration object.
*/ inline void SetInfrastructureConfiguration(InfrastructureConfiguration&& value) { m_infrastructureConfiguration = std::move(value); } /** *The infrastructure configuration object.
*/ inline GetInfrastructureConfigurationResult& WithInfrastructureConfiguration(const InfrastructureConfiguration& value) { SetInfrastructureConfiguration(value); return *this;} /** *The infrastructure configuration object.
*/ inline GetInfrastructureConfigurationResult& WithInfrastructureConfiguration(InfrastructureConfiguration&& value) { SetInfrastructureConfiguration(std::move(value)); return *this;} private: Aws::String m_requestId; InfrastructureConfiguration m_infrastructureConfiguration; }; } // namespace Model } // namespace imagebuilder } // namespace Aws