Struct rusoto_codecommit::UpdateRepositoryDescriptionInput[][src]

pub struct UpdateRepositoryDescriptionInput {
    pub repository_description: Option<String>,
    pub repository_name: String,
}

Represents the input of an update repository description operation.

Fields

The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

The name of the repository to set or change the comment or description for.

Trait Implementations

impl Default for UpdateRepositoryDescriptionInput
[src]

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

impl Debug for UpdateRepositoryDescriptionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateRepositoryDescriptionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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