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