/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include GetInfrastructureConfiguration request object. See Also:
* AWS
* API Reference
The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline const Aws::String& GetInfrastructureConfigurationArn() const{ return m_infrastructureConfigurationArn; } /** *The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline bool InfrastructureConfigurationArnHasBeenSet() const { return m_infrastructureConfigurationArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline void SetInfrastructureConfigurationArn(const Aws::String& value) { m_infrastructureConfigurationArnHasBeenSet = true; m_infrastructureConfigurationArn = value; } /** *The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline void SetInfrastructureConfigurationArn(Aws::String&& value) { m_infrastructureConfigurationArnHasBeenSet = true; m_infrastructureConfigurationArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline void SetInfrastructureConfigurationArn(const char* value) { m_infrastructureConfigurationArnHasBeenSet = true; m_infrastructureConfigurationArn.assign(value); } /** *The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline GetInfrastructureConfigurationRequest& WithInfrastructureConfigurationArn(const Aws::String& value) { SetInfrastructureConfigurationArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline GetInfrastructureConfigurationRequest& WithInfrastructureConfigurationArn(Aws::String&& value) { SetInfrastructureConfigurationArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the infrastructure configuration that you * want to retrieve.
*/ inline GetInfrastructureConfigurationRequest& WithInfrastructureConfigurationArn(const char* value) { SetInfrastructureConfigurationArn(value); return *this;} private: Aws::String m_infrastructureConfigurationArn; bool m_infrastructureConfigurationArnHasBeenSet; }; } // namespace Model } // namespace imagebuilder } // namespace Aws