This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-imagebuilder/include/aws/imagebuilder/model/ImageRecipeSummary.h

370 lines
12 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/imagebuilder/Imagebuilder_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/imagebuilder/model/Platform.h>
#include <aws/core/utils/memory/stl/AWSMap.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace imagebuilder
{
namespace Model
{
/**
* <p>A summary of an image recipe.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageRecipeSummary">AWS
* API Reference</a></p>
*/
class AWS_IMAGEBUILDER_API ImageRecipeSummary
{
public:
ImageRecipeSummary();
ImageRecipeSummary(Aws::Utils::Json::JsonView jsonValue);
ImageRecipeSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline ImageRecipeSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline ImageRecipeSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the image recipe.</p>
*/
inline ImageRecipeSummary& WithArn(const char* value) { SetArn(value); return *this;}
/**
* <p>The name of the image recipe.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the image recipe.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the image recipe.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the image recipe.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the image recipe.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the image recipe.</p>
*/
inline ImageRecipeSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the image recipe.</p>
*/
inline ImageRecipeSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the image recipe.</p>
*/
inline ImageRecipeSummary& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The platform of the image recipe.</p>
*/
inline const Platform& GetPlatform() const{ return m_platform; }
/**
* <p>The platform of the image recipe.</p>
*/
inline bool PlatformHasBeenSet() const { return m_platformHasBeenSet; }
/**
* <p>The platform of the image recipe.</p>
*/
inline void SetPlatform(const Platform& value) { m_platformHasBeenSet = true; m_platform = value; }
/**
* <p>The platform of the image recipe.</p>
*/
inline void SetPlatform(Platform&& value) { m_platformHasBeenSet = true; m_platform = std::move(value); }
/**
* <p>The platform of the image recipe.</p>
*/
inline ImageRecipeSummary& WithPlatform(const Platform& value) { SetPlatform(value); return *this;}
/**
* <p>The platform of the image recipe.</p>
*/
inline ImageRecipeSummary& WithPlatform(Platform&& value) { SetPlatform(std::move(value)); return *this;}
/**
* <p>The owner of the image recipe.</p>
*/
inline const Aws::String& GetOwner() const{ return m_owner; }
/**
* <p>The owner of the image recipe.</p>
*/
inline bool OwnerHasBeenSet() const { return m_ownerHasBeenSet; }
/**
* <p>The owner of the image recipe.</p>
*/
inline void SetOwner(const Aws::String& value) { m_ownerHasBeenSet = true; m_owner = value; }
/**
* <p>The owner of the image recipe.</p>
*/
inline void SetOwner(Aws::String&& value) { m_ownerHasBeenSet = true; m_owner = std::move(value); }
/**
* <p>The owner of the image recipe.</p>
*/
inline void SetOwner(const char* value) { m_ownerHasBeenSet = true; m_owner.assign(value); }
/**
* <p>The owner of the image recipe.</p>
*/
inline ImageRecipeSummary& WithOwner(const Aws::String& value) { SetOwner(value); return *this;}
/**
* <p>The owner of the image recipe.</p>
*/
inline ImageRecipeSummary& WithOwner(Aws::String&& value) { SetOwner(std::move(value)); return *this;}
/**
* <p>The owner of the image recipe.</p>
*/
inline ImageRecipeSummary& WithOwner(const char* value) { SetOwner(value); return *this;}
/**
* <p>The parent image of the image recipe.</p>
*/
inline const Aws::String& GetParentImage() const{ return m_parentImage; }
/**
* <p>The parent image of the image recipe.</p>
*/
inline bool ParentImageHasBeenSet() const { return m_parentImageHasBeenSet; }
/**
* <p>The parent image of the image recipe.</p>
*/
inline void SetParentImage(const Aws::String& value) { m_parentImageHasBeenSet = true; m_parentImage = value; }
/**
* <p>The parent image of the image recipe.</p>
*/
inline void SetParentImage(Aws::String&& value) { m_parentImageHasBeenSet = true; m_parentImage = std::move(value); }
/**
* <p>The parent image of the image recipe.</p>
*/
inline void SetParentImage(const char* value) { m_parentImageHasBeenSet = true; m_parentImage.assign(value); }
/**
* <p>The parent image of the image recipe.</p>
*/
inline ImageRecipeSummary& WithParentImage(const Aws::String& value) { SetParentImage(value); return *this;}
/**
* <p>The parent image of the image recipe.</p>
*/
inline ImageRecipeSummary& WithParentImage(Aws::String&& value) { SetParentImage(std::move(value)); return *this;}
/**
* <p>The parent image of the image recipe.</p>
*/
inline ImageRecipeSummary& WithParentImage(const char* value) { SetParentImage(value); return *this;}
/**
* <p>The date on which this image recipe was created.</p>
*/
inline const Aws::String& GetDateCreated() const{ return m_dateCreated; }
/**
* <p>The date on which this image recipe was created.</p>
*/
inline bool DateCreatedHasBeenSet() const { return m_dateCreatedHasBeenSet; }
/**
* <p>The date on which this image recipe was created.</p>
*/
inline void SetDateCreated(const Aws::String& value) { m_dateCreatedHasBeenSet = true; m_dateCreated = value; }
/**
* <p>The date on which this image recipe was created.</p>
*/
inline void SetDateCreated(Aws::String&& value) { m_dateCreatedHasBeenSet = true; m_dateCreated = std::move(value); }
/**
* <p>The date on which this image recipe was created.</p>
*/
inline void SetDateCreated(const char* value) { m_dateCreatedHasBeenSet = true; m_dateCreated.assign(value); }
/**
* <p>The date on which this image recipe was created.</p>
*/
inline ImageRecipeSummary& WithDateCreated(const Aws::String& value) { SetDateCreated(value); return *this;}
/**
* <p>The date on which this image recipe was created.</p>
*/
inline ImageRecipeSummary& WithDateCreated(Aws::String&& value) { SetDateCreated(std::move(value)); return *this;}
/**
* <p>The date on which this image recipe was created.</p>
*/
inline ImageRecipeSummary& WithDateCreated(const char* value) { SetDateCreated(value); return *this;}
/**
* <p>The tags of the image recipe.</p>
*/
inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
/**
* <p>The tags of the image recipe.</p>
*/
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
/**
* <p>The tags of the image recipe.</p>
*/
inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
/**
* <p>The tags of the image recipe.</p>
*/
inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
/**
* <p>The tags of the image recipe.</p>
*/
inline ImageRecipeSummary& 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;
Aws::String m_name;
bool m_nameHasBeenSet;
Platform m_platform;
bool m_platformHasBeenSet;
Aws::String m_owner;
bool m_ownerHasBeenSet;
Aws::String m_parentImage;
bool m_parentImageHasBeenSet;
Aws::String m_dateCreated;
bool m_dateCreatedHasBeenSet;
Aws::Map<Aws::String, Aws::String> m_tags;
bool m_tagsHasBeenSet;
};
} // namespace Model
} // namespace imagebuilder
} // namespace Aws