Class: Aws::BedrockAgentRuntime::Types::DocumentAclMembership

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#conditionsArray<Types::DocumentAclCondition>

The list of conditions that determine membership.

Returns:



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_relationString

The logical relation between conditions. Valid values: AND – All conditions must match. OR – At least one condition must match.

Returns:

  • (String)


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