/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides options to upload a part of an archive in a multipart upload
* operation.See Also:
AWS
* API Reference
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The AccountId
value is the AWS account ID of the account that
* owns the vault. You can either specify an AWS account ID or optionally a single
* '-
' (hyphen), in which case Amazon S3 Glacier uses the AWS account
* ID associated with the credentials used to sign the request. If you use an
* account ID, do not include any hyphens ('-') in the ID.
The name of the vault.
*/ inline const Aws::String& GetVaultName() const{ return m_vaultName; } /** *The name of the vault.
*/ inline bool VaultNameHasBeenSet() const { return m_vaultNameHasBeenSet; } /** *The name of the vault.
*/ inline void SetVaultName(const Aws::String& value) { m_vaultNameHasBeenSet = true; m_vaultName = value; } /** *The name of the vault.
*/ inline void SetVaultName(Aws::String&& value) { m_vaultNameHasBeenSet = true; m_vaultName = std::move(value); } /** *The name of the vault.
*/ inline void SetVaultName(const char* value) { m_vaultNameHasBeenSet = true; m_vaultName.assign(value); } /** *The name of the vault.
*/ inline UploadMultipartPartRequest& WithVaultName(const Aws::String& value) { SetVaultName(value); return *this;} /** *The name of the vault.
*/ inline UploadMultipartPartRequest& WithVaultName(Aws::String&& value) { SetVaultName(std::move(value)); return *this;} /** *The name of the vault.
*/ inline UploadMultipartPartRequest& WithVaultName(const char* value) { SetVaultName(value); return *this;} /** *The upload ID of the multipart upload.
*/ inline const Aws::String& GetUploadId() const{ return m_uploadId; } /** *The upload ID of the multipart upload.
*/ inline bool UploadIdHasBeenSet() const { return m_uploadIdHasBeenSet; } /** *The upload ID of the multipart upload.
*/ inline void SetUploadId(const Aws::String& value) { m_uploadIdHasBeenSet = true; m_uploadId = value; } /** *The upload ID of the multipart upload.
*/ inline void SetUploadId(Aws::String&& value) { m_uploadIdHasBeenSet = true; m_uploadId = std::move(value); } /** *The upload ID of the multipart upload.
*/ inline void SetUploadId(const char* value) { m_uploadIdHasBeenSet = true; m_uploadId.assign(value); } /** *The upload ID of the multipart upload.
*/ inline UploadMultipartPartRequest& WithUploadId(const Aws::String& value) { SetUploadId(value); return *this;} /** *The upload ID of the multipart upload.
*/ inline UploadMultipartPartRequest& WithUploadId(Aws::String&& value) { SetUploadId(std::move(value)); return *this;} /** *The upload ID of the multipart upload.
*/ inline UploadMultipartPartRequest& WithUploadId(const char* value) { SetUploadId(value); return *this;} /** *The SHA256 tree hash of the data being uploaded.
*/ inline const Aws::String& GetChecksum() const{ return m_checksum; } /** *The SHA256 tree hash of the data being uploaded.
*/ inline bool ChecksumHasBeenSet() const { return m_checksumHasBeenSet; } /** *The SHA256 tree hash of the data being uploaded.
*/ inline void SetChecksum(const Aws::String& value) { m_checksumHasBeenSet = true; m_checksum = value; } /** *The SHA256 tree hash of the data being uploaded.
*/ inline void SetChecksum(Aws::String&& value) { m_checksumHasBeenSet = true; m_checksum = std::move(value); } /** *The SHA256 tree hash of the data being uploaded.
*/ inline void SetChecksum(const char* value) { m_checksumHasBeenSet = true; m_checksum.assign(value); } /** *The SHA256 tree hash of the data being uploaded.
*/ inline UploadMultipartPartRequest& WithChecksum(const Aws::String& value) { SetChecksum(value); return *this;} /** *The SHA256 tree hash of the data being uploaded.
*/ inline UploadMultipartPartRequest& WithChecksum(Aws::String&& value) { SetChecksum(std::move(value)); return *this;} /** *The SHA256 tree hash of the data being uploaded.
*/ inline UploadMultipartPartRequest& WithChecksum(const char* value) { SetChecksum(value); return *this;} /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline const Aws::String& GetRange() const{ return m_range; } /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline bool RangeHasBeenSet() const { return m_rangeHasBeenSet; } /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline void SetRange(const Aws::String& value) { m_rangeHasBeenSet = true; m_range = value; } /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline void SetRange(Aws::String&& value) { m_rangeHasBeenSet = true; m_range = std::move(value); } /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline void SetRange(const char* value) { m_rangeHasBeenSet = true; m_range.assign(value); } /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline UploadMultipartPartRequest& WithRange(const Aws::String& value) { SetRange(value); return *this;} /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline UploadMultipartPartRequest& WithRange(Aws::String&& value) { SetRange(std::move(value)); return *this;} /** *Identifies the range of bytes in the assembled archive that will be uploaded * in this part. Amazon S3 Glacier uses this information to assemble the archive in * the proper sequence. The format of this header follows RFC 2616. An example * header is Content-Range:bytes 0-4194303/ *.
*/ inline UploadMultipartPartRequest& WithRange(const char* value) { SetRange(value); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::String m_vaultName; bool m_vaultNameHasBeenSet = false; Aws::String m_uploadId; bool m_uploadIdHasBeenSet = false; Aws::String m_checksum; bool m_checksumHasBeenSet = false; Aws::String m_range; bool m_rangeHasBeenSet = false; }; } // namespace Model } // namespace Glacier } // namespace Aws