Module Values.CheckNoPublicAccessResponseSource

Checks whether a resource policy can grant public access to the specified resource type.

Sourcetype nonrec t = {
  1. result : CheckNoPublicAccessResult.t option;
    (*

    The result of the check for public access to the specified resource type. If the result is PASS, the policy doesn't allow public access to the specified resource type. If the result is FAIL, the policy might allow public access to the specified resource type.

    *)
  2. message : String_.t option;
    (*

    The message indicating whether the specified policy allows public access to resources.

    *)
  3. reasons : ReasonSummaryList.t option;
    (*

    A list of reasons why the specified resource policy grants public access for the resource type.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `UnprocessableEntityException of UnprocessableEntityException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?result:??? -> ?message:??? -> ?reasons:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `InvalidParameterException of InvalidParameterException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `UnprocessableEntityException of UnprocessableEntityException.t | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `InvalidParameterException of InvalidParameterException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `UnprocessableEntityException of UnprocessableEntityException.t | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.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