Show / Hide Table of Contents

Class ScriptReference

A reference to a Script resource.

Inheritance
object
ScriptReference
Implements
IScriptReference
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 ScriptReference : IScriptReference
Syntax (vb)
Public Class ScriptReference Implements IScriptReference
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 scriptReference = new ScriptReference {
                ScriptArn = "scriptArn",
                ScriptId = "scriptId"
            };

Synopsis

Constructors

ScriptReference()

A reference to a Script resource.

Properties

ScriptArn

The ARN of the Script resource.

ScriptId

The Id of the Script resource.

Constructors

ScriptReference()

A reference to a Script resource.

public ScriptReference()
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 scriptReference = new ScriptReference {
                ScriptArn = "scriptArn",
                ScriptId = "scriptId"
            };

Properties

ScriptArn

The ARN of the Script resource.

public string ScriptArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ScriptId

The Id of the Script resource.

public string ScriptId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IScriptReference
Back to top Generated by DocFX