Show / Hide Table of Contents

Class GetSnapshotArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetSnapshotArgs
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.Ebs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GetSnapshotArgs : InvokeArgs

Constructors

View Source

GetSnapshotArgs()

Declaration
public GetSnapshotArgs()

Properties

View Source

Filters

One or more name/value pairs to filter off of. There are several valid keys, for a full reference, check out [describe-snapshots in the AWS CLI reference][1].

Declaration
public List<GetSnapshotFilterArgs> Filters { get; set; }
Property Value
Type Description
System.Collections.Generic.List<GetSnapshotFilterArgs>
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

Owners

Returns the snapshots owned by the specified owner id. Multiple owners can be specified.

Declaration
public List<string> Owners { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
View Source

RestorableByUserIds

One or more AWS accounts IDs that can create volumes from the snapshot.

Declaration
public List<string> RestorableByUserIds { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
View Source

SnapshotIds

Returns information on a specific snapshot_id.

Declaration
public List<string> SnapshotIds { get; set; }
Property Value
Type Description
System.Collections.Generic.List<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.