pub struct S3AccessPoint {
pub name: String,
pub bucket: String,
pub account_id: String,
pub network_origin: String,
pub vpc_configuration: Option<String>,
pub creation_date: DateTime<Utc>,
pub public_access_block: Option<String>,
pub bucket_account_id: Option<String>,
}Fields§
§name: String§bucket: String§account_id: String§network_origin: String§vpc_configuration: Option<String>§creation_date: DateTime<Utc>§public_access_block: Option<String>§bucket_account_id: Option<String>Trait Implementations§
Source§impl Clone for S3AccessPoint
impl Clone for S3AccessPoint
Source§fn clone(&self) -> S3AccessPoint
fn clone(&self) -> S3AccessPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for S3AccessPoint
impl RefUnwindSafe for S3AccessPoint
impl Send for S3AccessPoint
impl Sync for S3AccessPoint
impl Unpin for S3AccessPoint
impl UnsafeUnpin for S3AccessPoint
impl UnwindSafe for S3AccessPoint
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