Class: Aws::VerifiedPermissions::Types::BatchIsAuthorizedInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::BatchIsAuthorizedInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-verifiedpermissions/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entities ⇒ Types::EntitiesDefinition
(Optional) Specifies the list of resources and principals and their associated attributes that Verified Permissions can examine when evaluating the policies.
-
#policy_store_id ⇒ String
Specifies the ID of the policy store.
-
#requests ⇒ Array<Types::BatchIsAuthorizedInputItem>
An array of up to 30 requests that you want Verified Permissions to evaluate.
Instance Attribute Details
#entities ⇒ Types::EntitiesDefinition
(Optional) Specifies the list of resources and principals and their associated attributes that Verified Permissions can examine when evaluating the policies. These additional entities and their attributes can be referenced and checked by conditional elements in the policies in the specified policy store.
<note markdown=“1”> You can include only principal and resource entities in this parameter; you can’t include actions. You must specify actions in the schema.
</note>
366 367 368 369 370 371 372 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 366 class BatchIsAuthorizedInput < Struct.new( :policy_store_id, :entities, :requests) SENSITIVE = [] include Aws::Structure end |
#policy_store_id ⇒ String
Specifies the ID of the policy store. Policies in this policy store will be used to make the authorization decisions for the input.
366 367 368 369 370 371 372 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 366 class BatchIsAuthorizedInput < Struct.new( :policy_store_id, :entities, :requests) SENSITIVE = [] include Aws::Structure end |
#requests ⇒ Array<Types::BatchIsAuthorizedInputItem>
An array of up to 30 requests that you want Verified Permissions to evaluate.
366 367 368 369 370 371 372 |
# File 'lib/aws-sdk-verifiedpermissions/types.rb', line 366 class BatchIsAuthorizedInput < Struct.new( :policy_store_id, :entities, :requests) SENSITIVE = [] include Aws::Structure end |