Struct aws_sdk_ssm::types::DocumentReviewerResponseSource
source · #[non_exhaustive]pub struct DocumentReviewerResponseSource {
pub create_time: Option<DateTime>,
pub updated_time: Option<DateTime>,
pub review_status: Option<ReviewStatus>,
pub comment: Option<Vec<DocumentReviewCommentSource>>,
pub reviewer: Option<String>,
}
Expand description
Information about a reviewer's response to a document review request.
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.create_time: Option<DateTime>
The date and time that a reviewer entered a response to a document review request.
updated_time: Option<DateTime>
The date and time that a reviewer last updated a response to a document review request.
review_status: 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.
comment: Option<Vec<DocumentReviewCommentSource>>
The comment entered by a reviewer as part of their document review response.
reviewer: Option<String>
The user in your organization assigned to review a document 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 for DocumentReviewerResponseSource
impl PartialEq 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 ==
.