Class: Aws::NeptuneGraph::Types::ImportOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb

Overview

Note:

ImportOptions is a union - when making an API calls you must set exactly one of the members.

Note:

ImportOptions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ImportOptions corresponding to the set member.

Options for how to perform an import.

Direct Known Subclasses

Neptune, Unknown

Defined Under Namespace

Classes: Neptune, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#neptuneTypes::NeptuneImportOptions

Options for importing data from a Neptune database.



1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1481

class ImportOptions < Struct.new(
  :neptune,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Neptune < ImportOptions; end
  class Unknown < ImportOptions; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1481
1482
1483
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1481

def unknown
  @unknown
end