[][src]Struct rusoto_sagemaker::DescribeAppResponse

pub struct DescribeAppResponse {
    pub app_arn: Option<String>,
    pub app_name: Option<String>,
    pub app_type: Option<String>,
    pub creation_time: Option<f64>,
    pub domain_id: Option<String>,
    pub failure_reason: Option<String>,
    pub last_health_check_timestamp: Option<f64>,
    pub last_user_activity_timestamp: Option<f64>,
    pub resource_spec: Option<ResourceSpec>,
    pub status: Option<String>,
    pub user_profile_name: Option<String>,
}

Fields

app_arn: Option<String>

The Amazon Resource Name (ARN) of the app.

app_name: Option<String>

The name of the app.

app_type: Option<String>

The type of app.

creation_time: Option<f64>

The creation time.

domain_id: Option<String>

The domain ID.

failure_reason: Option<String>

The failure reason.

last_health_check_timestamp: Option<f64>

The timestamp of the last health check.

last_user_activity_timestamp: Option<f64>

The timestamp of the last user's activity.

resource_spec: Option<ResourceSpec>

The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.

status: Option<String>

The status.

user_profile_name: Option<String>

The user profile name.

Trait Implementations

impl Clone for DescribeAppResponse[src]

impl Debug for DescribeAppResponse[src]

impl Default for DescribeAppResponse[src]

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

impl PartialEq<DescribeAppResponse> for DescribeAppResponse[src]

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