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

pub struct EIPAssociationProperties {
    pub allocation_id: Option<Value<String>>,
    pub eip: Option<Value<String>>,
    pub instance_id: Option<Value<String>>,
    pub network_interface_id: Option<Value<String>>,
    pub private_ip_address: Option<Value<String>>,
}

Properties for the EIPAssociation resource.

Fields

Property AllocationId.

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

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

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

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

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

Trait Implementations

impl Debug for EIPAssociationProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for EIPAssociationProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<EIPAssociationProperties> for EIPAssociation
[src]

[src]

Performs the conversion.

Auto Trait Implementations