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

pub struct VPCGatewayAttachmentProperties {
    pub internet_gateway_id: Option<Value<String>>,
    pub vpc_id: Value<String>,
    pub vpn_gateway_id: Option<Value<String>>,
}

Properties for the VPCGatewayAttachment resource.

Fields

Property InternetGatewayId.

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

Property VpcId.

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

Property VpnGatewayId.

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

Trait Implementations

impl Debug for VPCGatewayAttachmentProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for VPCGatewayAttachmentProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<VPCGatewayAttachmentProperties> for VPCGatewayAttachment
[src]

[src]

Performs the conversion.

Auto Trait Implementations