pub struct Export {Show 15 fields
pub export_arn: String,
pub client_token: String,
pub export_status: String,
pub domain_name: String,
pub requested_at: DateTime<Utc>,
pub s3_bucket: String,
pub s3_key_prefix: Option<String>,
pub s3_sse_algorithm: Option<String>,
pub s3_sse_kms_key_id: Option<String>,
pub s3_bucket_owner: Option<String>,
pub failure_code: Option<String>,
pub failure_message: Option<String>,
pub export_manifest: Option<String>,
pub items_count: Option<i64>,
pub export_data_cutoff_time: Option<DateTime<Utc>>,
}Fields§
§export_arn: String§client_token: String§export_status: String§domain_name: String§requested_at: DateTime<Utc>§s3_bucket: String§s3_key_prefix: Option<String>§s3_sse_algorithm: Option<String>§s3_sse_kms_key_id: Option<String>§s3_bucket_owner: Option<String>§failure_code: Option<String>§failure_message: Option<String>§export_manifest: Option<String>§items_count: Option<i64>§export_data_cutoff_time: Option<DateTime<Utc>>Trait Implementations§
Source§impl From<&Export> for ExportView
impl From<&Export> for ExportView
Source§impl From<ExportView> for Export
impl From<ExportView> for Export
Source§fn from(v: ExportView) -> Self
fn from(v: ExportView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Export
impl RefUnwindSafe for Export
impl Send for Export
impl Sync for Export
impl Unpin for Export
impl UnsafeUnpin for Export
impl UnwindSafe for Export
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.