#[non_exhaustive]pub enum ContextDefinition {
ContextMap(HashMap<String, AttributeValue>),
Unknown,
}Expand description
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}}}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ContextMap(HashMap<String, 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}}
Unknown
The Unknown variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
An unknown enum variant
Note: If you encounter this error, consider upgrading your SDK to the latest version.
The Unknown variant represents cases where the server sent a value that wasn’t recognized
by the client. This can happen when the server adds new functionality, but the client has not been updated.
To investigate this, consider turning on debug logging to print the raw HTTP response.
Implementations§
source§impl ContextDefinition
impl ContextDefinition
sourcepub fn as_context_map(&self) -> Result<&HashMap<String, AttributeValue>, &Self>
pub fn as_context_map(&self) -> Result<&HashMap<String, AttributeValue>, &Self>
Tries to convert the enum instance into ContextMap, extracting the inner HashMap.
Returns Err(&Self) if it can’t be converted.
sourcepub fn is_context_map(&self) -> bool
pub fn is_context_map(&self) -> bool
Returns true if this is a ContextMap.
sourcepub fn is_unknown(&self) -> bool
pub fn is_unknown(&self) -> bool
Returns true if the enum instance is the Unknown variant.
Trait Implementations§
source§impl Clone for ContextDefinition
impl Clone for ContextDefinition
source§fn clone(&self) -> ContextDefinition
fn clone(&self) -> ContextDefinition
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ContextDefinition
impl Debug for ContextDefinition
source§impl PartialEq for ContextDefinition
impl PartialEq for ContextDefinition
source§fn eq(&self, other: &ContextDefinition) -> bool
fn eq(&self, other: &ContextDefinition) -> bool
self and other values to be equal, and is used
by ==.