Struct aws_sdk_accessanalyzer::types::JobDetails
source · #[non_exhaustive]pub struct JobDetails { /* private fields */ }Expand description
Contains details about the policy generation request.
Implementations§
source§impl JobDetails
impl JobDetails
sourcepub fn job_id(&self) -> Option<&str>
pub fn job_id(&self) -> Option<&str>
The JobId that is returned by the StartPolicyGeneration operation. The JobId can be used with GetGeneratedPolicy to retrieve the generated policies or used with CancelPolicyGeneration to cancel the policy generation request.
sourcepub fn started_on(&self) -> Option<&DateTime>
pub fn started_on(&self) -> Option<&DateTime>
A timestamp of when the job was started.
sourcepub fn completed_on(&self) -> Option<&DateTime>
pub fn completed_on(&self) -> Option<&DateTime>
A timestamp of when the job was completed.
source§impl JobDetails
impl JobDetails
sourcepub fn builder() -> JobDetailsBuilder
pub fn builder() -> JobDetailsBuilder
Creates a new builder-style object to manufacture JobDetails.
Trait Implementations§
source§impl Clone for JobDetails
impl Clone for JobDetails
source§fn clone(&self) -> JobDetails
fn clone(&self) -> JobDetails
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 JobDetails
impl Debug for JobDetails
source§impl PartialEq<JobDetails> for JobDetails
impl PartialEq<JobDetails> for JobDetails
source§fn eq(&self, other: &JobDetails) -> bool
fn eq(&self, other: &JobDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.