[][src]Struct rusoto_sagemaker::CreateContextRequest

pub struct CreateContextRequest {
    pub context_name: String,
    pub context_type: String,
    pub description: Option<String>,
    pub properties: Option<HashMap<String, String>>,
    pub source: ContextSource,
    pub tags: Option<Vec<Tag>>,
}

Fields

context_name: String

The name of the context. Must be unique to your account in an AWS Region.

context_type: String

The context type.

description: Option<String>

The description of the context.

properties: Option<HashMap<String, String>>

A list of properties to add to the context.

source: ContextSource

The source type, ID, and URI.

tags: Option<Vec<Tag>>

A list of tags to apply to the context.

Trait Implementations

impl Clone for CreateContextRequest[src]

impl Debug for CreateContextRequest[src]

impl Default for CreateContextRequest[src]

impl PartialEq<CreateContextRequest> for CreateContextRequest[src]

impl Serialize for CreateContextRequest[src]

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