#[non_exhaustive]pub struct RecommendationExportJob { /* private fields */ }
Expand description
Describes a recommendation export job.
Use the DescribeRecommendationExportJobs
action to view your recommendation export jobs.
Use the ExportAutoScalingGroupRecommendations
or ExportEC2InstanceRecommendations
actions to request an export of your recommendations.
Implementations§
source§impl RecommendationExportJob
impl RecommendationExportJob
sourcepub fn destination(&self) -> Option<&ExportDestination>
pub fn destination(&self) -> Option<&ExportDestination>
An object that describes the destination of the export file.
sourcepub fn resource_type(&self) -> Option<&ResourceType>
pub fn resource_type(&self) -> Option<&ResourceType>
The resource type of the exported recommendations.
sourcepub fn creation_timestamp(&self) -> Option<&DateTime>
pub fn creation_timestamp(&self) -> Option<&DateTime>
The timestamp of when the export job was created.
sourcepub fn last_updated_timestamp(&self) -> Option<&DateTime>
pub fn last_updated_timestamp(&self) -> Option<&DateTime>
The timestamp of when the export job was last updated.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
The reason for an export job failure.
source§impl RecommendationExportJob
impl RecommendationExportJob
sourcepub fn builder() -> RecommendationExportJobBuilder
pub fn builder() -> RecommendationExportJobBuilder
Creates a new builder-style object to manufacture RecommendationExportJob
.
Trait Implementations§
source§impl Clone for RecommendationExportJob
impl Clone for RecommendationExportJob
source§fn clone(&self) -> RecommendationExportJob
fn clone(&self) -> RecommendationExportJob
Returns a copy 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 RecommendationExportJob
impl Debug for RecommendationExportJob
source§impl PartialEq<RecommendationExportJob> for RecommendationExportJob
impl PartialEq<RecommendationExportJob> for RecommendationExportJob
source§fn eq(&self, other: &RecommendationExportJob) -> bool
fn eq(&self, other: &RecommendationExportJob) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecommendationExportJob
Auto Trait Implementations§
impl RefUnwindSafe for RecommendationExportJob
impl Send for RecommendationExportJob
impl Sync for RecommendationExportJob
impl Unpin for RecommendationExportJob
impl UnwindSafe for RecommendationExportJob
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