@aws-cdk_aws-gamelift-alpha.BuildAttributes

interface BuildAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.GameLift.Alpha.BuildAttributes
Gogithub.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#BuildAttributes
Javasoftware.amazon.awscdk.services.gamelift.alpha.BuildAttributes
Pythonaws_cdk.aws_gamelift_alpha.BuildAttributes
TypeScript (source)@aws-cdk/aws-gamelift-alpha ยป BuildAttributes

Represents a Build content defined outside of this stack.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift_alpha from '@aws-cdk/aws-gamelift-alpha';
import { aws_iam as iam } from 'aws-cdk-lib';

declare const role: iam.Role;
const buildAttributes: gamelift_alpha.BuildAttributes = {
  buildArn: 'buildArn',
  buildId: 'buildId',
  role: role,
};

Properties

NameTypeDescription
buildArn?๐Ÿ”นstringThe ARN of the build.
buildId?๐Ÿ”นstringThe identifier of the build.
role?๐Ÿ”นIRoleThe IAM role assumed by GameLift to access server build in S3.

buildArn?๐Ÿ”น

Type: string (optional, default: derived from buildId.)

The ARN of the build.

At least one of buildArn and buildId must be provided.


buildId?๐Ÿ”น

Type: string (optional, default: derived from buildArn.)

The identifier of the build.

At least one of buildId and buildArn must be provided.


role?๐Ÿ”น

Type: IRole (optional, default: the imported fleet cannot be granted access to other resources as an iam.IGrantable.)

The IAM role assumed by GameLift to access server build in S3.