Class: Aws::Comprehend::Types::PutResourcePolicyRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-comprehend/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#policy_revision_idString

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.

Returns:

  • (String)


6444
6445
6446
6447
6448
6449
6450
# File 'lib/aws-sdk-comprehend/types.rb', line 6444

class PutResourcePolicyRequest < Struct.new(
  :resource_arn,
  :resource_policy,
  :policy_revision_id)
  SENSITIVE = []
  include Aws::Structure
end

#resource_arnString

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

Returns:

  • (String)


6444
6445
6446
6447
6448
6449
6450
# File 'lib/aws-sdk-comprehend/types.rb', line 6444

class PutResourcePolicyRequest < Struct.new(
  :resource_arn,
  :resource_policy,
  :policy_revision_id)
  SENSITIVE = []
  include Aws::Structure
end

#resource_policyString

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:

‘“”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:

‘’“value”, “attribute”: [“value”]‘`

Returns:

  • (String)


6444
6445
6446
6447
6448
6449
6450
# File 'lib/aws-sdk-comprehend/types.rb', line 6444

class PutResourcePolicyRequest < Struct.new(
  :resource_arn,
  :resource_policy,
  :policy_revision_id)
  SENSITIVE = []
  include Aws::Structure
end