interface CodeConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.CodeConfig |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#CodeConfig |
Java | software.amazon.awscdk.services.glue.alpha.CodeConfig |
Python | aws_cdk.aws_glue_alpha.CodeConfig |
TypeScript (source) | @aws-cdk/aws-glue-alpha » CodeConfig |
Obtainable from
Asset.bind(), Code.bind(), S3.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
| Name | Type | Description |
|---|---|---|
| s3 | Location | The location of the code in S3. |
s3Location
Type:
Location
The location of the code in S3.

.NET
Go
Java
Python
TypeScript (