Module Values.DeleteResourcePolicyRequestSource

Deletes a resource policy from this account. This revokes the access of the identities in that policy to put log events to this account.

Sourcetype nonrec t = {
  1. policyName : PolicyName.t option;
    (*

    The name of the policy to be revoked. This parameter is required.

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

    The ARN of the CloudWatch Logs resource for which the resource policy needs to be deleted

    *)
  3. expectedRevisionId : ExpectedRevisionId.t option;
    (*

    The expected revision ID of the resource policy. Required when deleting a resource-scoped policy to prevent concurrent modifications.

    *)
}
Sourceval make : ?policyName:??? -> ?resourceArn:??? -> ?expectedRevisionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyName.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