[][src]Struct rusoto_ssm::DocumentReviewerResponseSource

pub struct DocumentReviewerResponseSource {
    pub comment: Option<Vec<DocumentReviewCommentSource>>,
    pub create_time: Option<f64>,
    pub review_status: Option<String>,
    pub reviewer: Option<String>,
    pub updated_time: Option<f64>,
}

Information about a reviewer's response to a document review request.

Fields

comment: Option<Vec<DocumentReviewCommentSource>>

The comment entered by a reviewer as part of their document review response.

create_time: Option<f64>

The date and time that a reviewer entered a response to a document review request.

review_status: Option<String>

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.

reviewer: Option<String>

The user in your organization assigned to review a document request.

updated_time: Option<f64>

The date and time that a reviewer last updated a response to a document review request.

Trait Implementations

impl Clone for DocumentReviewerResponseSource[src]

impl Debug for DocumentReviewerResponseSource[src]

impl Default for DocumentReviewerResponseSource[src]

impl<'de> Deserialize<'de> for DocumentReviewerResponseSource[src]

impl PartialEq<DocumentReviewerResponseSource> for DocumentReviewerResponseSource[src]

impl StructuralPartialEq for DocumentReviewerResponseSource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.