/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A high-level summary of a component.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the component.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the component.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the component.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the component.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the component.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the component.
*/ inline ComponentSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the component.
*/ inline ComponentSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the component.
*/ inline ComponentSummary& WithArn(const char* value) { SetArn(value); return *this;} /** *The name of the component.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the component.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the component.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the component.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the component.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the component.
*/ inline ComponentSummary& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the component.
*/ inline ComponentSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the component.
*/ inline ComponentSummary& WithName(const char* value) { SetName(value); return *this;} /** *The version of the component.
*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *The version of the component.
*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *The version of the component.
*/ inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } /** *The version of the component.
*/ inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *The version of the component.
*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *The version of the component.
*/ inline ComponentSummary& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *The version of the component.
*/ inline ComponentSummary& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *The version of the component.
*/ inline ComponentSummary& WithVersion(const char* value) { SetVersion(value); return *this;} /** *The operating system platform of the component.
*/ inline const Platform& GetPlatform() const{ return m_platform; } /** *The operating system platform of the component.
*/ inline bool PlatformHasBeenSet() const { return m_platformHasBeenSet; } /** *The operating system platform of the component.
*/ inline void SetPlatform(const Platform& value) { m_platformHasBeenSet = true; m_platform = value; } /** *The operating system platform of the component.
*/ inline void SetPlatform(Platform&& value) { m_platformHasBeenSet = true; m_platform = std::move(value); } /** *The operating system platform of the component.
*/ inline ComponentSummary& WithPlatform(const Platform& value) { SetPlatform(value); return *this;} /** *The operating system platform of the component.
*/ inline ComponentSummary& WithPlatform(Platform&& value) { SetPlatform(std::move(value)); return *this;} /** *The operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline const Aws::VectorThe operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline bool SupportedOsVersionsHasBeenSet() const { return m_supportedOsVersionsHasBeenSet; } /** *The operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline void SetSupportedOsVersions(const Aws::VectorThe operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline void SetSupportedOsVersions(Aws::VectorThe operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline ComponentSummary& WithSupportedOsVersions(const Aws::VectorThe operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline ComponentSummary& WithSupportedOsVersions(Aws::VectorThe operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline ComponentSummary& AddSupportedOsVersions(const Aws::String& value) { m_supportedOsVersionsHasBeenSet = true; m_supportedOsVersions.push_back(value); return *this; } /** *The operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline ComponentSummary& AddSupportedOsVersions(Aws::String&& value) { m_supportedOsVersionsHasBeenSet = true; m_supportedOsVersions.push_back(std::move(value)); return *this; } /** *The operating system (OS) version that the component supports. If the OS * information is available, Image Builder performs a prefix match against the base * image OS version during image recipe creation.
*/ inline ComponentSummary& AddSupportedOsVersions(const char* value) { m_supportedOsVersionsHasBeenSet = true; m_supportedOsVersions.push_back(value); return *this; } /** *Describes the current status of the component.
*/ inline const ComponentState& GetState() const{ return m_state; } /** *Describes the current status of the component.
*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *Describes the current status of the component.
*/ inline void SetState(const ComponentState& value) { m_stateHasBeenSet = true; m_state = value; } /** *Describes the current status of the component.
*/ inline void SetState(ComponentState&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *Describes the current status of the component.
*/ inline ComponentSummary& WithState(const ComponentState& value) { SetState(value); return *this;} /** *Describes the current status of the component.
*/ inline ComponentSummary& WithState(ComponentState&& value) { SetState(std::move(value)); return *this;} /** *The component type specifies whether Image Builder uses the component to * build the image or only to test it.
*/ inline const ComponentType& GetType() const{ return m_type; } /** *The component type specifies whether Image Builder uses the component to * build the image or only to test it.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The component type specifies whether Image Builder uses the component to * build the image or only to test it.
*/ inline void SetType(const ComponentType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The component type specifies whether Image Builder uses the component to * build the image or only to test it.
*/ inline void SetType(ComponentType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The component type specifies whether Image Builder uses the component to * build the image or only to test it.
*/ inline ComponentSummary& WithType(const ComponentType& value) { SetType(value); return *this;} /** *The component type specifies whether Image Builder uses the component to * build the image or only to test it.
*/ inline ComponentSummary& WithType(ComponentType&& value) { SetType(std::move(value)); return *this;} /** *The owner of the component.
*/ inline const Aws::String& GetOwner() const{ return m_owner; } /** *The owner of the component.
*/ inline bool OwnerHasBeenSet() const { return m_ownerHasBeenSet; } /** *The owner of the component.
*/ inline void SetOwner(const Aws::String& value) { m_ownerHasBeenSet = true; m_owner = value; } /** *The owner of the component.
*/ inline void SetOwner(Aws::String&& value) { m_ownerHasBeenSet = true; m_owner = std::move(value); } /** *The owner of the component.
*/ inline void SetOwner(const char* value) { m_ownerHasBeenSet = true; m_owner.assign(value); } /** *The owner of the component.
*/ inline ComponentSummary& WithOwner(const Aws::String& value) { SetOwner(value); return *this;} /** *The owner of the component.
*/ inline ComponentSummary& WithOwner(Aws::String&& value) { SetOwner(std::move(value)); return *this;} /** *The owner of the component.
*/ inline ComponentSummary& WithOwner(const char* value) { SetOwner(value); return *this;} /** *The description of the component.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The description of the component.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The description of the component.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The description of the component.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The description of the component.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The description of the component.
*/ inline ComponentSummary& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The description of the component.
*/ inline ComponentSummary& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The description of the component.
*/ inline ComponentSummary& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The change description for the current version of the component.
*/ inline const Aws::String& GetChangeDescription() const{ return m_changeDescription; } /** *The change description for the current version of the component.
*/ inline bool ChangeDescriptionHasBeenSet() const { return m_changeDescriptionHasBeenSet; } /** *The change description for the current version of the component.
*/ inline void SetChangeDescription(const Aws::String& value) { m_changeDescriptionHasBeenSet = true; m_changeDescription = value; } /** *The change description for the current version of the component.
*/ inline void SetChangeDescription(Aws::String&& value) { m_changeDescriptionHasBeenSet = true; m_changeDescription = std::move(value); } /** *The change description for the current version of the component.
*/ inline void SetChangeDescription(const char* value) { m_changeDescriptionHasBeenSet = true; m_changeDescription.assign(value); } /** *The change description for the current version of the component.
*/ inline ComponentSummary& WithChangeDescription(const Aws::String& value) { SetChangeDescription(value); return *this;} /** *The change description for the current version of the component.
*/ inline ComponentSummary& WithChangeDescription(Aws::String&& value) { SetChangeDescription(std::move(value)); return *this;} /** *The change description for the current version of the component.
*/ inline ComponentSummary& WithChangeDescription(const char* value) { SetChangeDescription(value); return *this;} /** *The original creation date of the component.
*/ inline const Aws::String& GetDateCreated() const{ return m_dateCreated; } /** *The original creation date of the component.
*/ inline bool DateCreatedHasBeenSet() const { return m_dateCreatedHasBeenSet; } /** *The original creation date of the component.
*/ inline void SetDateCreated(const Aws::String& value) { m_dateCreatedHasBeenSet = true; m_dateCreated = value; } /** *The original creation date of the component.
*/ inline void SetDateCreated(Aws::String&& value) { m_dateCreatedHasBeenSet = true; m_dateCreated = std::move(value); } /** *The original creation date of the component.
*/ inline void SetDateCreated(const char* value) { m_dateCreatedHasBeenSet = true; m_dateCreated.assign(value); } /** *The original creation date of the component.
*/ inline ComponentSummary& WithDateCreated(const Aws::String& value) { SetDateCreated(value); return *this;} /** *The original creation date of the component.
*/ inline ComponentSummary& WithDateCreated(Aws::String&& value) { SetDateCreated(std::move(value)); return *this;} /** *The original creation date of the component.
*/ inline ComponentSummary& WithDateCreated(const char* value) { SetDateCreated(value); return *this;} /** *The tags that apply to the component.
*/ inline const Aws::MapThe tags that apply to the component.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *The tags that apply to the component.
*/ inline void SetTags(const Aws::MapThe tags that apply to the component.
*/ inline void SetTags(Aws::MapThe tags that apply to the component.
*/ inline ComponentSummary& WithTags(const Aws::MapThe tags that apply to the component.
*/ inline ComponentSummary& WithTags(Aws::MapThe tags that apply to 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 that apply to 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 that apply to 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 that apply to 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 that apply to 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 that apply to 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 that apply to the component.
*/ inline ComponentSummary& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline const Aws::String& GetPublisher() const{ return m_publisher; } /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline bool PublisherHasBeenSet() const { return m_publisherHasBeenSet; } /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline void SetPublisher(const Aws::String& value) { m_publisherHasBeenSet = true; m_publisher = value; } /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline void SetPublisher(Aws::String&& value) { m_publisherHasBeenSet = true; m_publisher = std::move(value); } /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline void SetPublisher(const char* value) { m_publisherHasBeenSet = true; m_publisher.assign(value); } /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline ComponentSummary& WithPublisher(const Aws::String& value) { SetPublisher(value); return *this;} /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline ComponentSummary& WithPublisher(Aws::String&& value) { SetPublisher(std::move(value)); return *this;} /** *Contains the name of the publisher if this is a third-party component. * Otherwise, this property is empty.
*/ inline ComponentSummary& WithPublisher(const char* value) { SetPublisher(value); return *this;} /** *Indicates whether component source is hidden from view in the console, and * from component detail results for API, CLI, or SDK operations.
*/ inline bool GetObfuscate() const{ return m_obfuscate; } /** *Indicates whether component source is hidden from view in the console, and * from component detail results for API, CLI, or SDK operations.
*/ inline bool ObfuscateHasBeenSet() const { return m_obfuscateHasBeenSet; } /** *Indicates whether component source is hidden from view in the console, and * from component detail results for API, CLI, or SDK operations.
*/ inline void SetObfuscate(bool value) { m_obfuscateHasBeenSet = true; m_obfuscate = value; } /** *Indicates whether component source is hidden from view in the console, and * from component detail results for API, CLI, or SDK operations.
*/ inline ComponentSummary& WithObfuscate(bool value) { SetObfuscate(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_version; bool m_versionHasBeenSet = false; Platform m_platform; bool m_platformHasBeenSet = false; Aws::Vector