BuildReference

class aws_cdk.aws_gamelift.BuildReference(*, build_arn, build_id)

Bases: object

A reference to a Build resource.

Parameters:
  • build_arn (str) – The ARN of the Build resource.

  • build_id (str) – The BuildId of the Build resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_gamelift as gamelift

build_reference = gamelift.BuildReference(
    build_arn="buildArn",
    build_id="buildId"
)

Attributes

build_arn

The ARN of the Build resource.

build_id

The BuildId of the Build resource.