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-ec2/include/aws/ec2/model/SnapshotDiskContainer.h

231 lines
7.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/ec2/model/UserBucket.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>The disk container object for the import snapshot request.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SnapshotDiskContainer">AWS
* API Reference</a></p>
*/
class AWS_EC2_API SnapshotDiskContainer
{
public:
SnapshotDiskContainer();
SnapshotDiskContainer(const Aws::Utils::Xml::XmlNode& xmlNode);
SnapshotDiskContainer& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The description of the disk image being imported.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* <p>The description of the disk image being imported.</p>
*/
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
/**
* <p>The description of the disk image being imported.</p>
*/
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
/**
* <p>The description of the disk image being imported.</p>
*/
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
/**
* <p>The description of the disk image being imported.</p>
*/
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
/**
* <p>The description of the disk image being imported.</p>
*/
inline SnapshotDiskContainer& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* <p>The description of the disk image being imported.</p>
*/
inline SnapshotDiskContainer& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* <p>The description of the disk image being imported.</p>
*/
inline SnapshotDiskContainer& WithDescription(const char* value) { SetDescription(value); return *this;}
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline const Aws::String& GetFormat() const{ return m_format; }
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; }
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline void SetFormat(const Aws::String& value) { m_formatHasBeenSet = true; m_format = value; }
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline void SetFormat(Aws::String&& value) { m_formatHasBeenSet = true; m_format = std::move(value); }
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline void SetFormat(const char* value) { m_formatHasBeenSet = true; m_format.assign(value); }
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline SnapshotDiskContainer& WithFormat(const Aws::String& value) { SetFormat(value); return *this;}
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline SnapshotDiskContainer& WithFormat(Aws::String&& value) { SetFormat(std::move(value)); return *this;}
/**
* <p>The format of the disk image being imported.</p> <p>Valid values:
* <code>VHD</code> | <code>VMDK</code> </p>
*/
inline SnapshotDiskContainer& WithFormat(const char* value) { SetFormat(value); return *this;}
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline const Aws::String& GetUrl() const{ return m_url; }
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline bool UrlHasBeenSet() const { return m_urlHasBeenSet; }
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline void SetUrl(const Aws::String& value) { m_urlHasBeenSet = true; m_url = value; }
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline void SetUrl(Aws::String&& value) { m_urlHasBeenSet = true; m_url = std::move(value); }
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline void SetUrl(const char* value) { m_urlHasBeenSet = true; m_url.assign(value); }
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline SnapshotDiskContainer& WithUrl(const Aws::String& value) { SetUrl(value); return *this;}
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline SnapshotDiskContainer& WithUrl(Aws::String&& value) { SetUrl(std::move(value)); return *this;}
/**
* <p>The URL to the Amazon S3-based disk image being imported. It can either be a
* https URL (https://..) or an Amazon S3 URL (s3://..).</p>
*/
inline SnapshotDiskContainer& WithUrl(const char* value) { SetUrl(value); return *this;}
/**
* <p>The Amazon S3 bucket for the disk image.</p>
*/
inline const UserBucket& GetUserBucket() const{ return m_userBucket; }
/**
* <p>The Amazon S3 bucket for the disk image.</p>
*/
inline bool UserBucketHasBeenSet() const { return m_userBucketHasBeenSet; }
/**
* <p>The Amazon S3 bucket for the disk image.</p>
*/
inline void SetUserBucket(const UserBucket& value) { m_userBucketHasBeenSet = true; m_userBucket = value; }
/**
* <p>The Amazon S3 bucket for the disk image.</p>
*/
inline void SetUserBucket(UserBucket&& value) { m_userBucketHasBeenSet = true; m_userBucket = std::move(value); }
/**
* <p>The Amazon S3 bucket for the disk image.</p>
*/
inline SnapshotDiskContainer& WithUserBucket(const UserBucket& value) { SetUserBucket(value); return *this;}
/**
* <p>The Amazon S3 bucket for the disk image.</p>
*/
inline SnapshotDiskContainer& WithUserBucket(UserBucket&& value) { SetUserBucket(std::move(value)); return *this;}
private:
Aws::String m_description;
bool m_descriptionHasBeenSet;
Aws::String m_format;
bool m_formatHasBeenSet;
Aws::String m_url;
bool m_urlHasBeenSet;
UserBucket m_userBucket;
bool m_userBucketHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws