[][src]Struct rusoto_codecommit::CreateRepositoryInput

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

Represents the input of a create repository operation.

Fields

repository_description: Option<String>

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.

repository_name: String

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.

tags: Option<HashMap<String, String>>

One or more tag key-value pairs to use when tagging this repository.

Trait Implementations

impl PartialEq<CreateRepositoryInput> for CreateRepositoryInput[src]

impl Default for CreateRepositoryInput[src]

impl Clone for CreateRepositoryInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateRepositoryInput[src]

impl Serialize for CreateRepositoryInput[src]

Auto Trait Implementations

impl Send for CreateRepositoryInput

impl Sync for CreateRepositoryInput

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self