@aws-mdaa/dataops-job-l3-construct 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +98 -112
- package/lib/dataops-job-l3-construct.d.ts +30 -240
- package/lib/dataops-job-l3-construct.js +23 -23
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/.npmignore +34 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/jest.config.js +5 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/lib/index.ts +241 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/package.json +9 -7
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/test/bucketpolicy-helper.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/test/bucketpolicy-helper.test.js +200 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/test/bucketpolicy-helper.test.ts +215 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/tsconfig.json +40 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/tsconfig.tsbuildinfo +1 -0
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/typedoc.json +7 -0
- package/node_modules/@aws-mdaa/s3-inventory-helper/.npmignore +34 -0
- package/node_modules/@aws-mdaa/s3-inventory-helper/jest.config.js +5 -0
- package/node_modules/@aws-mdaa/s3-inventory-helper/lib/index.d.ts +2 -20
- package/node_modules/@aws-mdaa/s3-inventory-helper/lib/index.js +2 -11
- package/node_modules/@aws-mdaa/s3-inventory-helper/lib/index.ts +241 -0
- package/node_modules/@aws-mdaa/s3-inventory-helper/package.json +8 -6
- package/node_modules/@aws-mdaa/s3-inventory-helper/test/TODO +0 -0
- package/node_modules/@aws-mdaa/s3-inventory-helper/tsconfig.json +40 -0
- package/node_modules/@aws-mdaa/s3-inventory-helper/tsconfig.tsbuildinfo +1 -0
- package/node_modules/@aws-mdaa/s3-inventory-helper/typedoc.json +7 -0
- package/package.json +24 -22
|
@@ -9,8 +9,7 @@ import { ConfigurationElement } from '@aws-mdaa/config';
|
|
|
9
9
|
export type JobCommandPythonVersion = '2' | '3' | undefined;
|
|
10
10
|
export type JobCommandName = 'glueetl' | 'pythonshell';
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
13
|
-
* Configuration interface for Glue job logging with CloudWatch log retention management and compliance requirements. Defines log retention settings for Glue job execution logs ensuring proper log management, compliance, and cost optimization for DataOps job monitoring and audit trails.
|
|
12
|
+
* Configuration for Glue job logging with CloudWatch log retention management.
|
|
14
13
|
*
|
|
15
14
|
* Use cases: Log retention management; Compliance requirements; Cost optimization; Audit trail management
|
|
16
15
|
*
|
|
@@ -19,21 +18,11 @@ export type JobCommandName = 'glueetl' | 'pythonshell';
|
|
|
19
18
|
* Validation: logGroupRetentionDays is required with specific allowed values for retention period
|
|
20
19
|
*/
|
|
21
20
|
export interface LoggingConfig {
|
|
22
|
-
/**
|
|
23
|
-
* Q-ENHANCED-PROPERTY
|
|
24
|
-
* Required CloudWatch log group retention period in days for Glue job log management and compliance requirements. Defines how long job execution logs are retained in CloudWatch with specific allowed values for log retention, compliance management, and storage cost optimization.
|
|
25
|
-
*
|
|
26
|
-
* Use cases: Log retention management; Compliance requirements; Storage cost optimization; Audit trail management
|
|
27
|
-
*
|
|
28
|
-
* AWS: CloudWatch log group retention for Glue job execution logs and audit trail management
|
|
29
|
-
*
|
|
30
|
-
* Validation: Must be 1,3,5,7,14,30,60,90,120,150,180,365,400,545,731,1827,3653, or 0; required for log retention configuration
|
|
31
|
-
**/
|
|
21
|
+
/** CloudWatch log group retention in days. Allowed: 1,3,5,7,14,30,60,90,120,150,180,365,400,545,731,1827,3653, or 0. */
|
|
32
22
|
readonly logGroupRetentionDays: number;
|
|
33
23
|
}
|
|
34
24
|
/**
|
|
35
|
-
*
|
|
36
|
-
* Configuration interface for Glue job command specification with script execution and runtime environment settings. Defines job command configuration including job type, Python version, and script location for Glue ETL and Python shell job execution within DataOps workflows.
|
|
25
|
+
* Configuration for a Glue job command specifying script execution and runtime environment.
|
|
37
26
|
*
|
|
38
27
|
* Use cases: Job command configuration; Script execution; Runtime environment; ETL job setup
|
|
39
28
|
*
|
|
@@ -42,44 +31,16 @@ export interface LoggingConfig {
|
|
|
42
31
|
* Validation: name and scriptLocation are required; pythonVersion is optional with specific constraints
|
|
43
32
|
*/
|
|
44
33
|
export interface JobCommand {
|
|
45
|
-
/**
|
|
46
|
-
* Q-ENHANCED-PROPERTY
|
|
47
|
-
* Required job command name specification controlling Glue job execution type and runtime environment. Defines whether to use glueetl for ETL jobs with Spark runtime or pythonshell for Python script execution with different resource allocation and capabilities.
|
|
48
|
-
*
|
|
49
|
-
* Use cases: Job type selection; Runtime environment; Execution model; Resource allocation
|
|
50
|
-
*
|
|
51
|
-
* AWS: Glue job command name for execution type and runtime environment selection
|
|
52
|
-
*
|
|
53
|
-
* Validation: Must be glueetl or pythonshell; required for job command type and execution environment
|
|
54
|
-
* **/
|
|
34
|
+
/** Job type: 'glueetl' for Spark ETL or 'pythonshell' for Python scripts. */
|
|
55
35
|
readonly name: JobCommandName;
|
|
56
|
-
/**
|
|
57
|
-
* Q-ENHANCED-PROPERTY
|
|
58
|
-
* Optional Python version specification for Glue job runtime environment enabling version-specific script execution and compatibility. When specified, controls the Python runtime version for job execution ensuring script compatibility and feature availability.
|
|
59
|
-
*
|
|
60
|
-
* Use cases: Python version control; Runtime compatibility; Script execution; Version management
|
|
61
|
-
*
|
|
62
|
-
* AWS: Glue job Python version for runtime environment and script compatibility
|
|
63
|
-
*
|
|
64
|
-
* Validation: Must be 2 or 3 if provided; controls Python runtime version for job execution
|
|
65
|
-
* **/
|
|
36
|
+
/** Python version for job runtime ('2' or '3'). */
|
|
66
37
|
readonly pythonVersion?: JobCommandPythonVersion;
|
|
67
|
-
/**
|
|
68
|
-
* Q-ENHANCED-PROPERTY
|
|
69
|
-
* Required relative path to Glue script for job execution enabling script location specification and code deployment. Provides the S3 path or relative location of the Glue script that will be executed by the job for ETL processing and data transformation.
|
|
70
|
-
*
|
|
71
|
-
* Use cases: Script location; Code deployment; Job execution; ETL processing
|
|
72
|
-
*
|
|
73
|
-
* AWS: Glue job script location for code execution and ETL processing
|
|
74
|
-
*
|
|
75
|
-
* Validation: Must be valid script path; required for job script location and code execution
|
|
76
|
-
**/
|
|
38
|
+
/** Relative path to the Glue script for job execution. */
|
|
77
39
|
readonly scriptLocation: string;
|
|
78
40
|
}
|
|
79
41
|
export type JobWorkerType = 'Standard' | 'G.1X' | 'G.2X';
|
|
80
42
|
/**
|
|
81
|
-
*
|
|
82
|
-
* Configuration interface for Glue job properties providing ETL job configuration and resource management capabilities. Defines complete Glue job setup including execution roles, commands, capacity allocation, retry policies, and monitoring for DataOps ETL processing and data transformation workflows.
|
|
43
|
+
* Configuration for a Glue job including execution roles, commands, capacity, and monitoring.
|
|
83
44
|
*
|
|
84
45
|
* Use cases: ETL job configuration; Data transformation; Job resource management; DataOps processing
|
|
85
46
|
*
|
|
@@ -88,214 +49,43 @@ export type JobWorkerType = 'Standard' | 'G.1X' | 'G.2X';
|
|
|
88
49
|
* Validation: executionRoleArn, command, and description are required; other properties are optional with specific constraints
|
|
89
50
|
*/
|
|
90
51
|
export interface JobConfig {
|
|
91
|
-
/**
|
|
92
|
-
* Q-ENHANCED-PROPERTY
|
|
93
|
-
* Required execution role ARN for Glue job permissions enabling secure job execution and AWS service access. Provides the IAM role that the Glue job will assume for executing ETL operations and accessing AWS services during data processing workflows.
|
|
94
|
-
*
|
|
95
|
-
* Use cases: Job permissions; Service access; Secure execution; IAM role management
|
|
96
|
-
*
|
|
97
|
-
* AWS: IAM role ARN for Glue job execution permissions and service access
|
|
98
|
-
*
|
|
99
|
-
* Validation: Must be valid IAM role ARN; required for job execution permissions and service access
|
|
100
|
-
**/
|
|
52
|
+
/** IAM role ARN for Glue job execution permissions. */
|
|
101
53
|
readonly executionRoleArn: string;
|
|
102
|
-
/**
|
|
103
|
-
* Q-ENHANCED-PROPERTY
|
|
104
|
-
* Required job command configuration defining script execution and runtime environment for Glue job processing. Provides the command specification including job type, Python version, and script location for ETL job execution and data transformation.
|
|
105
|
-
*
|
|
106
|
-
* Use cases: Script execution; Runtime configuration; Job command setup; ETL processing
|
|
107
|
-
*
|
|
108
|
-
* AWS: Glue job command for script execution and runtime environment configuration
|
|
109
|
-
*
|
|
110
|
-
* Validation: Must be valid JobCommand; required for job command configuration and script execution
|
|
111
|
-
* **/
|
|
54
|
+
/** Job command configuration defining script and runtime environment. */
|
|
112
55
|
readonly command: JobCommand;
|
|
113
|
-
/**
|
|
114
|
-
* Q-ENHANCED-PROPERTY
|
|
115
|
-
* Optional template reference for job configuration inheritance enabling reusable job configurations and standardized setups. When specified, inherits configuration from a template defined elsewhere in the configuration for consistent job setup and management.
|
|
116
|
-
*
|
|
117
|
-
* Use cases: Configuration inheritance; Template reuse; Standardized setup; Configuration management
|
|
118
|
-
*
|
|
119
|
-
* AWS: Job template reference for configuration inheritance and standardized job setup
|
|
120
|
-
*
|
|
121
|
-
* Validation: Must be valid template name if provided; enables configuration inheritance from defined templates
|
|
122
|
-
**/
|
|
56
|
+
/** Template name for configuration inheritance. */
|
|
123
57
|
readonly template?: string;
|
|
124
|
-
/**
|
|
125
|
-
* Q-ENHANCED-PROPERTY
|
|
126
|
-
* Optional allocated capacity specification for Glue job resource allocation controlling job performance and cost management. Defines the number of capacity units allocated to the job for processing performance and resource utilization optimization.
|
|
127
|
-
*
|
|
128
|
-
* Use cases: Resource allocation; Performance tuning; Cost management; Capacity planning
|
|
129
|
-
*
|
|
130
|
-
* AWS: Glue job allocated capacity for resource allocation and performance optimization
|
|
131
|
-
*
|
|
132
|
-
* Validation: Must be positive integer if provided; controls job resource allocation and performance
|
|
133
|
-
**/
|
|
58
|
+
/** Number of capacity units allocated to the job. */
|
|
134
59
|
readonly allocatedCapacity?: number;
|
|
135
|
-
/**
|
|
136
|
-
* Q-ENHANCED-PROPERTY
|
|
137
|
-
* Optional array of connection names for Glue job network connectivity enabling database and external system access. Provides network connections for accessing databases, VPC resources, and external systems during ETL processing and data integration.
|
|
138
|
-
*
|
|
139
|
-
* Use cases: Database connectivity; VPC access; External system integration; Network configuration
|
|
140
|
-
*
|
|
141
|
-
* AWS: Glue job connections for database and external system connectivity
|
|
142
|
-
*
|
|
143
|
-
* Validation: Must be array of valid connection names if provided; enables database and external system access
|
|
144
|
-
**/
|
|
60
|
+
/** Connection names for database and external system access. */
|
|
145
61
|
readonly connections?: string[];
|
|
146
|
-
/**
|
|
147
|
-
* Q-ENHANCED-PROPERTY
|
|
148
|
-
* Optional default arguments map for Glue job parameter configuration enabling job customization and runtime behavior control. Provides default parameters and arguments that will be passed to the job for runtime configuration and behavior customization.
|
|
149
|
-
*
|
|
150
|
-
* Use cases: Job parameters; Runtime configuration; Behavior customization; Parameter management
|
|
151
|
-
*
|
|
152
|
-
* AWS: Glue job default arguments for runtime configuration and parameter management
|
|
153
|
-
*
|
|
154
|
-
* Validation: Must be valid ConfigurationElement if provided; enables job parameter configuration and customization
|
|
155
|
-
**/
|
|
62
|
+
/** Default arguments passed to the job at runtime. */
|
|
156
63
|
readonly defaultArguments?: ConfigurationElement;
|
|
157
|
-
/**
|
|
158
|
-
* Q-ENHANCED-PROPERTY
|
|
159
|
-
* Required job description for documentation and operational management enabling job identification and purpose documentation. Provides descriptive information about the job's purpose, functionality, and operational characteristics for management and documentation.
|
|
160
|
-
*
|
|
161
|
-
* Use cases: Job documentation; Operational management; Purpose identification; Management information
|
|
162
|
-
*
|
|
163
|
-
* AWS: Glue job description for documentation and operational management
|
|
164
|
-
*
|
|
165
|
-
* Validation: Must be descriptive text; required for job documentation and operational management
|
|
166
|
-
**/
|
|
64
|
+
/** Job description for documentation and management. */
|
|
167
65
|
readonly description: string;
|
|
168
|
-
/**
|
|
169
|
-
* Q-ENHANCED-PROPERTY
|
|
170
|
-
* Optional execution property configuration for Glue job concurrency control enabling parallel execution management and resource optimization. Defines execution properties including maximum concurrent executions for job scheduling and resource management.
|
|
171
|
-
*
|
|
172
|
-
* Use cases: Concurrency control; Parallel execution; Resource management; Job scheduling
|
|
173
|
-
*
|
|
174
|
-
* AWS: Glue job execution properties for concurrency control and parallel execution management
|
|
175
|
-
*
|
|
176
|
-
* Validation: Must be valid ExecutionPropertyProperty if provided; controls job concurrency and parallel execution
|
|
177
|
-
* **/
|
|
66
|
+
/** Execution properties including maximum concurrent runs. */
|
|
178
67
|
readonly executionProperty?: CfnJob.ExecutionPropertyProperty;
|
|
179
|
-
/**
|
|
180
|
-
* Q-ENHANCED-PROPERTY
|
|
181
|
-
* Optional Glue version specification for runtime environment control enabling version-specific features and compatibility. Defines the Glue runtime version for job execution ensuring feature availability and compatibility with job requirements.
|
|
182
|
-
*
|
|
183
|
-
* Use cases: Runtime version control; Feature availability; Compatibility management; Version specification
|
|
184
|
-
*
|
|
185
|
-
* AWS: Glue version for runtime environment and feature availability
|
|
186
|
-
*
|
|
187
|
-
* Validation: Must be valid Glue version if provided; controls runtime environment and feature availability
|
|
188
|
-
**/
|
|
68
|
+
/** Glue runtime version for the job. */
|
|
189
69
|
readonly glueVersion?: string;
|
|
190
|
-
/**
|
|
191
|
-
* Q-ENHANCED-PROPERTY
|
|
192
|
-
* Optional maximum capacity specification for Glue job resource limits controlling maximum resource allocation and cost management. Defines the maximum number of DPUs (Data Processing Units) that can be allocated to the job for resource control and cost optimization.
|
|
193
|
-
*
|
|
194
|
-
* Use cases: Resource limits; Cost control; Maximum allocation; Resource management
|
|
195
|
-
*
|
|
196
|
-
* AWS: Glue job maximum capacity for resource limits and cost control
|
|
197
|
-
*
|
|
198
|
-
* Validation: Must be positive number if provided; controls maximum DPU allocation and resource limits
|
|
199
|
-
**/
|
|
70
|
+
/** Maximum DPU capacity for the job. */
|
|
200
71
|
readonly maxCapacity?: number;
|
|
201
|
-
/**
|
|
202
|
-
* Q-ENHANCED-PROPERTY
|
|
203
|
-
* Optional maximum retry count for Glue job failure handling enabling automatic retry and error recovery. Defines the maximum number of retries before job failure occurs for automatic error recovery and job reliability.
|
|
204
|
-
*
|
|
205
|
-
* Use cases: Error recovery; Automatic retry; Job reliability; Failure handling
|
|
206
|
-
*
|
|
207
|
-
* AWS: Glue job maximum retries for automatic error recovery and job reliability
|
|
208
|
-
*
|
|
209
|
-
* Validation: Must be non-negative integer if provided; controls automatic retry behavior and error recovery
|
|
210
|
-
**/
|
|
72
|
+
/** Maximum retry count before job failure. */
|
|
211
73
|
readonly maxRetries?: number;
|
|
212
|
-
/**
|
|
213
|
-
* Q-ENHANCED-PROPERTY
|
|
214
|
-
* Optional notification property configuration for Glue job monitoring and alerting enabling job status notifications and operational awareness. Defines notification settings including notification delay for job monitoring and operational alerting.
|
|
215
|
-
*
|
|
216
|
-
* Use cases: Job monitoring; Status notifications; Operational alerting; Monitoring configuration
|
|
217
|
-
*
|
|
218
|
-
* AWS: Glue job notification properties for monitoring and alerting configuration
|
|
219
|
-
*
|
|
220
|
-
* Validation: Must be valid NotificationPropertyProperty if provided; enables job monitoring and alerting
|
|
221
|
-
* **/
|
|
74
|
+
/** Notification settings for job monitoring and alerting. */
|
|
222
75
|
readonly notificationProperty?: CfnJob.NotificationPropertyProperty;
|
|
223
|
-
/**
|
|
224
|
-
* Q-ENHANCED-PROPERTY
|
|
225
|
-
* Optional number of workers specification for Glue job parallel processing enabling distributed processing and performance optimization. Defines the number of workers assigned to the job for parallel processing and distributed data transformation.
|
|
226
|
-
*
|
|
227
|
-
* Use cases: Parallel processing; Distributed processing; Performance optimization; Worker allocation
|
|
228
|
-
*
|
|
229
|
-
* AWS: Glue job number of workers for parallel processing and performance optimization
|
|
230
|
-
*
|
|
231
|
-
* Validation: Must be positive integer if provided; controls parallel processing and worker allocation
|
|
232
|
-
**/
|
|
76
|
+
/** Number of workers for parallel processing. */
|
|
233
77
|
readonly numberOfWorkers?: number;
|
|
234
|
-
/**
|
|
235
|
-
* Q-ENHANCED-PROPERTY
|
|
236
|
-
* Optional timeout specification for Glue job execution limits enabling job runtime control and resource management. Defines the maximum execution time for the job in minutes for runtime control and resource optimization.
|
|
237
|
-
*
|
|
238
|
-
* Use cases: Runtime control; Execution limits; Resource management; Timeout configuration
|
|
239
|
-
*
|
|
240
|
-
* AWS: Glue job timeout for execution time limits and resource management
|
|
241
|
-
*
|
|
242
|
-
* Validation: Must be positive integer in minutes if provided; controls job execution time limits
|
|
243
|
-
**/
|
|
78
|
+
/** Job timeout in minutes. */
|
|
244
79
|
readonly timeout?: number;
|
|
245
|
-
/**
|
|
246
|
-
* Q-ENHANCED-PROPERTY
|
|
247
|
-
* Optional worker type specification for Glue job compute resource selection enabling performance and cost optimization. Defines the type of workers (Standard, G.1X, G.2X) for compute resource allocation and performance characteristics.
|
|
248
|
-
*
|
|
249
|
-
* Use cases: Compute resource selection; Performance optimization; Cost management; Worker type configuration
|
|
250
|
-
*
|
|
251
|
-
* AWS: Glue job worker type for compute resource allocation and performance optimization
|
|
252
|
-
*
|
|
253
|
-
* Validation: Must be Standard, G.1X, or G.2X if provided; controls compute resource type and performance
|
|
254
|
-
* **/
|
|
80
|
+
/** Worker type: 'Standard', 'G.1X', or 'G.2X'. */
|
|
255
81
|
readonly workerType?: JobWorkerType;
|
|
256
|
-
/**
|
|
257
|
-
* Q-ENHANCED-PROPERTY
|
|
258
|
-
* Optional array of additional script paths for Glue job dependency management enabling modular ETL development and code reuse. Provides relative paths to additional Glue scripts referenced by the main ETL script for modular development and code organization.
|
|
259
|
-
*
|
|
260
|
-
* Use cases: Script dependencies; Modular development; Code reuse; Dependency management
|
|
261
|
-
*
|
|
262
|
-
* AWS: Additional Glue scripts for job dependencies and modular ETL development
|
|
263
|
-
*
|
|
264
|
-
* Validation: Must be array of valid script paths if provided; enables script dependencies and modular development
|
|
265
|
-
**/
|
|
82
|
+
/** Relative paths to additional Python scripts for the job. */
|
|
266
83
|
readonly additionalScripts?: string[];
|
|
267
|
-
/**
|
|
268
|
-
* Q-ENHANCED-PROPERTY
|
|
269
|
-
* Optional array of additional JAR file paths for Glue job library dependencies enabling Java library integration and extended functionality. Provides relative paths to JAR files referenced by the ETL script for Java library integration and extended processing capabilities.
|
|
270
|
-
*
|
|
271
|
-
* Use cases: Java library integration; Extended functionality; Library dependencies; JAR file management
|
|
272
|
-
*
|
|
273
|
-
* AWS: Additional JAR files for Glue job library dependencies and Java integration
|
|
274
|
-
*
|
|
275
|
-
* Validation: Must be array of valid JAR file paths if provided; enables Java library integration and extended functionality
|
|
276
|
-
**/
|
|
84
|
+
/** Relative paths to additional JAR files for the job. */
|
|
277
85
|
readonly additionalJars?: string[];
|
|
278
|
-
/**
|
|
279
|
-
* Q-ENHANCED-PROPERTY
|
|
280
|
-
* Optional array of additional file paths for Glue job resource dependencies enabling external file access and resource management. Provides relative paths to additional files referenced by the ETL script for external resource access and file dependencies.
|
|
281
|
-
*
|
|
282
|
-
* Use cases: File dependencies; External resources; Resource management; File access
|
|
283
|
-
*
|
|
284
|
-
* AWS: Additional files for Glue job resource dependencies and external file access
|
|
285
|
-
*
|
|
286
|
-
* Validation: Must be array of valid file paths if provided; enables external file access and resource dependencies
|
|
287
|
-
**/
|
|
86
|
+
/** Relative paths to additional files for the job. */
|
|
288
87
|
readonly additionalFiles?: string[];
|
|
289
|
-
/**
|
|
290
|
-
* Q-ENHANCED-PROPERTY
|
|
291
|
-
* Optional continuous logging configuration for Glue job real-time monitoring enabling live log streaming and troubleshooting support. When enabled, streams job logs to CloudWatch Logs in real-time for live monitoring and troubleshooting during job execution.
|
|
292
|
-
*
|
|
293
|
-
* Use cases: Real-time monitoring; Live log streaming; Troubleshooting support; Operational visibility
|
|
294
|
-
*
|
|
295
|
-
* AWS: Glue job continuous logging for real-time monitoring and troubleshooting
|
|
296
|
-
*
|
|
297
|
-
* Validation: Must be valid LoggingConfig if provided; enables real-time log streaming and monitoring
|
|
298
|
-
**/
|
|
88
|
+
/** Continuous logging configuration for real-time monitoring. */
|
|
299
89
|
readonly continuousLogging?: LoggingConfig;
|
|
300
90
|
}
|
|
301
91
|
export interface GlueJobL3ConstructProps extends MdaaL3ConstructProps {
|
|
@@ -306,7 +96,7 @@ export interface GlueJobL3ConstructProps extends MdaaL3ConstructProps {
|
|
|
306
96
|
/**
|
|
307
97
|
* The name of the Data Ops project bucket where job resources will be deployed and which will be used as a temporary job location
|
|
308
98
|
*/
|
|
309
|
-
readonly
|
|
99
|
+
readonly bucketName?: string;
|
|
310
100
|
/**
|
|
311
101
|
* Map of job names to job configurations
|
|
312
102
|
*/
|
|
@@ -320,7 +110,7 @@ export interface GlueJobL3ConstructProps extends MdaaL3ConstructProps {
|
|
|
320
110
|
/**
|
|
321
111
|
* Name of the dataops project to which the job will be associated.
|
|
322
112
|
*/
|
|
323
|
-
readonly projectName
|
|
113
|
+
readonly projectName?: string;
|
|
324
114
|
/**
|
|
325
115
|
* Notification topic Arn
|
|
326
116
|
*/
|
|
@@ -328,11 +118,11 @@ export interface GlueJobL3ConstructProps extends MdaaL3ConstructProps {
|
|
|
328
118
|
/**
|
|
329
119
|
* Dataops project KMS key ARN.
|
|
330
120
|
*/
|
|
331
|
-
readonly
|
|
121
|
+
readonly kmsArn?: string;
|
|
332
122
|
}
|
|
333
123
|
export declare class GlueJobL3Construct extends MdaaL3Construct {
|
|
334
124
|
protected readonly props: GlueJobL3ConstructProps;
|
|
335
|
-
private readonly
|
|
125
|
+
private readonly kmsKey;
|
|
336
126
|
constructor(scope: Construct, id: string, props: GlueJobL3ConstructProps);
|
|
337
127
|
private deployAdditionalFiles;
|
|
338
128
|
private addAdditionalScripts;
|