GetGraphResult

data class GetGraphResult(val deletionProtection: Boolean? = null, val endpoint: String? = null, val graphArn: String? = null, val graphId: String? = null, val provisionedMemory: Int? = null, val publicConnectivity: Boolean? = null, val tags: List<Tag>? = null)

Constructors

Link copied to clipboard
constructor(deletionProtection: Boolean? = null, endpoint: String? = null, graphArn: String? = null, graphId: String? = null, provisionedMemory: Int? = null, publicConnectivity: Boolean? = null, tags: List<Tag>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Value that indicates whether the Graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled. Default: If not specified, the default value is true.

Link copied to clipboard
val endpoint: String? = null

The connection endpoint for the graph. For example: g-12a3bcdef4.us-east-1.neptune-graph.amazonaws.com

Link copied to clipboard
val graphArn: String? = null

Graph resource ARN

Link copied to clipboard
val graphId: String? = null

The auto-generated id assigned by the service.

Link copied to clipboard
val provisionedMemory: Int? = null

Memory for the Graph.

Link copied to clipboard

Specifies whether the Graph can be reached over the internet. Access to all graphs requires IAM authentication. When the Graph is publicly reachable, its Domain Name System (DNS) endpoint resolves to the public IP address from the internet. When the Graph isn't publicly reachable, 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.

Link copied to clipboard
val tags: List<Tag>? = null

The tags associated with this graph.