pub struct AppImageConfigDetails {
pub app_image_config_arn: Option<String>,
pub app_image_config_name: Option<String>,
pub creation_time: Option<f64>,
pub kernel_gateway_image_config: Option<KernelGatewayImageConfig>,
pub last_modified_time: Option<f64>,
}
Expand description
The configuration for running a SageMaker image as a KernelGateway app.
Fields§
§app_image_config_arn: Option<String>
The Amazon Resource Name (ARN) of the AppImageConfig.
app_image_config_name: Option<String>
The name of the AppImageConfig. Must be unique to your account.
creation_time: Option<f64>
When the AppImageConfig was created.
kernel_gateway_image_config: Option<KernelGatewayImageConfig>
The configuration for the file system and kernels in the SageMaker image.
last_modified_time: Option<f64>
When the AppImageConfig was last modified.
Trait Implementations§
Source§impl Clone for AppImageConfigDetails
impl Clone for AppImageConfigDetails
Source§fn clone(&self) -> AppImageConfigDetails
fn clone(&self) -> AppImageConfigDetails
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 AppImageConfigDetails
impl Debug for AppImageConfigDetails
Source§impl Default for AppImageConfigDetails
impl Default for AppImageConfigDetails
Source§fn default() -> AppImageConfigDetails
fn default() -> AppImageConfigDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppImageConfigDetails
impl<'de> Deserialize<'de> for AppImageConfigDetails
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 AppImageConfigDetails
impl PartialEq for AppImageConfigDetails
impl StructuralPartialEq for AppImageConfigDetails
Auto Trait Implementations§
impl Freeze for AppImageConfigDetails
impl RefUnwindSafe for AppImageConfigDetails
impl Send for AppImageConfigDetails
impl Sync for AppImageConfigDetails
impl Unpin for AppImageConfigDetails
impl UnwindSafe for AppImageConfigDetails
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