Module Values.RevokeEndpointAccessMessageSource

Revokes access to a cluster.

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

    The cluster to revoke access from.

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

    The Amazon Web Services account ID whose access is to be revoked.

    *)
  3. vpcIds : VpcIdentifierList.t option;
    (*

    The virtual private cloud (VPC) identifiers for which access is to be revoked.

    *)
  4. force : Boolean.t option;
    (*

    Indicates whether to force the revoke action. If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.

    *)
}
Sourceval make : ?clusterIdentifier:??? -> ?account:??? -> ?vpcIds:??? -> ?force:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] 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