[][src]Struct rusoto_sagemaker::DescribeContextResponse

pub struct DescribeContextResponse {
    pub context_arn: Option<String>,
    pub context_name: Option<String>,
    pub context_type: Option<String>,
    pub created_by: Option<UserContext>,
    pub creation_time: Option<f64>,
    pub description: Option<String>,
    pub last_modified_by: Option<UserContext>,
    pub last_modified_time: Option<f64>,
    pub properties: Option<HashMap<String, String>>,
    pub source: Option<ContextSource>,
}

Fields

context_arn: Option<String>

The Amazon Resource Name (ARN) of the context.

context_name: Option<String>

The name of the context.

context_type: Option<String>

The type of the context.

created_by: Option<UserContext>creation_time: Option<f64>

When the context was created.

description: Option<String>

The description of the context.

last_modified_by: Option<UserContext>last_modified_time: Option<f64>

When the context was last modified.

properties: Option<HashMap<String, String>>

A list of the context's properties.

source: Option<ContextSource>

The source of the context.

Trait Implementations

impl Clone for DescribeContextResponse[src]

impl Debug for DescribeContextResponse[src]

impl Default for DescribeContextResponse[src]

impl<'de> Deserialize<'de> for DescribeContextResponse[src]

impl PartialEq<DescribeContextResponse> for DescribeContextResponse[src]

impl StructuralPartialEq for DescribeContextResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.