Class ArchiveReference
A reference to a Archive resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
ArchiveName
The ArchiveName of the Archive resource.
public string ArchiveName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated