aws::neptune-cluster¶
Create a Neptune cluster.
Example¶
aws::neptune-cluster neptune-cluster-example
engine: "neptune"
engine-version: "1.0.2.1"
db-cluster-identifier: "neptune-cluster-example"
vpc-security-groups: [$(aws::security-group security-group-neptune-cluster-example)]
db-subnet-group: $(aws::neptune-subnet-group neptune-subnet-group-cluster-example)
db-cluster-parameter-group: $(aws::neptune-cluster-parameter-group neptune-cluster-parameter-group-cluster-example)
kms-key: $(aws::kms-key kms-key-neptune-cluster-example)
backup-retention-period: 7
deletion-protection: false
port: 8182
preferred-backup-window: "07:39-08:09"
preferred-maintenance-window: "sun:05:12-sun:05:42"
storage-encrypted: true
enable-cloudwatch-logs-exports: ["audit"]
enable-iam-database-authentication: false
skip-final-snapshot: false
final-db-snapshot-identifier: "neptune-cluster-example-final-snapshot-test"
apply-immediately: true
tags: {
Name: "neptune cluster example"
}
end
Attributes¶
Attribute | Description |
---|---|
tags map | A list of tags. |
engine | The name of the database engine. The only Currently the only supported value is neptune . (Required) |
engine-version | The version number of the database engine to use. Defaults to |
db-cluster-identifier | The unique name of the Neptune cluster. (Required) |
vpc-security-groups set | A list of security groups to associate the cluster with. |
db-subnet-group | A DB subnet group to use for this Neptune cluster. If omitted, the default group is used. |
db-cluster-parameter-group | The Neptune cluster parameter group to associate with. If omitted, the default.neptune1 group is used. |
backup-retention-period | The number of days to retain backups. Valid values are between 1 to 35 . |
deletion-protection | Enable deletion protection on the Neptune cluster. Defaults to false . |
enable-iam-database-authentication | Enable mapping IAM accounts to database accounts. Defaults to false . |
port | The port number on which the instances in the Neptune cluster accept connections. Defaults to 8182 . |
preferred-backup-window | The preferred backup window when automated backups are enabled. Must be provided in UTC using the format The window must be at least 30 minutes long, and must not conflict with the preferred maintenance window. |
preferred-maintenance-window | The preferred system maintenance window. Must be provided in UTC using the format The window must be at least 30 minutes long. |
storage-encrypted | Enable Neptune cluster encryption. Defaults to false . |
kms-key | The AWS KMS key to encrypt the Neptune cluster. |
replication-source-identifier | The Amazon Resource Name (ARN) of the source Neptune instance or Neptune cluster if this Neptune cluster is created as a Read Replica. |
enable-cloudwatch-logs-exports list | The list of log types to export to CloudWatch Logs. Currently the only supported value is audit . |
skip-final-snapshot | Determines whether a final DB cluster snapshot is created before the Neptune cluster is deleted. Defaults to |
apply-immediately | Specifies whether the modifications in update requests are asynchronously applied as soon as possible. When set to |
final-db-snapshot-identifier | The DB cluster snapshot identifier of the new DB cluster snapshot created when the Neptune cluster is deleted. Can only be set if |
Outputs¶
Attribute | Description |
---|---|
arn | The ARN of the Neptune resource. |
availability-zones list | A list of availability zones in which instances in the Neptune cluster can be created. |
master-username | The name of the master user for the Neptune cluster. |
associated-roles list | The list of roles that are associated with the Neptune cluster. |
db-cluster-members list | The list of instances that make up the Neptune cluster. |