Interface CfnGraphProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGraphProps.Jsii$Proxy
CfnGraph
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.neptunegraph.*; CfnGraphProps cfnGraphProps = CfnGraphProps.builder() .provisionedMemory(123) // the properties below are optional .deletionProtection(false) .graphName("graphName") .publicConnectivity(false) .replicaCount(123) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .vectorSearchConfiguration(VectorSearchConfigurationProperty.builder() .vectorSearchDimension(123) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGraphProps
static final class
An implementation forCfnGraphProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGraphProps.Builder
builder()
default Object
A value that indicates whether the graph has deletion protection enabled.default String
The graph name.The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.default Object
Specifies whether or not the graph can be reachable over the internet.default Number
The number of replicas in other AZs.getTags()
Adds metadata tags to the new graph.default Object
Specifies the number of dimensions for vector embeddings that will be loaded into the graph.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProvisionedMemory
The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.Min = 128
- See Also:
-
getDeletionProtection
A value that indicates whether the graph has deletion protection enabled.The graph can't be deleted when deletion protection is enabled.
- See Also:
-
getGraphName
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 ofStack Name
and aUUID
.- See Also:
-
getPublicConnectivity
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.Default: If not specified, the default value is false.
If enabling public connectivity for the first time, there will be a delay while it is enabled.
- See Also:
-
getReplicaCount
The number of replicas in other AZs.Default: If not specified, the default value is 1.
- See Also:
-
getTags
Adds metadata tags to the new graph.These tags can also be used with cost allocation reporting, or used in a Condition statement in an IAM policy.
- See Also:
-
getVectorSearchConfiguration
Specifies the number of dimensions for vector embeddings that will be loaded into the graph.The value is specified as
dimension=
value. Max = 65,535- See Also:
-
builder
- Returns:
- a
CfnGraphProps.Builder
ofCfnGraphProps
-