pub struct S3AccessPointEntry {
pub name: String,
pub alias: String,
pub bucket: String,
pub account_id: String,
pub network_origin: String,
pub vpc_configuration: Option<String>,
pub public_access_block: Option<String>,
pub created_at: String,
}Fields§
§name: String§alias: String§bucket: String§account_id: String§network_origin: String§vpc_configuration: Option<String>§public_access_block: Option<String>§created_at: StringTrait Implementations§
Source§impl Clone for S3AccessPointEntry
impl Clone for S3AccessPointEntry
Source§fn clone(&self) -> S3AccessPointEntry
fn clone(&self) -> S3AccessPointEntry
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 moreSource§impl Debug for S3AccessPointEntry
impl Debug for S3AccessPointEntry
Source§impl<'de> Deserialize<'de> for S3AccessPointEntry
impl<'de> Deserialize<'de> for S3AccessPointEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for S3AccessPointEntry
impl RefUnwindSafe for S3AccessPointEntry
impl Send for S3AccessPointEntry
impl Sync for S3AccessPointEntry
impl Unpin for S3AccessPointEntry
impl UnsafeUnpin for S3AccessPointEntry
impl UnwindSafe for S3AccessPointEntry
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