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

pub struct RouteProperties {
    pub destination_cidr_block: Option<Value<String>>,
    pub destination_ipv6_cidr_block: Option<Value<String>>,
    pub egress_only_internet_gateway_id: Option<Value<String>>,
    pub gateway_id: Option<Value<String>>,
    pub instance_id: Option<Value<String>>,
    pub nat_gateway_id: Option<Value<String>>,
    pub network_interface_id: Option<Value<String>>,
    pub route_table_id: Value<String>,
    pub vpc_peering_connection_id: Option<Value<String>>,
}

Properties for the Route resource.

Fields

Property DestinationCidrBlock.

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

Property DestinationIpv6CidrBlock.

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

Property EgressOnlyInternetGatewayId.

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

Property GatewayId.

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

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

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

Property VpcPeeringConnectionId.

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

Trait Implementations

impl Debug for RouteProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for RouteProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<RouteProperties> for Route
[src]

[src]

Performs the conversion.

Auto Trait Implementations