ConnectionReference

class aws_cdk.interfaces.aws_glue.ConnectionReference(*, catalog_id, connection_name)

Bases: object

A reference to a Connection resource.

Parameters:
  • catalog_id (str) – The CatalogId of the Connection resource.

  • connection_name (str) – The Name of the Connection resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.interfaces import aws_glue as interfaces_glue

connection_reference = interfaces_glue.ConnectionReference(
    catalog_id="catalogId",
    connection_name="connectionName"
)

Attributes

catalog_id

The CatalogId of the Connection resource.

connection_name

The Name of the Connection resource.