Class: Aws::BedrockAgentCoreControl::Types::CedarPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::CedarPolicy
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Represents a Cedar policy statement within the AgentCore Policy system. Cedar is a policy language designed for authorization that provides human-readable, analyzable, and high-performance policy evaluation for controlling agent behavior and access decisions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#statement ⇒ String
The Cedar policy statement that defines the authorization logic.
Instance Attribute Details
#statement ⇒ String
The Cedar policy statement that defines the authorization logic. This statement follows Cedar syntax and specifies principals, actions, resources, and conditions that determine when access should be allowed or denied.
616 617 618 619 620 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 616 class CedarPolicy < Struct.new( :statement) SENSITIVE = [] include Aws::Structure end |