Struct cfn::aws::ec2::NetworkInterfaceAttachmentProperties [] [src]

pub struct NetworkInterfaceAttachmentProperties {
    pub delete_on_termination: Option<Value<bool>>,
    pub device_index: Value<String>,
    pub instance_id: Value<String>,
    pub network_interface_id: Value<String>,
}

Properties for the NetworkInterfaceAttachment resource.

Fields

Property DeleteOnTermination.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DeviceIndex.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property InstanceId.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property NetworkInterfaceId.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for NetworkInterfaceAttachmentProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for NetworkInterfaceAttachmentProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<NetworkInterfaceAttachmentProperties> for NetworkInterfaceAttachment
[src]

[src]

Performs the conversion.

Auto Trait Implementations