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

pub struct CustomerGatewayProperties {
    pub bgp_asn: Value<u32>,
    pub ip_address: Value<String>,
    pub tags: Option<ValueList<Tag>>,
    pub type_: Value<String>,
}

Properties for the CustomerGateway resource.

Fields

Property BgpAsn.

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

Property IpAddress.

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.

Property Type.

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

Trait Implementations

impl Debug for CustomerGatewayProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for CustomerGatewayProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<CustomerGatewayProperties> for CustomerGateway
[src]

[src]

Performs the conversion.

Auto Trait Implementations