Module Values_3.VpcBlockPublicAccessOptionsSource

VPC Block Public Access (BPA) enables you to block resources in VPCs and subnets that you own in a Region from reaching or being reached from the internet through internet gateways and egress-only internet gateways. To learn more about VPC BPA, see Block public access to VPCs and subnets in the Amazon VPC User Guide.

Sourcetype nonrec t = {
  1. awsAccountId : Values_0.String_.t option;
    (*

    An Amazon Web Services account ID.

    *)
  2. awsRegion : Values_0.String_.t option;
    (*

    An Amazon Web Services Region.

    *)
  3. state : Values_2.VpcBlockPublicAccessState.t option;
    (*

    The current state of VPC BPA.

    *)
  4. internetGatewayBlockMode : Values_2.InternetGatewayBlockMode.t option;
    (*

    The current mode of VPC BPA. off: VPC BPA is not enabled and traffic is allowed to and from internet gateways and egress-only internet gateways in this Region. block-bidirectional: Block all traffic to and from internet gateways and egress-only internet gateways in this Region (except for excluded VPCs and subnets). block-ingress: Block all internet traffic to the VPCs in this Region (except for VPCs or subnets which are excluded). Only traffic to and from NAT gateways and egress-only internet gateways is allowed because these gateways only allow outbound connections to be established.

    *)
  5. reason : Values_0.String_.t option;
    (*

    The reason for the current state.

    *)
  6. lastUpdateTimestamp : Values_0.MillisecondDateTime.t option;
    (*

    The last time the VPC BPA mode was updated.

    *)
  7. managedBy : Values_2.ManagedBy.t option;
    (*

    The entity that manages the state of VPC BPA. Possible values include: account - The state is managed by the account. declarative-policy - The state is managed by a declarative policy and can't be modified by the account.

    *)
  8. exclusionsAllowed : Values_2.VpcBlockPublicAccessExclusionsAllowed.t option;
    (*

    Determines if exclusions are allowed. If you have enabled VPC BPA at the Organization level, exclusions may be not-allowed. Otherwise, they are allowed.

    *)
}
Sourceval make : ?awsAccountId:??? -> ?awsRegion:??? -> ?state:??? -> ?internetGatewayBlockMode:??? -> ?reason:??? -> ?lastUpdateTimestamp:??? -> ?managedBy:??? -> ?exclusionsAllowed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.t | `Timestamp of Values_0.MillisecondDateTime.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