Module Values.DescribeHomeRegionControlsRequestSource

This API permits filtering on the ControlId and HomeRegion fields.

Sourcetype nonrec t = {
  1. controlId : ControlId.t option;
    (*

    The ControlID is a unique identifier string of your HomeRegionControl object.

    *)
  2. homeRegion : HomeRegion.t option;
    (*

    The name of the home region you'd like to view.

    *)
  3. target : Target.t option;
    (*

    The target parameter specifies the identifier to which the home region is applied, which is always of type ACCOUNT. It applies the home region to the current ACCOUNT.

    *)
  4. maxResults : DescribeHomeRegionControlsMaxResults.t option;
    (*

    The maximum number of filtering results to display per page.

    *)
  5. nextToken : Token.t option;
    (*

    If a NextToken was returned by a previous call, more results are available. To retrieve the next page of results, make the call again using the returned token in NextToken.

    *)
}
Sourceval make : ?controlId:??? -> ?homeRegion:??? -> ?target:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DescribeHomeRegionControlsMaxResults.t | `String of ControlId.t | `Structure of (string * [> `Enum of string | `String of TargetId.t ]) list ]) 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