Skip to content

Commit

Permalink
chore(codebuild): backfill missing enums for codebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhcsun committed Feb 28, 2025
1 parent 8679b89 commit cf7fb0f
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
25 changes: 25 additions & 0 deletions packages/aws-cdk-lib/aws-codebuild/lib/fleet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,4 +315,29 @@ export enum FleetComputeType {
* @see https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html#environment-reserved-capacity.types
*/
ATTRIBUTE_BASED = ComputeType.ATTRIBUTE_BASED,

/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
BUILD_LAMBDA_1GB = 'BUILD_LAMBDA_1GB',

/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
BUILD_LAMBDA_2GB = 'BUILD_LAMBDA_2GB',

/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
BUILD_LAMBDA_4GB = 'BUILD_LAMBDA_4GB',

/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
BUILD_LAMBDA_8GB = 'BUILD_LAMBDA_8GB',

/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
BUILD_LAMBDA_10GB = 'BUILD_LAMBDA_10GB',
}
18 changes: 18 additions & 0 deletions packages/aws-cdk-lib/aws-codebuild/lib/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,31 @@ export enum EventAction {
WORKFLOW_JOB_QUEUED = 'WORKFLOW_JOB_QUEUED',
}



enum WebhookFilterTypes {
FILE_PATH = 'FILE_PATH',
COMMIT_MESSAGE = 'COMMIT_MESSAGE',
HEAD_REF = 'HEAD_REF',
ACTOR_ACCOUNT_ID = 'ACTOR_ACCOUNT_ID',
BASE_REF = 'BASE_REF',
REPOSITORY_NAME = 'REPOSITORY_NAME',
/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
EVENT = 'EVENT',
/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
WORKFLOW_NAME = 'WORKFLOW_NAME',
/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
TAG_NAME = 'TAG_NAME',
/**
* [PLACEHOLDER FOR: TO BE FILLED OUT]
*/
RELEASE_NAME = 'RELEASE_NAME',
}

/**
Expand Down

0 comments on commit cf7fb0f

Please sign in to comment.