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 app's Amazon Resource Name (ARN).
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§
Source§impl Clone for DescribeAppResponse
impl Clone for DescribeAppResponse
Source§fn clone(&self) -> DescribeAppResponse
fn clone(&self) -> DescribeAppResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescribeAppResponse
impl Debug for DescribeAppResponse
Source§impl Default for DescribeAppResponse
impl Default for DescribeAppResponse
Source§fn default() -> DescribeAppResponse
fn default() -> DescribeAppResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeAppResponse
impl<'de> Deserialize<'de> for DescribeAppResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeAppResponse
impl PartialEq for DescribeAppResponse
impl StructuralPartialEq for DescribeAppResponse
Auto Trait Implementations§
impl Freeze for DescribeAppResponse
impl RefUnwindSafe for DescribeAppResponse
impl Send for DescribeAppResponse
impl Sync for DescribeAppResponse
impl Unpin for DescribeAppResponse
impl UnwindSafe for DescribeAppResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more