Method: Aws::NeptuneGraph::Types::CreateGraphUsingImportTaskInput#source
- Defined in:
- lib/aws-sdk-neptunegraph/types.rb
#source ⇒ String
A URL identifying to the location of the data to be imported. This can be an Amazon S3 path, or can point to a Neptune database endpoint or snapshot.
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 544 class CreateGraphUsingImportTaskInput < Struct.new( :graph_name, :tags, :public_connectivity, :kms_key_identifier, :vector_search_configuration, :replica_count, :deletion_protection, :import_options, :max_provisioned_memory, :min_provisioned_memory, :fail_on_error, :source, :format, :parquet_type, :blank_node_handling, :role_arn) SENSITIVE = [] include Aws::Structure end |