pub struct GetBucketReplicationRequest {
pub bucket: String,
pub expected_bucket_owner: Option<String>,
}
Fields§
§bucket: String
The bucket name for which to get the replication information.
expected_bucket_owner: Option<String>
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§
Source§impl Clone for GetBucketReplicationRequest
impl Clone for GetBucketReplicationRequest
Source§fn clone(&self) -> GetBucketReplicationRequest
fn clone(&self) -> GetBucketReplicationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetBucketReplicationRequest
impl Debug for GetBucketReplicationRequest
Source§impl Default for GetBucketReplicationRequest
impl Default for GetBucketReplicationRequest
Source§fn default() -> GetBucketReplicationRequest
fn default() -> GetBucketReplicationRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetBucketReplicationRequest
Auto Trait Implementations§
impl Freeze for GetBucketReplicationRequest
impl RefUnwindSafe for GetBucketReplicationRequest
impl Send for GetBucketReplicationRequest
impl Sync for GetBucketReplicationRequest
impl Unpin for GetBucketReplicationRequest
impl UnwindSafe for GetBucketReplicationRequest
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
Mutably borrows from an owned value. Read more