Module Values.PutResourcePolicyRequestSource

Attaches a resource-based policy to a custom model. You can use this policy to authorize an entity in another Amazon Web Services account to import the custom model, which replicates it in Amazon Comprehend in their account.

Sourcetype nonrec t = {
  1. resourceArn : ComprehendModelArn.t;
    (*

    The Amazon Resource Name (ARN) of the custom model to attach the policy to.

    *)
  2. resourcePolicy : Policy.t;
    (*

    The JSON resource-based policy to attach to your custom model. Provide your JSON as a UTF-8 encoded string without line breaks. To provide valid JSON for your policy, enclose the attribute names and values in double quotes. If the JSON body is also enclosed in double quotes, then you must escape the double quotes that are inside the policy: "{\"attribute\": \"value\", \"attribute\": [\"value\"]}" To avoid escaping quotes, you can use single quotes to enclose the policy and double quotes to enclose the JSON names and values: '{"attribute": "value", "attribute": ["value"]}'

    *)
  3. policyRevisionId : PolicyRevisionId.t option;
    (*

    The revision ID that Amazon Comprehend assigned to the policy that you are updating. If you are creating a new policy that has no prior version, don't use this parameter. Amazon Comprehend creates the revision ID for you.

    *)
}
Sourceval context_ : string
Sourceval make : ?policyRevisionId:??? -> resourceArn:ComprehendModelArn.t -> resourcePolicy:Policy.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ComprehendModelArn.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