[][src]Struct rusoto_glue::CreateRegistryInput

pub struct CreateRegistryInput {
    pub description: Option<String>,
    pub registry_name: String,
    pub tags: Option<HashMap<String, String>>,
}

Fields

description: Option<String>

A description of the registry. If description is not provided, there will not be any default value for this.

registry_name: String

Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.

tags: Option<HashMap<String, String>>

AWS tags that contain a key value pair and may be searched by console, command line, or API.

Trait Implementations

impl Clone for CreateRegistryInput[src]

impl Debug for CreateRegistryInput[src]

impl Default for CreateRegistryInput[src]

impl PartialEq<CreateRegistryInput> for CreateRegistryInput[src]

impl Serialize for CreateRegistryInput[src]

impl StructuralPartialEq for CreateRegistryInput[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> Instrument 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> 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.