class BuildSpec
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodeBuild.BuildSpec |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#BuildSpec |
Java | software.amazon.awscdk.services.codebuild.BuildSpec |
Python | aws_cdk.aws_codebuild.BuildSpec |
TypeScript (source) | aws-cdk-lib » aws_codebuild » BuildSpec |
Obtainable from
Linux
.runScriptBuildspec()
, Linux
.runScriptBuildspec()
, Linux
.runScriptBuildspec()
, Linux
.runScriptBuildspec()
, Linux
.runScriptBuildspec()
, Mac
.runScriptBuildspec()
, Windows
.runScriptBuildspec()
BuildSpec for CodeBuild projects.
Example
import * as codebuild from 'aws-cdk-lib/aws-codebuild';
const codebuildProject = new codebuild.Project(this, 'Project', {
projectName: 'MyTestProject',
buildSpec: codebuild.BuildSpec.fromObject({
version: '0.2',
phases: {
build: {
commands: [
'echo "Hello, CodeBuild!"',
],
},
},
}),
});
const task = new tasks.CodeBuildStartBuild(this, 'Task', {
project: codebuildProject,
integrationPattern: sfn.IntegrationPattern.RUN_JOB,
environmentVariablesOverride: {
ZONE: {
type: codebuild.BuildEnvironmentVariableType.PLAINTEXT,
value: sfn.JsonPath.stringAt('$.envVariables.zone'),
},
},
});
Initializer
new BuildSpec()
Properties
Name | Type | Description |
---|---|---|
is | boolean | Whether the buildspec is directly available or deferred until build-time. |
isImmediate
Type:
boolean
Whether the buildspec is directly available or deferred until build-time.
Methods
Name | Description |
---|---|
to | Render the represented BuildSpec. |
static from | Use the contents of a local file as the build spec string. |
static from | |
static from | Create a buildspec from an object that will be rendered as YAML in the resulting CloudFormation template. |
static from | Use a file from the source as buildspec. |
BuildSpec(scope?)
topublic toBuildSpec(scope?: Construct): string
Parameters
- scope
Construct
Returns
string
Render the represented BuildSpec.
Asset(path)
static frompublic static fromAsset(path: string): BuildSpec
Parameters
- path
string
Returns
Use the contents of a local file as the build spec string.
Use this if you have a local .yml or .json file that you want to use as the buildspec
Object(value)
static frompublic static fromObject(value: { [string]: any }): BuildSpec
Parameters
- value
{ [string]: any }
Returns
ObjectToYaml(value)
static frompublic static fromObjectToYaml(value: { [string]: any }): BuildSpec
Parameters
- value
{ [string]: any }
— the object containing the buildspec that will be rendered as YAML.
Returns
Create a buildspec from an object that will be rendered as YAML in the resulting CloudFormation template.
SourceFilename(filename)
static frompublic static fromSourceFilename(filename: string): BuildSpec
Parameters
- filename
string
Returns
Use a file from the source as buildspec.
Use this if you want to use a file different from 'buildspec.yml'`