Struct rusoto_codecommit::ListRepositoriesInput [] [src]

pub struct ListRepositoriesInput {
    pub next_token: Option<String>,
    pub order: Option<String>,
    pub sort_by: Option<String>,
}

Represents the input of a list repositories operation.

Fields

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

The order in which to sort the results of a list repositories operation.

The criteria used to sort the results of a list repositories operation.

Trait Implementations

impl Default for ListRepositoriesInput
[src]

[src]

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

impl Debug for ListRepositoriesInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListRepositoriesInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations