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

pub struct VPCEndpointProperties {
    pub policy_document: Option<Value<Value>>,
    pub route_table_ids: Option<ValueList<String>>,
    pub service_name: Value<String>,
    pub vpc_id: Value<String>,
}

Properties for the VPCEndpoint resource.

Fields

Property PolicyDocument.

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

Property RouteTableIds.

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

Property ServiceName.

Update type: Immutable. AWS CloudFormation replaces 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 VPCEndpointProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for VPCEndpointProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for VPCEndpointProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<VPCEndpointProperties> for VPCEndpoint
[src]

[src]

Performs the conversion.

Auto Trait Implementations