Show / Hide Table of Contents

Class ArchiveReference

A reference to a Archive resource.

Inheritance
object
ArchiveReference
Implements
IArchiveReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ArchiveReference : IArchiveReference
Syntax (vb)
Public Class ArchiveReference Implements IArchiveReference
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Interfaces.Events;

            var archiveReference = new ArchiveReference {
                ArchiveArn = "archiveArn",
                ArchiveName = "archiveName"
            };

Synopsis

Constructors

ArchiveReference()

A reference to a Archive resource.

Properties

ArchiveArn

The ARN of the Archive resource.

ArchiveName

The ArchiveName of the Archive resource.

Constructors

ArchiveReference()

A reference to a Archive resource.

public ArchiveReference()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Interfaces.Events;

            var archiveReference = new ArchiveReference {
                ArchiveArn = "archiveArn",
                ArchiveName = "archiveName"
            };

Properties

ArchiveArn

The ARN of the Archive resource.

public string ArchiveArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ArchiveName

The ArchiveName of the Archive resource.

public string ArchiveName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IArchiveReference
Back to top Generated by DocFX