Skip to content

Commit 3bdb2bf

Browse files
authored
docs(aws-glue): update descriptions (#612)
1 parent d314d71 commit 3bdb2bf

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/main/java/io/kestra/plugin/aws/glue/GetJobRun.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@
6969
)
7070
public class GetJobRun extends AbstractGlueTask implements RunnableTask<Output> {
7171
@Schema(
72-
title = "The name of the Glue job."
72+
title = "The name of the Glue job"
7373
)
7474
@NotNull
7575
private Property<String> jobName;
7676

7777
@Schema(
78-
title = "The ID of the job run to get status for.",
79-
description = "If not provided, the task will automatically retrieve the latest job run."
78+
title = "The ID of the job run to get status for",
79+
description = "If the job ID is not provided, the task will automatically retrieve the latest job run."
8080
)
8181
private Property<String> runId;
8282

src/main/java/io/kestra/plugin/aws/glue/StartJobRun.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@
5555
)
5656
public class StartJobRun extends AbstractGlueTask implements RunnableTask<Output> {
5757

58-
@Schema(title = "The name of the Glue job to run.")
58+
@Schema(title = "The name of the Glue job to run")
5959
@NotNull
6060
private Property<String> jobName;
6161

6262
@Schema(
63-
title = "The job arguments used for this job run.",
63+
title = "The job arguments used for this job run",
6464
description = "These are key-value string pairs passed to the job."
6565
)
6666
private Property<Map<String, String>> arguments;
@@ -73,15 +73,15 @@ public class StartJobRun extends AbstractGlueTask implements RunnableTask<Output
7373
private Property<Boolean> wait = Property.ofValue(true);
7474

7575
@Schema(
76-
title = "Timeout for waiting for job completion.",
76+
title = "Timeout for waiting for job completion",
7777
description = "If the job does not complete within this duration (rounded up to minutes), the task will fail. " +
7878
"If this property is not set, the default timeout is 480 minutes (8 hours) for Glue 5.0 ETL jobs, 2,880 minutes (48 hours) for Glue 4.0 and below, " +
79-
"and no job timeout is defaulted for a Glue Streaming job."
79+
"and there is no default job timeout for a Glue Streaming job."
8080
)
8181
private Property<Duration> maxDuration;
8282

8383
@Schema(
84-
title = "Interval between status checks."
84+
title = "Interval between status checks"
8585
)
8686
@Builder.Default
8787
private Property<Duration> interval = Property.ofValue(Duration.ofMillis(1000));

0 commit comments

Comments
 (0)