Class: Aws::VerifiedPermissions::Types::BatchIsAuthorizedWithTokenInputItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::BatchIsAuthorizedWithTokenInputItem
- Defined in:
- gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb
Overview
An authorization request that you include in a
BatchIsAuthorizedWithToken
API request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ Types::ActionIdentifier
Specifies the requested action to be authorized.
-
#context ⇒ Types::ContextDefinition
Specifies additional context that can be used to make more granular authorization decisions.
-
#resource ⇒ Types::EntityIdentifier
Specifies the resource that you want an authorization decision for.
Instance Attribute Details
#action ⇒ Types::ActionIdentifier
Specifies the requested action to be authorized. For example,
PhotoFlash::ReadPhoto
.
362 363 364 365 366 367 368 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 362 class BatchIsAuthorizedWithTokenInputItem < Struct.new( :action, :resource, :context) SENSITIVE = [] include Aws::Structure end |
#context ⇒ Types::ContextDefinition
Specifies additional context that can be used to make more granular authorization decisions.
362 363 364 365 366 367 368 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 362 class BatchIsAuthorizedWithTokenInputItem < Struct.new( :action, :resource, :context) SENSITIVE = [] include Aws::Structure end |
#resource ⇒ Types::EntityIdentifier
Specifies the resource that you want an authorization decision for.
For example, PhotoFlash::Photo
.
362 363 364 365 366 367 368 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 362 class BatchIsAuthorizedWithTokenInputItem < Struct.new( :action, :resource, :context) SENSITIVE = [] include Aws::Structure end |