Module Values.DirectConnectGatewayAssociationProposalSource

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

Sourcetype nonrec t = {
  1. proposalId : DirectConnectGatewayAssociationProposalId.t option;
    (*

    The ID of the association proposal.

    *)
  2. directConnectGatewayId : DirectConnectGatewayId.t option;
    (*

    The ID of the Direct Connect gateway.

    *)
  3. directConnectGatewayOwnerAccount : OwnerAccount.t option;
    (*

    The ID of the Amazon Web Services account that owns the Direct Connect gateway.

    *)
  4. proposalState : DirectConnectGatewayAssociationProposalState.t option;
    (*

    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.

    *)
  5. associatedGateway : AssociatedGateway.t option;
    (*

    Information about the associated gateway.

    *)
  6. existingAllowedPrefixesToDirectConnectGateway : RouteFilterPrefixList.t option;
    (*

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

    *)
  7. requestedAllowedPrefixesToDirectConnectGateway : RouteFilterPrefixList.t option;
    (*

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

    *)
}
Sourceval make : ?proposalId:??? -> ?directConnectGatewayId:??? -> ?directConnectGatewayOwnerAccount:??? -> ?proposalState:??? -> ?associatedGateway:??? -> ?existingAllowedPrefixesToDirectConnectGateway:??? -> ?requestedAllowedPrefixesToDirectConnectGateway:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of CIDR.t ]) list ] list | `String of DirectConnectGatewayAssociationProposalId.t | `Structure of (string * [> `Enum of string | `String of GatewayIdentifier.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t