Struct aws_sdk_ssm::types::DocumentReviewerResponseSource
source · #[non_exhaustive]pub struct DocumentReviewerResponseSource { /* private fields */ }
Expand description
Information about a reviewer's response to a document review request.
Implementations§
source§impl DocumentReviewerResponseSource
impl DocumentReviewerResponseSource
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The date and time that a reviewer entered a response to a document review request.
sourcepub fn updated_time(&self) -> Option<&DateTime>
pub fn updated_time(&self) -> Option<&DateTime>
The date and time that a reviewer last updated a response to a document review request.
sourcepub fn review_status(&self) -> Option<&ReviewStatus>
pub fn review_status(&self) -> Option<&ReviewStatus>
The current review status of a new custom SSM document created by a member of your organization, or of the latest version of an existing SSM document.
Only one version of a document can be in the APPROVED state at a time. When a new version is approved, the status of the previous version changes to REJECTED.
Only one version of a document can be in review, or PENDING, at a time.
sourcepub fn comment(&self) -> Option<&[DocumentReviewCommentSource]>
pub fn comment(&self) -> Option<&[DocumentReviewCommentSource]>
The comment entered by a reviewer as part of their document review response.
source§impl DocumentReviewerResponseSource
impl DocumentReviewerResponseSource
sourcepub fn builder() -> DocumentReviewerResponseSourceBuilder
pub fn builder() -> DocumentReviewerResponseSourceBuilder
Creates a new builder-style object to manufacture DocumentReviewerResponseSource
.
Trait Implementations§
source§impl Clone for DocumentReviewerResponseSource
impl Clone for DocumentReviewerResponseSource
source§fn clone(&self) -> DocumentReviewerResponseSource
fn clone(&self) -> DocumentReviewerResponseSource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<DocumentReviewerResponseSource> for DocumentReviewerResponseSource
impl PartialEq<DocumentReviewerResponseSource> for DocumentReviewerResponseSource
source§fn eq(&self, other: &DocumentReviewerResponseSource) -> bool
fn eq(&self, other: &DocumentReviewerResponseSource) -> bool
self
and other
values to be equal, and is used
by ==
.