Class: Aws::BedrockAgentRuntime::Types::DocumentAclMembership
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::DocumentAclMembership
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockagentruntime/types.rb
Overview
The membership entry for a document access control list (ACL), containing conditions and their logical relation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conditions ⇒ Array<Types::DocumentAclCondition>
The list of conditions that determine membership.
-
#member_relation ⇒ String
The logical relation between conditions.
Instance Attribute Details
#conditions ⇒ Array<Types::DocumentAclCondition>
The list of conditions that determine membership.
2166 2167 2168 2169 2170 2171 |
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2166 class DocumentAclMembership < Struct.new( :conditions, :member_relation) SENSITIVE = [] include Aws::Structure end |
#member_relation ⇒ String
The logical relation between conditions. Valid values: AND – All
conditions must match. OR – At least one condition must match.
2166 2167 2168 2169 2170 2171 |
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2166 class DocumentAclMembership < Struct.new( :conditions, :member_relation) SENSITIVE = [] include Aws::Structure end |