/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A summary of a container recipeSee Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the container recipe.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the container recipe.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the container recipe.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the container recipe.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the container recipe.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the container recipe.
*/ inline ContainerRecipeSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the container recipe.
*/ inline ContainerRecipeSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the container recipe.
*/ inline ContainerRecipeSummary& WithArn(const char* value) { SetArn(value); return *this;} /** *Specifies the type of container, such as "Docker".
*/ inline const ContainerType& GetContainerType() const{ return m_containerType; } /** *Specifies the type of container, such as "Docker".
*/ inline bool ContainerTypeHasBeenSet() const { return m_containerTypeHasBeenSet; } /** *Specifies the type of container, such as "Docker".
*/ inline void SetContainerType(const ContainerType& value) { m_containerTypeHasBeenSet = true; m_containerType = value; } /** *Specifies the type of container, such as "Docker".
*/ inline void SetContainerType(ContainerType&& value) { m_containerTypeHasBeenSet = true; m_containerType = std::move(value); } /** *Specifies the type of container, such as "Docker".
*/ inline ContainerRecipeSummary& WithContainerType(const ContainerType& value) { SetContainerType(value); return *this;} /** *Specifies the type of container, such as "Docker".
*/ inline ContainerRecipeSummary& WithContainerType(ContainerType&& value) { SetContainerType(std::move(value)); return *this;} /** *The name of the container recipe.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the container recipe.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the container recipe.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the container recipe.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the container recipe.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the container recipe.
*/ inline ContainerRecipeSummary& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the container recipe.
*/ inline ContainerRecipeSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the container recipe.
*/ inline ContainerRecipeSummary& WithName(const char* value) { SetName(value); return *this;} /** *The system platform for the container, such as Windows or Linux.
*/ inline const Platform& GetPlatform() const{ return m_platform; } /** *The system platform for the container, such as Windows or Linux.
*/ inline bool PlatformHasBeenSet() const { return m_platformHasBeenSet; } /** *The system platform for the container, such as Windows or Linux.
*/ inline void SetPlatform(const Platform& value) { m_platformHasBeenSet = true; m_platform = value; } /** *The system platform for the container, such as Windows or Linux.
*/ inline void SetPlatform(Platform&& value) { m_platformHasBeenSet = true; m_platform = std::move(value); } /** *The system platform for the container, such as Windows or Linux.
*/ inline ContainerRecipeSummary& WithPlatform(const Platform& value) { SetPlatform(value); return *this;} /** *The system platform for the container, such as Windows or Linux.
*/ inline ContainerRecipeSummary& WithPlatform(Platform&& value) { SetPlatform(std::move(value)); return *this;} /** *The owner of the container recipe.
*/ inline const Aws::String& GetOwner() const{ return m_owner; } /** *The owner of the container recipe.
*/ inline bool OwnerHasBeenSet() const { return m_ownerHasBeenSet; } /** *The owner of the container recipe.
*/ inline void SetOwner(const Aws::String& value) { m_ownerHasBeenSet = true; m_owner = value; } /** *The owner of the container recipe.
*/ inline void SetOwner(Aws::String&& value) { m_ownerHasBeenSet = true; m_owner = std::move(value); } /** *The owner of the container recipe.
*/ inline void SetOwner(const char* value) { m_ownerHasBeenSet = true; m_owner.assign(value); } /** *The owner of the container recipe.
*/ inline ContainerRecipeSummary& WithOwner(const Aws::String& value) { SetOwner(value); return *this;} /** *The owner of the container recipe.
*/ inline ContainerRecipeSummary& WithOwner(Aws::String&& value) { SetOwner(std::move(value)); return *this;} /** *The owner of the container recipe.
*/ inline ContainerRecipeSummary& WithOwner(const char* value) { SetOwner(value); return *this;} /** *The base image for the container recipe.
*/ inline const Aws::String& GetParentImage() const{ return m_parentImage; } /** *The base image for the container recipe.
*/ inline bool ParentImageHasBeenSet() const { return m_parentImageHasBeenSet; } /** *The base image for the container recipe.
*/ inline void SetParentImage(const Aws::String& value) { m_parentImageHasBeenSet = true; m_parentImage = value; } /** *The base image for the container recipe.
*/ inline void SetParentImage(Aws::String&& value) { m_parentImageHasBeenSet = true; m_parentImage = std::move(value); } /** *The base image for the container recipe.
*/ inline void SetParentImage(const char* value) { m_parentImageHasBeenSet = true; m_parentImage.assign(value); } /** *The base image for the container recipe.
*/ inline ContainerRecipeSummary& WithParentImage(const Aws::String& value) { SetParentImage(value); return *this;} /** *The base image for the container recipe.
*/ inline ContainerRecipeSummary& WithParentImage(Aws::String&& value) { SetParentImage(std::move(value)); return *this;} /** *The base image for the container recipe.
*/ inline ContainerRecipeSummary& WithParentImage(const char* value) { SetParentImage(value); return *this;} /** *The date when this container recipe was created.
*/ inline const Aws::String& GetDateCreated() const{ return m_dateCreated; } /** *The date when this container recipe was created.
*/ inline bool DateCreatedHasBeenSet() const { return m_dateCreatedHasBeenSet; } /** *The date when this container recipe was created.
*/ inline void SetDateCreated(const Aws::String& value) { m_dateCreatedHasBeenSet = true; m_dateCreated = value; } /** *The date when this container recipe was created.
*/ inline void SetDateCreated(Aws::String&& value) { m_dateCreatedHasBeenSet = true; m_dateCreated = std::move(value); } /** *The date when this container recipe was created.
*/ inline void SetDateCreated(const char* value) { m_dateCreatedHasBeenSet = true; m_dateCreated.assign(value); } /** *The date when this container recipe was created.
*/ inline ContainerRecipeSummary& WithDateCreated(const Aws::String& value) { SetDateCreated(value); return *this;} /** *The date when this container recipe was created.
*/ inline ContainerRecipeSummary& WithDateCreated(Aws::String&& value) { SetDateCreated(std::move(value)); return *this;} /** *The date when this container recipe was created.
*/ inline ContainerRecipeSummary& WithDateCreated(const char* value) { SetDateCreated(value); return *this;} /** *Tags that are attached to the container recipe.
*/ inline const Aws::MapTags that are attached to the container recipe.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *Tags that are attached to the container recipe.
*/ inline void SetTags(const Aws::MapTags that are attached to the container recipe.
*/ inline void SetTags(Aws::MapTags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& WithTags(const Aws::MapTags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& WithTags(Aws::MapTags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *Tags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *Tags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *Tags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *Tags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *Tags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *Tags that are attached to the container recipe.
*/ inline ContainerRecipeSummary& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } private: Aws::String m_arn; bool m_arnHasBeenSet = false; ContainerType m_containerType; bool m_containerTypeHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Platform m_platform; bool m_platformHasBeenSet = false; Aws::String m_owner; bool m_ownerHasBeenSet = false; Aws::String m_parentImage; bool m_parentImageHasBeenSet = false; Aws::String m_dateCreated; bool m_dateCreatedHasBeenSet = false; Aws::Map