Skip to content

Commit 73add86

Browse files
authored
Merge branch 'main' into merge-back/2.162.0
2 parents c8d7dd3 + 048975e commit 73add86

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

packages/@aws-cdk/aws-glue-alpha/lib/connection.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { CfnConnection } from 'aws-cdk-lib/aws-glue';
88
*
99
* If you need to use a connection type that doesn't exist as a static member, you
1010
* can instantiate a `ConnectionType` object, e.g: `new ConnectionType('NEW_TYPE')`.
11+
*
12+
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype
1113
*/
1214
export class ConnectionType {
1315

@@ -31,6 +33,18 @@ export class ConnectionType {
3133
*/
3234
public static readonly NETWORK = new ConnectionType('NETWORK');
3335

36+
/**
37+
* Uses configuration settings contained in a connector purchased from AWS Marketplace
38+
* to read from and write to data stores that are not natively supported by AWS Glue.
39+
*/
40+
public static readonly MARKETPLACE = new ConnectionType('MARKETPLACE');
41+
42+
/**
43+
* Uses configuration settings contained in a custom connector to read from and write to data stores
44+
* that are not natively supported by AWS Glue.
45+
*/
46+
public static readonly CUSTOM = new ConnectionType('CUSTOM');
47+
3448
/**
3549
* The name of this ConnectionType, as expected by Connection resource.
3650
*/

packages/aws-cdk-lib/aws-codebuild/lib/linux-arm-build-image.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class LinuxArmBuildImage implements IBuildImage {
4242
public static readonly AMAZON_LINUX_2_STANDARD_3_0 = LinuxArmBuildImage.fromCodeBuildImageId('aws/codebuild/amazonlinux2-aarch64-standard:3.0');
4343

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

0 commit comments

Comments
 (0)