pub struct InfrastructureConfigurationSummary {
pub arn: Option<String>,
pub date_created: Option<String>,
pub date_updated: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub resource_tags: Option<HashMap<String, String>>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
The infrastructure used when building EC2 AMIs.
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the infrastructure configuration.
date_created: Option<String>
The date on which the infrastructure configuration was created.
date_updated: Option<String>
The date on which the infrastructure configuration was last updated.
description: Option<String>
The description of the infrastructure configuration.
name: Option<String>
The name of the infrastructure configuration.
The tags attached to the image created by Image Builder.
The tags of the infrastructure configuration.
Trait Implementations§
Source§impl Clone for InfrastructureConfigurationSummary
impl Clone for InfrastructureConfigurationSummary
Source§fn clone(&self) -> InfrastructureConfigurationSummary
fn clone(&self) -> InfrastructureConfigurationSummary
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 Default for InfrastructureConfigurationSummary
impl Default for InfrastructureConfigurationSummary
Source§fn default() -> InfrastructureConfigurationSummary
fn default() -> InfrastructureConfigurationSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InfrastructureConfigurationSummary
impl<'de> Deserialize<'de> for InfrastructureConfigurationSummary
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 InfrastructureConfigurationSummary
impl PartialEq for InfrastructureConfigurationSummary
Source§fn eq(&self, other: &InfrastructureConfigurationSummary) -> bool
fn eq(&self, other: &InfrastructureConfigurationSummary) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for InfrastructureConfigurationSummary
Auto Trait Implementations§
impl Freeze for InfrastructureConfigurationSummary
impl RefUnwindSafe for InfrastructureConfigurationSummary
impl Send for InfrastructureConfigurationSummary
impl Sync for InfrastructureConfigurationSummary
impl Unpin for InfrastructureConfigurationSummary
impl UnwindSafe for InfrastructureConfigurationSummary
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