SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 56 Java
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// snippet-start:[javascript.v3.codebuild.client]
import { CodeBuildClient } from "@aws-sdk/client-codebuild";
// When no "region" is provided. The SDK will attempt to environment variables
// or an AWS configuration file to determine the region.
const client = new CodeBuildClient({});
export { client };
// snippet-end:[javascript.v3.codebuild.client]