Struct aws_sdk_s3::client::fluent_builders::GetBucketAcl [−][src]
pub struct GetBucketAcl<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to GetBucketAcl
.
This implementation of the GET
action uses the acl
subresource to return the access control list (ACL) of a bucket. To use GET
to return the ACL of the bucket, you must have READ_ACP
access to the bucket. If READ_ACP
permission is granted to the anonymous user, you can return the ACL of the bucket without using an authorization header.
If your bucket uses the bucket owner enforced setting for S3 Object Ownership, requests to read ACLs are still supported and return the bucket-owner-full-control
ACL with the owner being the account that created the bucket. For more information, see Controlling object ownership and disabling ACLs in the Amazon S3 User Guide.
Related Resources
Implementations
impl<C, M, R> GetBucketAcl<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> GetBucketAcl<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<GetBucketAclOutput, SdkError<GetBucketAclError>> where
R::Policy: SmithyRetryPolicy<GetBucketAclInputOperationOutputAlias, GetBucketAclOutput, GetBucketAclError, GetBucketAclInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<GetBucketAclOutput, SdkError<GetBucketAclError>> where
R::Policy: SmithyRetryPolicy<GetBucketAclInputOperationOutputAlias, GetBucketAclOutput, GetBucketAclError, GetBucketAclInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Specifies the S3 bucket whose ACL is being requested.
Specifies the S3 bucket whose ACL is being requested.
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied)
error.
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied)
error.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for GetBucketAcl<C, M, R>
impl<C, M, R> Unpin for GetBucketAcl<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for GetBucketAcl<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more