aws.neptunegraph.Graph
Explore with Pulumi AI
The AWS::NeptuneGraph::Graph resource creates an Amazon Analytics Graph.
Example Usage
Neptune Graph (with Vector Search configuration)
Creates a Neptune Graph with 16GB provisioned memory, vector search capability with 128 dimensions, and a single replica for high availability.
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
// Create Neptune Graph
const example = new aws.neptunegraph.Graph("example", {
graphName: "example-graph-test-20250203",
provisionedMemory: 16,
deletionProtection: false,
publicConnectivity: false,
replicaCount: 1,
kmsKeyIdentifier: "arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012",
vectorSearchConfiguration: {
vectorSearchDimension: 128,
},
tags: {
Environment: "Development",
ModifiedBy: "AWS",
},
});
import pulumi
import pulumi_aws as aws
# Create Neptune Graph
example = aws.neptunegraph.Graph("example",
graph_name="example-graph-test-20250203",
provisioned_memory=16,
deletion_protection=False,
public_connectivity=False,
replica_count=1,
kms_key_identifier="arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012",
vector_search_configuration={
"vector_search_dimension": 128,
},
tags={
"Environment": "Development",
"ModifiedBy": "AWS",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/neptunegraph"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Create Neptune Graph
_, err := neptunegraph.NewGraph(ctx, "example", &neptunegraph.GraphArgs{
GraphName: pulumi.String("example-graph-test-20250203"),
ProvisionedMemory: pulumi.Int(16),
DeletionProtection: pulumi.Bool(false),
PublicConnectivity: pulumi.Bool(false),
ReplicaCount: pulumi.Int(1),
KmsKeyIdentifier: pulumi.String("arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012"),
VectorSearchConfiguration: &neptunegraph.GraphVectorSearchConfigurationArgs{
VectorSearchDimension: pulumi.Int(128),
},
Tags: pulumi.StringMap{
"Environment": pulumi.String("Development"),
"ModifiedBy": pulumi.String("AWS"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
// Create Neptune Graph
var example = new Aws.NeptuneGraph.Graph("example", new()
{
GraphName = "example-graph-test-20250203",
ProvisionedMemory = 16,
DeletionProtection = false,
PublicConnectivity = false,
ReplicaCount = 1,
KmsKeyIdentifier = "arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012",
VectorSearchConfiguration = new Aws.NeptuneGraph.Inputs.GraphVectorSearchConfigurationArgs
{
VectorSearchDimension = 128,
},
Tags =
{
{ "Environment", "Development" },
{ "ModifiedBy", "AWS" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.neptunegraph.Graph;
import com.pulumi.aws.neptunegraph.GraphArgs;
import com.pulumi.aws.neptunegraph.inputs.GraphVectorSearchConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// Create Neptune Graph
var example = new Graph("example", GraphArgs.builder()
.graphName("example-graph-test-20250203")
.provisionedMemory(16)
.deletionProtection(false)
.publicConnectivity(false)
.replicaCount(1)
.kmsKeyIdentifier("arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012")
.vectorSearchConfiguration(GraphVectorSearchConfigurationArgs.builder()
.vectorSearchDimension(128)
.build())
.tags(Map.ofEntries(
Map.entry("Environment", "Development"),
Map.entry("ModifiedBy", "AWS")
))
.build());
}
}
resources:
# Create Neptune Graph
example:
type: aws:neptunegraph:Graph
properties:
graphName: example-graph-test-20250203
provisionedMemory: 16
deletionProtection: false
publicConnectivity: false
replicaCount: 1
kmsKeyIdentifier: arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
vectorSearchConfiguration:
vectorSearchDimension: 128
tags:
Environment: Development
ModifiedBy: AWS
Create Graph Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Graph(name: string, args: GraphArgs, opts?: CustomResourceOptions);
@overload
def Graph(resource_name: str,
args: GraphArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Graph(resource_name: str,
opts: Optional[ResourceOptions] = None,
provisioned_memory: Optional[int] = None,
deletion_protection: Optional[bool] = None,
graph_name: Optional[str] = None,
graph_name_prefix: Optional[str] = None,
kms_key_identifier: Optional[str] = None,
public_connectivity: Optional[bool] = None,
replica_count: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[GraphTimeoutsArgs] = None,
vector_search_configuration: Optional[GraphVectorSearchConfigurationArgs] = None)
func NewGraph(ctx *Context, name string, args GraphArgs, opts ...ResourceOption) (*Graph, error)
public Graph(string name, GraphArgs args, CustomResourceOptions? opts = null)
type: aws:neptunegraph:Graph
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GraphArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GraphArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GraphArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GraphArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GraphArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsGraphResource = new Aws.NeptuneGraph.Graph("awsGraphResource", new()
{
ProvisionedMemory = 0,
DeletionProtection = false,
GraphName = "string",
GraphNamePrefix = "string",
KmsKeyIdentifier = "string",
PublicConnectivity = false,
ReplicaCount = 0,
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.NeptuneGraph.Inputs.GraphTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
VectorSearchConfiguration = new Aws.NeptuneGraph.Inputs.GraphVectorSearchConfigurationArgs
{
VectorSearchDimension = 0,
},
});
example, err := neptunegraph.NewGraph(ctx, "awsGraphResource", &neptunegraph.GraphArgs{
ProvisionedMemory: pulumi.Int(0),
DeletionProtection: pulumi.Bool(false),
GraphName: pulumi.String("string"),
GraphNamePrefix: pulumi.String("string"),
KmsKeyIdentifier: pulumi.String("string"),
PublicConnectivity: pulumi.Bool(false),
ReplicaCount: pulumi.Int(0),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &neptunegraph.GraphTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
VectorSearchConfiguration: &neptunegraph.GraphVectorSearchConfigurationArgs{
VectorSearchDimension: pulumi.Int(0),
},
})
var awsGraphResource = new Graph("awsGraphResource", GraphArgs.builder()
.provisionedMemory(0)
.deletionProtection(false)
.graphName("string")
.graphNamePrefix("string")
.kmsKeyIdentifier("string")
.publicConnectivity(false)
.replicaCount(0)
.tags(Map.of("string", "string"))
.timeouts(GraphTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.vectorSearchConfiguration(GraphVectorSearchConfigurationArgs.builder()
.vectorSearchDimension(0)
.build())
.build());
aws_graph_resource = aws.neptunegraph.Graph("awsGraphResource",
provisioned_memory=0,
deletion_protection=False,
graph_name="string",
graph_name_prefix="string",
kms_key_identifier="string",
public_connectivity=False,
replica_count=0,
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
},
vector_search_configuration={
"vector_search_dimension": 0,
})
const awsGraphResource = new aws.neptunegraph.Graph("awsGraphResource", {
provisionedMemory: 0,
deletionProtection: false,
graphName: "string",
graphNamePrefix: "string",
kmsKeyIdentifier: "string",
publicConnectivity: false,
replicaCount: 0,
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
vectorSearchConfiguration: {
vectorSearchDimension: 0,
},
});
type: aws:neptunegraph:Graph
properties:
deletionProtection: false
graphName: string
graphNamePrefix: string
kmsKeyIdentifier: string
provisionedMemory: 0
publicConnectivity: false
replicaCount: 0
tags:
string: string
timeouts:
create: string
delete: string
update: string
vectorSearchConfiguration:
vectorSearchDimension: 0
Graph Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Graph resource accepts the following input properties:
- Provisioned
Memory int - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- Deletion
Protection bool - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- Graph
Name string - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- Graph
Name stringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- Kms
Key stringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- Public
Connectivity bool - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- Replica
Count int - The number of replicas in other AZs. Value must be between 0 and 2.
- Dictionary<string, string>
- Timeouts
Graph
Timeouts - Vector
Search GraphConfiguration Vector Search Configuration - Vector search configuration for the Neptune Graph
- Provisioned
Memory int - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- Deletion
Protection bool - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- Graph
Name string - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- Graph
Name stringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- Kms
Key stringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- Public
Connectivity bool - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- Replica
Count int - The number of replicas in other AZs. Value must be between 0 and 2.
- map[string]string
- Timeouts
Graph
Timeouts Args - Vector
Search GraphConfiguration Vector Search Configuration Args - Vector search configuration for the Neptune Graph
- provisioned
Memory Integer - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- deletion
Protection Boolean - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- graph
Name String - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph
Name StringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms
Key StringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- public
Connectivity Boolean - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica
Count Integer - The number of replicas in other AZs. Value must be between 0 and 2.
- Map<String,String>
- timeouts
Graph
Timeouts - vector
Search GraphConfiguration Vector Search Configuration - Vector search configuration for the Neptune Graph
- provisioned
Memory number - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- deletion
Protection boolean - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- graph
Name string - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph
Name stringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms
Key stringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- public
Connectivity boolean - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica
Count number - The number of replicas in other AZs. Value must be between 0 and 2.
- {[key: string]: string}
- timeouts
Graph
Timeouts - vector
Search GraphConfiguration Vector Search Configuration - Vector search configuration for the Neptune Graph
- provisioned_
memory int - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- deletion_
protection bool - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- graph_
name str - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph_
name_ strprefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms_
key_ stridentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- public_
connectivity bool - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica_
count int - The number of replicas in other AZs. Value must be between 0 and 2.
- Mapping[str, str]
- timeouts
Graph
Timeouts Args - vector_
search_ Graphconfiguration Vector Search Configuration Args - Vector search configuration for the Neptune Graph
- provisioned
Memory Number - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- deletion
Protection Boolean - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- graph
Name String - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph
Name StringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms
Key StringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- public
Connectivity Boolean - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica
Count Number - The number of replicas in other AZs. Value must be between 0 and 2.
- Map<String>
- timeouts Property Map
- vector
Search Property MapConfiguration - Vector search configuration for the Neptune Graph
Outputs
All input properties are implicitly available as output properties. Additionally, the Graph resource produces the following output properties:
Look up Existing Graph Resource
Get an existing Graph resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GraphState, opts?: CustomResourceOptions): Graph
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
deletion_protection: Optional[bool] = None,
endpoint: Optional[str] = None,
graph_name: Optional[str] = None,
graph_name_prefix: Optional[str] = None,
kms_key_identifier: Optional[str] = None,
provisioned_memory: Optional[int] = None,
public_connectivity: Optional[bool] = None,
replica_count: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[GraphTimeoutsArgs] = None,
vector_search_configuration: Optional[GraphVectorSearchConfigurationArgs] = None) -> Graph
func GetGraph(ctx *Context, name string, id IDInput, state *GraphState, opts ...ResourceOption) (*Graph, error)
public static Graph Get(string name, Input<string> id, GraphState? state, CustomResourceOptions? opts = null)
public static Graph get(String name, Output<String> id, GraphState state, CustomResourceOptions options)
resources: _: type: aws:neptunegraph:Graph get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- (String) Graph resource ARN
- Deletion
Protection bool - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- Endpoint string
- (String) The connection endpoint for the graph. For example:
g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com
- Graph
Name string - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- Graph
Name stringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- Kms
Key stringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- Provisioned
Memory int - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- Public
Connectivity bool - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- Replica
Count int - The number of replicas in other AZs. Value must be between 0 and 2.
- Dictionary<string, string>
- Dictionary<string, string>
- Timeouts
Graph
Timeouts - Vector
Search GraphConfiguration Vector Search Configuration - Vector search configuration for the Neptune Graph
- Arn string
- (String) Graph resource ARN
- Deletion
Protection bool - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- Endpoint string
- (String) The connection endpoint for the graph. For example:
g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com
- Graph
Name string - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- Graph
Name stringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- Kms
Key stringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- Provisioned
Memory int - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- Public
Connectivity bool - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- Replica
Count int - The number of replicas in other AZs. Value must be between 0 and 2.
- map[string]string
- map[string]string
- Timeouts
Graph
Timeouts Args - Vector
Search GraphConfiguration Vector Search Configuration Args - Vector search configuration for the Neptune Graph
- arn String
- (String) Graph resource ARN
- deletion
Protection Boolean - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- endpoint String
- (String) The connection endpoint for the graph. For example:
g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com
- graph
Name String - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph
Name StringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms
Key StringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- provisioned
Memory Integer - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- public
Connectivity Boolean - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica
Count Integer - The number of replicas in other AZs. Value must be between 0 and 2.
- Map<String,String>
- Map<String,String>
- timeouts
Graph
Timeouts - vector
Search GraphConfiguration Vector Search Configuration - Vector search configuration for the Neptune Graph
- arn string
- (String) Graph resource ARN
- deletion
Protection boolean - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- endpoint string
- (String) The connection endpoint for the graph. For example:
g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com
- graph
Name string - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph
Name stringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms
Key stringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- provisioned
Memory number - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- public
Connectivity boolean - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica
Count number - The number of replicas in other AZs. Value must be between 0 and 2.
- {[key: string]: string}
- {[key: string]: string}
- timeouts
Graph
Timeouts - vector
Search GraphConfiguration Vector Search Configuration - Vector search configuration for the Neptune Graph
- arn str
- (String) Graph resource ARN
- deletion_
protection bool - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- endpoint str
- (String) The connection endpoint for the graph. For example:
g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com
- graph_
name str - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph_
name_ strprefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms_
key_ stridentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- provisioned_
memory int - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- public_
connectivity bool - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica_
count int - The number of replicas in other AZs. Value must be between 0 and 2.
- Mapping[str, str]
- Mapping[str, str]
- timeouts
Graph
Timeouts Args - vector_
search_ Graphconfiguration Vector Search Configuration Args - Vector search configuration for the Neptune Graph
- arn String
- (String) Graph resource ARN
- deletion
Protection Boolean - A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
- endpoint String
- (String) The connection endpoint for the graph. For example:
g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com
- graph
Name String - The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. If you don't specify a graph name, a unique graph name is generated for you using the prefix graph-for, followed by a combination of Stack Name and a UUID.
- graph
Name StringPrefix - Allows user to specify name prefix and have remainder of name automatically generated.
- kms
Key StringIdentifier - Specifies a KMS key to use to encrypt data in the new graph. Value must be ARN of KMS Key.
- provisioned
Memory Number - The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
- public
Connectivity Boolean - Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. When the graph is publicly available, its domain name system (DNS) endpoint resolves to the public IP address from the internet. When the graph isn't publicly available, you need to create a PrivateGraphEndpoint in a given VPC to ensure the DNS name resolves to a private IP address that is reachable from the VPC.
- replica
Count Number - The number of replicas in other AZs. Value must be between 0 and 2.
- Map<String>
- Map<String>
- timeouts Property Map
- vector
Search Property MapConfiguration - Vector search configuration for the Neptune Graph
Supporting Types
GraphTimeouts, GraphTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
GraphVectorSearchConfiguration, GraphVectorSearchConfigurationArgs
- Vector
Search intDimension - Specifies the number of dimensions for vector embeddings. Value must be between 1 and 65,535.
- Vector
Search intDimension - Specifies the number of dimensions for vector embeddings. Value must be between 1 and 65,535.
- vector
Search IntegerDimension - Specifies the number of dimensions for vector embeddings. Value must be between 1 and 65,535.
- vector
Search numberDimension - Specifies the number of dimensions for vector embeddings. Value must be between 1 and 65,535.
- vector_
search_ intdimension - Specifies the number of dimensions for vector embeddings. Value must be between 1 and 65,535.
- vector
Search NumberDimension - Specifies the number of dimensions for vector embeddings. Value must be between 1 and 65,535.
Import
Using pulumi import
, import aws_neptunegraph_graph
using the graph identifier. For example:
$ pulumi import aws:neptunegraph/graph:Graph example "graph_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.