interface ProjectFleetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Mixins.CfnProjectPropsMixin.ProjectFleetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/mixins#CfnProjectPropsMixin_ProjectFleetProperty |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.mixins.CfnProjectPropsMixin.ProjectFleetProperty |
Python | aws_cdk.mixins_preview.aws_codebuild.mixins.CfnProjectPropsMixin.ProjectFleetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codebuild » mixins » CfnProjectPropsMixin » ProjectFleetProperty |
Information about the compute fleet of the build project.
For more information, see Working with reserved capacity in AWS CodeBuild .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codebuild_mixins } from '@aws-cdk/mixins-preview/aws-codebuild';
const projectFleetProperty: codebuild_mixins.CfnProjectPropsMixin.ProjectFleetProperty = {
fleetArn: 'fleetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| fleet | string | Specifies the compute fleet ARN for the build project. |
fleetArn?
Type:
string
(optional)
Specifies the compute fleet ARN for the build project.

.NET
Go
Java
Python
TypeScript