Skip to content

Commit

Permalink
Merge branch 'main' into merge-back/2.162.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Oct 10, 2024
2 parents c8d7dd3 + 048975e commit 73add86
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions packages/@aws-cdk/aws-glue-alpha/lib/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import { CfnConnection } from 'aws-cdk-lib/aws-glue';
*
* If you need to use a connection type that doesn't exist as a static member, you
* can instantiate a `ConnectionType` object, e.g: `new ConnectionType('NEW_TYPE')`.
*
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype
*/
export class ConnectionType {

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

/**
* Uses configuration settings contained in a connector purchased from AWS Marketplace
* to read from and write to data stores that are not natively supported by AWS Glue.
*/
public static readonly MARKETPLACE = new ConnectionType('MARKETPLACE');

/**
* Uses configuration settings contained in a custom connector to read from and write to data stores
* that are not natively supported by AWS Glue.
*/
public static readonly CUSTOM = new ConnectionType('CUSTOM');

/**
* The name of this ConnectionType, as expected by Connection resource.
*/
Expand Down
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 73add86

Please sign in to comment.