Show / Hide Table of Contents

Class AliasReference

A reference to a Alias resource.

Inheritance
object
AliasReference
Implements
IAliasReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

AliasId

The AliasId of the Alias resource.

public string AliasId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAliasReference
Back to top Generated by DocFX