Class: Aws::NeptuneGraph::Types::ImportOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::ImportOptions
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#neptune ⇒ Types::NeptuneImportOptions
Options for importing data from a Neptune database.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#neptune ⇒ Types::NeptuneImportOptions
Options for importing data from a Neptune database.
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1497 class ImportOptions < Struct.new( :neptune, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Neptune < ImportOptions; end class Unknown < ImportOptions; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1497 1498 1499 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1497 def unknown @unknown end |