[][src]Struct rusoto_directconnect::DirectConnectGatewayAssociationProposal

pub struct DirectConnectGatewayAssociationProposal {
    pub associated_gateway: Option<AssociatedGateway>,
    pub direct_connect_gateway_id: Option<String>,
    pub direct_connect_gateway_owner_account: Option<String>,
    pub existing_allowed_prefixes_to_direct_connect_gateway: Option<Vec<RouteFilterPrefix>>,
    pub proposal_id: Option<String>,
    pub proposal_state: Option<String>,
    pub requested_allowed_prefixes_to_direct_connect_gateway: Option<Vec<RouteFilterPrefix>>,
}

Information about the proposal request to attach a virtual private gateway to a Direct Connect gateway.

Fields

associated_gateway: Option<AssociatedGateway>

Information about the associated gateway.

direct_connect_gateway_id: Option<String>

The ID of the Direct Connect gateway.

direct_connect_gateway_owner_account: Option<String>

The ID of the AWS account that owns the Direct Connect gateway.

existing_allowed_prefixes_to_direct_connect_gateway: Option<Vec<RouteFilterPrefix>>

The existing Amazon VPC prefixes advertised to the Direct Connect gateway.

proposal_id: Option<String>

The ID of the association proposal.

proposal_state: Option<String>

The state of the proposal. The following are possible values:

  • accepted: The proposal has been accepted. The Direct Connect gateway association is available to use in this state.

  • deleted: The proposal has been deleted by the owner that made the proposal. The Direct Connect gateway association cannot be used in this state.

  • requested: The proposal has been requested. The Direct Connect gateway association cannot be used in this state.

requested_allowed_prefixes_to_direct_connect_gateway: Option<Vec<RouteFilterPrefix>>

The Amazon VPC prefixes to advertise to the Direct Connect gateway.

Trait Implementations

impl Clone for DirectConnectGatewayAssociationProposal[src]

impl Debug for DirectConnectGatewayAssociationProposal[src]

impl Default for DirectConnectGatewayAssociationProposal[src]

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

impl PartialEq<DirectConnectGatewayAssociationProposal> for DirectConnectGatewayAssociationProposal[src]

impl StructuralPartialEq for DirectConnectGatewayAssociationProposal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.