@aws-cdk_aws-glue-alpha.CodeConfig

interface CodeConfig 🔹

LanguageType name
.NETAmazon.CDK.AWS.Glue.Alpha.CodeConfig
Gogithub.com/aws/aws-cdk-go/awscdkgluealpha/v2#CodeConfig
Javasoftware.amazon.awscdk.services.glue.alpha.CodeConfig
Pythonaws_cdk.aws_glue_alpha.CodeConfig
TypeScript (source)@aws-cdk/aws-glue-alpha » CodeConfig

Obtainable from AssetCode.bind(), Code.bind(), S3Code.bind()

Result of binding Code into a Job.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
const codeConfig: glue_alpha.CodeConfig = {
  s3Location: {
    bucketName: 'bucketName',
    objectKey: 'objectKey',

    // the properties below are optional
    objectVersion: 'objectVersion',
  },
};

Properties

NameTypeDescription
s3Location🔹LocationThe location of the code in S3.

s3Location🔹

Type: Location

The location of the code in S3.