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

pub struct VPCPeeringConnectionProperties {
    pub peer_owner_id: Option<Value<String>>,
    pub peer_role_arn: Option<Value<String>>,
    pub peer_vpc_id: Value<String>,
    pub tags: Option<ValueList<Tag>>,
    pub vpc_id: Value<String>,
}

Properties for the VPCPeeringConnection resource.

Fields

Property PeerOwnerId.

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

Property PeerRoleArn.

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

Property PeerVpcId.

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

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

Trait Implementations

impl Debug for VPCPeeringConnectionProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for VPCPeeringConnectionProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<VPCPeeringConnectionProperties> for VPCPeeringConnection
[src]

[src]

Performs the conversion.

Auto Trait Implementations