Class: Aws::BedrockDataAutomation::Types::EntityDetails

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

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



1358
1359
1360
# File 'gems/aws-sdk-bedrockdataautomation/lib/aws-sdk-bedrockdataautomation/types.rb', line 1358

def unknown
  @unknown
end

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