[][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 webpage can 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 webpage.

repository_name: String

The name of the new repository to be created.

The repository name must be unique across the calling AWS account. Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information about 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 Clone for CreateRepositoryInput[src]

impl Debug for CreateRepositoryInput[src]

impl Default for CreateRepositoryInput[src]

impl PartialEq<CreateRepositoryInput> for CreateRepositoryInput[src]

impl Serialize for CreateRepositoryInput[src]

impl StructuralPartialEq for CreateRepositoryInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.