Struct rusoto_codecommit::CreateRepositoryInput [] [src]

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

Represents the input of a create repository operation.

Fields

A comment or description about the new repository.

The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix ".git" is prohibited.

Trait Implementations

impl Default for CreateRepositoryInput
[src]

[src]

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

impl Debug for CreateRepositoryInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateRepositoryInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations