[][src]Struct rusoto_imagebuilder::InfrastructureConfiguration

pub struct InfrastructureConfiguration {
    pub arn: Option<String>,
    pub date_created: Option<String>,
    pub date_updated: Option<String>,
    pub description: Option<String>,
    pub instance_profile_name: Option<String>,
    pub instance_types: Option<Vec<String>>,
    pub key_pair: Option<String>,
    pub logging: Option<Logging>,
    pub name: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub sns_topic_arn: Option<String>,
    pub subnet_id: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub terminate_instance_on_failure: Option<bool>,
}

Details of the infrastructure configuration.

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.

instance_profile_name: Option<String>

The instance profile of the infrastructure configuration.

instance_types: Option<Vec<String>>

The instance types of the infrastructure configuration.

key_pair: Option<String>

The EC2 key pair of the infrastructure configuration.

logging: Option<Logging>

The logging configuration of the infrastructure configuration.

name: Option<String>

The name of the infrastructure configuration.

security_group_ids: Option<Vec<String>>

The security group IDs of the infrastructure configuration.

sns_topic_arn: Option<String>

The SNS topic Amazon Resource Name (ARN) of the infrastructure configuration.

subnet_id: Option<String>

The subnet ID of the infrastructure configuration.

tags: Option<HashMap<String, String>>

The tags of the infrastructure configuration.

terminate_instance_on_failure: Option<bool>

The terminate instance on failure configuration of the infrastructure configuration.

Trait Implementations

impl Clone for InfrastructureConfiguration[src]

impl Debug for InfrastructureConfiguration[src]

impl Default for InfrastructureConfiguration[src]

impl<'de> Deserialize<'de> for InfrastructureConfiguration[src]

impl PartialEq<InfrastructureConfiguration> for InfrastructureConfiguration[src]

impl StructuralPartialEq for InfrastructureConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.