Struct cfn::aws::ec2::instance::NetworkInterface [] [src]

pub struct NetworkInterface {
    pub associate_public_ip_address: Option<Value<bool>>,
    pub delete_on_termination: Option<Value<bool>>,
    pub description: Option<Value<String>>,
    pub device_index: Value<String>,
    pub group_set: Option<ValueList<String>>,
    pub ipv6_address_count: Option<Value<u32>>,
    pub ipv6_addresses: Option<ValueList<InstanceIpv6Address>>,
    pub network_interface_id: Option<Value<String>>,
    pub private_ip_address: Option<Value<String>>,
    pub private_ip_addresses: Option<ValueList<PrivateIpAddressSpecification>>,
    pub secondary_private_ip_address_count: Option<Value<u32>>,
    pub subnet_id: Option<Value<String>>,
}

Fields

Property AssociatePublicIpAddress.

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

Property DeleteOnTermination.

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

Property Description.

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 GroupSet.

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

Property Ipv6AddressCount.

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

Property Ipv6Addresses.

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.

Property PrivateIpAddress.

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

Property PrivateIpAddresses.

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

Property SecondaryPrivateIpAddressCount.

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

Property SubnetId.

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

Trait Implementations

impl Debug for NetworkInterface
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for NetworkInterface
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations