Struct rusoto_codecommit::Comment[][src]

pub struct Comment {
    pub author_arn: Option<String>,
    pub client_request_token: Option<String>,
    pub comment_id: Option<String>,
    pub content: Option<String>,
    pub creation_date: Option<f64>,
    pub deleted: Option<bool>,
    pub in_reply_to: Option<String>,
    pub last_modified_date: Option<f64>,
}

Returns information about a specific comment.

Fields

The Amazon Resource Name (ARN) of the person who posted the comment.

A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.

The system-generated comment ID.

The content of the comment.

The date and time the comment was created, in timestamp format.

A Boolean value indicating whether the comment has been deleted.

The ID of the comment for which this comment is a reply, if any.

The date and time the comment was most recently modified, in timestamp format.

Trait Implementations

impl Default for Comment
[src]

Returns the "default value" for a type. Read more

impl Debug for Comment
[src]

Formats the value using the given formatter. Read more

impl Clone for Comment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Comment
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Comment

impl Sync for Comment