Struct aws_sdk_s3::Client
source · pub struct Client { /* private fields */ }
Expand description
Client for Amazon Simple Storage Service
Client for invoking operations on Amazon Simple Storage Service. Each operation on Amazon Simple Storage Service is a method on this
this struct. .send()
MUST be invoked on the generated operations to dispatch the request to the service.
§Constructing a Client
A Config
is required to construct a client. For most use cases, the aws-config
crate should be used to automatically resolve this config using
aws_config::load_from_env()
, since this will resolve an SdkConfig
which can be shared
across multiple different AWS SDK clients. This config resolution process can be customized
by calling aws_config::from_env()
instead, which returns a ConfigLoader
that uses
the builder pattern to customize the default config.
In the simplest case, creating a client looks as follows:
let config = aws_config::load_from_env().await;
let client = aws_sdk_s3::Client::new(&config);
Occasionally, SDKs may have additional service-specific values that can be set on the Config
that
is absent from SdkConfig
, or slightly different settings for a specific client may be desired.
The Config
struct implements From<&SdkConfig>
, so setting these specific settings can be
done as follows:
let sdk_config = ::aws_config::load_from_env().await;
let config = aws_sdk_s3::config::Builder::from(&sdk_config)
.some_service_specific_setting("value")
.build();
See the aws-config
docs and Config
for more information on customizing configuration.
Note: Client construction is expensive due to connection thread pool initialization, and should be done once at application start-up.
§Using the Client
A client has a function for every operation that can be performed by the service.
For example, the AbortMultipartUpload
operation has
a Client::abort_multipart_upload
, function which returns a builder for that operation.
The fluent builder ultimately has a send()
function that returns an async future that
returns a result, as illustrated below:
let result = client.abort_multipart_upload()
.bucket("example")
.send()
.await;
The underlying HTTP requests that get made by this can be modified with the customize_operation
function on the fluent builder. See the customize
module for more
information.
Implementations§
source§impl Client
impl Client
sourcepub fn abort_multipart_upload(&self) -> AbortMultipartUploadFluentBuilder
pub fn abort_multipart_upload(&self) -> AbortMultipartUploadFluentBuilder
Constructs a fluent builder for the AbortMultipartUpload
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name to which the upload was taking place.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueKey of the object for which the multipart upload was initiated.
upload_id(impl Into<String>)
/set_upload_id(Option<String>)
:
required: trueUpload ID that identifies the multipart upload.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
AbortMultipartUploadOutput
with field(s):request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<AbortMultipartUploadError>
source§impl Client
impl Client
sourcepub fn complete_multipart_upload(&self) -> CompleteMultipartUploadFluentBuilder
pub fn complete_multipart_upload(&self) -> CompleteMultipartUploadFluentBuilder
Constructs a fluent builder for the CompleteMultipartUpload
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueName of the bucket to which the multipart upload was initiated.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which the multipart upload was initiated.
multipart_upload(CompletedMultipartUpload)
/set_multipart_upload(Option<CompletedMultipartUpload>)
:
required: falseThe container for the multipart upload request information.
upload_id(impl Into<String>)
/set_upload_id(Option<String>)
:
required: trueID for the initiated multipart upload.
checksum_crc32(impl Into<String>)
/set_checksum_crc32(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 32-bit CRC32 checksum of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(impl Into<String>)
/set_checksum_crc32_c(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 32-bit CRC32C checksum of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(impl Into<String>)
/set_checksum_sha1(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 160-bit SHA-1 digest of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(impl Into<String>)
/set_checksum_sha256(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 256-bit SHA-256 digest of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseThe server-side encryption (SSE) algorithm used to encrypt the object. This parameter is required only when the object was created using a checksum algorithm or if your bucket policy requires the use of SSE-C. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseThe server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseThe MD5 server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
- On success, responds with
CompleteMultipartUploadOutput
with field(s):location(Option<String>)
:The URI that identifies the newly created object.
bucket(Option<String>)
:The name of the bucket that contains the newly created object. Does not return the access point ARN or access point alias if used.
Access points are not supported by directory buckets.
key(Option<String>)
:The object key of the newly created object.
expiration(Option<String>)
:If the object expiration is configured, this will contain the expiration date (
expiry-date
) and rule ID (rule-id
). The value ofrule-id
is URL-encoded.This functionality is not supported for directory buckets.
e_tag(Option<String>)
:Entity tag that identifies the newly created object’s data. Objects with different object data will have different entity tags. The entity tag is an opaque string. The entity tag may or may not be an MD5 digest of the object data. If the entity tag is not an MD5 digest of the object data, it will contain one or more nonhexadecimal characters and/or will consist of less than 32 or more than 32 hexadecimal digits. For more information about how the entity tag is calculated, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32(Option<String>)
:The base64-encoded, 32-bit CRC32 checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(Option<String>)
:The base64-encoded, 32-bit CRC32C checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(Option<String>)
:The base64-encoded, 160-bit SHA-1 digest of the object. This will only be present if it was uploaded with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(Option<String>)
:The base64-encoded, 256-bit SHA-256 digest of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when storing this object in Amazon S3 (for example,
AES256
,aws:kms
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.version_id(Option<String>)
:Version ID of the newly created object, in case the bucket has versioning turned on.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If present, indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.
This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<CompleteMultipartUploadError>
source§impl Client
impl Client
sourcepub fn copy_object(&self) -> CopyObjectFluentBuilder
pub fn copy_object(&self) -> CopyObjectFluentBuilder
Constructs a fluent builder for the CopyObject
operation.
- The fluent builder is configurable:
acl(ObjectCannedAcl)
/set_acl(Option<ObjectCannedAcl>)
:
required: falseThe canned access control list (ACL) to apply to the object.
When you copy an object, the ACL metadata is not preserved and is set to
private
by default. Only the owner has full access control. To override the default ACL setting, specify a new ACL when you generate a copy request. For more information, see Using ACLs.If the destination bucket that you’re copying objects to uses the bucket owner enforced setting for S3 Object Ownership, ACLs are disabled and no longer affect permissions. Buckets that use this setting only accept
PUT
requests that don’t specify an ACL orPUT
requests that specify bucket owner full control ACLs, such as thebucket-owner-full-control
canned ACL or an equivalent form of this ACL expressed in the XML format. For more information, see Controlling ownership of objects and disabling ACLs in the Amazon S3 User Guide.-
If your destination bucket uses the bucket owner enforced setting for Object Ownership, all objects written to the bucket by any account will be owned by the bucket owner.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the destination bucket.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.cache_control(impl Into<String>)
/set_cache_control(Option<String>)
:
required: falseSpecifies the caching behavior along the request/reply chain.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm that you want Amazon S3 to use to create the checksum for the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
When you copy an object, if the source object has a checksum, that checksum value will be copied to the new object by default. If the
CopyObject
request does not include thisx-amz-checksum-algorithm
header, the checksum algorithm will be copied from the source object to the destination object (if it’s present on the source object). You can optionally specify a different checksum algorithm to use with thex-amz-checksum-algorithm
header. Unrecognized or unsupported values will respond with the HTTP status code400 Bad Request
.For directory buckets, when you use Amazon Web Services SDKs,
CRC32
is the default checksum algorithm that’s used for performance.content_disposition(impl Into<String>)
/set_content_disposition(Option<String>)
:
required: falseSpecifies presentational information for the object. Indicates whether an object should be displayed in a web browser or downloaded as a file. It allows specifying the desired filename for the downloaded file.
content_encoding(impl Into<String>)
/set_content_encoding(Option<String>)
:
required: falseSpecifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
For directory buckets, only the
aws-chunked
value is supported in this header field.content_language(impl Into<String>)
/set_content_language(Option<String>)
:
required: falseThe language the content is in.
content_type(impl Into<String>)
/set_content_type(Option<String>)
:
required: falseA standard MIME type that describes the format of the object data.
copy_source(impl Into<String>)
/set_copy_source(Option<String>)
:
required: trueSpecifies the source object for the copy operation. The source object can be up to 5 GB. If the source object is an object that was uploaded by using a multipart upload, the object copy will be a single part object after the source object is copied to the destination bucket.
You specify the value of the copy source in one of two formats, depending on whether you want to access the source object through an access point:
-
For objects not accessed through an access point, specify the name of the source bucket and the key of the source object, separated by a slash (/). For example, to copy the object
reports/january.pdf
from the general purpose bucketawsexamplebucket
, useawsexamplebucket/reports/january.pdf
. The value must be URL-encoded. To copy the objectreports/january.pdf
from the directory bucketawsexamplebucket–use1-az5–x-s3
, useawsexamplebucket–use1-az5–x-s3/reports/january.pdf
. The value must be URL-encoded. -
For objects accessed through access points, specify the Amazon Resource Name (ARN) of the object as accessed through the access point, in the format
arn:aws:s3:
. For example, to copy the object: :accesspoint/ /object/ reports/january.pdf
through access pointmy-access-point
owned by account123456789012
in Regionus-west-2
, use the URL encoding ofarn:aws:s3:us-west-2:123456789012:accesspoint/my-access-point/object/reports/january.pdf
. The value must be URL encoded.-
Amazon S3 supports copy operations using Access points only when the source and destination buckets are in the same Amazon Web Services Region.
-
Access points are not supported by directory buckets.
Alternatively, for objects accessed through Amazon S3 on Outposts, specify the ARN of the object as accessed in the format
arn:aws:s3-outposts:
. For example, to copy the object: :outpost/ /object/ reports/january.pdf
through outpostmy-outpost
owned by account123456789012
in Regionus-west-2
, use the URL encoding ofarn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/object/reports/january.pdf
. The value must be URL-encoded. -
If your source bucket versioning is enabled, the
x-amz-copy-source
header by default identifies the current version of an object to copy. If the current version is a delete marker, Amazon S3 behaves as if the object was deleted. To copy a different version, use theversionId
query parameter. Specifically, append?versionId=
to the value (for example,awsexamplebucket/reports/january.pdf?versionId=QUpfdndhfd8438MNFDN93jdnJFkdmqnh893
). If you don’t specify a version ID, Amazon S3 copies the latest version of the source object.If you enable versioning on the destination bucket, Amazon S3 generates a unique version ID for the copied object. This version ID is different from the version ID of the source object. Amazon S3 returns the version ID of the copied object in the
x-amz-version-id
response header in the response.If you do not enable versioning or suspend it on the destination bucket, the version ID that Amazon S3 generates in the
x-amz-version-id
response header is always null.Directory buckets - S3 Versioning isn’t enabled and supported for directory buckets.
-
copy_source_if_match(impl Into<String>)
/set_copy_source_if_match(Option<String>)
:
required: falseCopies the object if its entity tag (ETag) matches the specified tag.
If both the
x-amz-copy-source-if-match
andx-amz-copy-source-if-unmodified-since
headers are present in the request and evaluate as follows, Amazon S3 returns200 OK
and copies the data:-
x-amz-copy-source-if-match
condition evaluates to true -
x-amz-copy-source-if-unmodified-since
condition evaluates to false
-
copy_source_if_modified_since(DateTime)
/set_copy_source_if_modified_since(Option<DateTime>)
:
required: falseCopies the object if it has been modified since the specified time.
If both the
x-amz-copy-source-if-none-match
andx-amz-copy-source-if-modified-since
headers are present in the request and evaluate as follows, Amazon S3 returns the412 Precondition Failed
response code:-
x-amz-copy-source-if-none-match
condition evaluates to false -
x-amz-copy-source-if-modified-since
condition evaluates to true
-
copy_source_if_none_match(impl Into<String>)
/set_copy_source_if_none_match(Option<String>)
:
required: falseCopies the object if its entity tag (ETag) is different than the specified ETag.
If both the
x-amz-copy-source-if-none-match
andx-amz-copy-source-if-modified-since
headers are present in the request and evaluate as follows, Amazon S3 returns the412 Precondition Failed
response code:-
x-amz-copy-source-if-none-match
condition evaluates to false -
x-amz-copy-source-if-modified-since
condition evaluates to true
-
copy_source_if_unmodified_since(DateTime)
/set_copy_source_if_unmodified_since(Option<DateTime>)
:
required: falseCopies the object if it hasn’t been modified since the specified time.
If both the
x-amz-copy-source-if-match
andx-amz-copy-source-if-unmodified-since
headers are present in the request and evaluate as follows, Amazon S3 returns200 OK
and copies the data:-
x-amz-copy-source-if-match
condition evaluates to true -
x-amz-copy-source-if-unmodified-since
condition evaluates to false
-
expires(DateTime)
/set_expires(Option<DateTime>)
:
required: falseThe date and time at which the object is no longer cacheable.
grant_full_control(impl Into<String>)
/set_grant_full_control(Option<String>)
:
required: falseGives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_read(impl Into<String>)
/set_grant_read(Option<String>)
:
required: falseAllows grantee to read the object data and its metadata.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_read_acp(impl Into<String>)
/set_grant_read_acp(Option<String>)
:
required: falseAllows grantee to read the object ACL.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_write_acp(impl Into<String>)
/set_grant_write_acp(Option<String>)
:
required: falseAllows grantee to write the ACL for the applicable object.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe key of the destination object.
metadata(impl Into<String>, impl Into<String>)
/set_metadata(Option<HashMap::<String, String>>)
:
required: falseA map of metadata to store with the object in S3.
metadata_directive(MetadataDirective)
/set_metadata_directive(Option<MetadataDirective>)
:
required: falseSpecifies whether the metadata is copied from the source object or replaced with metadata that’s provided in the request. When copying an object, you can preserve all metadata (the default) or specify new metadata. If this header isn’t specified,
COPY
is the default behavior.General purpose bucket - For general purpose buckets, when you grant permissions, you can use the
s3:x-amz-metadata-directive
condition key to enforce certain metadata behavior when objects are uploaded. For more information, see Amazon S3 condition key examples in the Amazon S3 User Guide.x-amz-website-redirect-location
is unique to each object and is not copied when using thex-amz-metadata-directive
header. To copy the value, you must specifyx-amz-website-redirect-location
in the request header.tagging_directive(TaggingDirective)
/set_tagging_directive(Option<TaggingDirective>)
:
required: falseSpecifies whether the object tag-set is copied from the source object or replaced with the tag-set that’s provided in the request.
The default value is
COPY
.Directory buckets - For directory buckets in a
CopyObject
operation, only the empty tag-set is supported. Any requests that attempt to write non-empty tags into directory buckets will receive a501 Not Implemented
status code. When the destination bucket is a directory bucket, you will receive a501 Not Implemented
response in any of the following situations:-
When you attempt to
COPY
the tag-set from an S3 source object that has non-empty tags. -
When you attempt to
REPLACE
the tag-set of a source object and set a non-empty value tox-amz-tagging
. -
When you don’t set the
x-amz-tagging-directive
header and the source object has non-empty tags. This is because the default value ofx-amz-tagging-directive
isCOPY
.
Because only the empty tag-set is supported for directory buckets in a
CopyObject
operation, the following situations are allowed:-
When you attempt to
COPY
the tag-set from a directory bucket source object that has no tags to a general purpose bucket. It copies an empty tag-set to the destination object. -
When you attempt to
REPLACE
the tag-set of a directory bucket source object and set thex-amz-tagging
value of the directory bucket destination object to empty. -
When you attempt to
REPLACE
the tag-set of a general purpose bucket source object that has non-empty tags and set thex-amz-tagging
value of the directory bucket destination object to empty. -
When you attempt to
REPLACE
the tag-set of a directory bucket source object and don’t set thex-amz-tagging
value of the directory bucket destination object. This is because the default value ofx-amz-tagging
is the empty value.
-
server_side_encryption(ServerSideEncryption)
/set_server_side_encryption(Option<ServerSideEncryption>)
:
required: falseThe server-side encryption algorithm used when storing this object in Amazon S3 (for example,
AES256
,aws:kms
,aws:kms:dsse
). Unrecognized or unsupported values won’t write a destination object and will receive a400 Bad Request
response.Amazon S3 automatically encrypts all new objects that are copied to an S3 bucket. When copying an object, if you don’t specify encryption information in your copy request, the encryption setting of the target object is set to the default encryption configuration of the destination bucket. By default, all buckets have a base level of encryption configuration that uses server-side encryption with Amazon S3 managed keys (SSE-S3). If the destination bucket has a default encryption configuration that uses server-side encryption with Key Management Service (KMS) keys (SSE-KMS), dual-layer server-side encryption with Amazon Web Services KMS keys (DSSE-KMS), or server-side encryption with customer-provided encryption keys (SSE-C), Amazon S3 uses the corresponding KMS key, or a customer-provided key to encrypt the target object copy.
When you perform a
CopyObject
operation, if you want to use a different type of encryption setting for the target object, you can specify appropriate encryption-related headers to encrypt the target object with an Amazon S3 managed key, a KMS key, or a customer-provided key. If the encryption setting in your request is different from the default encryption configuration of the destination bucket, the encryption setting in your request takes precedence.With server-side encryption, Amazon S3 encrypts your data as it writes your data to disks in its data centers and decrypts the data when you access it. For more information about server-side encryption, see Using Server-Side Encryption in the Amazon S3 User Guide.
For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.storage_class(StorageClass)
/set_storage_class(Option<StorageClass>)
:
required: falseIf the
x-amz-storage-class
header is not used, the copied object will be stored in theSTANDARD
Storage Class by default. TheSTANDARD
storage class provides high durability and high availability. Depending on performance needs, you can specify a different Storage Class.-
Directory buckets - For directory buckets, only the S3 Express One Zone storage class is supported to store newly created objects. Unsupported storage class values won’t write a destination object and will respond with the HTTP status code
400 Bad Request
. -
Amazon S3 on Outposts - S3 on Outposts only uses the
OUTPOSTS
Storage Class.
You can use the
CopyObject
action to change the storage class of an object that is already stored in Amazon S3 by using thex-amz-storage-class
header. For more information, see Storage Classes in the Amazon S3 User Guide.Before using an object as a source object for the copy operation, you must restore a copy of it if it meets any of the following conditions:
-
The storage class of the source object is
GLACIER
orDEEP_ARCHIVE
. -
The storage class of the source object is
INTELLIGENT_TIERING
and it’s S3 Intelligent-Tiering access tier isArchive Access
orDeep Archive Access
.
For more information, see RestoreObject and Copying Objects in the Amazon S3 User Guide.
-
website_redirect_location(impl Into<String>)
/set_website_redirect_location(Option<String>)
:
required: falseIf the destination bucket is configured as a website, redirects requests for this object copy to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata. This value is unique to each object and is not copied when using the
x-amz-metadata-directive
header. Instead, you may opt to provide this header in combination with thex-amz-metadata-directive
header.This functionality is not supported for directory buckets.
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when encrypting the object (for example,
AES256
).When you perform a
CopyObject
operation, if you want to use a different type of encryption setting for the target object, you can specify appropriate encryption-related headers to encrypt the target object with an Amazon S3 managed key, a KMS key, or a customer-provided key. If the encryption setting in your request is different from the default encryption configuration of the destination bucket, the encryption setting in your request takes precedence.This functionality is not supported when the destination bucket is a directory bucket.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded. Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm
header.This functionality is not supported when the destination bucket is a directory bucket.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported when the destination bucket is a directory bucket.
ssekms_key_id(impl Into<String>)
/set_ssekms_key_id(Option<String>)
:
required: falseSpecifies the KMS ID (Key ID, Key ARN, or Key Alias) to use for object encryption. All GET and PUT requests for an object protected by KMS will fail if they’re not made via SSL or using SigV4. For information about configuring any of the officially supported Amazon Web Services SDKs and Amazon Web Services CLI, see Specifying the Signature Version in Request Authentication in the Amazon S3 User Guide.
This functionality is not supported when the destination bucket is a directory bucket.
ssekms_encryption_context(impl Into<String>)
/set_ssekms_encryption_context(Option<String>)
:
required: falseSpecifies the Amazon Web Services KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs. This value must be explicitly added to specify encryption context for
CopyObject
requests.This functionality is not supported when the destination bucket is a directory bucket.
bucket_key_enabled(bool)
/set_bucket_key_enabled(Option<bool>)
:
required: falseSpecifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using Key Management Service (KMS) keys (SSE-KMS). If a target object uses SSE-KMS, you can enable an S3 Bucket Key for the object.
Setting this header to
true
causes Amazon S3 to use an S3 Bucket Key for object encryption with SSE-KMS. Specifying this header with a COPY action doesn’t affect bucket-level settings for S3 Bucket Key.For more information, see Amazon S3 Bucket Keys in the Amazon S3 User Guide.
This functionality is not supported when the destination bucket is a directory bucket.
copy_source_sse_customer_algorithm(impl Into<String>)
/set_copy_source_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when decrypting the source object (for example,
AES256
).If the source object for the copy is stored in Amazon S3 using SSE-C, you must provide the necessary encryption information in your request so that Amazon S3 can decrypt the object for copying.
This functionality is not supported when the source object is in a directory bucket.
copy_source_sse_customer_key(impl Into<String>)
/set_copy_source_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be the same one that was used when the source object was created.
If the source object for the copy is stored in Amazon S3 using SSE-C, you must provide the necessary encryption information in your request so that Amazon S3 can decrypt the object for copying.
This functionality is not supported when the source object is in a directory bucket.
copy_source_sse_customer_key_md5(impl Into<String>)
/set_copy_source_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
If the source object for the copy is stored in Amazon S3 using SSE-C, you must provide the necessary encryption information in your request so that Amazon S3 can decrypt the object for copying.
This functionality is not supported when the source object is in a directory bucket.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
tagging(impl Into<String>)
/set_tagging(Option<String>)
:
required: falseThe tag-set for the object copy in the destination bucket. This value must be used in conjunction with the
x-amz-tagging-directive
if you chooseREPLACE
for thex-amz-tagging-directive
. If you chooseCOPY
for thex-amz-tagging-directive
, you don’t need to set thex-amz-tagging
header, because the tag-set will be copied from the source object directly. The tag-set must be encoded as URL Query parameters.The default value is the empty value.
Directory buckets - For directory buckets in a
CopyObject
operation, only the empty tag-set is supported. Any requests that attempt to write non-empty tags into directory buckets will receive a501 Not Implemented
status code. When the destination bucket is a directory bucket, you will receive a501 Not Implemented
response in any of the following situations:-
When you attempt to
COPY
the tag-set from an S3 source object that has non-empty tags. -
When you attempt to
REPLACE
the tag-set of a source object and set a non-empty value tox-amz-tagging
. -
When you don’t set the
x-amz-tagging-directive
header and the source object has non-empty tags. This is because the default value ofx-amz-tagging-directive
isCOPY
.
Because only the empty tag-set is supported for directory buckets in a
CopyObject
operation, the following situations are allowed:-
When you attempt to
COPY
the tag-set from a directory bucket source object that has no tags to a general purpose bucket. It copies an empty tag-set to the destination object. -
When you attempt to
REPLACE
the tag-set of a directory bucket source object and set thex-amz-tagging
value of the directory bucket destination object to empty. -
When you attempt to
REPLACE
the tag-set of a general purpose bucket source object that has non-empty tags and set thex-amz-tagging
value of the directory bucket destination object to empty. -
When you attempt to
REPLACE
the tag-set of a directory bucket source object and don’t set thex-amz-tagging
value of the directory bucket destination object. This is because the default value ofx-amz-tagging
is the empty value.
-
object_lock_mode(ObjectLockMode)
/set_object_lock_mode(Option<ObjectLockMode>)
:
required: falseThe Object Lock mode that you want to apply to the object copy.
This functionality is not supported for directory buckets.
object_lock_retain_until_date(DateTime)
/set_object_lock_retain_until_date(Option<DateTime>)
:
required: falseThe date and time when you want the Object Lock of the object copy to expire.
This functionality is not supported for directory buckets.
object_lock_legal_hold_status(ObjectLockLegalHoldStatus)
/set_object_lock_legal_hold_status(Option<ObjectLockLegalHoldStatus>)
:
required: falseSpecifies whether you want to apply a legal hold to the object copy.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected destination bucket owner. If the account ID that you provide does not match the actual owner of the destination bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).expected_source_bucket_owner(impl Into<String>)
/set_expected_source_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected source bucket owner. If the account ID that you provide does not match the actual owner of the source bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
CopyObjectOutput
with field(s):copy_object_result(Option<CopyObjectResult>)
:Container for all response elements.
expiration(Option<String>)
:If the object expiration is configured, the response includes this header.
This functionality is not supported for directory buckets.
copy_source_version_id(Option<String>)
:Version ID of the source object that was copied.
This functionality is not supported when the source object is in a directory bucket.
version_id(Option<String>)
:Version ID of the newly created copy.
This functionality is not supported for directory buckets.
server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
,aws:kms:dsse
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.sse_customer_algorithm(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to confirm the encryption algorithm that’s used.
This functionality is not supported for directory buckets.
sse_customer_key_md5(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide the round-trip message integrity verification of the customer-provided encryption key.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If present, indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.
This functionality is not supported for directory buckets.
ssekms_encryption_context(Option<String>)
:If present, indicates the Amazon Web Services KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the copied object uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<CopyObjectError>
source§impl Client
impl Client
sourcepub fn create_bucket(&self) -> CreateBucketFluentBuilder
pub fn create_bucket(&self) -> CreateBucketFluentBuilder
Constructs a fluent builder for the CreateBucket
operation.
- The fluent builder is configurable:
acl(BucketCannedAcl)
/set_acl(Option<BucketCannedAcl>)
:
required: falseThe canned ACL to apply to the bucket.
This functionality is not supported for directory buckets.
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket to create.
General purpose buckets - For information about bucket naming restrictions, see Bucket naming rules in the Amazon S3 User Guide.
Directory buckets - When you use this operation with a directory bucket, you must use path-style requests in the format
https://s3express-control.region_code.amazonaws.com/bucket-name
. Virtual-hosted-style requests aren’t supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must also follow the formatbucket_base_name–az_id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guidecreate_bucket_configuration(CreateBucketConfiguration)
/set_create_bucket_configuration(Option<CreateBucketConfiguration>)
:
required: falseThe configuration information for the bucket.
grant_full_control(impl Into<String>)
/set_grant_full_control(Option<String>)
:
required: falseAllows grantee the read, write, read ACP, and write ACP permissions on the bucket.
This functionality is not supported for directory buckets.
grant_read(impl Into<String>)
/set_grant_read(Option<String>)
:
required: falseAllows grantee to list the objects in the bucket.
This functionality is not supported for directory buckets.
grant_read_acp(impl Into<String>)
/set_grant_read_acp(Option<String>)
:
required: falseAllows grantee to read the bucket ACL.
This functionality is not supported for directory buckets.
grant_write(impl Into<String>)
/set_grant_write(Option<String>)
:
required: falseAllows grantee to create new objects in the bucket.
For the bucket and object owners of existing objects, also allows deletions and overwrites of those objects.
This functionality is not supported for directory buckets.
grant_write_acp(impl Into<String>)
/set_grant_write_acp(Option<String>)
:
required: falseAllows grantee to write the ACL for the applicable bucket.
This functionality is not supported for directory buckets.
object_lock_enabled_for_bucket(bool)
/set_object_lock_enabled_for_bucket(Option<bool>)
:
required: falseSpecifies whether you want S3 Object Lock to be enabled for the new bucket.
This functionality is not supported for directory buckets.
object_ownership(ObjectOwnership)
/set_object_ownership(Option<ObjectOwnership>)
:
required: falseThe container element for object ownership for a bucket’s ownership controls.
BucketOwnerPreferred
- Objects uploaded to the bucket change ownership to the bucket owner if the objects are uploaded with thebucket-owner-full-control
canned ACL.ObjectWriter
- The uploading account will own the object if the object is uploaded with thebucket-owner-full-control
canned ACL.BucketOwnerEnforced
- Access control lists (ACLs) are disabled and no longer affect permissions. The bucket owner automatically owns and has full control over every object in the bucket. The bucket only accepts PUT requests that don’t specify an ACL or specify bucket owner full control ACLs (such as the predefinedbucket-owner-full-control
canned ACL or a custom ACL in XML format that grants the same permissions).By default,
ObjectOwnership
is set toBucketOwnerEnforced
and ACLs are disabled. We recommend keeping ACLs disabled, except in uncommon use cases where you must control access for each object individually. For more information about S3 Object Ownership, see Controlling ownership of objects and disabling ACLs for your bucket in the Amazon S3 User Guide.This functionality is not supported for directory buckets. Directory buckets use the bucket owner enforced setting for S3 Object Ownership.
- On success, responds with
CreateBucketOutput
with field(s):location(Option<String>)
:A forward slash followed by the name of the bucket.
- On failure, responds with
SdkError<CreateBucketError>
source§impl Client
impl Client
sourcepub fn create_multipart_upload(&self) -> CreateMultipartUploadFluentBuilder
pub fn create_multipart_upload(&self) -> CreateMultipartUploadFluentBuilder
Constructs a fluent builder for the CreateMultipartUpload
operation.
- The fluent builder is configurable:
acl(ObjectCannedAcl)
/set_acl(Option<ObjectCannedAcl>)
:
required: falseThe canned ACL to apply to the object. Amazon S3 supports a set of predefined ACLs, known as canned ACLs. Each canned ACL has a predefined set of grantees and permissions. For more information, see Canned ACL in the Amazon S3 User Guide.
By default, all objects are private. Only the owner has full access control. When uploading an object, you can grant access permissions to individual Amazon Web Services accounts or to predefined groups defined by Amazon S3. These permissions are then added to the access control list (ACL) on the new object. For more information, see Using ACLs. One way to grant the permissions using the request headers is to specify a canned ACL with the
x-amz-acl
request header.-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket where the multipart upload is initiated and where the object is uploaded.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.cache_control(impl Into<String>)
/set_cache_control(Option<String>)
:
required: falseSpecifies caching behavior along the request/reply chain.
content_disposition(impl Into<String>)
/set_content_disposition(Option<String>)
:
required: falseSpecifies presentational information for the object.
content_encoding(impl Into<String>)
/set_content_encoding(Option<String>)
:
required: falseSpecifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
For directory buckets, only the
aws-chunked
value is supported in this header field.content_language(impl Into<String>)
/set_content_language(Option<String>)
:
required: falseThe language that the content is in.
content_type(impl Into<String>)
/set_content_type(Option<String>)
:
required: falseA standard MIME type describing the format of the object data.
expires(DateTime)
/set_expires(Option<DateTime>)
:
required: falseThe date and time at which the object is no longer cacheable.
grant_full_control(impl Into<String>)
/set_grant_full_control(Option<String>)
:
required: falseSpecify access permissions explicitly to give the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
By default, all objects are private. Only the owner has full access control. When uploading an object, you can use this header to explicitly grant access permissions to specific Amazon Web Services accounts or groups. This header maps to specific permissions that Amazon S3 supports in an ACL. For more information, see Access Control List (ACL) Overview in the Amazon S3 User Guide.
You specify each grantee as a type=value pair, where the type is one of the following:
-
id
– if the value specified is the canonical user ID of an Amazon Web Services account -
uri
– if you are granting permissions to a predefined group -
emailAddress
– if the value specified is the email address of an Amazon Web Services accountUsing email addresses to specify a grantee is only supported in the following Amazon Web Services Regions:
-
US East (N. Virginia)
-
US West (N. California)
-
US West (Oregon)
-
Asia Pacific (Singapore)
-
Asia Pacific (Sydney)
-
Asia Pacific (Tokyo)
-
Europe (Ireland)
-
South America (São Paulo)
For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the Amazon Web Services General Reference.
-
For example, the following
x-amz-grant-read
header grants the Amazon Web Services accounts identified by account IDs permissions to read object data and its metadata:x-amz-grant-read: id=“11112222333”, id=“444455556666”
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_read(impl Into<String>)
/set_grant_read(Option<String>)
:
required: falseSpecify access permissions explicitly to allow grantee to read the object data and its metadata.
By default, all objects are private. Only the owner has full access control. When uploading an object, you can use this header to explicitly grant access permissions to specific Amazon Web Services accounts or groups. This header maps to specific permissions that Amazon S3 supports in an ACL. For more information, see Access Control List (ACL) Overview in the Amazon S3 User Guide.
You specify each grantee as a type=value pair, where the type is one of the following:
-
id
– if the value specified is the canonical user ID of an Amazon Web Services account -
uri
– if you are granting permissions to a predefined group -
emailAddress
– if the value specified is the email address of an Amazon Web Services accountUsing email addresses to specify a grantee is only supported in the following Amazon Web Services Regions:
-
US East (N. Virginia)
-
US West (N. California)
-
US West (Oregon)
-
Asia Pacific (Singapore)
-
Asia Pacific (Sydney)
-
Asia Pacific (Tokyo)
-
Europe (Ireland)
-
South America (São Paulo)
For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the Amazon Web Services General Reference.
-
For example, the following
x-amz-grant-read
header grants the Amazon Web Services accounts identified by account IDs permissions to read object data and its metadata:x-amz-grant-read: id=“11112222333”, id=“444455556666”
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_read_acp(impl Into<String>)
/set_grant_read_acp(Option<String>)
:
required: falseSpecify access permissions explicitly to allows grantee to read the object ACL.
By default, all objects are private. Only the owner has full access control. When uploading an object, you can use this header to explicitly grant access permissions to specific Amazon Web Services accounts or groups. This header maps to specific permissions that Amazon S3 supports in an ACL. For more information, see Access Control List (ACL) Overview in the Amazon S3 User Guide.
You specify each grantee as a type=value pair, where the type is one of the following:
-
id
– if the value specified is the canonical user ID of an Amazon Web Services account -
uri
– if you are granting permissions to a predefined group -
emailAddress
– if the value specified is the email address of an Amazon Web Services accountUsing email addresses to specify a grantee is only supported in the following Amazon Web Services Regions:
-
US East (N. Virginia)
-
US West (N. California)
-
US West (Oregon)
-
Asia Pacific (Singapore)
-
Asia Pacific (Sydney)
-
Asia Pacific (Tokyo)
-
Europe (Ireland)
-
South America (São Paulo)
For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the Amazon Web Services General Reference.
-
For example, the following
x-amz-grant-read
header grants the Amazon Web Services accounts identified by account IDs permissions to read object data and its metadata:x-amz-grant-read: id=“11112222333”, id=“444455556666”
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_write_acp(impl Into<String>)
/set_grant_write_acp(Option<String>)
:
required: falseSpecify access permissions explicitly to allows grantee to allow grantee to write the ACL for the applicable object.
By default, all objects are private. Only the owner has full access control. When uploading an object, you can use this header to explicitly grant access permissions to specific Amazon Web Services accounts or groups. This header maps to specific permissions that Amazon S3 supports in an ACL. For more information, see Access Control List (ACL) Overview in the Amazon S3 User Guide.
You specify each grantee as a type=value pair, where the type is one of the following:
-
id
– if the value specified is the canonical user ID of an Amazon Web Services account -
uri
– if you are granting permissions to a predefined group -
emailAddress
– if the value specified is the email address of an Amazon Web Services accountUsing email addresses to specify a grantee is only supported in the following Amazon Web Services Regions:
-
US East (N. Virginia)
-
US West (N. California)
-
US West (Oregon)
-
Asia Pacific (Singapore)
-
Asia Pacific (Sydney)
-
Asia Pacific (Tokyo)
-
Europe (Ireland)
-
South America (São Paulo)
For a list of all the Amazon S3 supported Regions and endpoints, see Regions and Endpoints in the Amazon Web Services General Reference.
-
For example, the following
x-amz-grant-read
header grants the Amazon Web Services accounts identified by account IDs permissions to read object data and its metadata:x-amz-grant-read: id=“11112222333”, id=“444455556666”
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which the multipart upload is to be initiated.
metadata(impl Into<String>, impl Into<String>)
/set_metadata(Option<HashMap::<String, String>>)
:
required: falseA map of metadata to store with the object in S3.
server_side_encryption(ServerSideEncryption)
/set_server_side_encryption(Option<ServerSideEncryption>)
:
required: falseThe server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.storage_class(StorageClass)
/set_storage_class(Option<StorageClass>)
:
required: falseBy default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The STANDARD storage class provides high durability and high availability. Depending on performance needs, you can specify a different Storage Class. For more information, see Storage Classes in the Amazon S3 User Guide.
-
For directory buckets, only the S3 Express One Zone storage class is supported to store newly created objects.
-
Amazon S3 on Outposts only uses the OUTPOSTS Storage Class.
-
website_redirect_location(impl Into<String>)
/set_website_redirect_location(Option<String>)
:
required: falseIf the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
This functionality is not supported for directory buckets.
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when encrypting the object (for example, AES256).
This functionality is not supported for directory buckets.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm
header.This functionality is not supported for directory buckets.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the customer-provided encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported for directory buckets.
ssekms_key_id(impl Into<String>)
/set_ssekms_key_id(Option<String>)
:
required: falseSpecifies the ID (Key ID, Key ARN, or Key Alias) of the symmetric encryption customer managed key to use for object encryption.
This functionality is not supported for directory buckets.
ssekms_encryption_context(impl Into<String>)
/set_ssekms_encryption_context(Option<String>)
:
required: falseSpecifies the Amazon Web Services KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
This functionality is not supported for directory buckets.
bucket_key_enabled(bool)
/set_bucket_key_enabled(Option<bool>)
:
required: falseSpecifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using Key Management Service (KMS) keys (SSE-KMS). Setting this header to
true
causes Amazon S3 to use an S3 Bucket Key for object encryption with SSE-KMS.Specifying this header with an object action doesn’t affect bucket-level settings for S3 Bucket Key.
This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
tagging(impl Into<String>)
/set_tagging(Option<String>)
:
required: falseThe tag-set for the object. The tag-set must be encoded as URL Query parameters.
This functionality is not supported for directory buckets.
object_lock_mode(ObjectLockMode)
/set_object_lock_mode(Option<ObjectLockMode>)
:
required: falseSpecifies the Object Lock mode that you want to apply to the uploaded object.
This functionality is not supported for directory buckets.
object_lock_retain_until_date(DateTime)
/set_object_lock_retain_until_date(Option<DateTime>)
:
required: falseSpecifies the date and time when you want the Object Lock to expire.
This functionality is not supported for directory buckets.
object_lock_legal_hold_status(ObjectLockLegalHoldStatus)
/set_object_lock_legal_hold_status(Option<ObjectLockLegalHoldStatus>)
:
required: falseSpecifies whether you want to apply a legal hold to the uploaded object.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm that you want Amazon S3 to use to create the checksum for the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
- On success, responds with
CreateMultipartUploadOutput
with field(s):abort_date(Option<DateTime>)
:If the bucket has a lifecycle rule configured with an action to abort incomplete multipart uploads and the prefix in the lifecycle rule matches the object name in the request, the response includes this header. The header indicates when the initiated multipart upload becomes eligible for an abort operation. For more information, see Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle Configuration in the Amazon S3 User Guide.
The response also includes the
x-amz-abort-rule-id
header that provides the ID of the lifecycle configuration rule that defines the abort action.This functionality is not supported for directory buckets.
abort_rule_id(Option<String>)
:This header is returned along with the
x-amz-abort-date
header. It identifies the applicable lifecycle configuration rule that defines the action to abort incomplete multipart uploads.This functionality is not supported for directory buckets.
bucket(Option<String>)
:The name of the bucket to which the multipart upload was initiated. Does not return the access point ARN or access point alias if used.
Access points are not supported by directory buckets.
key(Option<String>)
:Object key for which the multipart upload was initiated.
upload_id(Option<String>)
:ID for the initiated multipart upload.
server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.sse_customer_algorithm(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to confirm the encryption algorithm that’s used.
This functionality is not supported for directory buckets.
sse_customer_key_md5(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide the round-trip message integrity verification of the customer-provided encryption key.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If present, indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.
This functionality is not supported for directory buckets.
ssekms_encryption_context(Option<String>)
:If present, indicates the Amazon Web Services KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs.
This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
checksum_algorithm(Option<ChecksumAlgorithm>)
:The algorithm that was used to create a checksum of the object.
- On failure, responds with
SdkError<CreateMultipartUploadError>
source§impl Client
impl Client
sourcepub fn create_session(&self) -> CreateSessionFluentBuilder
pub fn create_session(&self) -> CreateSessionFluentBuilder
Constructs a fluent builder for the CreateSession
operation.
- The fluent builder is configurable:
session_mode(SessionMode)
/set_session_mode(Option<SessionMode>)
:
required: falseSpecifies the mode of the session that will be created, either
ReadWrite
orReadOnly
. By default, aReadWrite
session is created. AReadWrite
session is capable of executing all the Zonal endpoint APIs on a directory bucket. AReadOnly
session is constrained to execute the following Zonal endpoint APIs:GetObject
,HeadObject
,ListObjectsV2
,GetObjectAttributes
,ListParts
, andListMultipartUploads
.bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket that you create a session for.
- On success, responds with
CreateSessionOutput
with field(s):credentials(Option<SessionCredentials>)
:The established temporary security credentials for the created session..
- On failure, responds with
SdkError<CreateSessionError>
source§impl Client
impl Client
sourcepub fn delete_bucket(&self) -> DeleteBucketFluentBuilder
pub fn delete_bucket(&self) -> DeleteBucketFluentBuilder
Constructs a fluent builder for the DeleteBucket
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueSpecifies the bucket being deleted.
Directory buckets - When you use this operation with a directory bucket, you must use path-style requests in the format
https://s3express-control.region_code.amazonaws.com/bucket-name
. Virtual-hosted-style requests aren’t supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must also follow the formatbucket_base_name–az_id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guideexpected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
501 Not Implemented
.
- On success, responds with
DeleteBucketOutput
- On failure, responds with
SdkError<DeleteBucketError>
source§impl Client
impl Client
sourcepub fn delete_bucket_analytics_configuration(
&self,
) -> DeleteBucketAnalyticsConfigurationFluentBuilder
pub fn delete_bucket_analytics_configuration( &self, ) -> DeleteBucketAnalyticsConfigurationFluentBuilder
Constructs a fluent builder for the DeleteBucketAnalyticsConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket from which an analytics configuration is deleted.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID that identifies the analytics configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketAnalyticsConfigurationOutput
- On failure, responds with
SdkError<DeleteBucketAnalyticsConfigurationError>
source§impl Client
impl Client
sourcepub fn delete_bucket_cors(&self) -> DeleteBucketCorsFluentBuilder
pub fn delete_bucket_cors(&self) -> DeleteBucketCorsFluentBuilder
Constructs a fluent builder for the DeleteBucketCors
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueSpecifies the bucket whose
cors
configuration is being deleted.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketCorsOutput
- On failure, responds with
SdkError<DeleteBucketCorsError>
source§impl Client
impl Client
sourcepub fn delete_bucket_encryption(&self) -> DeleteBucketEncryptionFluentBuilder
pub fn delete_bucket_encryption(&self) -> DeleteBucketEncryptionFluentBuilder
Constructs a fluent builder for the DeleteBucketEncryption
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the server-side encryption configuration to delete.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketEncryptionOutput
- On failure, responds with
SdkError<DeleteBucketEncryptionError>
source§impl Client
impl Client
sourcepub fn delete_bucket_intelligent_tiering_configuration(
&self,
) -> DeleteBucketIntelligentTieringConfigurationFluentBuilder
pub fn delete_bucket_intelligent_tiering_configuration( &self, ) -> DeleteBucketIntelligentTieringConfigurationFluentBuilder
Constructs a fluent builder for the DeleteBucketIntelligentTieringConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose configuration you want to modify or retrieve.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the S3 Intelligent-Tiering configuration.
- On success, responds with
DeleteBucketIntelligentTieringConfigurationOutput
- On failure, responds with
SdkError<DeleteBucketIntelligentTieringConfigurationError>
source§impl Client
impl Client
sourcepub fn delete_bucket_inventory_configuration(
&self,
) -> DeleteBucketInventoryConfigurationFluentBuilder
pub fn delete_bucket_inventory_configuration( &self, ) -> DeleteBucketInventoryConfigurationFluentBuilder
Constructs a fluent builder for the DeleteBucketInventoryConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the inventory configuration to delete.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the inventory configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketInventoryConfigurationOutput
- On failure, responds with
SdkError<DeleteBucketInventoryConfigurationError>
source§impl Client
impl Client
sourcepub fn delete_bucket_lifecycle(&self) -> DeleteBucketLifecycleFluentBuilder
pub fn delete_bucket_lifecycle(&self) -> DeleteBucketLifecycleFluentBuilder
Constructs a fluent builder for the DeleteBucketLifecycle
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name of the lifecycle to delete.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketLifecycleOutput
- On failure, responds with
SdkError<DeleteBucketLifecycleError>
source§impl Client
impl Client
sourcepub fn delete_bucket_metrics_configuration(
&self,
) -> DeleteBucketMetricsConfigurationFluentBuilder
pub fn delete_bucket_metrics_configuration( &self, ) -> DeleteBucketMetricsConfigurationFluentBuilder
Constructs a fluent builder for the DeleteBucketMetricsConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the metrics configuration to delete.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the metrics configuration. The ID has a 64 character limit and can only contain letters, numbers, periods, dashes, and underscores.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketMetricsConfigurationOutput
- On failure, responds with
SdkError<DeleteBucketMetricsConfigurationError>
source§impl Client
impl Client
sourcepub fn delete_bucket_ownership_controls(
&self,
) -> DeleteBucketOwnershipControlsFluentBuilder
pub fn delete_bucket_ownership_controls( &self, ) -> DeleteBucketOwnershipControlsFluentBuilder
Constructs a fluent builder for the DeleteBucketOwnershipControls
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe Amazon S3 bucket whose
OwnershipControls
you want to delete.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketOwnershipControlsOutput
- On failure, responds with
SdkError<DeleteBucketOwnershipControlsError>
source§impl Client
impl Client
sourcepub fn delete_bucket_policy(&self) -> DeleteBucketPolicyFluentBuilder
pub fn delete_bucket_policy(&self) -> DeleteBucketPolicyFluentBuilder
Constructs a fluent builder for the DeleteBucketPolicy
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
Directory buckets - When you use this operation with a directory bucket, you must use path-style requests in the format
https://s3express-control.region_code.amazonaws.com/bucket-name
. Virtual-hosted-style requests aren’t supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must also follow the formatbucket_base_name–az_id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guideexpected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
501 Not Implemented
.
- On success, responds with
DeleteBucketPolicyOutput
- On failure, responds with
SdkError<DeleteBucketPolicyError>
source§impl Client
impl Client
sourcepub fn delete_bucket_replication(&self) -> DeleteBucketReplicationFluentBuilder
pub fn delete_bucket_replication(&self) -> DeleteBucketReplicationFluentBuilder
Constructs a fluent builder for the DeleteBucketReplication
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketReplicationOutput
- On failure, responds with
SdkError<DeleteBucketReplicationError>
source§impl Client
impl Client
sourcepub fn delete_bucket_tagging(&self) -> DeleteBucketTaggingFluentBuilder
pub fn delete_bucket_tagging(&self) -> DeleteBucketTaggingFluentBuilder
Constructs a fluent builder for the DeleteBucketTagging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket that has the tag set to be removed.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketTaggingOutput
- On failure, responds with
SdkError<DeleteBucketTaggingError>
source§impl Client
impl Client
sourcepub fn delete_bucket_website(&self) -> DeleteBucketWebsiteFluentBuilder
pub fn delete_bucket_website(&self) -> DeleteBucketWebsiteFluentBuilder
Constructs a fluent builder for the DeleteBucketWebsite
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name for which you want to remove the website configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteBucketWebsiteOutput
- On failure, responds with
SdkError<DeleteBucketWebsiteError>
source§impl Client
impl Client
sourcepub fn delete_object(&self) -> DeleteObjectFluentBuilder
pub fn delete_object(&self) -> DeleteObjectFluentBuilder
Constructs a fluent builder for the DeleteObject
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name of the bucket containing the object.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueKey name of the object to delete.
mfa(impl Into<String>)
/set_mfa(Option<String>)
:
required: falseThe concatenation of the authentication device’s serial number, a space, and the value that is displayed on your authentication device. Required to permanently delete a versioned object if versioning is configured with MFA delete enabled.
This functionality is not supported for directory buckets.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseVersion ID used to reference a specific version of the object.
For directory buckets in this API operation, only the
null
value of the version ID is supported.request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
bypass_governance_retention(bool)
/set_bypass_governance_retention(Option<bool>)
:
required: falseIndicates whether S3 Object Lock should bypass Governance-mode restrictions to process this operation. To use this header, you must have the
s3:BypassGovernanceRetention
permission.This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteObjectOutput
with field(s):delete_marker(Option<bool>)
:Indicates whether the specified object version that was permanently deleted was (true) or was not (false) a delete marker before deletion. In a simple DELETE, this header indicates whether (true) or not (false) the current version of the object is a delete marker.
This functionality is not supported for directory buckets.
version_id(Option<String>)
:Returns the version ID of the delete marker created as a result of the DELETE operation.
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<DeleteObjectError>
source§impl Client
impl Client
sourcepub fn delete_object_tagging(&self) -> DeleteObjectTaggingFluentBuilder
pub fn delete_object_tagging(&self) -> DeleteObjectTaggingFluentBuilder
Constructs a fluent builder for the DeleteObjectTagging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the objects from which to remove the tags.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe key that identifies the object in the bucket from which to remove all tags.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe versionId of the object that the tag-set will be removed from.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeleteObjectTaggingOutput
with field(s):version_id(Option<String>)
:The versionId of the object the tag-set was removed from.
- On failure, responds with
SdkError<DeleteObjectTaggingError>
source§impl Client
impl Client
sourcepub fn delete_objects(&self) -> DeleteObjectsFluentBuilder
pub fn delete_objects(&self) -> DeleteObjectsFluentBuilder
Constructs a fluent builder for the DeleteObjects
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the objects to delete.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.delete(Delete)
/set_delete(Option<Delete>)
:
required: trueContainer for the request.
mfa(impl Into<String>)
/set_mfa(Option<String>)
:
required: falseThe concatenation of the authentication device’s serial number, a space, and the value that is displayed on your authentication device. Required to permanently delete a versioned object if versioning is configured with MFA delete enabled.
When performing the
DeleteObjects
operation on an MFA delete enabled bucket, which attempts to delete the specified versioned objects, you must include an MFA token. If you don’t provide an MFA token, the entire request will fail, even if there are non-versioned objects that you are trying to delete. If you provide an invalid token, whether there are versioned object keys in the request or not, the entire Multi-Object Delete request will fail. For information about MFA Delete, see MFA Delete in the Amazon S3 User Guide.This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
bypass_governance_retention(bool)
/set_bypass_governance_retention(Option<bool>)
:
required: falseSpecifies whether you want to delete this object even if it has a Governance-type Object Lock in place. To use this header, you must have the
s3:BypassGovernanceRetention
permission.This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum-algorithm
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
.For the
x-amz-checksum-algorithm
header, replacealgorithm
with the supported algorithm from the following list:-
CRC32
-
CRC32C
-
SHA1
-
SHA256
For more information, see Checking object integrity in the Amazon S3 User Guide.
If the individual checksum value you provide through
x-amz-checksum-algorithm
doesn’t match the checksum algorithm you set throughx-amz-sdk-checksum-algorithm
, Amazon S3 ignores any providedChecksumAlgorithm
parameter and uses the checksum algorithm that matches the provided value inx-amz-checksum-algorithm
.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.-
- On success, responds with
DeleteObjectsOutput
with field(s):deleted(Option<Vec::<DeletedObject>>)
:Container element for a successful delete. It identifies the object that was successfully deleted.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
errors(Option<Vec::<Error>>)
:Container for a failed delete action that describes the object that Amazon S3 attempted to delete and the error it encountered.
- On failure, responds with
SdkError<DeleteObjectsError>
source§impl Client
impl Client
sourcepub fn delete_public_access_block(&self) -> DeletePublicAccessBlockFluentBuilder
pub fn delete_public_access_block(&self) -> DeletePublicAccessBlockFluentBuilder
Constructs a fluent builder for the DeletePublicAccessBlock
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe Amazon S3 bucket whose
PublicAccessBlock
configuration you want to delete.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
DeletePublicAccessBlockOutput
- On failure, responds with
SdkError<DeletePublicAccessBlockError>
source§impl Client
impl Client
sourcepub fn get_bucket_accelerate_configuration(
&self,
) -> GetBucketAccelerateConfigurationFluentBuilder
pub fn get_bucket_accelerate_configuration( &self, ) -> GetBucketAccelerateConfigurationFluentBuilder
Constructs a fluent builder for the GetBucketAccelerateConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which the accelerate configuration is retrieved.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
- On success, responds with
GetBucketAccelerateConfigurationOutput
with field(s):status(Option<BucketAccelerateStatus>)
:The accelerate configuration of the bucket.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<GetBucketAccelerateConfigurationError>
source§impl Client
impl Client
sourcepub fn get_bucket_acl(&self) -> GetBucketAclFluentBuilder
pub fn get_bucket_acl(&self) -> GetBucketAclFluentBuilder
Constructs a fluent builder for the GetBucketAcl
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueSpecifies the S3 bucket whose ACL is being requested.
When you use this API operation with an access point, provide the alias of the access point in place of the bucket name.
When you use this API operation with an Object Lambda access point, provide the alias of the Object Lambda access point in place of the bucket name. If the Object Lambda access point alias in a request is not valid, the error code
InvalidAccessPointAliasError
is returned. For more information aboutInvalidAccessPointAliasError
, see List of Error Codes.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketAclOutput
with field(s):owner(Option<Owner>)
:Container for the bucket owner’s display name and ID.
grants(Option<Vec::<Grant>>)
:A list of grants.
- On failure, responds with
SdkError<GetBucketAclError>
source§impl Client
impl Client
sourcepub fn get_bucket_analytics_configuration(
&self,
) -> GetBucketAnalyticsConfigurationFluentBuilder
pub fn get_bucket_analytics_configuration( &self, ) -> GetBucketAnalyticsConfigurationFluentBuilder
Constructs a fluent builder for the GetBucketAnalyticsConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket from which an analytics configuration is retrieved.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID that identifies the analytics configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketAnalyticsConfigurationOutput
with field(s):analytics_configuration(Option<AnalyticsConfiguration>)
:The configuration and any analyses for the analytics filter.
- On failure, responds with
SdkError<GetBucketAnalyticsConfigurationError>
source§impl Client
impl Client
sourcepub fn get_bucket_cors(&self) -> GetBucketCorsFluentBuilder
pub fn get_bucket_cors(&self) -> GetBucketCorsFluentBuilder
Constructs a fluent builder for the GetBucketCors
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name for which to get the cors configuration.
When you use this API operation with an access point, provide the alias of the access point in place of the bucket name.
When you use this API operation with an Object Lambda access point, provide the alias of the Object Lambda access point in place of the bucket name. If the Object Lambda access point alias in a request is not valid, the error code
InvalidAccessPointAliasError
is returned. For more information aboutInvalidAccessPointAliasError
, see List of Error Codes.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketCorsOutput
with field(s):cors_rules(Option<Vec::<CorsRule>>)
:A set of origins and methods (cross-origin access that you want to allow). You can add up to 100 rules to the configuration.
- On failure, responds with
SdkError<GetBucketCorsError>
source§impl Client
impl Client
sourcepub fn get_bucket_encryption(&self) -> GetBucketEncryptionFluentBuilder
pub fn get_bucket_encryption(&self) -> GetBucketEncryptionFluentBuilder
Constructs a fluent builder for the GetBucketEncryption
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket from which the server-side encryption configuration is retrieved.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketEncryptionOutput
with field(s):server_side_encryption_configuration(Option<ServerSideEncryptionConfiguration>)
:Specifies the default server-side-encryption configuration.
- On failure, responds with
SdkError<GetBucketEncryptionError>
source§impl Client
impl Client
sourcepub fn get_bucket_intelligent_tiering_configuration(
&self,
) -> GetBucketIntelligentTieringConfigurationFluentBuilder
pub fn get_bucket_intelligent_tiering_configuration( &self, ) -> GetBucketIntelligentTieringConfigurationFluentBuilder
Constructs a fluent builder for the GetBucketIntelligentTieringConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose configuration you want to modify or retrieve.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the S3 Intelligent-Tiering configuration.
- On success, responds with
GetBucketIntelligentTieringConfigurationOutput
with field(s):intelligent_tiering_configuration(Option<IntelligentTieringConfiguration>)
:Container for S3 Intelligent-Tiering configuration.
- On failure, responds with
SdkError<GetBucketIntelligentTieringConfigurationError>
source§impl Client
impl Client
sourcepub fn get_bucket_inventory_configuration(
&self,
) -> GetBucketInventoryConfigurationFluentBuilder
pub fn get_bucket_inventory_configuration( &self, ) -> GetBucketInventoryConfigurationFluentBuilder
Constructs a fluent builder for the GetBucketInventoryConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the inventory configuration to retrieve.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the inventory configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketInventoryConfigurationOutput
with field(s):inventory_configuration(Option<InventoryConfiguration>)
:Specifies the inventory configuration.
- On failure, responds with
SdkError<GetBucketInventoryConfigurationError>
source§impl Client
impl Client
sourcepub fn get_bucket_lifecycle_configuration(
&self,
) -> GetBucketLifecycleConfigurationFluentBuilder
pub fn get_bucket_lifecycle_configuration( &self, ) -> GetBucketLifecycleConfigurationFluentBuilder
Constructs a fluent builder for the GetBucketLifecycleConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to get the lifecycle information.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketLifecycleConfigurationOutput
with field(s):rules(Option<Vec::<LifecycleRule>>)
:Container for a lifecycle rule.
- On failure, responds with
SdkError<GetBucketLifecycleConfigurationError>
source§impl Client
impl Client
sourcepub fn get_bucket_location(&self) -> GetBucketLocationFluentBuilder
pub fn get_bucket_location(&self) -> GetBucketLocationFluentBuilder
Constructs a fluent builder for the GetBucketLocation
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to get the location.
When you use this API operation with an access point, provide the alias of the access point in place of the bucket name.
When you use this API operation with an Object Lambda access point, provide the alias of the Object Lambda access point in place of the bucket name. If the Object Lambda access point alias in a request is not valid, the error code
InvalidAccessPointAliasError
is returned. For more information aboutInvalidAccessPointAliasError
, see List of Error Codes.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketLocationOutput
with field(s):location_constraint(Option<BucketLocationConstraint>)
:Specifies the Region where the bucket resides. For a list of all the Amazon S3 supported location constraints by Region, see Regions and Endpoints. Buckets in Region
us-east-1
have a LocationConstraint ofnull
.
- On failure, responds with
SdkError<GetBucketLocationError>
source§impl Client
impl Client
sourcepub fn get_bucket_logging(&self) -> GetBucketLoggingFluentBuilder
pub fn get_bucket_logging(&self) -> GetBucketLoggingFluentBuilder
Constructs a fluent builder for the GetBucketLogging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name for which to get the logging information.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketLoggingOutput
with field(s):logging_enabled(Option<LoggingEnabled>)
:Describes where logs are stored and the prefix that Amazon S3 assigns to all log object keys for a bucket. For more information, see PUT Bucket logging in the Amazon S3 API Reference.
- On failure, responds with
SdkError<GetBucketLoggingError>
source§impl Client
impl Client
sourcepub fn get_bucket_metrics_configuration(
&self,
) -> GetBucketMetricsConfigurationFluentBuilder
pub fn get_bucket_metrics_configuration( &self, ) -> GetBucketMetricsConfigurationFluentBuilder
Constructs a fluent builder for the GetBucketMetricsConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the metrics configuration to retrieve.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the metrics configuration. The ID has a 64 character limit and can only contain letters, numbers, periods, dashes, and underscores.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketMetricsConfigurationOutput
with field(s):metrics_configuration(Option<MetricsConfiguration>)
:Specifies the metrics configuration.
- On failure, responds with
SdkError<GetBucketMetricsConfigurationError>
source§impl Client
impl Client
sourcepub fn get_bucket_notification_configuration(
&self,
) -> GetBucketNotificationConfigurationFluentBuilder
pub fn get_bucket_notification_configuration( &self, ) -> GetBucketNotificationConfigurationFluentBuilder
Constructs a fluent builder for the GetBucketNotificationConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to get the notification configuration.
When you use this API operation with an access point, provide the alias of the access point in place of the bucket name.
When you use this API operation with an Object Lambda access point, provide the alias of the Object Lambda access point in place of the bucket name. If the Object Lambda access point alias in a request is not valid, the error code
InvalidAccessPointAliasError
is returned. For more information aboutInvalidAccessPointAliasError
, see List of Error Codes.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketNotificationConfigurationOutput
with field(s):topic_configurations(Option<Vec::<TopicConfiguration>>)
:The topic to which notifications are sent and the events for which notifications are generated.
queue_configurations(Option<Vec::<QueueConfiguration>>)
:The Amazon Simple Queue Service queues to publish messages to and the events for which to publish messages.
lambda_function_configurations(Option<Vec::<LambdaFunctionConfiguration>>)
:Describes the Lambda functions to invoke and the events for which to invoke them.
event_bridge_configuration(Option<EventBridgeConfiguration>)
:Enables delivery of events to Amazon EventBridge.
- On failure, responds with
SdkError<GetBucketNotificationConfigurationError>
source§impl Client
impl Client
sourcepub fn get_bucket_ownership_controls(
&self,
) -> GetBucketOwnershipControlsFluentBuilder
pub fn get_bucket_ownership_controls( &self, ) -> GetBucketOwnershipControlsFluentBuilder
Constructs a fluent builder for the GetBucketOwnershipControls
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose
OwnershipControls
you want to retrieve.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketOwnershipControlsOutput
with field(s):ownership_controls(Option<OwnershipControls>)
:The
OwnershipControls
(BucketOwnerEnforced, BucketOwnerPreferred, or ObjectWriter) currently in effect for this Amazon S3 bucket.
- On failure, responds with
SdkError<GetBucketOwnershipControlsError>
source§impl Client
impl Client
sourcepub fn get_bucket_policy(&self) -> GetBucketPolicyFluentBuilder
pub fn get_bucket_policy(&self) -> GetBucketPolicyFluentBuilder
Constructs a fluent builder for the GetBucketPolicy
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name to get the bucket policy for.
Directory buckets - When you use this operation with a directory bucket, you must use path-style requests in the format
https://s3express-control.region_code.amazonaws.com/bucket-name
. Virtual-hosted-style requests aren’t supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must also follow the formatbucket_base_name–az_id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User GuideAccess points - When you use this API operation with an access point, provide the alias of the access point in place of the bucket name.
Object Lambda access points - When you use this API operation with an Object Lambda access point, provide the alias of the Object Lambda access point in place of the bucket name. If the Object Lambda access point alias in a request is not valid, the error code
InvalidAccessPointAliasError
is returned. For more information aboutInvalidAccessPointAliasError
, see List of Error Codes.Access points and Object Lambda access points are not supported by directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
501 Not Implemented
.
- On success, responds with
GetBucketPolicyOutput
with field(s):policy(Option<String>)
:The bucket policy as a JSON document.
- On failure, responds with
SdkError<GetBucketPolicyError>
source§impl Client
impl Client
sourcepub fn get_bucket_policy_status(&self) -> GetBucketPolicyStatusFluentBuilder
pub fn get_bucket_policy_status(&self) -> GetBucketPolicyStatusFluentBuilder
Constructs a fluent builder for the GetBucketPolicyStatus
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose policy status you want to retrieve.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketPolicyStatusOutput
with field(s):policy_status(Option<PolicyStatus>)
:The policy status for the specified bucket.
- On failure, responds with
SdkError<GetBucketPolicyStatusError>
source§impl Client
impl Client
sourcepub fn get_bucket_replication(&self) -> GetBucketReplicationFluentBuilder
pub fn get_bucket_replication(&self) -> GetBucketReplicationFluentBuilder
Constructs a fluent builder for the GetBucketReplication
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name for which to get the replication information.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketReplicationOutput
with field(s):replication_configuration(Option<ReplicationConfiguration>)
:A container for replication rules. You can add up to 1,000 rules. The maximum size of a replication configuration is 2 MB.
- On failure, responds with
SdkError<GetBucketReplicationError>
source§impl Client
impl Client
sourcepub fn get_bucket_request_payment(&self) -> GetBucketRequestPaymentFluentBuilder
pub fn get_bucket_request_payment(&self) -> GetBucketRequestPaymentFluentBuilder
Constructs a fluent builder for the GetBucketRequestPayment
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to get the payment request configuration
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketRequestPaymentOutput
with field(s):payer(Option<Payer>)
:Specifies who pays for the download and request fees.
- On failure, responds with
SdkError<GetBucketRequestPaymentError>
source§impl Client
impl Client
sourcepub fn get_bucket_tagging(&self) -> GetBucketTaggingFluentBuilder
pub fn get_bucket_tagging(&self) -> GetBucketTaggingFluentBuilder
Constructs a fluent builder for the GetBucketTagging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to get the tagging information.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketTaggingOutput
with field(s):tag_set(Vec::<Tag>)
:Contains the tag set.
- On failure, responds with
SdkError<GetBucketTaggingError>
source§impl Client
impl Client
sourcepub fn get_bucket_versioning(&self) -> GetBucketVersioningFluentBuilder
pub fn get_bucket_versioning(&self) -> GetBucketVersioningFluentBuilder
Constructs a fluent builder for the GetBucketVersioning
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to get the versioning information.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketVersioningOutput
with field(s):status(Option<BucketVersioningStatus>)
:The versioning state of the bucket.
mfa_delete(Option<MfaDeleteStatus>)
:Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned.
- On failure, responds with
SdkError<GetBucketVersioningError>
source§impl Client
impl Client
sourcepub fn get_bucket_website(&self) -> GetBucketWebsiteFluentBuilder
pub fn get_bucket_website(&self) -> GetBucketWebsiteFluentBuilder
Constructs a fluent builder for the GetBucketWebsite
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name for which to get the website configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetBucketWebsiteOutput
with field(s):redirect_all_requests_to(Option<RedirectAllRequestsTo>)
:Specifies the redirect behavior of all requests to a website endpoint of an Amazon S3 bucket.
index_document(Option<IndexDocument>)
:The name of the index document for the website (for example
index.html
).error_document(Option<ErrorDocument>)
:The object key name of the website error document to use for 4XX class errors.
routing_rules(Option<Vec::<RoutingRule>>)
:Rules that define when a redirect is applied and the redirect behavior.
- On failure, responds with
SdkError<GetBucketWebsiteError>
source§impl Client
impl Client
sourcepub fn get_object(&self) -> GetObjectFluentBuilder
pub fn get_object(&self) -> GetObjectFluentBuilder
Constructs a fluent builder for the GetObject
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the object.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Object Lambda access points - When you use this action with an Object Lambda access point, you must direct requests to the Object Lambda access point hostname. The Object Lambda access point hostname takes the form AccessPointName-AccountId.s3-object-lambda.Region.amazonaws.com.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.if_match(impl Into<String>)
/set_if_match(Option<String>)
:
required: falseReturn the object only if its entity tag (ETag) is the same as the one specified in this header; otherwise, return a
412 Precondition Failed
error.If both of the
If-Match
andIf-Unmodified-Since
headers are present in the request as follows:If-Match
condition evaluates totrue
, and;If-Unmodified-Since
condition evaluates tofalse
; then, S3 returns200 OK
and the data requested.For more information about conditional requests, see RFC 7232.
if_modified_since(DateTime)
/set_if_modified_since(Option<DateTime>)
:
required: falseReturn the object only if it has been modified since the specified time; otherwise, return a
304 Not Modified
error.If both of the
If-None-Match
andIf-Modified-Since
headers are present in the request as follows:If-None-Match
condition evaluates tofalse
, and;If-Modified-Since
condition evaluates totrue
; then, S3 returns304 Not Modified
status code.For more information about conditional requests, see RFC 7232.
if_none_match(impl Into<String>)
/set_if_none_match(Option<String>)
:
required: falseReturn the object only if its entity tag (ETag) is different from the one specified in this header; otherwise, return a
304 Not Modified
error.If both of the
If-None-Match
andIf-Modified-Since
headers are present in the request as follows:If-None-Match
condition evaluates tofalse
, and;If-Modified-Since
condition evaluates totrue
; then, S3 returns304 Not Modified
HTTP status code.For more information about conditional requests, see RFC 7232.
if_unmodified_since(DateTime)
/set_if_unmodified_since(Option<DateTime>)
:
required: falseReturn the object only if it has not been modified since the specified time; otherwise, return a
412 Precondition Failed
error.If both of the
If-Match
andIf-Unmodified-Since
headers are present in the request as follows:If-Match
condition evaluates totrue
, and;If-Unmodified-Since
condition evaluates tofalse
; then, S3 returns200 OK
and the data requested.For more information about conditional requests, see RFC 7232.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueKey of the object to get.
range(impl Into<String>)
/set_range(Option<String>)
:
required: falseDownloads the specified byte range of an object. For more information about the HTTP Range header, see https://www.rfc-editor.org/rfc/rfc9110.html#name-range.
Amazon S3 doesn’t support retrieving multiple ranges of data per
GET
request.response_cache_control(impl Into<String>)
/set_response_cache_control(Option<String>)
:
required: falseSets the
Cache-Control
header of the response.response_content_disposition(impl Into<String>)
/set_response_content_disposition(Option<String>)
:
required: falseSets the
Content-Disposition
header of the response.response_content_encoding(impl Into<String>)
/set_response_content_encoding(Option<String>)
:
required: falseSets the
Content-Encoding
header of the response.response_content_language(impl Into<String>)
/set_response_content_language(Option<String>)
:
required: falseSets the
Content-Language
header of the response.response_content_type(impl Into<String>)
/set_response_content_type(Option<String>)
:
required: falseSets the
Content-Type
header of the response.response_expires(DateTime)
/set_response_expires(Option<DateTime>)
:
required: falseSets the
Expires
header of the response.version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseVersion ID used to reference a specific version of the object.
By default, the
GetObject
operation returns the current version of an object. To return a different version, use theversionId
subresource.-
If you include a
versionId
in your request header, you must have thes3:GetObjectVersion
permission to access a specific version of an object. Thes3:GetObject
permission is not required in this scenario. -
If you request the current version of an object without a specific
versionId
in the request header, only thes3:GetObject
permission is required. Thes3:GetObjectVersion
permission is not required in this scenario. -
Directory buckets - S3 Versioning isn’t enabled and supported for directory buckets. For this API operation, only the
null
value of the version ID is supported by directory buckets. You can only specifynull
to theversionId
query parameter in the request.
For more information about versioning, see PutBucketVersioning.
-
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when decrypting the object (for example,
AES256
).If you encrypt an object by using server-side encryption with customer-provided encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object, you must use the following headers:
-
x-amz-server-side-encryption-customer-algorithm
-
x-amz-server-side-encryption-customer-key
-
x-amz-server-side-encryption-customer-key-MD5
For more information about SSE-C, see Server-Side Encryption (Using Customer-Provided Encryption Keys) in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
-
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key that you originally provided for Amazon S3 to encrypt the data before storing it. This value is used to decrypt the object when recovering it and must match the one used when storing the data. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm
header.If you encrypt an object by using server-side encryption with customer-provided encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object, you must use the following headers:
-
x-amz-server-side-encryption-customer-algorithm
-
x-amz-server-side-encryption-customer-key
-
x-amz-server-side-encryption-customer-key-MD5
For more information about SSE-C, see Server-Side Encryption (Using Customer-Provided Encryption Keys) in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
-
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the customer-provided encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
If you encrypt an object by using server-side encryption with customer-provided encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object, you must use the following headers:
-
x-amz-server-side-encryption-customer-algorithm
-
x-amz-server-side-encryption-customer-key
-
x-amz-server-side-encryption-customer-key-MD5
For more information about SSE-C, see Server-Side Encryption (Using Customer-Provided Encryption Keys) in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
-
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
part_number(i32)
/set_part_number(Option<i32>)
:
required: falsePart number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a ‘ranged’ GET request for the part specified. Useful for downloading just a part of an object.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).checksum_mode(ChecksumMode)
/set_checksum_mode(Option<ChecksumMode>)
:
required: falseTo retrieve the checksum, this mode must be enabled.
- On success, responds with
GetObjectOutput
with field(s):body(ByteStream)
:Object data.
delete_marker(Option<bool>)
:Indicates whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.
-
If the current version of the object is a delete marker, Amazon S3 behaves as if the object was deleted and includes
x-amz-delete-marker: true
in the response. -
If the specified version in the request is a delete marker, the response returns a
405 Method Not Allowed
error and theLast-Modified: timestamp
response header.
-
accept_ranges(Option<String>)
:Indicates that a range of bytes was specified in the request.
expiration(Option<String>)
:If the object expiration is configured (see
PutBucketLifecycleConfiguration
), the response includes this header. It includes theexpiry-date
andrule-id
key-value pairs providing object expiration information. The value of therule-id
is URL-encoded.This functionality is not supported for directory buckets.
restore(Option<String>)
:Provides information about object restoration action and expiration time of the restored object copy.
This functionality is not supported for directory buckets. Only the S3 Express One Zone storage class is supported by directory buckets to store objects.
last_modified(Option<DateTime>)
:Date and time when the object was last modified.
General purpose buckets - When you specify a
versionId
of the object in your request, if the specified version in the request is a delete marker, the response returns a405 Method Not Allowed
error and theLast-Modified: timestamp
response header.content_length(Option<i64>)
:Size of the body in bytes.
e_tag(Option<String>)
:An entity tag (ETag) is an opaque identifier assigned by a web server to a specific version of a resource found at a URL.
checksum_crc32(Option<String>)
:The base64-encoded, 32-bit CRC32 checksum of the object. This will only be present if it was uploaded with the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(Option<String>)
:The base64-encoded, 32-bit CRC32C checksum of the object. This will only be present if it was uploaded with the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(Option<String>)
:The base64-encoded, 160-bit SHA-1 digest of the object. This will only be present if it was uploaded with the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(Option<String>)
:The base64-encoded, 256-bit SHA-256 digest of the object. This will only be present if it was uploaded with the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
missing_meta(Option<i32>)
:This is set to the number of metadata entries not returned in the headers that are prefixed with
x-amz-meta-
. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.This functionality is not supported for directory buckets.
version_id(Option<String>)
:Version ID of the object.
This functionality is not supported for directory buckets.
cache_control(Option<String>)
:Specifies caching behavior along the request/reply chain.
content_disposition(Option<String>)
:Specifies presentational information for the object.
content_encoding(Option<String>)
:Indicates what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
content_language(Option<String>)
:The language the content is in.
content_range(Option<String>)
:The portion of the object returned in the response.
content_type(Option<String>)
:A standard MIME type describing the format of the object data.
expires(Option<DateTime>)
:The date and time at which the object is no longer cacheable.
website_redirect_location(Option<String>)
:If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
This functionality is not supported for directory buckets.
server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
,aws:kms:dsse
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.metadata(Option<HashMap::<String, String>>)
:A map of metadata to store with the object in S3.
sse_customer_algorithm(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to confirm the encryption algorithm that’s used.
This functionality is not supported for directory buckets.
sse_customer_key_md5(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide the round-trip message integrity verification of the customer-provided encryption key.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If present, indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.
This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the object uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
storage_class(Option<StorageClass>)
:Provides storage class information of the object. Amazon S3 returns this header for all objects except for S3 Standard storage class objects.
Directory buckets - Only the S3 Express One Zone storage class is supported by directory buckets to store objects.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
replication_status(Option<ReplicationStatus>)
:Amazon S3 can return this if your request involves a bucket that is either a source or destination in a replication rule.
This functionality is not supported for directory buckets.
parts_count(Option<i32>)
:The count of parts this object has. This value is only returned if you specify
partNumber
in your request and the object was uploaded as a multipart upload.tag_count(Option<i32>)
:The number of tags, if any, on the object, when you have the relevant permission to read object tags.
You can use GetObjectTagging to retrieve the tag set associated with an object.
This functionality is not supported for directory buckets.
object_lock_mode(Option<ObjectLockMode>)
:The Object Lock mode that’s currently in place for this object.
This functionality is not supported for directory buckets.
object_lock_retain_until_date(Option<DateTime>)
:The date and time when this object’s Object Lock will expire.
This functionality is not supported for directory buckets.
object_lock_legal_hold_status(Option<ObjectLockLegalHoldStatus>)
:Indicates whether this object has an active legal hold. This field is only returned if you have permission to view an object’s legal hold status.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<GetObjectError>
source§impl Client
impl Client
sourcepub fn get_object_acl(&self) -> GetObjectAclFluentBuilder
pub fn get_object_acl(&self) -> GetObjectAclFluentBuilder
Constructs a fluent builder for the GetObjectAcl
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name that contains the object for which to get the ACL information.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe key of the object for which to get the ACL information.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseVersion ID used to reference a specific version of the object.
This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetObjectAclOutput
with field(s):owner(Option<Owner>)
:Container for the bucket owner’s display name and ID.
grants(Option<Vec::<Grant>>)
:A list of grants.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<GetObjectAclError>
source§impl Client
impl Client
sourcepub fn get_object_attributes(&self) -> GetObjectAttributesFluentBuilder
pub fn get_object_attributes(&self) -> GetObjectAttributesFluentBuilder
Constructs a fluent builder for the GetObjectAttributes
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket that contains the object.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe object key.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe version ID used to reference a specific version of the object.
S3 Versioning isn’t enabled and supported for directory buckets. For this API operation, only the
null
value of the version ID is supported by directory buckets. You can only specifynull
to theversionId
query parameter in the request.max_parts(i32)
/set_max_parts(Option<i32>)
:
required: falseSets the maximum number of parts to return.
part_number_marker(impl Into<String>)
/set_part_number_marker(Option<String>)
:
required: falseSpecifies the part after which listing should begin. Only parts with higher part numbers will be listed.
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when encrypting the object (for example, AES256).
This functionality is not supported for directory buckets.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm
header.This functionality is not supported for directory buckets.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).object_attributes(ObjectAttributes)
/set_object_attributes(Option<Vec::<ObjectAttributes>>)
:
required: trueSpecifies the fields at the root level that you want returned in the response. Fields that you do not specify are not returned.
- On success, responds with
GetObjectAttributesOutput
with field(s):delete_marker(Option<bool>)
:Specifies whether the object retrieved was (
true
) or was not (false
) a delete marker. Iffalse
, this response header does not appear in the response.This functionality is not supported for directory buckets.
last_modified(Option<DateTime>)
:The creation date of the object.
version_id(Option<String>)
:The version ID of the object.
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
e_tag(Option<String>)
:An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL.
checksum(Option<Checksum>)
:The checksum or digest of the object.
object_parts(Option<GetObjectAttributesParts>)
:A collection of parts associated with a multipart upload.
storage_class(Option<StorageClass>)
:Provides the storage class information of the object. Amazon S3 returns this header for all objects except for S3 Standard storage class objects.
For more information, see Storage Classes.
Directory buckets - Only the S3 Express One Zone storage class is supported by directory buckets to store objects.
object_size(Option<i64>)
:The size of the object in bytes.
- On failure, responds with
SdkError<GetObjectAttributesError>
source§impl Client
impl Client
sourcepub fn get_object_legal_hold(&self) -> GetObjectLegalHoldFluentBuilder
pub fn get_object_legal_hold(&self) -> GetObjectLegalHoldFluentBuilder
Constructs a fluent builder for the GetObjectLegalHold
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the object whose legal hold status you want to retrieve.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe key name for the object whose legal hold status you want to retrieve.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe version ID of the object whose legal hold status you want to retrieve.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetObjectLegalHoldOutput
with field(s):legal_hold(Option<ObjectLockLegalHold>)
:The current legal hold status for the specified object.
- On failure, responds with
SdkError<GetObjectLegalHoldError>
source§impl Client
impl Client
sourcepub fn get_object_lock_configuration(
&self,
) -> GetObjectLockConfigurationFluentBuilder
pub fn get_object_lock_configuration( &self, ) -> GetObjectLockConfigurationFluentBuilder
Constructs a fluent builder for the GetObjectLockConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket whose Object Lock configuration you want to retrieve.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetObjectLockConfigurationOutput
with field(s):object_lock_configuration(Option<ObjectLockConfiguration>)
:The specified bucket’s Object Lock configuration.
- On failure, responds with
SdkError<GetObjectLockConfigurationError>
source§impl Client
impl Client
sourcepub fn get_object_retention(&self) -> GetObjectRetentionFluentBuilder
pub fn get_object_retention(&self) -> GetObjectRetentionFluentBuilder
Constructs a fluent builder for the GetObjectRetention
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the object whose retention settings you want to retrieve.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe key name for the object whose retention settings you want to retrieve.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe version ID for the object whose retention settings you want to retrieve.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetObjectRetentionOutput
with field(s):retention(Option<ObjectLockRetention>)
:The container element for an object’s retention settings.
- On failure, responds with
SdkError<GetObjectRetentionError>
source§impl Client
impl Client
sourcepub fn get_object_tagging(&self) -> GetObjectTaggingFluentBuilder
pub fn get_object_tagging(&self) -> GetObjectTaggingFluentBuilder
Constructs a fluent builder for the GetObjectTagging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the object for which to get the tagging information.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which to get the tagging information.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe versionId of the object for which to get the tagging information.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
- On success, responds with
GetObjectTaggingOutput
with field(s):version_id(Option<String>)
:The versionId of the object for which you got the tagging information.
tag_set(Vec::<Tag>)
:Contains the tag set.
- On failure, responds with
SdkError<GetObjectTaggingError>
source§impl Client
impl Client
sourcepub fn get_object_torrent(&self) -> GetObjectTorrentFluentBuilder
pub fn get_object_torrent(&self) -> GetObjectTorrentFluentBuilder
Constructs a fluent builder for the GetObjectTorrent
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the object for which to get the torrent files.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe object key for which to get the information.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetObjectTorrentOutput
with field(s):body(ByteStream)
:A Bencoded dictionary as defined by the BitTorrent specification
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<GetObjectTorrentError>
source§impl Client
impl Client
sourcepub fn get_public_access_block(&self) -> GetPublicAccessBlockFluentBuilder
pub fn get_public_access_block(&self) -> GetPublicAccessBlockFluentBuilder
Constructs a fluent builder for the GetPublicAccessBlock
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose
PublicAccessBlock
configuration you want to retrieve.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
GetPublicAccessBlockOutput
with field(s):public_access_block_configuration(Option<PublicAccessBlockConfiguration>)
:The
PublicAccessBlock
configuration currently in effect for this Amazon S3 bucket.
- On failure, responds with
SdkError<GetPublicAccessBlockError>
source§impl Client
impl Client
sourcepub fn head_bucket(&self) -> HeadBucketFluentBuilder
pub fn head_bucket(&self) -> HeadBucketFluentBuilder
Constructs a fluent builder for the HeadBucket
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Object Lambda access points - When you use this API operation with an Object Lambda access point, provide the alias of the Object Lambda access point in place of the bucket name. If the Object Lambda access point alias in a request is not valid, the error code
InvalidAccessPointAliasError
is returned. For more information aboutInvalidAccessPointAliasError
, see List of Error Codes.Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
HeadBucketOutput
with field(s):bucket_location_type(Option<LocationType>)
:The type of location where the bucket is created.
This functionality is only supported by directory buckets.
bucket_location_name(Option<String>)
:The name of the location where the bucket will be created.
For directory buckets, the AZ ID of the Availability Zone where the bucket is created. An example AZ ID value is
usw2-az1
.This functionality is only supported by directory buckets.
bucket_region(Option<String>)
:The Region that the bucket is located.
This functionality is not supported for directory buckets.
access_point_alias(Option<bool>)
:Indicates whether the bucket name used in the request is an access point alias.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<HeadBucketError>
source§impl Client
impl Client
sourcepub fn head_object(&self) -> HeadObjectFluentBuilder
pub fn head_object(&self) -> HeadObjectFluentBuilder
Constructs a fluent builder for the HeadObject
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket that contains the object.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.if_match(impl Into<String>)
/set_if_match(Option<String>)
:
required: falseReturn the object only if its entity tag (ETag) is the same as the one specified; otherwise, return a 412 (precondition failed) error.
If both of the
If-Match
andIf-Unmodified-Since
headers are present in the request as follows:-
If-Match
condition evaluates totrue
, and; -
If-Unmodified-Since
condition evaluates tofalse
;
Then Amazon S3 returns
200 OK
and the data requested.For more information about conditional requests, see RFC 7232.
-
if_modified_since(DateTime)
/set_if_modified_since(Option<DateTime>)
:
required: falseReturn the object only if it has been modified since the specified time; otherwise, return a 304 (not modified) error.
If both of the
If-None-Match
andIf-Modified-Since
headers are present in the request as follows:-
If-None-Match
condition evaluates tofalse
, and; -
If-Modified-Since
condition evaluates totrue
;
Then Amazon S3 returns the
304 Not Modified
response code.For more information about conditional requests, see RFC 7232.
-
if_none_match(impl Into<String>)
/set_if_none_match(Option<String>)
:
required: falseReturn the object only if its entity tag (ETag) is different from the one specified; otherwise, return a 304 (not modified) error.
If both of the
If-None-Match
andIf-Modified-Since
headers are present in the request as follows:-
If-None-Match
condition evaluates tofalse
, and; -
If-Modified-Since
condition evaluates totrue
;
Then Amazon S3 returns the
304 Not Modified
response code.For more information about conditional requests, see RFC 7232.
-
if_unmodified_since(DateTime)
/set_if_unmodified_since(Option<DateTime>)
:
required: falseReturn the object only if it has not been modified since the specified time; otherwise, return a 412 (precondition failed) error.
If both of the
If-Match
andIf-Unmodified-Since
headers are present in the request as follows:-
If-Match
condition evaluates totrue
, and; -
If-Unmodified-Since
condition evaluates tofalse
;
Then Amazon S3 returns
200 OK
and the data requested.For more information about conditional requests, see RFC 7232.
-
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe object key.
range(impl Into<String>)
/set_range(Option<String>)
:
required: falseHeadObject returns only the metadata for an object. If the Range is satisfiable, only the
ContentLength
is affected in the response. If the Range is not satisfiable, S3 returns a416 - Requested Range Not Satisfiable
error.version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseVersion ID used to reference a specific version of the object.
For directory buckets in this API operation, only the
null
value of the version ID is supported.sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when encrypting the object (for example, AES256).
This functionality is not supported for directory buckets.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm
header.This functionality is not supported for directory buckets.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
part_number(i32)
/set_part_number(Option<i32>)
:
required: falsePart number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a ‘ranged’ HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).checksum_mode(ChecksumMode)
/set_checksum_mode(Option<ChecksumMode>)
:
required: falseTo retrieve the checksum, this parameter must be enabled.
In addition, if you enable
ChecksumMode
and the object is encrypted with Amazon Web Services Key Management Service (Amazon Web Services KMS), you must have permission to use thekms:Decrypt
action for the request to succeed.
- On success, responds with
HeadObjectOutput
with field(s):delete_marker(Option<bool>)
:Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.
This functionality is not supported for directory buckets.
accept_ranges(Option<String>)
:Indicates that a range of bytes was specified.
expiration(Option<String>)
:If the object expiration is configured (see
PutBucketLifecycleConfiguration
), the response includes this header. It includes theexpiry-date
andrule-id
key-value pairs providing object expiration information. The value of therule-id
is URL-encoded.This functionality is not supported for directory buckets.
restore(Option<String>)
:If the object is an archived object (an object whose storage class is GLACIER), the response includes this header if either the archive restoration is in progress (see RestoreObject or an archive copy is already restored.
If an archive copy is already restored, the header value indicates when Amazon S3 is scheduled to delete the object copy. For example:
x-amz-restore: ongoing-request=“false”, expiry-date=“Fri, 21 Dec 2012 00:00:00 GMT”
If the object restoration is in progress, the header returns the value
ongoing-request=“true”
.For more information about archiving objects, see Transitioning Objects: General Considerations.
This functionality is not supported for directory buckets. Only the S3 Express One Zone storage class is supported by directory buckets to store objects.
archive_status(Option<ArchiveStatus>)
:The archive state of the head object.
This functionality is not supported for directory buckets.
last_modified(Option<DateTime>)
:Date and time when the object was last modified.
content_length(Option<i64>)
:Size of the body in bytes.
checksum_crc32(Option<String>)
:The base64-encoded, 32-bit CRC32 checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(Option<String>)
:The base64-encoded, 32-bit CRC32C checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(Option<String>)
:The base64-encoded, 160-bit SHA-1 digest of the object. This will only be present if it was uploaded with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(Option<String>)
:The base64-encoded, 256-bit SHA-256 digest of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
e_tag(Option<String>)
:An entity tag (ETag) is an opaque identifier assigned by a web server to a specific version of a resource found at a URL.
missing_meta(Option<i32>)
:This is set to the number of metadata entries not returned in
x-amz-meta
headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.This functionality is not supported for directory buckets.
version_id(Option<String>)
:Version ID of the object.
This functionality is not supported for directory buckets.
cache_control(Option<String>)
:Specifies caching behavior along the request/reply chain.
content_disposition(Option<String>)
:Specifies presentational information for the object.
content_encoding(Option<String>)
:Indicates what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
content_language(Option<String>)
:The language the content is in.
content_type(Option<String>)
:A standard MIME type describing the format of the object data.
expires(Option<DateTime>)
:The date and time at which the object is no longer cacheable.
website_redirect_location(Option<String>)
:If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
This functionality is not supported for directory buckets.
server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
,aws:kms:dsse
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.metadata(Option<HashMap::<String, String>>)
:A map of metadata to store with the object in S3.
sse_customer_algorithm(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to confirm the encryption algorithm that’s used.
This functionality is not supported for directory buckets.
sse_customer_key_md5(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide the round-trip message integrity verification of the customer-provided encryption key.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If present, indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.
This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the object uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
storage_class(Option<StorageClass>)
:Provides storage class information of the object. Amazon S3 returns this header for all objects except for S3 Standard storage class objects.
For more information, see Storage Classes.
Directory buckets - Only the S3 Express One Zone storage class is supported by directory buckets to store objects.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
replication_status(Option<ReplicationStatus>)
:Amazon S3 can return this header if your request involves a bucket that is either a source or a destination in a replication rule.
In replication, you have a source bucket on which you configure replication and destination bucket or buckets where Amazon S3 stores object replicas. When you request an object (
GetObject
) or object metadata (HeadObject
) from these buckets, Amazon S3 will return thex-amz-replication-status
header in the response as follows:-
If requesting an object from the source bucket, Amazon S3 will return the
x-amz-replication-status
header if the object in your request is eligible for replication.For example, suppose that in your replication configuration, you specify object prefix
TaxDocs
requesting Amazon S3 to replicate objects with key prefixTaxDocs
. Any objects you upload with this key name prefix, for exampleTaxDocs/document1.pdf
, are eligible for replication. For any object request with this key name prefix, Amazon S3 will return thex-amz-replication-status
header with value PENDING, COMPLETED or FAILED indicating object replication status. -
If requesting an object from a destination bucket, Amazon S3 will return the
x-amz-replication-status
header with value REPLICA if the object in your request is a replica that Amazon S3 created and there is no replica modification replication in progress. -
When replicating objects to multiple destination buckets, the
x-amz-replication-status
header acts differently. The header of the source object will only return a value of COMPLETED when replication is successful to all destinations. The header will remain at value PENDING until replication has completed for all destinations. If one or more destinations fails replication the header will return FAILED.
For more information, see Replication.
This functionality is not supported for directory buckets.
-
parts_count(Option<i32>)
:The count of parts this object has. This value is only returned if you specify
partNumber
in your request and the object was uploaded as a multipart upload.object_lock_mode(Option<ObjectLockMode>)
:The Object Lock mode, if any, that’s in effect for this object. This header is only returned if the requester has the
s3:GetObjectRetention
permission. For more information about S3 Object Lock, see Object Lock.This functionality is not supported for directory buckets.
object_lock_retain_until_date(Option<DateTime>)
:The date and time when the Object Lock retention period expires. This header is only returned if the requester has the
s3:GetObjectRetention
permission.This functionality is not supported for directory buckets.
object_lock_legal_hold_status(Option<ObjectLockLegalHoldStatus>)
:Specifies whether a legal hold is in effect for this object. This header is only returned if the requester has the
s3:GetObjectLegalHold
permission. This header is not returned if the specified version of this object has never had a legal hold applied. For more information about S3 Object Lock, see Object Lock.This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<HeadObjectError>
source§impl Client
impl Client
sourcepub fn list_bucket_analytics_configurations(
&self,
) -> ListBucketAnalyticsConfigurationsFluentBuilder
pub fn list_bucket_analytics_configurations( &self, ) -> ListBucketAnalyticsConfigurationsFluentBuilder
Constructs a fluent builder for the ListBucketAnalyticsConfigurations
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket from which analytics configurations are retrieved.
continuation_token(impl Into<String>)
/set_continuation_token(Option<String>)
:
required: falseThe
ContinuationToken
that represents a placeholder from where this request should begin.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
ListBucketAnalyticsConfigurationsOutput
with field(s):is_truncated(Option<bool>)
:Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
continuation_token(Option<String>)
:The marker that is used as a starting point for this analytics configuration list response. This value is present if it was sent in the request.
next_continuation_token(Option<String>)
:NextContinuationToken
is sent whenisTruncated
is true, which indicates that there are more analytics configurations to list. The next request must include thisNextContinuationToken
. The token is obfuscated and is not a usable value.analytics_configuration_list(Option<Vec::<AnalyticsConfiguration>>)
:The list of analytics configurations for a bucket.
- On failure, responds with
SdkError<ListBucketAnalyticsConfigurationsError>
source§impl Client
impl Client
sourcepub fn list_bucket_intelligent_tiering_configurations(
&self,
) -> ListBucketIntelligentTieringConfigurationsFluentBuilder
pub fn list_bucket_intelligent_tiering_configurations( &self, ) -> ListBucketIntelligentTieringConfigurationsFluentBuilder
Constructs a fluent builder for the ListBucketIntelligentTieringConfigurations
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose configuration you want to modify or retrieve.
continuation_token(impl Into<String>)
/set_continuation_token(Option<String>)
:
required: falseThe
ContinuationToken
that represents a placeholder from where this request should begin.
- On success, responds with
ListBucketIntelligentTieringConfigurationsOutput
with field(s):is_truncated(Option<bool>)
:Indicates whether the returned list of analytics configurations is complete. A value of
true
indicates that the list is not complete and theNextContinuationToken
will be provided for a subsequent request.continuation_token(Option<String>)
:The
ContinuationToken
that represents a placeholder from where this request should begin.next_continuation_token(Option<String>)
:The marker used to continue this inventory configuration listing. Use the
NextContinuationToken
from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.intelligent_tiering_configuration_list(Option<Vec::<IntelligentTieringConfiguration>>)
:The list of S3 Intelligent-Tiering configurations for a bucket.
- On failure, responds with
SdkError<ListBucketIntelligentTieringConfigurationsError>
source§impl Client
impl Client
sourcepub fn list_bucket_inventory_configurations(
&self,
) -> ListBucketInventoryConfigurationsFluentBuilder
pub fn list_bucket_inventory_configurations( &self, ) -> ListBucketInventoryConfigurationsFluentBuilder
Constructs a fluent builder for the ListBucketInventoryConfigurations
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the inventory configurations to retrieve.
continuation_token(impl Into<String>)
/set_continuation_token(Option<String>)
:
required: falseThe marker used to continue an inventory configuration listing that has been truncated. Use the
NextContinuationToken
from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
ListBucketInventoryConfigurationsOutput
with field(s):continuation_token(Option<String>)
:If sent in the request, the marker that is used as a starting point for this inventory configuration list response.
inventory_configuration_list(Option<Vec::<InventoryConfiguration>>)
:The list of inventory configurations for a bucket.
is_truncated(Option<bool>)
:Tells whether the returned list of inventory configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken is provided for a subsequent request.
next_continuation_token(Option<String>)
:The marker used to continue this inventory configuration listing. Use the
NextContinuationToken
from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.
- On failure, responds with
SdkError<ListBucketInventoryConfigurationsError>
source§impl Client
impl Client
sourcepub fn list_bucket_metrics_configurations(
&self,
) -> ListBucketMetricsConfigurationsFluentBuilder
pub fn list_bucket_metrics_configurations( &self, ) -> ListBucketMetricsConfigurationsFluentBuilder
Constructs a fluent builder for the ListBucketMetricsConfigurations
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the metrics configurations to retrieve.
continuation_token(impl Into<String>)
/set_continuation_token(Option<String>)
:
required: falseThe marker that is used to continue a metrics configuration listing that has been truncated. Use the
NextContinuationToken
from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
ListBucketMetricsConfigurationsOutput
with field(s):is_truncated(Option<bool>)
:Indicates whether the returned list of metrics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
continuation_token(Option<String>)
:The marker that is used as a starting point for this metrics configuration list response. This value is present if it was sent in the request.
next_continuation_token(Option<String>)
:The marker used to continue a metrics configuration listing that has been truncated. Use the
NextContinuationToken
from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.metrics_configuration_list(Option<Vec::<MetricsConfiguration>>)
:The list of metrics configurations for a bucket.
- On failure, responds with
SdkError<ListBucketMetricsConfigurationsError>
source§impl Client
impl Client
sourcepub fn list_buckets(&self) -> ListBucketsFluentBuilder
pub fn list_buckets(&self) -> ListBucketsFluentBuilder
Constructs a fluent builder for the ListBuckets
operation.
- The fluent builder takes no input, just
send
it. - On success, responds with
ListBucketsOutput
with field(s):buckets(Option<Vec::<Bucket>>)
:The list of buckets owned by the requester.
owner(Option<Owner>)
:The owner of the buckets listed.
- On failure, responds with
SdkError<ListBucketsError>
source§impl Client
impl Client
sourcepub fn list_directory_buckets(&self) -> ListDirectoryBucketsFluentBuilder
pub fn list_directory_buckets(&self) -> ListDirectoryBucketsFluentBuilder
Constructs a fluent builder for the ListDirectoryBuckets
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
continuation_token(impl Into<String>)
/set_continuation_token(Option<String>)
:
required: falseContinuationToken
indicates to Amazon S3 that the list is being continued on this bucket with a token.ContinuationToken
is obfuscated and is not a real key. You can use thisContinuationToken
for pagination of the list results.max_directory_buckets(i32)
/set_max_directory_buckets(Option<i32>)
:
required: falseMaximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an Amazon Web Services account, return all the buckets in response.
- On success, responds with
ListDirectoryBucketsOutput
with field(s):buckets(Option<Vec::<Bucket>>)
:The list of buckets owned by the requester.
continuation_token(Option<String>)
:If
ContinuationToken
was sent with the request, it is included in the response. You can use the returnedContinuationToken
for pagination of the list response.
- On failure, responds with
SdkError<ListDirectoryBucketsError>
source§impl Client
impl Client
sourcepub fn list_multipart_uploads(&self) -> ListMultipartUploadsFluentBuilder
pub fn list_multipart_uploads(&self) -> ListMultipartUploadsFluentBuilder
Constructs a fluent builder for the ListMultipartUploads
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket to which the multipart upload was initiated.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.delimiter(impl Into<String>)
/set_delimiter(Option<String>)
:
required: falseCharacter you use to group keys.
All keys that contain the same string between the prefix, if specified, and the first occurrence of the delimiter after the prefix are grouped under a single result element,
CommonPrefixes
. If you don’t specify the prefix parameter, then the substring starts at the beginning of the key. The keys that are grouped underCommonPrefixes
result element are not returned elsewhere in the response.Directory buckets - For directory buckets,
/
is the only supported delimiter.encoding_type(EncodingType)
/set_encoding_type(Option<EncodingType>)
:
required: falseRequests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key can contain any Unicode character; however, the XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
key_marker(impl Into<String>)
/set_key_marker(Option<String>)
:
required: falseSpecifies the multipart upload after which listing should begin.
-
General purpose buckets - For general purpose buckets,
key-marker
is an object key. Together withupload-id-marker
, this parameter specifies the multipart upload after which listing should begin.If
upload-id-marker
is not specified, only the keys lexicographically greater than the specifiedkey-marker
will be included in the list.If
upload-id-marker
is specified, any multipart uploads for a key equal to thekey-marker
might also be included, provided those multipart uploads have upload IDs lexicographically greater than the specifiedupload-id-marker
. -
Directory buckets - For directory buckets,
key-marker
is obfuscated and isn’t a real object key. Theupload-id-marker
parameter isn’t supported by directory buckets. To list the additional multipart uploads, you only need to set the value ofkey-marker
to theNextKeyMarker
value from the previous response.In the
ListMultipartUploads
response, the multipart uploads aren’t sorted lexicographically based on the object keys.
-
max_uploads(i32)
/set_max_uploads(Option<i32>)
:
required: falseSets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response.
prefix(impl Into<String>)
/set_prefix(Option<String>)
:
required: falseLists in-progress uploads only for those keys that begin with the specified prefix. You can use prefixes to separate a bucket into different grouping of keys. (You can think of using
prefix
to make groups in the same way that you’d use a folder in a file system.)Directory buckets - For directory buckets, only prefixes that end in a delimiter (
/
) are supported.upload_id_marker(impl Into<String>)
/set_upload_id_marker(Option<String>)
:
required: falseTogether with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored. Otherwise, any multipart uploads for a key equal to the key-marker might be included in the list only if they have an upload ID lexicographically greater than the specified
upload-id-marker
.This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
- On success, responds with
ListMultipartUploadsOutput
with field(s):bucket(Option<String>)
:The name of the bucket to which the multipart upload was initiated. Does not return the access point ARN or access point alias if used.
key_marker(Option<String>)
:The key at or after which the listing began.
upload_id_marker(Option<String>)
:Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored. Otherwise, any multipart uploads for a key equal to the key-marker might be included in the list only if they have an upload ID lexicographically greater than the specified
upload-id-marker
.This functionality is not supported for directory buckets.
next_key_marker(Option<String>)
:When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.
prefix(Option<String>)
:When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.
Directory buckets - For directory buckets, only prefixes that end in a delimiter (
/
) are supported.delimiter(Option<String>)
:Contains the delimiter you specified in the request. If you don’t specify a delimiter in your request, this element is absent from the response.
Directory buckets - For directory buckets,
/
is the only supported delimiter.next_upload_id_marker(Option<String>)
:When a list is truncated, this element specifies the value that should be used for the
upload-id-marker
request parameter in a subsequent request.This functionality is not supported for directory buckets.
max_uploads(Option<i32>)
:Maximum number of multipart uploads that could have been included in the response.
is_truncated(Option<bool>)
:Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.
uploads(Option<Vec::<MultipartUpload>>)
:Container for elements related to a particular multipart upload. A response can contain zero or more
Upload
elements.common_prefixes(Option<Vec::<CommonPrefix>>)
:If you specify a delimiter in the request, then the result returns each distinct key prefix containing the delimiter in a
CommonPrefixes
element. The distinct key prefixes are returned in thePrefix
child element.Directory buckets - For directory buckets, only prefixes that end in a delimiter (
/
) are supported.encoding_type(Option<EncodingType>)
:Encoding type used by Amazon S3 to encode object keys in the response.
If you specify the
encoding-type
request parameter, Amazon S3 includes this element in the response, and returns encoded key name values in the following response elements:Delimiter
,KeyMarker
,Prefix
,NextKeyMarker
,Key
.request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<ListMultipartUploadsError>
source§impl Client
impl Client
sourcepub fn list_object_versions(&self) -> ListObjectVersionsFluentBuilder
pub fn list_object_versions(&self) -> ListObjectVersionsFluentBuilder
Constructs a fluent builder for the ListObjectVersions
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name that contains the objects.
delimiter(impl Into<String>)
/set_delimiter(Option<String>)
:
required: falseA delimiter is a character that you specify to group keys. All keys that contain the same string between the
prefix
and the first occurrence of the delimiter are grouped under a single result element inCommonPrefixes
. These groups are counted as one result against themax-keys
limitation. These keys are not returned elsewhere in the response.encoding_type(EncodingType)
/set_encoding_type(Option<EncodingType>)
:
required: falseRequests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key can contain any Unicode character; however, the XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
key_marker(impl Into<String>)
/set_key_marker(Option<String>)
:
required: falseSpecifies the key to start with when listing objects in a bucket.
max_keys(i32)
/set_max_keys(Option<i32>)
:
required: falseSets the maximum number of keys returned in the response. By default, the action returns up to 1,000 key names. The response might contain fewer keys but will never contain more. If additional keys satisfy the search criteria, but were not returned because
max-keys
was exceeded, the response contains
. To return the additional keys, seetrue key-marker
andversion-id-marker
.prefix(impl Into<String>)
/set_prefix(Option<String>)
:
required: falseUse this parameter to select only those keys that begin with the specified prefix. You can use prefixes to separate a bucket into different groupings of keys. (You can think of using
prefix
to make groups in the same way that you’d use a folder in a file system.) You can useprefix
withdelimiter
to roll up numerous objects into a single result underCommonPrefixes
.version_id_marker(impl Into<String>)
/set_version_id_marker(Option<String>)
:
required: falseSpecifies the object version you want to start listing from.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
optional_object_attributes(OptionalObjectAttributes)
/set_optional_object_attributes(Option<Vec::<OptionalObjectAttributes>>)
:
required: falseSpecifies the optional fields that you want returned in the response. Fields that you do not specify are not returned.
- On success, responds with
ListObjectVersionsOutput
with field(s):is_truncated(Option<bool>)
:A flag that indicates whether Amazon S3 returned all of the results that satisfied the search criteria. If your results were truncated, you can make a follow-up paginated request by using the
NextKeyMarker
andNextVersionIdMarker
response parameters as a starting place in another request to return the rest of the results.key_marker(Option<String>)
:Marks the last key returned in a truncated response.
version_id_marker(Option<String>)
:Marks the last version of the key returned in a truncated response.
next_key_marker(Option<String>)
:When the number of responses exceeds the value of
MaxKeys
,NextKeyMarker
specifies the first key not returned that satisfies the search criteria. Use this value for the key-marker request parameter in a subsequent request.next_version_id_marker(Option<String>)
:When the number of responses exceeds the value of
MaxKeys
,NextVersionIdMarker
specifies the first object version not returned that satisfies the search criteria. Use this value for theversion-id-marker
request parameter in a subsequent request.versions(Option<Vec::<ObjectVersion>>)
:Container for version information.
delete_markers(Option<Vec::<DeleteMarkerEntry>>)
:Container for an object that is a delete marker.
name(Option<String>)
:The bucket name.
prefix(Option<String>)
:Selects objects that start with the value supplied by this parameter.
delimiter(Option<String>)
:The delimiter grouping the included keys. A delimiter is a character that you specify to group keys. All keys that contain the same string between the prefix and the first occurrence of the delimiter are grouped under a single result element in
CommonPrefixes
. These groups are counted as one result against themax-keys
limitation. These keys are not returned elsewhere in the response.max_keys(Option<i32>)
:Specifies the maximum number of objects to return.
common_prefixes(Option<Vec::<CommonPrefix>>)
:All of the keys rolled up into a common prefix count as a single return when calculating the number of returns.
encoding_type(Option<EncodingType>)
:Encoding type used by Amazon S3 to encode object key names in the XML response.
If you specify the
encoding-type
request parameter, Amazon S3 includes this element in the response, and returns encoded key name values in the following response elements:KeyMarker, NextKeyMarker, Prefix, Key
, andDelimiter
.request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<ListObjectVersionsError>
source§impl Client
impl Client
sourcepub fn list_objects(&self) -> ListObjectsFluentBuilder
pub fn list_objects(&self) -> ListObjectsFluentBuilder
Constructs a fluent builder for the ListObjects
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket containing the objects.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.delimiter(impl Into<String>)
/set_delimiter(Option<String>)
:
required: falseA delimiter is a character that you use to group keys.
encoding_type(EncodingType)
/set_encoding_type(Option<EncodingType>)
:
required: falseRequests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key can contain any Unicode character; however, the XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
marker(impl Into<String>)
/set_marker(Option<String>)
:
required: falseMarker is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. Marker can be any key in the bucket.
max_keys(i32)
/set_max_keys(Option<i32>)
:
required: falseSets the maximum number of keys returned in the response. By default, the action returns up to 1,000 key names. The response might contain fewer keys but will never contain more.
prefix(impl Into<String>)
/set_prefix(Option<String>)
:
required: falseLimits the response to keys that begin with the specified prefix.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that she or he will be charged for the list objects request. Bucket owners need not specify this parameter in their requests.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).optional_object_attributes(OptionalObjectAttributes)
/set_optional_object_attributes(Option<Vec::<OptionalObjectAttributes>>)
:
required: falseSpecifies the optional fields that you want returned in the response. Fields that you do not specify are not returned.
- On success, responds with
ListObjectsOutput
with field(s):is_truncated(Option<bool>)
:A flag that indicates whether Amazon S3 returned all of the results that satisfied the search criteria.
marker(Option<String>)
:Indicates where in the bucket listing begins. Marker is included in the response if it was sent with the request.
next_marker(Option<String>)
:When the response is truncated (the
IsTruncated
element value in the response istrue
), you can use the key name in this field as themarker
parameter in the subsequent request to get the next set of objects. Amazon S3 lists objects in alphabetical order.This element is returned only if you have the
delimiter
request parameter specified. If the response does not include theNextMarker
element and it is truncated, you can use the value of the lastKey
element in the response as themarker
parameter in the subsequent request to get the next set of object keys.contents(Option<Vec::<Object>>)
:Metadata about each object returned.
name(Option<String>)
:The bucket name.
prefix(Option<String>)
:Keys that begin with the indicated prefix.
delimiter(Option<String>)
:Causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be rolled up into a single result element in the
CommonPrefixes
collection. These rolled-up keys are not returned elsewhere in the response. Each rolled-up result counts as only one return against theMaxKeys
value.max_keys(Option<i32>)
:The maximum number of keys returned in the response body.
common_prefixes(Option<Vec::<CommonPrefix>>)
:All of the keys (up to 1,000) rolled up in a common prefix count as a single return when calculating the number of returns.
A response can contain
CommonPrefixes
only if you specify a delimiter.CommonPrefixes
contains all (if there are any) keys betweenPrefix
and the next occurrence of the string specified by the delimiter.CommonPrefixes
lists keys that act like subdirectories in the directory specified byPrefix
.For example, if the prefix is
notes/
and the delimiter is a slash (/
), as innotes/summer/july
, the common prefix isnotes/summer/
. All of the keys that roll up into a common prefix count as a single return when calculating the number of returns.encoding_type(Option<EncodingType>)
:Encoding type used by Amazon S3 to encode object keys in the response. If using
url
, non-ASCII characters used in an object’s key name will be URL encoded. For example, the object test_file(3).png will appear as test_file%283%29.png.request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<ListObjectsError>
source§impl Client
impl Client
sourcepub fn list_objects_v2(&self) -> ListObjectsV2FluentBuilder
pub fn list_objects_v2(&self) -> ListObjectsV2FluentBuilder
Constructs a fluent builder for the ListObjectsV2
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueDirectory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.delimiter(impl Into<String>)
/set_delimiter(Option<String>)
:
required: falseA delimiter is a character that you use to group keys.
-
Directory buckets - For directory buckets,
/
is the only supported delimiter. -
Directory buckets - When you query
ListObjectsV2
with a delimiter during in-progress multipart uploads, theCommonPrefixes
response parameter contains the prefixes that are associated with the in-progress multipart uploads. For more information about multipart uploads, see Multipart Upload Overview in the Amazon S3 User Guide.
-
encoding_type(EncodingType)
/set_encoding_type(Option<EncodingType>)
:
required: falseEncoding type used by Amazon S3 to encode object keys in the response. If using
url
, non-ASCII characters used in an object’s key name will be URL encoded. For example, the object test_file(3).png will appear as test_file%283%29.png.max_keys(i32)
/set_max_keys(Option<i32>)
:
required: falseSets the maximum number of keys returned in the response. By default, the action returns up to 1,000 key names. The response might contain fewer keys but will never contain more.
prefix(impl Into<String>)
/set_prefix(Option<String>)
:
required: falseLimits the response to keys that begin with the specified prefix.
Directory buckets - For directory buckets, only prefixes that end in a delimiter (
/
) are supported.continuation_token(impl Into<String>)
/set_continuation_token(Option<String>)
:
required: falseContinuationToken
indicates to Amazon S3 that the list is being continued on this bucket with a token.ContinuationToken
is obfuscated and is not a real key. You can use thisContinuationToken
for pagination of the list results.fetch_owner(bool)
/set_fetch_owner(Option<bool>)
:
required: falseThe owner field is not present in
ListObjectsV2
by default. If you want to return the owner field with each key in the result, then set theFetchOwner
field totrue
.Directory buckets - For directory buckets, the bucket owner is returned as the object owner for all objects.
start_after(impl Into<String>)
/set_start_after(Option<String>)
:
required: falseStartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. StartAfter can be any key in the bucket.
This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that she or he will be charged for the list objects request in V2 style. Bucket owners need not specify this parameter in their requests.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).optional_object_attributes(OptionalObjectAttributes)
/set_optional_object_attributes(Option<Vec::<OptionalObjectAttributes>>)
:
required: falseSpecifies the optional fields that you want returned in the response. Fields that you do not specify are not returned.
This functionality is not supported for directory buckets.
- On success, responds with
ListObjectsV2Output
with field(s):is_truncated(Option<bool>)
:Set to
false
if all of the results were returned. Set totrue
if more keys are available to return. If the number of results exceeds that specified byMaxKeys
, all of the results might not be returned.contents(Option<Vec::<Object>>)
:Metadata about each object returned.
name(Option<String>)
:The bucket name.
prefix(Option<String>)
:Keys that begin with the indicated prefix.
Directory buckets - For directory buckets, only prefixes that end in a delimiter (
/
) are supported.delimiter(Option<String>)
:Causes keys that contain the same string between the
prefix
and the first occurrence of the delimiter to be rolled up into a single result element in theCommonPrefixes
collection. These rolled-up keys are not returned elsewhere in the response. Each rolled-up result counts as only one return against theMaxKeys
value.Directory buckets - For directory buckets,
/
is the only supported delimiter.max_keys(Option<i32>)
:Sets the maximum number of keys returned in the response. By default, the action returns up to 1,000 key names. The response might contain fewer keys but will never contain more.
common_prefixes(Option<Vec::<CommonPrefix>>)
:All of the keys (up to 1,000) that share the same prefix are grouped together. When counting the total numbers of returns by this API operation, this group of keys is considered as one item.
A response can contain
CommonPrefixes
only if you specify a delimiter.CommonPrefixes
contains all (if there are any) keys betweenPrefix
and the next occurrence of the string specified by a delimiter.CommonPrefixes
lists keys that act like subdirectories in the directory specified byPrefix
.For example, if the prefix is
notes/
and the delimiter is a slash (/
) as innotes/summer/july
, the common prefix isnotes/summer/
. All of the keys that roll up into a common prefix count as a single return when calculating the number of returns.-
Directory buckets - For directory buckets, only prefixes that end in a delimiter (
/
) are supported. -
Directory buckets - When you query
ListObjectsV2
with a delimiter during in-progress multipart uploads, theCommonPrefixes
response parameter contains the prefixes that are associated with the in-progress multipart uploads. For more information about multipart uploads, see Multipart Upload Overview in the Amazon S3 User Guide.
-
encoding_type(Option<EncodingType>)
:Encoding type used by Amazon S3 to encode object key names in the XML response.
If you specify the
encoding-type
request parameter, Amazon S3 includes this element in the response, and returns encoded key name values in the following response elements:Delimiter, Prefix, Key,
andStartAfter
.key_count(Option<i32>)
:KeyCount
is the number of keys returned with this request.KeyCount
will always be less than or equal to theMaxKeys
field. For example, if you ask for 50 keys, your result will include 50 keys or fewer.continuation_token(Option<String>)
:If
ContinuationToken
was sent with the request, it is included in the response. You can use the returnedContinuationToken
for pagination of the list response. You can use thisContinuationToken
for pagination of the list results.next_continuation_token(Option<String>)
:NextContinuationToken
is sent whenisTruncated
is true, which means there are more keys in the bucket that can be listed. The next list requests to Amazon S3 can be continued with thisNextContinuationToken
.NextContinuationToken
is obfuscated and is not a real keystart_after(Option<String>)
:If StartAfter was sent with the request, it is included in the response.
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<ListObjectsV2Error>
source§impl Client
impl Client
sourcepub fn list_parts(&self) -> ListPartsFluentBuilder
pub fn list_parts(&self) -> ListPartsFluentBuilder
Constructs a fluent builder for the ListParts
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket to which the parts are being uploaded.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which the multipart upload was initiated.
max_parts(i32)
/set_max_parts(Option<i32>)
:
required: falseSets the maximum number of parts to return.
part_number_marker(impl Into<String>)
/set_part_number_marker(Option<String>)
:
required: falseSpecifies the part after which listing should begin. Only parts with higher part numbers will be listed.
upload_id(impl Into<String>)
/set_upload_id(Option<String>)
:
required: trueUpload ID identifying the multipart upload whose parts are being listed.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseThe server-side encryption (SSE) algorithm used to encrypt the object. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseThe server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseThe MD5 server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
- On success, responds with
ListPartsOutput
with field(s):abort_date(Option<DateTime>)
:If the bucket has a lifecycle rule configured with an action to abort incomplete multipart uploads and the prefix in the lifecycle rule matches the object name in the request, then the response includes this header indicating when the initiated multipart upload will become eligible for abort operation. For more information, see Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle Configuration.
The response will also include the
x-amz-abort-rule-id
header that will provide the ID of the lifecycle configuration rule that defines this action.This functionality is not supported for directory buckets.
abort_rule_id(Option<String>)
:This header is returned along with the
x-amz-abort-date
header. It identifies applicable lifecycle configuration rule that defines the action to abort incomplete multipart uploads.This functionality is not supported for directory buckets.
bucket(Option<String>)
:The name of the bucket to which the multipart upload was initiated. Does not return the access point ARN or access point alias if used.
key(Option<String>)
:Object key for which the multipart upload was initiated.
upload_id(Option<String>)
:Upload ID identifying the multipart upload whose parts are being listed.
part_number_marker(Option<String>)
:Specifies the part after which listing should begin. Only parts with higher part numbers will be listed.
next_part_number_marker(Option<String>)
:When a list is truncated, this element specifies the last part in the list, as well as the value to use for the
part-number-marker
request parameter in a subsequent request.max_parts(Option<i32>)
:Maximum number of parts that were allowed in the response.
is_truncated(Option<bool>)
:Indicates whether the returned list of parts is truncated. A true value indicates that the list was truncated. A list can be truncated if the number of parts exceeds the limit returned in the MaxParts element.
parts(Option<Vec::<Part>>)
:Container for elements related to a particular part. A response can contain zero or more
Part
elements.initiator(Option<Initiator>)
:Container element that identifies who initiated the multipart upload. If the initiator is an Amazon Web Services account, this element provides the same information as the
Owner
element. If the initiator is an IAM User, this element provides the user ARN and display name.owner(Option<Owner>)
:Container element that identifies the object owner, after the object is created. If multipart upload is initiated by an IAM user, this element provides the parent account ID and display name.
Directory buckets - The bucket owner is returned as the object owner for all the parts.
storage_class(Option<StorageClass>)
:The class of storage used to store the uploaded object.
Directory buckets - Only the S3 Express One Zone storage class is supported by directory buckets to store objects.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
checksum_algorithm(Option<ChecksumAlgorithm>)
:The algorithm that was used to create a checksum of the object.
- On failure, responds with
SdkError<ListPartsError>
source§impl Client
impl Client
sourcepub fn put_bucket_accelerate_configuration(
&self,
) -> PutBucketAccelerateConfigurationFluentBuilder
pub fn put_bucket_accelerate_configuration( &self, ) -> PutBucketAccelerateConfigurationFluentBuilder
Constructs a fluent builder for the PutBucketAccelerateConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which the accelerate configuration is set.
accelerate_configuration(AccelerateConfiguration)
/set_accelerate_configuration(Option<AccelerateConfiguration>)
:
required: trueContainer for setting the transfer acceleration state.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.
- On success, responds with
PutBucketAccelerateConfigurationOutput
- On failure, responds with
SdkError<PutBucketAccelerateConfigurationError>
source§impl Client
impl Client
sourcepub fn put_bucket_acl(&self) -> PutBucketAclFluentBuilder
pub fn put_bucket_acl(&self) -> PutBucketAclFluentBuilder
Constructs a fluent builder for the PutBucketAcl
operation.
- The fluent builder is configurable:
acl(BucketCannedAcl)
/set_acl(Option<BucketCannedAcl>)
:
required: falseThe canned ACL to apply to the bucket.
access_control_policy(AccessControlPolicy)
/set_access_control_policy(Option<AccessControlPolicy>)
:
required: falseContains the elements that set the ACL permissions for an object per grantee.
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket to which to apply the ACL.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.grant_full_control(impl Into<String>)
/set_grant_full_control(Option<String>)
:
required: falseAllows grantee the read, write, read ACP, and write ACP permissions on the bucket.
grant_read(impl Into<String>)
/set_grant_read(Option<String>)
:
required: falseAllows grantee to list the objects in the bucket.
grant_read_acp(impl Into<String>)
/set_grant_read_acp(Option<String>)
:
required: falseAllows grantee to read the bucket ACL.
grant_write(impl Into<String>)
/set_grant_write(Option<String>)
:
required: falseAllows grantee to create new objects in the bucket.
For the bucket and object owners of existing objects, also allows deletions and overwrites of those objects.
grant_write_acp(impl Into<String>)
/set_grant_write_acp(Option<String>)
:
required: falseAllows grantee to write the ACL for the applicable bucket.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketAclOutput
- On failure, responds with
SdkError<PutBucketAclError>
source§impl Client
impl Client
sourcepub fn put_bucket_analytics_configuration(
&self,
) -> PutBucketAnalyticsConfigurationFluentBuilder
pub fn put_bucket_analytics_configuration( &self, ) -> PutBucketAnalyticsConfigurationFluentBuilder
Constructs a fluent builder for the PutBucketAnalyticsConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket to which an analytics configuration is stored.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID that identifies the analytics configuration.
analytics_configuration(AnalyticsConfiguration)
/set_analytics_configuration(Option<AnalyticsConfiguration>)
:
required: trueThe configuration and any analyses for the analytics filter.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketAnalyticsConfigurationOutput
- On failure, responds with
SdkError<PutBucketAnalyticsConfigurationError>
source§impl Client
impl Client
sourcepub fn put_bucket_cors(&self) -> PutBucketCorsFluentBuilder
pub fn put_bucket_cors(&self) -> PutBucketCorsFluentBuilder
Constructs a fluent builder for the PutBucketCors
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueSpecifies the bucket impacted by the
cors
configuration.cors_configuration(CorsConfiguration)
/set_cors_configuration(Option<CorsConfiguration>)
:
required: trueDescribes the cross-origin access configuration for objects in an Amazon S3 bucket. For more information, see Enabling Cross-Origin Resource Sharing in the Amazon S3 User Guide.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketCorsOutput
- On failure, responds with
SdkError<PutBucketCorsError>
source§impl Client
impl Client
sourcepub fn put_bucket_encryption(&self) -> PutBucketEncryptionFluentBuilder
pub fn put_bucket_encryption(&self) -> PutBucketEncryptionFluentBuilder
Constructs a fluent builder for the PutBucketEncryption
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueSpecifies default encryption for a bucket using server-side encryption with different key options. By default, all buckets have a default encryption configuration that uses server-side encryption with Amazon S3 managed keys (SSE-S3). You can optionally configure default encryption for a bucket by using server-side encryption with an Amazon Web Services KMS key (SSE-KMS) or a customer-provided key (SSE-C). For information about the bucket default encryption feature, see Amazon S3 Bucket Default Encryption in the Amazon S3 User Guide.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the server-side encryption configuration.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.server_side_encryption_configuration(ServerSideEncryptionConfiguration)
/set_server_side_encryption_configuration(Option<ServerSideEncryptionConfiguration>)
:
required: trueSpecifies the default server-side-encryption configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketEncryptionOutput
- On failure, responds with
SdkError<PutBucketEncryptionError>
source§impl Client
impl Client
sourcepub fn put_bucket_intelligent_tiering_configuration(
&self,
) -> PutBucketIntelligentTieringConfigurationFluentBuilder
pub fn put_bucket_intelligent_tiering_configuration( &self, ) -> PutBucketIntelligentTieringConfigurationFluentBuilder
Constructs a fluent builder for the PutBucketIntelligentTieringConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose configuration you want to modify or retrieve.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the S3 Intelligent-Tiering configuration.
intelligent_tiering_configuration(IntelligentTieringConfiguration)
/set_intelligent_tiering_configuration(Option<IntelligentTieringConfiguration>)
:
required: trueContainer for S3 Intelligent-Tiering configuration.
- On success, responds with
PutBucketIntelligentTieringConfigurationOutput
- On failure, responds with
SdkError<PutBucketIntelligentTieringConfigurationError>
source§impl Client
impl Client
sourcepub fn put_bucket_inventory_configuration(
&self,
) -> PutBucketInventoryConfigurationFluentBuilder
pub fn put_bucket_inventory_configuration( &self, ) -> PutBucketInventoryConfigurationFluentBuilder
Constructs a fluent builder for the PutBucketInventoryConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket where the inventory configuration will be stored.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the inventory configuration.
inventory_configuration(InventoryConfiguration)
/set_inventory_configuration(Option<InventoryConfiguration>)
:
required: trueSpecifies the inventory configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketInventoryConfigurationOutput
- On failure, responds with
SdkError<PutBucketInventoryConfigurationError>
source§impl Client
impl Client
sourcepub fn put_bucket_lifecycle_configuration(
&self,
) -> PutBucketLifecycleConfigurationFluentBuilder
pub fn put_bucket_lifecycle_configuration( &self, ) -> PutBucketLifecycleConfigurationFluentBuilder
Constructs a fluent builder for the PutBucketLifecycleConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to set the configuration.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.lifecycle_configuration(BucketLifecycleConfiguration)
/set_lifecycle_configuration(Option<BucketLifecycleConfiguration>)
:
required: falseContainer for lifecycle rules. You can add as many as 1,000 rules.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketLifecycleConfigurationOutput
- On failure, responds with
SdkError<PutBucketLifecycleConfigurationError>
source§impl Client
impl Client
sourcepub fn put_bucket_logging(&self) -> PutBucketLoggingFluentBuilder
pub fn put_bucket_logging(&self) -> PutBucketLoggingFluentBuilder
Constructs a fluent builder for the PutBucketLogging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which to set the logging parameters.
bucket_logging_status(BucketLoggingStatus)
/set_bucket_logging_status(Option<BucketLoggingStatus>)
:
required: trueContainer for logging status information.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash of the
PutBucketLogging
request body.For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketLoggingOutput
- On failure, responds with
SdkError<PutBucketLoggingError>
source§impl Client
impl Client
sourcepub fn put_bucket_metrics_configuration(
&self,
) -> PutBucketMetricsConfigurationFluentBuilder
pub fn put_bucket_metrics_configuration( &self, ) -> PutBucketMetricsConfigurationFluentBuilder
Constructs a fluent builder for the PutBucketMetricsConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket for which the metrics configuration is set.
id(impl Into<String>)
/set_id(Option<String>)
:
required: trueThe ID used to identify the metrics configuration. The ID has a 64 character limit and can only contain letters, numbers, periods, dashes, and underscores.
metrics_configuration(MetricsConfiguration)
/set_metrics_configuration(Option<MetricsConfiguration>)
:
required: trueSpecifies the metrics configuration.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketMetricsConfigurationOutput
- On failure, responds with
SdkError<PutBucketMetricsConfigurationError>
source§impl Client
impl Client
sourcepub fn put_bucket_notification_configuration(
&self,
) -> PutBucketNotificationConfigurationFluentBuilder
pub fn put_bucket_notification_configuration( &self, ) -> PutBucketNotificationConfigurationFluentBuilder
Constructs a fluent builder for the PutBucketNotificationConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket.
notification_configuration(NotificationConfiguration)
/set_notification_configuration(Option<NotificationConfiguration>)
:
required: trueA container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off for the bucket.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).skip_destination_validation(bool)
/set_skip_destination_validation(Option<bool>)
:
required: falseSkips validation of Amazon SQS, Amazon SNS, and Lambda destinations. True or false value.
- On success, responds with
PutBucketNotificationConfigurationOutput
- On failure, responds with
SdkError<PutBucketNotificationConfigurationError>
source§impl Client
impl Client
sourcepub fn put_bucket_ownership_controls(
&self,
) -> PutBucketOwnershipControlsFluentBuilder
pub fn put_bucket_ownership_controls( &self, ) -> PutBucketOwnershipControlsFluentBuilder
Constructs a fluent builder for the PutBucketOwnershipControls
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose
OwnershipControls
you want to set.content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash of the
OwnershipControls
request body.For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).ownership_controls(OwnershipControls)
/set_ownership_controls(Option<OwnershipControls>)
:
required: trueThe
OwnershipControls
(BucketOwnerEnforced, BucketOwnerPreferred, or ObjectWriter) that you want to apply to this Amazon S3 bucket.
- On success, responds with
PutBucketOwnershipControlsOutput
- On failure, responds with
SdkError<PutBucketOwnershipControlsError>
source§impl Client
impl Client
sourcepub fn put_bucket_policy(&self) -> PutBucketPolicyFluentBuilder
pub fn put_bucket_policy(&self) -> PutBucketPolicyFluentBuilder
Constructs a fluent builder for the PutBucketPolicy
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket.
Directory buckets - When you use this operation with a directory bucket, you must use path-style requests in the format
https://s3express-control.region_code.amazonaws.com/bucket-name
. Virtual-hosted-style requests aren’t supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must also follow the formatbucket_base_name–az_id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guidecontent_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash of the request body.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
This functionality is not supported for directory buckets.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum-algorithm
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
.For the
x-amz-checksum-algorithm
header, replacealgorithm
with the supported algorithm from the following list:-
CRC32
-
CRC32C
-
SHA1
-
SHA256
For more information, see Checking object integrity in the Amazon S3 User Guide.
If the individual checksum value you provide through
x-amz-checksum-algorithm
doesn’t match the checksum algorithm you set throughx-amz-sdk-checksum-algorithm
, Amazon S3 ignores any providedChecksumAlgorithm
parameter and uses the checksum algorithm that matches the provided value inx-amz-checksum-algorithm
.For directory buckets, when you use Amazon Web Services SDKs,
CRC32
is the default checksum algorithm that’s used for performance.-
confirm_remove_self_bucket_access(bool)
/set_confirm_remove_self_bucket_access(Option<bool>)
:
required: falseSet this parameter to true to confirm that you want to remove your permissions to change this bucket policy in the future.
This functionality is not supported for directory buckets.
policy(impl Into<String>)
/set_policy(Option<String>)
:
required: trueThe bucket policy as a JSON document.
For directory buckets, the only IAM action supported in the bucket policy is
s3express:CreateSession
.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
501 Not Implemented
.
- On success, responds with
PutBucketPolicyOutput
- On failure, responds with
SdkError<PutBucketPolicyError>
source§impl Client
impl Client
sourcepub fn put_bucket_replication(&self) -> PutBucketReplicationFluentBuilder
pub fn put_bucket_replication(&self) -> PutBucketReplicationFluentBuilder
Constructs a fluent builder for the PutBucketReplication
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.replication_configuration(ReplicationConfiguration)
/set_replication_configuration(Option<ReplicationConfiguration>)
:
required: trueA container for replication rules. You can add up to 1,000 rules. The maximum size of a replication configuration is 2 MB.
token(impl Into<String>)
/set_token(Option<String>)
:
required: falseA token to allow Object Lock to be enabled for an existing bucket.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketReplicationOutput
- On failure, responds with
SdkError<PutBucketReplicationError>
source§impl Client
impl Client
sourcepub fn put_bucket_request_payment(&self) -> PutBucketRequestPaymentFluentBuilder
pub fn put_bucket_request_payment(&self) -> PutBucketRequestPaymentFluentBuilder
Constructs a fluent builder for the PutBucketRequestPayment
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.request_payment_configuration(RequestPaymentConfiguration)
/set_request_payment_configuration(Option<RequestPaymentConfiguration>)
:
required: trueContainer for Payer.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketRequestPaymentOutput
- On failure, responds with
SdkError<PutBucketRequestPaymentError>
source§impl Client
impl Client
sourcepub fn put_bucket_tagging(&self) -> PutBucketTaggingFluentBuilder
pub fn put_bucket_tagging(&self) -> PutBucketTaggingFluentBuilder
Constructs a fluent builder for the PutBucketTagging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.tagging(Tagging)
/set_tagging(Option<Tagging>)
:
required: trueContainer for the
TagSet
andTag
elements.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketTaggingOutput
- On failure, responds with
SdkError<PutBucketTaggingError>
source§impl Client
impl Client
sourcepub fn put_bucket_versioning(&self) -> PutBucketVersioningFluentBuilder
pub fn put_bucket_versioning(&self) -> PutBucketVersioningFluentBuilder
Constructs a fluent builder for the PutBucketVersioning
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: false>The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.mfa(impl Into<String>)
/set_mfa(Option<String>)
:
required: falseThe concatenation of the authentication device’s serial number, a space, and the value that is displayed on your authentication device.
versioning_configuration(VersioningConfiguration)
/set_versioning_configuration(Option<VersioningConfiguration>)
:
required: trueContainer for setting the versioning state.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketVersioningOutput
- On failure, responds with
SdkError<PutBucketVersioningError>
source§impl Client
impl Client
sourcepub fn put_bucket_website(&self) -> PutBucketWebsiteFluentBuilder
pub fn put_bucket_website(&self) -> PutBucketWebsiteFluentBuilder
Constructs a fluent builder for the PutBucketWebsite
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.website_configuration(WebsiteConfiguration)
/set_website_configuration(Option<WebsiteConfiguration>)
:
required: trueContainer for the request.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutBucketWebsiteOutput
- On failure, responds with
SdkError<PutBucketWebsiteError>
source§impl Client
impl Client
sourcepub fn put_object(&self) -> PutObjectFluentBuilder
pub fn put_object(&self) -> PutObjectFluentBuilder
Constructs a fluent builder for the PutObject
operation.
- The fluent builder is configurable:
acl(ObjectCannedAcl)
/set_acl(Option<ObjectCannedAcl>)
:
required: falseThe canned ACL to apply to the object. For more information, see Canned ACL in the Amazon S3 User Guide.
When adding a new object, you can use headers to grant ACL-based permissions to individual Amazon Web Services accounts or to predefined groups defined by Amazon S3. These permissions are then added to the ACL on the object. By default, all objects are private. Only the owner has full access control. For more information, see Access Control List (ACL) Overview and Managing ACLs Using the REST API in the Amazon S3 User Guide.
If the bucket that you’re uploading objects to uses the bucket owner enforced setting for S3 Object Ownership, ACLs are disabled and no longer affect permissions. Buckets that use this setting only accept PUT requests that don’t specify an ACL or PUT requests that specify bucket owner full control ACLs, such as the
bucket-owner-full-control
canned ACL or an equivalent form of this ACL expressed in the XML format. PUT requests that contain other ACLs (for example, custom grants to certain Amazon Web Services accounts) fail and return a400
error with the error codeAccessControlListNotSupported
. For more information, see Controlling ownership of objects and disabling ACLs in the Amazon S3 User Guide.-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
body(ByteStream)
/set_body(ByteStream)
:
required: falseObject data.
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name to which the PUT action was initiated.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.cache_control(impl Into<String>)
/set_cache_control(Option<String>)
:
required: falseCan be used to specify caching behavior along the request/reply chain. For more information, see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.
content_disposition(impl Into<String>)
/set_content_disposition(Option<String>)
:
required: falseSpecifies presentational information for the object. For more information, see https://www.rfc-editor.org/rfc/rfc6266#section-4.
content_encoding(impl Into<String>)
/set_content_encoding(Option<String>)
:
required: falseSpecifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field. For more information, see https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding.
content_language(impl Into<String>)
/set_content_language(Option<String>)
:
required: falseThe language the content is in.
content_length(i64)
/set_content_length(Option<i64>)
:
required: falseSize of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically. For more information, see https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the message (without the headers) according to RFC 1864. This header can be used as a message integrity check to verify that the data is the same data that was originally sent. Although it is optional, we recommend using the Content-MD5 mechanism as an end-to-end integrity check. For more information about REST request authentication, see REST Authentication.
The
Content-MD5
header is required for any request to upload an object with a retention period configured using Amazon S3 Object Lock. For more information about Amazon S3 Object Lock, see Amazon S3 Object Lock Overview in the Amazon S3 User Guide.This functionality is not supported for directory buckets.
content_type(impl Into<String>)
/set_content_type(Option<String>)
:
required: falseA standard MIME type describing the format of the contents. For more information, see https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum-algorithm
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
.For the
x-amz-checksum-algorithm
header, replacealgorithm
with the supported algorithm from the following list:-
CRC32
-
CRC32C
-
SHA1
-
SHA256
For more information, see Checking object integrity in the Amazon S3 User Guide.
If the individual checksum value you provide through
x-amz-checksum-algorithm
doesn’t match the checksum algorithm you set throughx-amz-sdk-checksum-algorithm
, Amazon S3 ignores any providedChecksumAlgorithm
parameter and uses the checksum algorithm that matches the provided value inx-amz-checksum-algorithm
.For directory buckets, when you use Amazon Web Services SDKs,
CRC32
is the default checksum algorithm that’s used for performance.-
checksum_crc32(impl Into<String>)
/set_checksum_crc32(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 32-bit CRC32 checksum of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(impl Into<String>)
/set_checksum_crc32_c(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 32-bit CRC32C checksum of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(impl Into<String>)
/set_checksum_sha1(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 160-bit SHA-1 digest of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(impl Into<String>)
/set_checksum_sha256(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 256-bit SHA-256 digest of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
expires(DateTime)
/set_expires(Option<DateTime>)
:
required: falseThe date and time at which the object is no longer cacheable. For more information, see https://www.rfc-editor.org/rfc/rfc7234#section-5.3.
grant_full_control(impl Into<String>)
/set_grant_full_control(Option<String>)
:
required: falseGives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_read(impl Into<String>)
/set_grant_read(Option<String>)
:
required: falseAllows grantee to read the object data and its metadata.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_read_acp(impl Into<String>)
/set_grant_read_acp(Option<String>)
:
required: falseAllows grantee to read the object ACL.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
grant_write_acp(impl Into<String>)
/set_grant_write_acp(Option<String>)
:
required: falseAllows grantee to write the ACL for the applicable object.
-
This functionality is not supported for directory buckets.
-
This functionality is not supported for Amazon S3 on Outposts.
-
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which the PUT action was initiated.
metadata(impl Into<String>, impl Into<String>)
/set_metadata(Option<HashMap::<String, String>>)
:
required: falseA map of metadata to store with the object in S3.
server_side_encryption(ServerSideEncryption)
/set_server_side_encryption(Option<ServerSideEncryption>)
:
required: falseThe server-side encryption algorithm that was used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
,aws:kms:dsse
).General purpose buckets - You have four mutually exclusive options to protect data using server-side encryption in Amazon S3, depending on how you choose to manage the encryption keys. Specifically, the encryption key options are Amazon S3 managed keys (SSE-S3), Amazon Web Services KMS keys (SSE-KMS or DSSE-KMS), and customer-provided keys (SSE-C). Amazon S3 encrypts data with server-side encryption by using Amazon S3 managed keys (SSE-S3) by default. You can optionally tell Amazon S3 to encrypt data at rest by using server-side encryption with other key options. For more information, see Using Server-Side Encryption in the Amazon S3 User Guide.
Directory buckets - For directory buckets, only the server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) value is supported.storage_class(StorageClass)
/set_storage_class(Option<StorageClass>)
:
required: falseBy default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The STANDARD storage class provides high durability and high availability. Depending on performance needs, you can specify a different Storage Class. For more information, see Storage Classes in the Amazon S3 User Guide.
-
For directory buckets, only the S3 Express One Zone storage class is supported to store newly created objects.
-
Amazon S3 on Outposts only uses the OUTPOSTS Storage Class.
-
website_redirect_location(impl Into<String>)
/set_website_redirect_location(Option<String>)
:
required: falseIf the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata. For information about object metadata, see Object Key and Metadata in the Amazon S3 User Guide.
In the following example, the request header sets the redirect to an object (anotherPage.html) in the same bucket:
x-amz-website-redirect-location: /anotherPage.html
In the following example, the request header sets the object redirect to another website:
x-amz-website-redirect-location: http://www.example.com/
For more information about website hosting in Amazon S3, see Hosting Websites on Amazon S3 and How to Configure Website Page Redirects in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when encrypting the object (for example,
AES256
).This functionality is not supported for directory buckets.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm
header.This functionality is not supported for directory buckets.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported for directory buckets.
ssekms_key_id(impl Into<String>)
/set_ssekms_key_id(Option<String>)
:
required: falseIf
x-amz-server-side-encryption
has a valid value ofaws:kms
oraws:kms:dsse
, this header specifies the ID (Key ID, Key ARN, or Key Alias) of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object. If you specifyx-amz-server-side-encryption:aws:kms
orx-amz-server-side-encryption:aws:kms:dsse
, but do not providex-amz-server-side-encryption-aws-kms-key-id
, Amazon S3 uses the Amazon Web Services managed key (aws/s3
) to protect the data. If the KMS key does not exist in the same account that’s issuing the command, you must use the full ARN and not just the ID.This functionality is not supported for directory buckets.
ssekms_encryption_context(impl Into<String>)
/set_ssekms_encryption_context(Option<String>)
:
required: falseSpecifies the Amazon Web Services KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs. This value is stored as object metadata and automatically gets passed on to Amazon Web Services KMS for future
GetObject
orCopyObject
operations on this object. This value must be explicitly added duringCopyObject
operations.This functionality is not supported for directory buckets.
bucket_key_enabled(bool)
/set_bucket_key_enabled(Option<bool>)
:
required: falseSpecifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using Key Management Service (KMS) keys (SSE-KMS). Setting this header to
true
causes Amazon S3 to use an S3 Bucket Key for object encryption with SSE-KMS.Specifying this header with a PUT action doesn’t affect bucket-level settings for S3 Bucket Key.
This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
tagging(impl Into<String>)
/set_tagging(Option<String>)
:
required: falseThe tag-set for the object. The tag-set must be encoded as URL Query parameters. (For example, “Key1=Value1”)
This functionality is not supported for directory buckets.
object_lock_mode(ObjectLockMode)
/set_object_lock_mode(Option<ObjectLockMode>)
:
required: falseThe Object Lock mode that you want to apply to this object.
This functionality is not supported for directory buckets.
object_lock_retain_until_date(DateTime)
/set_object_lock_retain_until_date(Option<DateTime>)
:
required: falseThe date and time when you want this object’s Object Lock to expire. Must be formatted as a timestamp parameter.
This functionality is not supported for directory buckets.
object_lock_legal_hold_status(ObjectLockLegalHoldStatus)
/set_object_lock_legal_hold_status(Option<ObjectLockLegalHoldStatus>)
:
required: falseSpecifies whether a legal hold will be applied to this object. For more information about S3 Object Lock, see Object Lock in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutObjectOutput
with field(s):expiration(Option<String>)
:If the expiration is configured for the object (see PutBucketLifecycleConfiguration) in the Amazon S3 User Guide, the response includes this header. It includes the
expiry-date
andrule-id
key-value pairs that provide information about object expiration. The value of therule-id
is URL-encoded.This functionality is not supported for directory buckets.
e_tag(Option<String>)
:Entity tag for the uploaded object.
General purpose buckets - To ensure that data is not corrupted traversing the network, for objects where the ETag is the MD5 digest of the object, you can calculate the MD5 while putting an object to Amazon S3 and compare the returned ETag to the calculated MD5 value.
Directory buckets - The ETag for the object in a directory bucket isn’t the MD5 digest of the object.
checksum_crc32(Option<String>)
:The base64-encoded, 32-bit CRC32 checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(Option<String>)
:The base64-encoded, 32-bit CRC32C checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(Option<String>)
:The base64-encoded, 160-bit SHA-1 digest of the object. This will only be present if it was uploaded with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(Option<String>)
:The base64-encoded, 256-bit SHA-256 digest of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
,aws:kms:dsse
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.version_id(Option<String>)
:Version ID of the object.
If you enable versioning for a bucket, Amazon S3 automatically generates a unique version ID for the object being stored. Amazon S3 returns this ID in the response. When you enable versioning for a bucket, if Amazon S3 receives multiple write requests for the same object simultaneously, it stores all of the objects. For more information about versioning, see Adding Objects to Versioning-Enabled Buckets in the Amazon S3 User Guide. For information about returning the versioning state of a bucket, see GetBucketVersioning.
This functionality is not supported for directory buckets.
sse_customer_algorithm(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to confirm the encryption algorithm that’s used.
This functionality is not supported for directory buckets.
sse_customer_key_md5(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide the round-trip message integrity verification of the customer-provided encryption key.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If
x-amz-server-side-encryption
has a valid value ofaws:kms
oraws:kms:dsse
, this header indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.This functionality is not supported for directory buckets.
ssekms_encryption_context(Option<String>)
:If present, indicates the Amazon Web Services KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs. This value is stored as object metadata and automatically gets passed on to Amazon Web Services KMS for future
GetObject
orCopyObject
operations on this object.This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the uploaded object uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<PutObjectError>
source§impl Client
impl Client
sourcepub fn put_object_acl(&self) -> PutObjectAclFluentBuilder
pub fn put_object_acl(&self) -> PutObjectAclFluentBuilder
Constructs a fluent builder for the PutObjectAcl
operation.
- The fluent builder is configurable:
acl(ObjectCannedAcl)
/set_acl(Option<ObjectCannedAcl>)
:
required: falseThe canned ACL to apply to the object. For more information, see Canned ACL.
access_control_policy(AccessControlPolicy)
/set_access_control_policy(Option<AccessControlPolicy>)
:
required: falseContains the elements that set the ACL permissions for an object per grantee.
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name that contains the object to which you want to attach the ACL.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.>
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.grant_full_control(impl Into<String>)
/set_grant_full_control(Option<String>)
:
required: falseAllows grantee the read, write, read ACP, and write ACP permissions on the bucket.
This functionality is not supported for Amazon S3 on Outposts.
grant_read(impl Into<String>)
/set_grant_read(Option<String>)
:
required: falseAllows grantee to list the objects in the bucket.
This functionality is not supported for Amazon S3 on Outposts.
grant_read_acp(impl Into<String>)
/set_grant_read_acp(Option<String>)
:
required: falseAllows grantee to read the bucket ACL.
This functionality is not supported for Amazon S3 on Outposts.
grant_write(impl Into<String>)
/set_grant_write(Option<String>)
:
required: falseAllows grantee to create new objects in the bucket.
For the bucket and object owners of existing objects, also allows deletions and overwrites of those objects.
grant_write_acp(impl Into<String>)
/set_grant_write_acp(Option<String>)
:
required: falseAllows grantee to write the ACL for the applicable bucket.
This functionality is not supported for Amazon S3 on Outposts.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueKey for which the PUT action was initiated.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseVersion ID used to reference a specific version of the object.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutObjectAclOutput
with field(s):request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<PutObjectAclError>
source§impl Client
impl Client
sourcepub fn put_object_legal_hold(&self) -> PutObjectLegalHoldFluentBuilder
pub fn put_object_legal_hold(&self) -> PutObjectLegalHoldFluentBuilder
Constructs a fluent builder for the PutObjectLegalHold
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the object that you want to place a legal hold on.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe key name for the object that you want to place a legal hold on.
legal_hold(ObjectLockLegalHold)
/set_legal_hold(Option<ObjectLockLegalHold>)
:
required: falseContainer element for the legal hold configuration you want to apply to the specified object.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe version ID of the object that you want to place a legal hold on.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash for the request body.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutObjectLegalHoldOutput
with field(s):request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<PutObjectLegalHoldError>
source§impl Client
impl Client
sourcepub fn put_object_lock_configuration(
&self,
) -> PutObjectLockConfigurationFluentBuilder
pub fn put_object_lock_configuration( &self, ) -> PutObjectLockConfigurationFluentBuilder
Constructs a fluent builder for the PutObjectLockConfiguration
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket whose Object Lock configuration you want to create or replace.
object_lock_configuration(ObjectLockConfiguration)
/set_object_lock_configuration(Option<ObjectLockConfiguration>)
:
required: falseThe Object Lock configuration that you want to apply to the specified bucket.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
token(impl Into<String>)
/set_token(Option<String>)
:
required: falseA token to allow Object Lock to be enabled for an existing bucket.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash for the request body.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutObjectLockConfigurationOutput
with field(s):request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<PutObjectLockConfigurationError>
source§impl Client
impl Client
sourcepub fn put_object_retention(&self) -> PutObjectRetentionFluentBuilder
pub fn put_object_retention(&self) -> PutObjectRetentionFluentBuilder
Constructs a fluent builder for the PutObjectRetention
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name that contains the object you want to apply this Object Retention configuration to.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe key name for the object that you want to apply this Object Retention configuration to.
retention(ObjectLockRetention)
/set_retention(Option<ObjectLockRetention>)
:
required: falseThe container element for the Object Retention configuration.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe version ID for the object that you want to apply this Object Retention configuration to.
bypass_governance_retention(bool)
/set_bypass_governance_retention(Option<bool>)
:
required: falseIndicates whether this action should bypass Governance-mode restrictions.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash for the request body.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutObjectRetentionOutput
with field(s):request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<PutObjectRetentionError>
source§impl Client
impl Client
sourcepub fn put_object_tagging(&self) -> PutObjectTaggingFluentBuilder
pub fn put_object_tagging(&self) -> PutObjectTaggingFluentBuilder
Constructs a fluent builder for the PutObjectTagging
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the object.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueName of the object key.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseThe versionId of the object that the tag-set will be added to.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash for the request body.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.tagging(Tagging)
/set_tagging(Option<Tagging>)
:
required: trueContainer for the
TagSet
andTag
elementsexpected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
- On success, responds with
PutObjectTaggingOutput
with field(s):version_id(Option<String>)
:The versionId of the object the tag-set was added to.
- On failure, responds with
SdkError<PutObjectTaggingError>
source§impl Client
impl Client
sourcepub fn put_public_access_block(&self) -> PutPublicAccessBlockFluentBuilder
pub fn put_public_access_block(&self) -> PutPublicAccessBlockFluentBuilder
Constructs a fluent builder for the PutPublicAccessBlock
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the Amazon S3 bucket whose
PublicAccessBlock
configuration you want to set.content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe MD5 hash of the
PutPublicAccessBlock
request body.For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.public_access_block_configuration(PublicAccessBlockConfiguration)
/set_public_access_block_configuration(Option<PublicAccessBlockConfiguration>)
:
required: trueThe
PublicAccessBlock
configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of “Public” in the Amazon S3 User Guide.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
PutPublicAccessBlockOutput
- On failure, responds with
SdkError<PutPublicAccessBlockError>
source§impl Client
impl Client
sourcepub fn restore_object(&self) -> RestoreObjectFluentBuilder
pub fn restore_object(&self) -> RestoreObjectFluentBuilder
Constructs a fluent builder for the RestoreObject
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name containing the object to restore.
Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which the action was initiated.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseVersionId used to reference a specific version of the object.
restore_request(RestoreRequest)
/set_restore_request(Option<RestoreRequest>)
:
required: falseContainer for restore job parameters.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
RestoreObjectOutput
with field(s):request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
restore_output_path(Option<String>)
:Indicates the path in the provided S3 output location where Select results will be restored to.
- On failure, responds with
SdkError<RestoreObjectError>
source§impl Client
impl Client
sourcepub fn select_object_content(&self) -> SelectObjectContentFluentBuilder
pub fn select_object_content(&self) -> SelectObjectContentFluentBuilder
Constructs a fluent builder for the SelectObjectContent
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe S3 bucket.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueThe object key.
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseThe server-side encryption (SSE) algorithm used to encrypt the object. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseThe server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseThe MD5 server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm. For more information, see Protecting data using SSE-C keys in the Amazon S3 User Guide.
expression(impl Into<String>)
/set_expression(Option<String>)
:
required: trueThe expression that is used to query the object.
expression_type(ExpressionType)
/set_expression_type(Option<ExpressionType>)
:
required: trueThe type of the provided expression (for example, SQL).
request_progress(RequestProgress)
/set_request_progress(Option<RequestProgress>)
:
required: falseSpecifies if periodic request progress information should be enabled.
input_serialization(InputSerialization)
/set_input_serialization(Option<InputSerialization>)
:
required: trueDescribes the format of the data in the object that is being queried.
output_serialization(OutputSerialization)
/set_output_serialization(Option<OutputSerialization>)
:
required: trueDescribes the format of the data that you want Amazon S3 to return in response.
scan_range(ScanRange)
/set_scan_range(Option<ScanRange>)
:
required: falseSpecifies the byte range of the object to get the records from. A record is processed when its first byte is contained by the range. This parameter is optional, but when specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.
ScanRange
may be used in the following ways:-
- process only the records starting between the bytes 50 and 100 (inclusive, counting from zero)50 100 -
- process only the records starting after the byte 5050 -
- process only the records within the last 50 bytes of the file.50
-
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
SelectObjectContentOutput
with field(s):payload(EventReceiver<SelectObjectContentEventStream, SelectObjectContentEventStreamError>)
:The array of results.
- On failure, responds with
SdkError<SelectObjectContentError>
source§impl Client
impl Client
sourcepub fn upload_part(&self) -> UploadPartFluentBuilder
pub fn upload_part(&self) -> UploadPartFluentBuilder
Constructs a fluent builder for the UploadPart
operation.
- The fluent builder is configurable:
body(ByteStream)
/set_body(ByteStream)
:
required: falseObject data.
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe name of the bucket to which the multipart upload was initiated.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.content_length(i64)
/set_content_length(Option<i64>)
:
required: falseSize of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
content_md5(impl Into<String>)
/set_content_md5(Option<String>)
:
required: falseThe base64-encoded 128-bit MD5 digest of the part data. This parameter is auto-populated when using the command from the CLI. This parameter is required if object lock parameters are specified.
This functionality is not supported for directory buckets.
checksum_algorithm(ChecksumAlgorithm)
/set_checksum_algorithm(Option<ChecksumAlgorithm>)
:
required: falseIndicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any additional functionality if you don’t use the SDK. When you send this header, there must be a corresponding
x-amz-checksum
orx-amz-trailer
header sent. Otherwise, Amazon S3 fails the request with the HTTP status code400 Bad Request
. For more information, see Checking object integrity in the Amazon S3 User Guide.If you provide an individual checksum, Amazon S3 ignores any provided
ChecksumAlgorithm
parameter.This checksum algorithm must be the same for all parts and it match the checksum value supplied in the
CreateMultipartUpload
request.checksum_crc32(impl Into<String>)
/set_checksum_crc32(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 32-bit CRC32 checksum of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(impl Into<String>)
/set_checksum_crc32_c(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 32-bit CRC32C checksum of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(impl Into<String>)
/set_checksum_sha1(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 160-bit SHA-1 digest of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(impl Into<String>)
/set_checksum_sha256(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This header specifies the base64-encoded, 256-bit SHA-256 digest of the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which the multipart upload was initiated.
part_number(i32)
/set_part_number(Option<i32>)
:
required: truePart number of part being uploaded. This is a positive integer between 1 and 10,000.
upload_id(impl Into<String>)
/set_upload_id(Option<String>)
:
required: trueUpload ID identifying the multipart upload whose part is being uploaded.
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when encrypting the object (for example, AES256).
This functionality is not supported for directory buckets.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm header
. This must be the same encryption key specified in the initiate multipart upload request.This functionality is not supported for directory buckets.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported for directory buckets.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
UploadPartOutput
with field(s):server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.e_tag(Option<String>)
:Entity tag for the uploaded object.
checksum_crc32(Option<String>)
:The base64-encoded, 32-bit CRC32 checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_crc32_c(Option<String>)
:The base64-encoded, 32-bit CRC32C checksum of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha1(Option<String>)
:The base64-encoded, 160-bit SHA-1 digest of the object. This will only be present if it was uploaded with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
checksum_sha256(Option<String>)
:The base64-encoded, 256-bit SHA-256 digest of the object. This will only be present if it was uploaded with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it’s a calculation based on the checksum values of each individual part. For more information about how checksums are calculated with multipart uploads, see Checking object integrity in the Amazon S3 User Guide.
sse_customer_algorithm(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to confirm the encryption algorithm that’s used.
This functionality is not supported for directory buckets.
sse_customer_key_md5(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide the round-trip message integrity verification of the customer-provided encryption key.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If present, indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.
This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<UploadPartError>
source§impl Client
impl Client
sourcepub fn upload_part_copy(&self) -> UploadPartCopyFluentBuilder
pub fn upload_part_copy(&self) -> UploadPartCopyFluentBuilder
Constructs a fluent builder for the UploadPartCopy
operation.
- The fluent builder is configurable:
bucket(impl Into<String>)
/set_bucket(Option<String>)
:
required: trueThe bucket name.
Directory buckets - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format
Bucket_name.s3express-az_id.region.amazonaws.com
. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the formatbucket_base_name–az-id–x-s3
(for example,DOC-EXAMPLE-BUCKET–usw2-az1–x-s3
). For information about bucket naming restrictions, see Directory bucket naming rules in the Amazon S3 User Guide.Access points - When you use this action with an access point, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.
Access points and Object Lambda access points are not supported by directory buckets.
S3 on Outposts - When you use this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form
AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com
. When you use this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts access point ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see What is S3 on Outposts? in the Amazon S3 User Guide.copy_source(impl Into<String>)
/set_copy_source(Option<String>)
:
required: trueSpecifies the source object for the copy operation. You specify the value in one of two formats, depending on whether you want to access the source object through an access point:
-
For objects not accessed through an access point, specify the name of the source bucket and key of the source object, separated by a slash (/). For example, to copy the object
reports/january.pdf
from the bucketawsexamplebucket
, useawsexamplebucket/reports/january.pdf
. The value must be URL-encoded. -
For objects accessed through access points, specify the Amazon Resource Name (ARN) of the object as accessed through the access point, in the format
arn:aws:s3:
. For example, to copy the object: :accesspoint/ /object/ reports/january.pdf
through access pointmy-access-point
owned by account123456789012
in Regionus-west-2
, use the URL encoding ofarn:aws:s3:us-west-2:123456789012:accesspoint/my-access-point/object/reports/january.pdf
. The value must be URL encoded.-
Amazon S3 supports copy operations using Access points only when the source and destination buckets are in the same Amazon Web Services Region.
-
Access points are not supported by directory buckets.
Alternatively, for objects accessed through Amazon S3 on Outposts, specify the ARN of the object as accessed in the format
arn:aws:s3-outposts:
. For example, to copy the object: :outpost/ /object/ reports/january.pdf
through outpostmy-outpost
owned by account123456789012
in Regionus-west-2
, use the URL encoding ofarn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/object/reports/january.pdf
. The value must be URL-encoded. -
If your bucket has versioning enabled, you could have multiple versions of the same object. By default,
x-amz-copy-source
identifies the current version of the source object to copy. To copy a specific version of the source object to copy, append?versionId=
to thex-amz-copy-source
request header (for example,x-amz-copy-source: /awsexamplebucket/reports/january.pdf?versionId=QUpfdndhfd8438MNFDN93jdnJFkdmqnh893
).If the current version is a delete marker and you don’t specify a versionId in the
x-amz-copy-source
request header, Amazon S3 returns a404 Not Found
error, because the object does not exist. If you specify versionId in thex-amz-copy-source
and the versionId is a delete marker, Amazon S3 returns an HTTP400 Bad Request
error, because you are not allowed to specify a delete marker as a version for thex-amz-copy-source
.Directory buckets - S3 Versioning isn’t enabled and supported for directory buckets.
-
copy_source_if_match(impl Into<String>)
/set_copy_source_if_match(Option<String>)
:
required: falseCopies the object if its entity tag (ETag) matches the specified tag.
If both of the
x-amz-copy-source-if-match
andx-amz-copy-source-if-unmodified-since
headers are present in the request as follows:x-amz-copy-source-if-match
condition evaluates totrue
, and;x-amz-copy-source-if-unmodified-since
condition evaluates tofalse
;Amazon S3 returns
200 OK
and copies the data.copy_source_if_modified_since(DateTime)
/set_copy_source_if_modified_since(Option<DateTime>)
:
required: falseCopies the object if it has been modified since the specified time.
If both of the
x-amz-copy-source-if-none-match
andx-amz-copy-source-if-modified-since
headers are present in the request as follows:x-amz-copy-source-if-none-match
condition evaluates tofalse
, and;x-amz-copy-source-if-modified-since
condition evaluates totrue
;Amazon S3 returns
412 Precondition Failed
response code.copy_source_if_none_match(impl Into<String>)
/set_copy_source_if_none_match(Option<String>)
:
required: falseCopies the object if its entity tag (ETag) is different than the specified ETag.
If both of the
x-amz-copy-source-if-none-match
andx-amz-copy-source-if-modified-since
headers are present in the request as follows:x-amz-copy-source-if-none-match
condition evaluates tofalse
, and;x-amz-copy-source-if-modified-since
condition evaluates totrue
;Amazon S3 returns
412 Precondition Failed
response code.copy_source_if_unmodified_since(DateTime)
/set_copy_source_if_unmodified_since(Option<DateTime>)
:
required: falseCopies the object if it hasn’t been modified since the specified time.
If both of the
x-amz-copy-source-if-match
andx-amz-copy-source-if-unmodified-since
headers are present in the request as follows:x-amz-copy-source-if-match
condition evaluates totrue
, and;x-amz-copy-source-if-unmodified-since
condition evaluates tofalse
;Amazon S3 returns
200 OK
and copies the data.copy_source_range(impl Into<String>)
/set_copy_source_range(Option<String>)
:
required: falseThe range of bytes to copy from the source object. The range value must use the form bytes=first-last, where the first and last are the zero-based byte offsets to copy. For example, bytes=0-9 indicates that you want to copy the first 10 bytes of the source. You can copy a range only if the source object is greater than 5 MB.
key(impl Into<String>)
/set_key(Option<String>)
:
required: trueObject key for which the multipart upload was initiated.
part_number(i32)
/set_part_number(Option<i32>)
:
required: truePart number of part being copied. This is a positive integer between 1 and 10,000.
upload_id(impl Into<String>)
/set_upload_id(Option<String>)
:
required: trueUpload ID identifying the multipart upload whose part is being copied.
sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when encrypting the object (for example, AES256).
This functionality is not supported when the destination bucket is a directory bucket.
sse_customer_key(impl Into<String>)
/set_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the
x-amz-server-side-encryption-customer-algorithm
header. This must be the same encryption key specified in the initiate multipart upload request.This functionality is not supported when the destination bucket is a directory bucket.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported when the destination bucket is a directory bucket.
copy_source_sse_customer_algorithm(impl Into<String>)
/set_copy_source_sse_customer_algorithm(Option<String>)
:
required: falseSpecifies the algorithm to use when decrypting the source object (for example,
AES256
).This functionality is not supported when the source object is in a directory bucket.
copy_source_sse_customer_key(impl Into<String>)
/set_copy_source_sse_customer_key(Option<String>)
:
required: falseSpecifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
This functionality is not supported when the source object is in a directory bucket.
copy_source_sse_customer_key_md5(impl Into<String>)
/set_copy_source_sse_customer_key_md5(Option<String>)
:
required: falseSpecifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.
This functionality is not supported when the source object is in a directory bucket.
request_payer(RequestPayer)
/set_request_payer(Option<RequestPayer>)
:
required: falseConfirms that the requester knows that they will be charged for the request. Bucket owners need not specify this parameter in their requests. If either the source or destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding charges to copy the object. For information about downloading objects from Requester Pays buckets, see Downloading Objects in Requester Pays Buckets in the Amazon S3 User Guide.
This functionality is not supported for directory buckets.
expected_bucket_owner(impl Into<String>)
/set_expected_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected destination bucket owner. If the account ID that you provide does not match the actual owner of the destination bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).expected_source_bucket_owner(impl Into<String>)
/set_expected_source_bucket_owner(Option<String>)
:
required: falseThe account ID of the expected source bucket owner. If the account ID that you provide does not match the actual owner of the source bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
- On success, responds with
UploadPartCopyOutput
with field(s):copy_source_version_id(Option<String>)
:The version of the source object that was copied, if you have enabled versioning on the source bucket.
This functionality is not supported when the source object is in a directory bucket.
copy_part_result(Option<CopyPartResult>)
:Container for all response elements.
server_side_encryption(Option<ServerSideEncryption>)
:The server-side encryption algorithm used when you store this object in Amazon S3 (for example,
AES256
,aws:kms
).For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (
AES256
) is supported.sse_customer_algorithm(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to confirm the encryption algorithm that’s used.
This functionality is not supported for directory buckets.
sse_customer_key_md5(Option<String>)
:If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide the round-trip message integrity verification of the customer-provided encryption key.
This functionality is not supported for directory buckets.
ssekms_key_id(Option<String>)
:If present, indicates the ID of the Key Management Service (KMS) symmetric encryption customer managed key that was used for the object.
This functionality is not supported for directory buckets.
bucket_key_enabled(Option<bool>)
:Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
This functionality is not supported for directory buckets.
request_charged(Option<RequestCharged>)
:If present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
- On failure, responds with
SdkError<UploadPartCopyError>
source§impl Client
impl Client
sourcepub fn write_get_object_response(&self) -> WriteGetObjectResponseFluentBuilder
pub fn write_get_object_response(&self) -> WriteGetObjectResponseFluentBuilder
Constructs a fluent builder for the WriteGetObjectResponse
operation.
- The fluent builder is configurable:
request_route(impl Into<String>)
/set_request_route(Option<String>)
:
required: trueRoute prefix to the HTTP URL generated.
request_token(impl Into<String>)
/set_request_token(Option<String>)
:
required: trueA single use encrypted token that maps
WriteGetObjectResponse
to the end userGetObject
request.body(ByteStream)
/set_body(ByteStream)
:
required: falseThe object data.
status_code(i32)
/set_status_code(Option<i32>)
:
required: falseThe integer status code for an HTTP response of a corresponding
GetObject
request. The following is a list of status codes.-
200 - OK
-
206 - Partial Content
-
304 - Not Modified
-
400 - Bad Request
-
401 - Unauthorized
-
403 - Forbidden
-
404 - Not Found
-
405 - Method Not Allowed
-
409 - Conflict
-
411 - Length Required
-
412 - Precondition Failed
-
416 - Range Not Satisfiable
-
500 - Internal Server Error
-
503 - Service Unavailable
-
error_code(impl Into<String>)
/set_error_code(Option<String>)
:
required: falseA string that uniquely identifies an error condition. Returned in the
tag of the error XML response for a corresponding
GetObject
call. Cannot be used with a successfulStatusCode
header or when the transformed object is provided in the body. All error codes from S3 are sentence-cased. The regular expression (regex) value is“^[A-Z][a-zA-Z]+$”
.error_message(impl Into<String>)
/set_error_message(Option<String>)
:
required: falseContains a generic description of the error condition. Returned in the
tag of the error XML response for a corresponding GetObject
call. Cannot be used with a successfulStatusCode
header or when the transformed object is provided in body.accept_ranges(impl Into<String>)
/set_accept_ranges(Option<String>)
:
required: falseIndicates that a range of bytes was specified.
cache_control(impl Into<String>)
/set_cache_control(Option<String>)
:
required: falseSpecifies caching behavior along the request/reply chain.
content_disposition(impl Into<String>)
/set_content_disposition(Option<String>)
:
required: falseSpecifies presentational information for the object.
content_encoding(impl Into<String>)
/set_content_encoding(Option<String>)
:
required: falseSpecifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
content_language(impl Into<String>)
/set_content_language(Option<String>)
:
required: falseThe language the content is in.
content_length(i64)
/set_content_length(Option<i64>)
:
required: falseThe size of the content body in bytes.
content_range(impl Into<String>)
/set_content_range(Option<String>)
:
required: falseThe portion of the object returned in the response.
content_type(impl Into<String>)
/set_content_type(Option<String>)
:
required: falseA standard MIME type describing the format of the object data.
checksum_crc32(impl Into<String>)
/set_checksum_crc32(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This specifies the base64-encoded, 32-bit CRC32 checksum of the object returned by the Object Lambda function. This may not match the checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values only when the original
GetObject
request required checksum validation. For more information about checksums, see Checking object integrity in the Amazon S3 User Guide.Only one checksum header can be specified at a time. If you supply multiple checksum headers, this request will fail.
checksum_crc32_c(impl Into<String>)
/set_checksum_crc32_c(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This specifies the base64-encoded, 32-bit CRC32C checksum of the object returned by the Object Lambda function. This may not match the checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values only when the original
GetObject
request required checksum validation. For more information about checksums, see Checking object integrity in the Amazon S3 User Guide.Only one checksum header can be specified at a time. If you supply multiple checksum headers, this request will fail.
checksum_sha1(impl Into<String>)
/set_checksum_sha1(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This specifies the base64-encoded, 160-bit SHA-1 digest of the object returned by the Object Lambda function. This may not match the checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values only when the original
GetObject
request required checksum validation. For more information about checksums, see Checking object integrity in the Amazon S3 User Guide.Only one checksum header can be specified at a time. If you supply multiple checksum headers, this request will fail.
checksum_sha256(impl Into<String>)
/set_checksum_sha256(Option<String>)
:
required: falseThis header can be used as a data integrity check to verify that the data received is the same data that was originally sent. This specifies the base64-encoded, 256-bit SHA-256 digest of the object returned by the Object Lambda function. This may not match the checksum for the object stored in Amazon S3. Amazon S3 will perform validation of the checksum values only when the original
GetObject
request required checksum validation. For more information about checksums, see Checking object integrity in the Amazon S3 User Guide.Only one checksum header can be specified at a time. If you supply multiple checksum headers, this request will fail.
delete_marker(bool)
/set_delete_marker(Option<bool>)
:
required: falseSpecifies whether an object stored in Amazon S3 is (
true
) or is not (false
) a delete marker.e_tag(impl Into<String>)
/set_e_tag(Option<String>)
:
required: falseAn opaque identifier assigned by a web server to a specific version of a resource found at a URL.
expires(DateTime)
/set_expires(Option<DateTime>)
:
required: falseThe date and time at which the object is no longer cacheable.
expiration(impl Into<String>)
/set_expiration(Option<String>)
:
required: falseIf the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the
expiry-date
andrule-id
key-value pairs that provide the object expiration information. The value of therule-id
is URL-encoded.last_modified(DateTime)
/set_last_modified(Option<DateTime>)
:
required: falseThe date and time that the object was last modified.
missing_meta(i32)
/set_missing_meta(Option<i32>)
:
required: falseSet to the number of metadata entries not returned in
x-amz-meta
headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.metadata(impl Into<String>, impl Into<String>)
/set_metadata(Option<HashMap::<String, String>>)
:
required: falseA map of metadata to store with the object in S3.
object_lock_mode(ObjectLockMode)
/set_object_lock_mode(Option<ObjectLockMode>)
:
required: falseIndicates whether an object stored in Amazon S3 has Object Lock enabled. For more information about S3 Object Lock, see Object Lock.
object_lock_legal_hold_status(ObjectLockLegalHoldStatus)
/set_object_lock_legal_hold_status(Option<ObjectLockLegalHoldStatus>)
:
required: falseIndicates whether an object stored in Amazon S3 has an active legal hold.
object_lock_retain_until_date(DateTime)
/set_object_lock_retain_until_date(Option<DateTime>)
:
required: falseThe date and time when Object Lock is configured to expire.
parts_count(i32)
/set_parts_count(Option<i32>)
:
required: falseThe count of parts this object has.
replication_status(ReplicationStatus)
/set_replication_status(Option<ReplicationStatus>)
:
required: falseIndicates if request involves bucket that is either a source or destination in a Replication rule. For more information about S3 Replication, see Replication.
request_charged(RequestCharged)
/set_request_charged(Option<RequestCharged>)
:
required: falseIf present, indicates that the requester was successfully charged for the request.
This functionality is not supported for directory buckets.
restore(impl Into<String>)
/set_restore(Option<String>)
:
required: falseProvides information about object restoration operation and expiration time of the restored object copy.
server_side_encryption(ServerSideEncryption)
/set_server_side_encryption(Option<ServerSideEncryption>)
:
required: falseThe server-side encryption algorithm used when storing requested object in Amazon S3 (for example, AES256,
aws:kms
).sse_customer_algorithm(impl Into<String>)
/set_sse_customer_algorithm(Option<String>)
:
required: falseEncryption algorithm used if server-side encryption with a customer-provided encryption key was specified for object stored in Amazon S3.
ssekms_key_id(impl Into<String>)
/set_ssekms_key_id(Option<String>)
:
required: falseIf present, specifies the ID (Key ID, Key ARN, or Key Alias) of the Amazon Web Services Key Management Service (Amazon Web Services KMS) symmetric encryption customer managed key that was used for stored in Amazon S3 object.
sse_customer_key_md5(impl Into<String>)
/set_sse_customer_key_md5(Option<String>)
:
required: false128-bit MD5 digest of customer-provided encryption key used in Amazon S3 to encrypt data stored in S3. For more information, see Protecting data using server-side encryption with customer-provided encryption keys (SSE-C).
storage_class(StorageClass)
/set_storage_class(Option<StorageClass>)
:
required: falseProvides storage class information of the object. Amazon S3 returns this header for all objects except for S3 Standard storage class objects.
For more information, see Storage Classes.
tag_count(i32)
/set_tag_count(Option<i32>)
:
required: falseThe number of tags, if any, on the object.
version_id(impl Into<String>)
/set_version_id(Option<String>)
:
required: falseAn ID used to reference a specific version of the object.
bucket_key_enabled(bool)
/set_bucket_key_enabled(Option<bool>)
:
required: falseIndicates whether the object stored in Amazon S3 uses an S3 bucket key for server-side encryption with Amazon Web Services KMS (SSE-KMS).
- On success, responds with
WriteGetObjectResponseOutput
- On failure, responds with
SdkError<WriteGetObjectResponseError>
source§impl Client
impl Client
sourcepub fn from_conf(conf: Config) -> Self
pub fn from_conf(conf: Config) -> Self
Creates a new client from the service Config
.
§Panics
This method will panic in the following cases:
- Retries or timeouts are enabled without a
sleep_impl
configured. - Identity caching is enabled without a
sleep_impl
andtime_source
configured. - No
behavior_version
is provided.
The panic message for each of these will have instructions on how to resolve them.
source§impl Client
impl Client
sourcepub fn new(sdk_config: &SdkConfig) -> Self
pub fn new(sdk_config: &SdkConfig) -> Self
Creates a new client from an SDK Config.
§Panics
- This method will panic if the
sdk_config
is missing an async sleep implementation. If you experience this panic, set thesleep_impl
on the Config passed into this function to fix it. - This method will panic if the
sdk_config
is missing an HTTP connector. If you experience this panic, set thehttp_connector
on the Config passed into this function to fix it. - This method will panic if no
BehaviorVersion
is provided. If you experience this panic, setbehavior_version
on the Config or enable thebehavior-version-latest
Cargo feature.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Client
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)