Class: Aws::BedrockDataAutomation::Types::UpsertEntityInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockDataAutomation::Types::UpsertEntityInfo
- Defined in:
- gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb
Overview
Note:
UpsertEntityInfo is a union - when making an API calls you must set exactly one of the members.
Input configuration for upserting data in a DataAutomationLibraryIngestionJob
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::VocabularyEntityInfo
Vocabulary entity info with detailed information.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
2731 2732 2733 |
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 2731 def unknown @unknown end |
#vocabulary ⇒ Types::VocabularyEntityInfo
Vocabulary entity info with detailed information
2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 |
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 2731 class UpsertEntityInfo < Struct.new( :vocabulary, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vocabulary < UpsertEntityInfo; end class Unknown < UpsertEntityInfo; end end |