Module Values.RouteHasOutOfScopeEndpointViolationSource

Contains details about the route endpoint that violates the policy scope.

Sourcetype nonrec t = {
  1. subnetId : ResourceId.t option;
    (*

    The ID of the subnet associated with the route that violates the policy scope.

    *)
  2. vpcId : ResourceId.t option;
    (*

    The VPC ID of the route that violates the policy scope.

    *)
  3. routeTableId : ResourceId.t option;
    (*

    The ID of the route table.

    *)
  4. violatingRoutes : Routes.t option;
    (*

    The list of routes that violate the route table.

    *)
  5. subnetAvailabilityZone : LengthBoundedString.t option;
    (*

    The subnet's Availability Zone.

    *)
  6. subnetAvailabilityZoneId : LengthBoundedString.t option;
    (*

    The ID of the subnet's Availability Zone.

    *)
  7. currentFirewallSubnetRouteTable : ResourceId.t option;
    (*

    The route table associated with the current firewall subnet.

    *)
  8. firewallSubnetId : ResourceId.t option;
    (*

    The ID of the firewall subnet.

    *)
  9. firewallSubnetRoutes : Routes.t option;
    (*

    The list of firewall subnet routes.

    *)
  10. internetGatewayId : ResourceId.t option;
    (*

    The ID of the Internet Gateway.

    *)
  11. currentInternetGatewayRouteTable : ResourceId.t option;
    (*

    The current route table associated with the Internet Gateway.

    *)
  12. internetGatewayRoutes : Routes.t option;
    (*

    The routes in the route table associated with the Internet Gateway.

    *)
}
Sourceval make : ?subnetId:??? -> ?vpcId:??? -> ?routeTableId:??? -> ?violatingRoutes:??? -> ?subnetAvailabilityZone:??? -> ?subnetAvailabilityZoneId:??? -> ?currentFirewallSubnetRouteTable:??? -> ?firewallSubnetId:??? -> ?firewallSubnetRoutes:??? -> ?internetGatewayId:??? -> ?currentInternetGatewayRouteTable:??? -> ?internetGatewayRoutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of LengthBoundedString.t ]) list ] list | `String of ResourceId.t ]) 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