interface ScriptReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GameLift.ScriptReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgamelift#ScriptReference |
Java | software.amazon.awscdk.interfaces.gamelift.ScriptReference |
Python | aws_cdk.interfaces.aws_gamelift.ScriptReference |
TypeScript | aws-cdk-lib » interfaces » aws_gamelift » ScriptReference |
A reference to a Script resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_gamelift as interfaces_gamelift } from 'aws-cdk-lib/interfaces';
const scriptReference: interfaces_gamelift.ScriptReference = {
scriptArn: 'scriptArn',
scriptId: 'scriptId',
};
Properties
| Name | Type | Description |
|---|---|---|
| script | string | The ARN of the Script resource. |
| script | string | The Id of the Script resource. |
scriptArn
Type:
string
The ARN of the Script resource.
scriptId
Type:
string
The Id of the Script resource.

.NET
Go
Java
Python
TypeScript