Module Values.MethodSnapshotSource

Represents a summary of a Method resource, given a particular date and time.

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

    The method's authorization type. Valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, CUSTOM for using a custom authorizer, or COGNITO_USER_POOLS for using a Cognito user pool.

    *)
  2. apiKeyRequired : Boolean.t option;
    (*

    Specifies whether the method requires a valid ApiKey.

    *)
}
Sourceval make : ?authorizationType:??? -> ?apiKeyRequired:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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