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

pub struct NetworkInterfaceProperties {
    pub description: Option<Value<String>>,
    pub group_set: Option<ValueList<String>>,
    pub interface_type: Option<Value<String>>,
    pub ipv6_address_count: Option<Value<u32>>,
    pub ipv6_addresses: Option<Value<InstanceIpv6Address>>,
    pub private_ip_address: Option<Value<String>>,
    pub private_ip_addresses: Option<ValueList<PrivateIpAddressSpecification>>,
    pub secondary_private_ip_address_count: Option<Value<u32>>,
    pub source_dest_check: Option<Value<bool>>,
    pub subnet_id: Value<String>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the NetworkInterface resource.

Fields

Property Description.

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

Update type: Immutable. AWS CloudFormation replaces 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 PrivateIpAddress.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property PrivateIpAddresses.

Update type: Conditional. Conditional updates can be mutable or immutable, depending on, for example, which other properties you updated. For more information, see the relevant resource type documentation.

Property SecondaryPrivateIpAddressCount.

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

Property SourceDestCheck.

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

Property SubnetId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Tags.

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

Trait Implementations

impl Debug for NetworkInterfaceProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for NetworkInterfaceProperties
[src]

[src]

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

impl Serialize for NetworkInterfaceProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<NetworkInterfaceProperties> for NetworkInterface
[src]

[src]

Performs the conversion.

Auto Trait Implementations