#[non_exhaustive]pub struct RecommendationReportDetails {
pub status: Option<RecommendationReportStatus>,
pub status_message: Option<String>,
pub start_time: Option<DateTime>,
pub completion_time: Option<DateTime>,
pub s3_bucket: Option<String>,
pub s3_keys: Option<Vec<String>>,
}Expand description
Contains detailed information about a recommendation report.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.status: Option<RecommendationReportStatus>The status of the recommendation report generation task.
status_message: Option<String>The status message for recommendation report generation.
start_time: Option<DateTime>The time that the recommendation report generation task starts.
completion_time: Option<DateTime>The time that the recommendation report generation task completes.
s3_bucket: Option<String>The S3 bucket where the report file is located.
s3_keys: Option<Vec<String>>The Amazon S3 key name of the report file.
Implementations
sourceimpl RecommendationReportDetails
impl RecommendationReportDetails
sourcepub fn status(&self) -> Option<&RecommendationReportStatus>
pub fn status(&self) -> Option<&RecommendationReportStatus>
The status of the recommendation report generation task.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status message for recommendation report generation.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time that the recommendation report generation task starts.
sourcepub fn completion_time(&self) -> Option<&DateTime>
pub fn completion_time(&self) -> Option<&DateTime>
The time that the recommendation report generation task completes.
sourceimpl RecommendationReportDetails
impl RecommendationReportDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecommendationReportDetails
Trait Implementations
sourceimpl Clone for RecommendationReportDetails
impl Clone for RecommendationReportDetails
sourcefn clone(&self) -> RecommendationReportDetails
fn clone(&self) -> RecommendationReportDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for RecommendationReportDetails
impl Debug for RecommendationReportDetails
sourceimpl PartialEq<RecommendationReportDetails> for RecommendationReportDetails
impl PartialEq<RecommendationReportDetails> for RecommendationReportDetails
sourcefn eq(&self, other: &RecommendationReportDetails) -> bool
fn eq(&self, other: &RecommendationReportDetails) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &RecommendationReportDetails) -> bool
fn ne(&self, other: &RecommendationReportDetails) -> bool
This method tests for !=.
impl StructuralPartialEq for RecommendationReportDetails
Auto Trait Implementations
impl RefUnwindSafe for RecommendationReportDetails
impl Send for RecommendationReportDetails
impl Sync for RecommendationReportDetails
impl Unpin for RecommendationReportDetails
impl UnwindSafe for RecommendationReportDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more