Class: Aws::VerifiedPermissions::Types::ContextDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::ContextDefinition
- Defined in:
- gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb
Overview
ContextDefinition is a union - when making an API calls you must set exactly one of the members.
ContextDefinition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ContextDefinition corresponding to the set member.
Contains additional details about the context of the request. Verified
Permissions evaluates this information in an authorization request as
part of the when
and unless
clauses in a policy.
This data type is used as a request parameter for the IsAuthorized, BatchIsAuthorized, and IsAuthorizedWithToken operations.
Example:
"context":\{"contextMap":\{"<KeyName1>":\{"boolean":true\},"<KeyName2>":\{"long":1234\}\}\}
Direct Known Subclasses
Defined Under Namespace
Classes: ContextMap, Unknown
Constant Summary collapse
- SENSITIVE =
[:context_map]
Instance Attribute Summary collapse
-
#context_map ⇒ Hash<String,Types::AttributeValue>
An list of attributes that are needed to successfully evaluate an authorization request.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#context_map ⇒ Hash<String,Types::AttributeValue>
An list of attributes that are needed to successfully evaluate an authorization request. Each attribute in this array must include a map of a data type and its value.
Example:
"contextMap":\{"<KeyName1>":\{"boolean":true\},"<KeyName2>":\{"long":1234\}\}
879 880 881 882 883 884 885 886 887 888 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 879 class ContextDefinition < Struct.new( :context_map, :unknown) SENSITIVE = [:context_map] include Aws::Structure include Aws::Structure::Union class ContextMap < ContextDefinition; end class Unknown < ContextDefinition; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
879 880 881 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 879 def unknown @unknown end |