aws::neptune-cluster-parameter-group

Create a Neptune cluster parameter group.

Example

aws::neptune-cluster-parameter-group neptune-cluster-parameter-group-example
    name: "neptune-cluster-parameter-group-example"
    description: "neptune cluster parameter group example description"
    family: "neptune1"

    enable-audit-log
        value: "0"
    end

    enforce-ssl
        value: "1"
    end

    lab-mode
        value: "ObjectIndex=enabled, Streams=disabled"
    end

    query-timeout
        value: "120000"
    end

    tags: {
        Name: "neptune-cluster-parameter-group-example"
    }
end

Attributes

Attribute Description
tags map A list of tags.
description The description of the cluster parameter group. (Required)
family The name of the cluster parameter group family. Currently the only supported value is neptune1. (Required)
name The name of the cluster parameter group. (Required)
enable-audit-log subresource

Enable audit logs.

The value field of this NeptuneParameter must be set to 0 or 1, and defaults to 0.

name
The name of the Neptune parameter. (Required)
value
The value of the Neptune parameter. (Required)
apply-method
Indicates when to apply parameter updates.
enforce-ssl subresource

Accept SSL/TLS connections only.

The value field of this NeptuneParameter must be set to 0 or 1, and defaults to 1.

name
The name of the Neptune parameter. (Required)
value
The value of the Neptune parameter. (Required)
apply-method
Indicates when to apply parameter updates.
lab-mode subresource

Toggle Neptune engine experimental features.

The value field of this NeptuneParameter must contain a comma-separated list of (feature name)=enabled or (feature name)=disabled. Valid feature names are ObjectIndex, Streams, and ReadWriteConflictDetection.

name
The name of the Neptune parameter. (Required)
value
The value of the Neptune parameter. (Required)
apply-method
Indicates when to apply parameter updates.
query-timeout subresource

Graph query timeout (ms).

The value field of this NeptuneParameter must be an integer from 10 to 2147483647, and defaults to 120000.

name
The name of the Neptune parameter. (Required)
value
The value of the Neptune parameter. (Required)
apply-method
Indicates when to apply parameter updates.

Outputs

Attribute Description
arn The ARN of the Neptune resource.