interface BuildReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GameLift.BuildReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgamelift#BuildReference |
Java | software.amazon.awscdk.interfaces.gamelift.BuildReference |
Python | aws_cdk.interfaces.aws_gamelift.BuildReference |
TypeScript | aws-cdk-lib » interfaces » aws_gamelift » BuildReference |
A reference to a Build 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 buildReference: interfaces_gamelift.BuildReference = {
buildArn: 'buildArn',
buildId: 'buildId',
};
Properties
| Name | Type | Description |
|---|---|---|
| build | string | The ARN of the Build resource. |
| build | string | The BuildId of the Build resource. |
buildArn
Type:
string
The ARN of the Build resource.
buildId
Type:
string
The BuildId of the Build resource.

.NET
Go
Java
Python
TypeScript