Class AliasReference
A reference to a Alias resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AliasReference : IAliasReference
Syntax (vb)
Public Class AliasReference Implements IAliasReference
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.AWS.GameLift;
var aliasReference = new AliasReference {
AliasArn = "aliasArn",
AliasId = "aliasId"
};
Synopsis
Constructors
| AliasReference() | A reference to a Alias resource. |
Properties
| AliasArn | The ARN of the Alias resource. |
| AliasId | The AliasId of the Alias resource. |
Constructors
AliasReference()
A reference to a Alias resource.
public AliasReference()
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.AWS.GameLift;
var aliasReference = new AliasReference {
AliasArn = "aliasArn",
AliasId = "aliasId"
};
Properties
AliasArn
The ARN of the Alias resource.
public string AliasArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
AliasId
The AliasId of the Alias resource.
public string AliasId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated