pub struct ImageView {Show 32 fields
pub image_id: String,
pub name: String,
pub description: String,
pub state: String,
pub owner_id: String,
pub architecture: String,
pub image_type: String,
pub platform: Option<String>,
pub virtualization_type: String,
pub root_device_type: String,
pub root_device_name: String,
pub public: bool,
pub tags: HashMap<String, String>,
pub source_instance_id: Option<String>,
pub source_instance_type: String,
pub launch_permissions: Vec<LaunchPermissionView>,
pub recycle_bin_state: Option<String>,
pub deprecation_time: Option<String>,
pub recycle_bin_enter_time: Option<String>,
pub product_codes: Vec<(String, String)>,
pub fast_launch_state: Option<FastLaunchStateView>,
pub deregistration_protection: Option<String>,
pub kernel_id: Option<String>,
pub ramdisk_id: Option<String>,
pub ena_support: Option<bool>,
pub sriov_net_support: Option<String>,
pub tpm_support: Option<String>,
pub boot_mode: Option<String>,
pub imds_support: Option<String>,
pub image_location: Option<String>,
pub source_image_id: Option<String>,
pub source_region: Option<String>,
}Fields§
§image_id: String§name: String§description: String§state: String§owner_id: String§architecture: String§image_type: String§platform: Option<String>§virtualization_type: String§root_device_type: String§root_device_name: String§public: bool§source_instance_id: Option<String>§source_instance_type: String§launch_permissions: Vec<LaunchPermissionView>§recycle_bin_state: Option<String>§deprecation_time: Option<String>§recycle_bin_enter_time: Option<String>§product_codes: Vec<(String, String)>§fast_launch_state: Option<FastLaunchStateView>§deregistration_protection: Option<String>§kernel_id: Option<String>§ramdisk_id: Option<String>§ena_support: Option<bool>§sriov_net_support: Option<String>§tpm_support: Option<String>§boot_mode: Option<String>§imds_support: Option<String>§image_location: Option<String>§source_image_id: Option<String>§source_region: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ImageView
impl<'de> Deserialize<'de> for ImageView
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
Auto Trait Implementations§
impl Freeze for ImageView
impl RefUnwindSafe for ImageView
impl Send for ImageView
impl Sync for ImageView
impl Unpin for ImageView
impl UnsafeUnpin for ImageView
impl UnwindSafe for ImageView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.