[−][src]Struct rusoto_codecommit::CreateRepositoryInput
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.
One or more tag key-value pairs to use when tagging this repository.
Trait Implementations
impl PartialEq<CreateRepositoryInput> for CreateRepositoryInput
[src]
fn eq(&self, other: &CreateRepositoryInput) -> bool
[src]
fn ne(&self, other: &CreateRepositoryInput) -> bool
[src]
impl Default for CreateRepositoryInput
[src]
fn default() -> CreateRepositoryInput
[src]
impl Clone for CreateRepositoryInput
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self