Module Values.DescribeResourcePoliciesRequestSource

Lists the resource policies in this account.

Sourcetype nonrec t = {
  1. nextToken : NextToken.t option;
  2. limit : DescribeLimit.t option;
    (*

    The maximum number of resource policies to be displayed with one call of this API.

    *)
  3. resourceArn : Arn.t option;
    (*

    The ARN of the CloudWatch Logs resource for which to query the resource policy.

    *)
  4. policyScope : PolicyScope.t option;
    (*

    Specifies the scope of the resource policy. Valid values are ACCOUNT or RESOURCE. When not specified, defaults to ACCOUNT.

    *)
}
Sourceval make : ?nextToken:??? -> ?limit:??? -> ?resourceArn:??? -> ?policyScope:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DescribeLimit.t | `String of NextToken.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