Skip to content

Commit 1957f04

Browse files
author
awstools
committed
docs(client-glue): Added links related to enabling job bookmarks.
1 parent d2a945d commit 1957f04

File tree

6 files changed

+335
-255
lines changed

6 files changed

+335
-255
lines changed

clients/client-glue/src/Glue.ts

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3426,7 +3426,7 @@ export class Glue extends GlueClient {
34263426
}
34273427

34283428
/**
3429-
* <p>Retrieves all the development endpoints in this AWS account.</p>
3429+
* <p>Retrieves all the development endpoints in this Amazon Web Services account.</p>
34303430
* <note>
34313431
* <p>When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address
34323432
* and the public IP address field is not populated. When you create a non-VPC development
@@ -3490,6 +3490,26 @@ export class Glue extends GlueClient {
34903490

34913491
/**
34923492
* <p>Returns information on a job bookmark entry.</p>
3493+
*
3494+
* <p>For more information about enabling and using job bookmarks, see:</p>
3495+
*
3496+
* <ul>
3497+
* <li>
3498+
* <p>
3499+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
3500+
* </p>
3501+
* </li>
3502+
* <li>
3503+
* <p>
3504+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
3505+
* </p>
3506+
* </li>
3507+
* <li>
3508+
* <p>
3509+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
3510+
* </p>
3511+
* </li>
3512+
* </ul>
34933513
*/
34943514
public getJobBookmark(
34953515
args: GetJobBookmarkCommandInput,
@@ -5416,6 +5436,26 @@ export class Glue extends GlueClient {
54165436

54175437
/**
54185438
* <p>Resets a bookmark entry.</p>
5439+
*
5440+
* <p>For more information about enabling and using job bookmarks, see:</p>
5441+
*
5442+
* <ul>
5443+
* <li>
5444+
* <p>
5445+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
5446+
* </p>
5447+
* </li>
5448+
* <li>
5449+
* <p>
5450+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
5451+
* </p>
5452+
* </li>
5453+
* <li>
5454+
* <p>
5455+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
5456+
* </p>
5457+
* </li>
5458+
* </ul>
54195459
*/
54205460
public resetJobBookmark(
54215461
args: ResetJobBookmarkCommandInput,

clients/client-glue/src/commands/GetDevEndpointsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface GetDevEndpointsCommandInput extends GetDevEndpointsRequest {}
2929
export interface GetDevEndpointsCommandOutput extends GetDevEndpointsResponse, __MetadataBearer {}
3030

3131
/**
32-
* <p>Retrieves all the development endpoints in this AWS account.</p>
32+
* <p>Retrieves all the development endpoints in this Amazon Web Services account.</p>
3333
* <note>
3434
* <p>When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address
3535
* and the public IP address field is not populated. When you create a non-VPC development

clients/client-glue/src/commands/GetJobBookmarkCommand.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,26 @@ export interface GetJobBookmarkCommandOutput extends GetJobBookmarkResponse, __M
3030

3131
/**
3232
* <p>Returns information on a job bookmark entry.</p>
33+
*
34+
* <p>For more information about enabling and using job bookmarks, see:</p>
35+
*
36+
* <ul>
37+
* <li>
38+
* <p>
39+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
40+
* </p>
41+
* </li>
42+
* <li>
43+
* <p>
44+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
45+
* </p>
46+
* </li>
47+
* <li>
48+
* <p>
49+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
50+
* </p>
51+
* </li>
52+
* </ul>
3353
* @example
3454
* Use a bare-bones client and the command you need to make an API call.
3555
* ```javascript

clients/client-glue/src/commands/ResetJobBookmarkCommand.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,26 @@ export interface ResetJobBookmarkCommandOutput extends ResetJobBookmarkResponse,
3030

3131
/**
3232
* <p>Resets a bookmark entry.</p>
33+
*
34+
* <p>For more information about enabling and using job bookmarks, see:</p>
35+
*
36+
* <ul>
37+
* <li>
38+
* <p>
39+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
40+
* </p>
41+
* </li>
42+
* <li>
43+
* <p>
44+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
45+
* </p>
46+
* </li>
47+
* <li>
48+
* <p>
49+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
50+
* </p>
51+
* </li>
52+
* </ul>
3353
* @example
3454
* Use a bare-bones client and the command you need to make an API call.
3555
* ```javascript

clients/client-glue/src/models/models_0.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1661,7 +1661,7 @@ export interface DevEndpoint {
16611661
NumberOfNodes?: number;
16621662

16631663
/**
1664-
* <p>The AWS Availability Zone where this <code>DevEndpoint</code> is located.</p>
1664+
* <p>The Amazon Web Services Availability Zone where this <code>DevEndpoint</code> is located.</p>
16651665
*/
16661666
AvailabilityZone?: string;
16671667

@@ -5862,7 +5862,7 @@ export interface CreateDevEndpointResponse {
58625862
NumberOfWorkers?: number;
58635863

58645864
/**
5865-
* <p>The AWS Availability Zone where this <code>DevEndpoint</code> is located.</p>
5865+
* <p>The Amazon Web Services Availability Zone where this <code>DevEndpoint</code> is located.</p>
58665866
*/
58675867
AvailabilityZone?: string;
58685868

0 commit comments

Comments
 (0)