/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration details of the component. See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the component.
*/ inline const Aws::String& GetComponentArn() const{ return m_componentArn; } /** *The Amazon Resource Name (ARN) of the component.
*/ inline bool ComponentArnHasBeenSet() const { return m_componentArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the component.
*/ inline void SetComponentArn(const Aws::String& value) { m_componentArnHasBeenSet = true; m_componentArn = value; } /** *The Amazon Resource Name (ARN) of the component.
*/ inline void SetComponentArn(Aws::String&& value) { m_componentArnHasBeenSet = true; m_componentArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the component.
*/ inline void SetComponentArn(const char* value) { m_componentArnHasBeenSet = true; m_componentArn.assign(value); } /** *The Amazon Resource Name (ARN) of the component.
*/ inline ComponentConfiguration& WithComponentArn(const Aws::String& value) { SetComponentArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the component.
*/ inline ComponentConfiguration& WithComponentArn(Aws::String&& value) { SetComponentArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the component.
*/ inline ComponentConfiguration& WithComponentArn(const char* value) { SetComponentArn(value); return *this;} private: Aws::String m_componentArn; bool m_componentArnHasBeenSet; }; } // namespace Model } // namespace imagebuilder } // namespace Aws