Method: Aws::NeptuneGraph::Types::CreateGraphUsingImportTaskInput#deletion_protection
- Defined in:
- lib/aws-sdk-neptunegraph/types.rb
#deletion_protection ⇒ Boolean
Indicates whether or not to enable deletion protection on the graph. The graph can’t be deleted when deletion protection is enabled. (true or false).
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 |