put_resource_policy
(**kwargs)¶Attaches a resource-based policy to a custom model. You can use this policy to authorize an entity in another AWS account to import the custom model, which replicates it in Amazon Comprehend in their account.
See also: AWS API Documentation
Request Syntax
response = client.put_resource_policy(
ResourceArn='string',
ResourcePolicy='string',
PolicyRevisionId='string'
)
[REQUIRED]
The Amazon Resource Name (ARN) of the custom model to attach the policy to.
[REQUIRED]
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"]}'
dict
Response Syntax
{
'PolicyRevisionId': 'string'
}
Response Structure
(dict) --
PolicyRevisionId (string) --
The revision ID of the policy. Each time you modify a policy, Amazon Comprehend assigns a new revision ID, and it deletes the prior version of the policy.
Exceptions
Comprehend.Client.exceptions.InvalidRequestException
Comprehend.Client.exceptions.ResourceNotFoundException
Comprehend.Client.exceptions.InternalServerException