[][src]Struct rusoto_sagemaker::CreateEndpointInput

pub struct CreateEndpointInput {
    pub endpoint_config_name: String,
    pub endpoint_name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

endpoint_config_name: String

The name of an endpoint configuration. For more information, see CreateEndpointConfig.

endpoint_name: String

The name of the endpoint.The name must be unique within an AWS Region in your AWS account. The name is case-insensitive in CreateEndpoint, but the case is preserved and must be matched in .

tags: Option<Vec<Tag>>

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

Trait Implementations

impl Clone for CreateEndpointInput[src]

impl Debug for CreateEndpointInput[src]

impl Default for CreateEndpointInput[src]

impl PartialEq<CreateEndpointInput> for CreateEndpointInput[src]

impl Serialize for CreateEndpointInput[src]

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