Class: Aws::BedrockDataAutomation::Types::DataAutomationLibraryEntitySummary

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

Unknown, Vocabulary

Defined Under Namespace

Classes: Unknown, Vocabulary

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



774
775
776
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 774

def unknown
  @unknown
end

#vocabularyTypes::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