/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The summary of the component.See Also:
AWS
* API Reference
The ID of the application.
*/ inline const Aws::String& GetApplicationId() const{ return m_applicationId; } /** *The ID of the application.
*/ inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; } /** *The ID of the application.
*/ inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; } /** *The ID of the application.
*/ inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); } /** *The ID of the application.
*/ inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); } /** *The ID of the application.
*/ inline ComponentSummary& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;} /** *The ID of the application.
*/ inline ComponentSummary& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;} /** *The ID of the application.
*/ inline ComponentSummary& WithApplicationId(const char* value) { SetApplicationId(value); return *this;} /** *The ID of the component.
*/ inline const Aws::String& GetComponentId() const{ return m_componentId; } /** *The ID of the component.
*/ inline bool ComponentIdHasBeenSet() const { return m_componentIdHasBeenSet; } /** *The ID of the component.
*/ inline void SetComponentId(const Aws::String& value) { m_componentIdHasBeenSet = true; m_componentId = value; } /** *The ID of the component.
*/ inline void SetComponentId(Aws::String&& value) { m_componentIdHasBeenSet = true; m_componentId = std::move(value); } /** *The ID of the component.
*/ inline void SetComponentId(const char* value) { m_componentIdHasBeenSet = true; m_componentId.assign(value); } /** *The ID of the component.
*/ inline ComponentSummary& WithComponentId(const Aws::String& value) { SetComponentId(value); return *this;} /** *The ID of the component.
*/ inline ComponentSummary& WithComponentId(Aws::String&& value) { SetComponentId(std::move(value)); return *this;} /** *The ID of the component.
*/ inline ComponentSummary& WithComponentId(const char* value) { SetComponentId(value); return *this;} /** *The type of the component.
*/ inline const ComponentType& GetComponentType() const{ return m_componentType; } /** *The type of the component.
*/ inline bool ComponentTypeHasBeenSet() const { return m_componentTypeHasBeenSet; } /** *The type of the component.
*/ inline void SetComponentType(const ComponentType& value) { m_componentTypeHasBeenSet = true; m_componentType = value; } /** *The type of the component.
*/ inline void SetComponentType(ComponentType&& value) { m_componentTypeHasBeenSet = true; m_componentType = std::move(value); } /** *The type of the component.
*/ inline ComponentSummary& WithComponentType(const ComponentType& value) { SetComponentType(value); return *this;} /** *The type of the component.
*/ inline ComponentSummary& WithComponentType(ComponentType&& value) { SetComponentType(std::move(value)); return *this;} /** *The tags of the component.
*/ inline const Aws::MapThe tags of the component.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *The tags of the component.
*/ inline void SetTags(const Aws::MapThe tags of the component.
*/ inline void SetTags(Aws::MapThe tags of the component.
*/ inline ComponentSummary& WithTags(const Aws::MapThe tags of the component.
*/ inline ComponentSummary& WithTags(Aws::MapThe tags of the component.
*/ inline ComponentSummary& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *The tags of the component.
*/ inline ComponentSummary& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *The tags of the component.
*/ inline ComponentSummary& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *The tags of the component.
*/ inline ComponentSummary& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *The tags of the component.
*/ inline ComponentSummary& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *The tags of the component.
*/ inline ComponentSummary& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *The tags of the component.
*/ inline ComponentSummary& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline ComponentSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline ComponentSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the component summary.
*/ inline ComponentSummary& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_applicationId; bool m_applicationIdHasBeenSet = false; Aws::String m_componentId; bool m_componentIdHasBeenSet = false; ComponentType m_componentType; bool m_componentTypeHasBeenSet = false; Aws::Map