Show / Hide Table of Contents

Class ClusterSnapshot

Manages a Neptune database cluster snapshot.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Neptune.ClusterSnapshot("example", new Aws.Neptune.ClusterSnapshotArgs
    {
        DbClusterIdentifier = aws_neptune_cluster.Example.Id,
        DbClusterSnapshotIdentifier = "resourcetestsnapshot1234",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
ClusterSnapshot
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Neptune
Assembly: Pulumi.Aws.dll
Syntax
public class ClusterSnapshot : CustomResource

Constructors

View Source

ClusterSnapshot(String, ClusterSnapshotArgs, CustomResourceOptions)

Create a ClusterSnapshot resource with the given unique name, arguments, and options.

Declaration
public ClusterSnapshot(string name, ClusterSnapshotArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

ClusterSnapshotArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

AllocatedStorage

Specifies the allocated storage size in gigabytes (GB).

Declaration
public Output<int> AllocatedStorage { get; }
Property Value
Type Description
Output<System.Int32>
View Source

AvailabilityZones

List of EC2 Availability Zones that instances in the DB cluster snapshot can be restored in.

Declaration
public Output<ImmutableArray<string>> AvailabilityZones { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>
View Source

DbClusterIdentifier

The DB Cluster Identifier from which to take the snapshot.

Declaration
public Output<string> DbClusterIdentifier { get; }
Property Value
Type Description
Output<System.String>
View Source

DbClusterSnapshotArn

The Amazon Resource Name (ARN) for the DB Cluster Snapshot.

Declaration
public Output<string> DbClusterSnapshotArn { get; }
Property Value
Type Description
Output<System.String>
View Source

DbClusterSnapshotIdentifier

The Identifier for the snapshot.

Declaration
public Output<string> DbClusterSnapshotIdentifier { get; }
Property Value
Type Description
Output<System.String>
View Source

Engine

Specifies the name of the database engine.

Declaration
public Output<string> Engine { get; }
Property Value
Type Description
Output<System.String>
View Source

EngineVersion

Version of the database engine for this DB cluster snapshot.

Declaration
public Output<string> EngineVersion { get; }
Property Value
Type Description
Output<System.String>
View Source

KmsKeyId

If storage_encrypted is true, the AWS KMS key identifier for the encrypted DB cluster snapshot.

Declaration
public Output<string> KmsKeyId { get; }
Property Value
Type Description
Output<System.String>
View Source

LicenseModel

License model information for the restored DB cluster.

Declaration
public Output<string> LicenseModel { get; }
Property Value
Type Description
Output<System.String>
View Source

Port

Port that the DB cluster was listening on at the time of the snapshot.

Declaration
public Output<int> Port { get; }
Property Value
Type Description
Output<System.Int32>
View Source

SnapshotType

Declaration
public Output<string> SnapshotType { get; }
Property Value
Type Description
Output<System.String>
View Source

SourceDbClusterSnapshotArn

Declaration
public Output<string> SourceDbClusterSnapshotArn { get; }
Property Value
Type Description
Output<System.String>
View Source

Status

The status of this DB Cluster Snapshot.

Declaration
public Output<string> Status { get; }
Property Value
Type Description
Output<System.String>
View Source

StorageEncrypted

Specifies whether the DB cluster snapshot is encrypted.

Declaration
public Output<bool> StorageEncrypted { get; }
Property Value
Type Description
Output<System.Boolean>
View Source

VpcId

The VPC ID associated with the DB cluster snapshot.

Declaration
public Output<string> VpcId { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, ClusterSnapshotState, CustomResourceOptions)

Get an existing ClusterSnapshot resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static ClusterSnapshot Get(string name, Input<string> id, ClusterSnapshotState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

ClusterSnapshotState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
ClusterSnapshot
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.