pub struct ResourceSpec {
pub instance_type: Option<String>,
pub sage_maker_image_arn: Option<String>,
}
Expand description
The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. The ARN is stored as metadata in SageMaker Studio notebooks.
Fields§
§instance_type: Option<String>
The instance type.
sage_maker_image_arn: Option<String>
The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
Trait Implementations§
Source§impl Clone for ResourceSpec
impl Clone for ResourceSpec
Source§fn clone(&self) -> ResourceSpec
fn clone(&self) -> ResourceSpec
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 ResourceSpec
impl Debug for ResourceSpec
Source§impl Default for ResourceSpec
impl Default for ResourceSpec
Source§fn default() -> ResourceSpec
fn default() -> ResourceSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourceSpec
impl<'de> Deserialize<'de> for ResourceSpec
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 ResourceSpec
impl PartialEq for ResourceSpec
Source§impl Serialize for ResourceSpec
impl Serialize for ResourceSpec
impl StructuralPartialEq for ResourceSpec
Auto Trait Implementations§
impl Freeze for ResourceSpec
impl RefUnwindSafe for ResourceSpec
impl Send for ResourceSpec
impl Sync for ResourceSpec
impl Unpin for ResourceSpec
impl UnwindSafe for ResourceSpec
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