Class: Aws::BedrockDataAutomation::Types::DataAutomationLibraryEntitySummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockDataAutomation::Types::DataAutomationLibraryEntitySummary
- Defined in:
- gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb
Overview
Note:
DataAutomationLibraryEntitySummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataAutomationLibraryEntitySummary corresponding to the set member.
Summarized 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::VocabularyEntitySummary
Summary of a Vocabulary entity.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
774 775 776 |
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 774 def unknown @unknown end |
#vocabulary ⇒ Types::VocabularyEntitySummary
Summary of a Vocabulary entity
774 775 776 777 778 779 780 781 782 783 |
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 774 class DataAutomationLibraryEntitySummary < Struct.new( :vocabulary, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vocabulary < DataAutomationLibraryEntitySummary; end class Unknown < DataAutomationLibraryEntitySummary; end end |