Show / Hide Table of Contents

Class GetClusterSnapshotArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetClusterSnapshotArgs
Inherited Members
InvokeArgs.Empty
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.Rds
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GetClusterSnapshotArgs : InvokeArgs

Constructors

View Source

GetClusterSnapshotArgs()

Declaration
public GetClusterSnapshotArgs()

Properties

View Source

DbClusterIdentifier

Returns the list of snapshots created by the specific db_cluster

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

DbClusterSnapshotIdentifier

Returns information on a specific snapshot_id.

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

IncludePublic

Set this value to true to include manual DB Cluster Snapshots that are public and can be copied or restored by any AWS account, otherwise set this value to false. The default is false.

Declaration
public bool? IncludePublic { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

IncludeShared

Set this value to true to include shared manual DB Cluster Snapshots from other AWS accounts that this AWS account has been given permission to copy or restore, otherwise set this value to false. The default is false.

Declaration
public bool? IncludeShared { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

MostRecent

If more than one result is returned, use the most recent Snapshot.

Declaration
public bool? MostRecent { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

SnapshotType

The type of snapshots to be returned. If you don't specify a SnapshotType value, then both automated and manual DB cluster snapshots are returned. Shared and public DB Cluster Snapshots are not included in the returned results by default. Possible values are, automated, manual, shared and public.

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

Tags

A map of tags for the resource.

Declaration
public Dictionary<string, object> Tags { get; set; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.String, System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.