Skip to content

Commit

Permalink
docs(codebuild): updated Linux build image return type in doc (aws#31718
Browse files Browse the repository at this point in the history
)

### Issue # (if applicable)

Closes aws#31717 

### Reason for this change

It should be in sync with the description as mentioned in here https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_codebuild.LinuxArmBuildImage.html



### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
khushail authored Oct 10, 2024
1 parent f48220f commit 048975e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class LinuxArmBuildImage implements IBuildImage {
public static readonly AMAZON_LINUX_2_STANDARD_3_0 = LinuxArmBuildImage.fromCodeBuildImageId('aws/codebuild/amazonlinux2-aarch64-standard:3.0');

/**
* @returns a x86-64 Linux build image from a Docker Hub image.
* @returns a aarch-64 Linux build image from a Docker Hub image.
*/
public static fromDockerRegistry(name: string, options: DockerImageOptions = {}): IBuildImage {
return new LinuxArmBuildImage({
Expand Down

0 comments on commit 048975e

Please sign in to comment.