Class: Aws::BedrockDataAutomation::Types::EntityDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockDataAutomation::Types::EntityDetails
- Defined in:
- gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb
Overview
Note:
EntityDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EntityDetails corresponding to the set member.
Detailed information about an entity
Direct Known Subclasses
Defined Under Namespace
Classes: Unknown, Vocabulary
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#vocabulary ⇒ Types::VocabularyEntity
Vocabulary entity with detailed information.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
1358 1359 1360 |
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 1358 def unknown @unknown end |
#vocabulary ⇒ Types::VocabularyEntity
Vocabulary entity with detailed information
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 |
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 1358 class EntityDetails < Struct.new( :vocabulary, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vocabulary < EntityDetails; end class Unknown < EntityDetails; end end |