Interface IBuildAttributes
(experimental) Represents a Build content defined outside of this stack.
Namespace: Amazon.CDK.AWS.GameLift.Alpha
Assembly: Amazon.CDK.AWS.GameLift.Alpha.dll
Syntax (csharp)
public interface IBuildAttributes
Syntax (vb)
Public Interface IBuildAttributes
Remarks
Stability: Experimental
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.Alpha;
using Amazon.CDK.AWS.IAM;
Role role;
var buildAttributes = new BuildAttributes {
BuildArn = "buildArn",
BuildId = "buildId",
Role = role
};
Synopsis
Properties
Build |
(experimental) The ARN of the build. |
Build |
(experimental) The identifier of the build. |
Role | (experimental) The IAM role assumed by GameLift to access server build in S3. |
Properties
BuildArn
(experimental) The ARN of the build.
virtual string BuildArn { get; }
Property Value
System.
Remarks
At least one of buildArn
and buildId
must be provided.
Default: derived from buildId
.
Stability: Experimental
BuildId
(experimental) The identifier of the build.
virtual string BuildId { get; }
Property Value
System.
Remarks
At least one of buildId
and buildArn
must be provided.
Default: derived from buildArn
.
Stability: Experimental
Role
(experimental) The IAM role assumed by GameLift to access server build in S3.
virtual IRole Role { get; }
Property Value
Remarks
Default: the imported fleet cannot be granted access to other resources as an iam.IGrantable
.
Stability: Experimental