Struct rusoto_codecommit::UpdateCommentInput[][src]

pub struct UpdateCommentInput {
    pub comment_id: String,
    pub content: String,
}

Fields

The system-generated ID of the comment you want to update. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.

The updated content with which you want to replace the existing content of the comment.

Trait Implementations

impl Default for UpdateCommentInput
[src]

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

impl Debug for UpdateCommentInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateCommentInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateCommentInput
[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