1- # AWS Batch code examples for the SDK for Java 2.x
1+ # ACM code examples for the SDK for Java 2.x
22
33## Overview
44
5- Shows how to use the AWS SDK for Java 2.x to work with AWS Batch .
5+ Shows how to use the AWS SDK for Java 2.x to work with AWS Certificate Manager (ACM) .
66
77<!-- custom.overview.start-->
88<!-- custom.overview.end-->
99
10- _ AWS Batch enables you to run batch computing workloads on the AWS Cloud ._
10+ _ ACM helps you to provision, manage, and renew publicly trusted TLS certificates on AWS based websites ._
1111
1212## ⚠ Important
1313
@@ -29,35 +29,20 @@ For prerequisites, see the [README](../../README.md#Prerequisites) in the `javav
2929<!-- custom.prerequisites.start-->
3030<!-- custom.prerequisites.end-->
3131
32- ### Get started
33-
34- - [ Hello AWS Batch] ( src/main/java/com/example/batch/HelloBatch.java#L6 ) (` listJobsPaginator ` )
35-
36-
3732### Single actions
3833
3934Code excerpts that show you how to call individual service functions.
4035
41- - [ CreateComputeEnvironment] ( src/main/java/com/example/batch/scenario/BatchActions.java#L102 )
42- - [ CreateJobQueue] ( src/main/java/com/example/batch/scenario/BatchActions.java#L193 )
43- - [ DeleteComputeEnvironment] ( src/main/java/com/example/batch/scenario/BatchActions.java#L142 )
44- - [ DeleteJobQueue] ( src/main/java/com/example/batch/scenario/BatchActions.java#L370 )
45- - [ DeregisterJobDefinition] ( src/main/java/com/example/batch/scenario/BatchActions.java#L323 )
46- - [ DescribeComputeEnvironments] ( src/main/java/com/example/batch/scenario/BatchActions.java#L162 )
47- - [ DescribeJobQueues] ( src/main/java/com/example/batch/scenario/BatchActions.java#L394 )
48- - [ DescribeJobs] ( src/main/java/com/example/batch/scenario/BatchActions.java#L490 )
49- - [ ListJobsPaginator] ( src/main/java/com/example/batch/scenario/BatchActions.java#L230 )
50- - [ RegisterJobDefinition] ( src/main/java/com/example/batch/scenario/BatchActions.java#L257 )
51- - [ SubmitJob] ( src/main/java/com/example/batch/scenario/BatchActions.java#L463 )
52- - [ UpdateComputeEnvironment] ( src/main/java/com/example/batch/scenario/BatchActions.java#L439 )
53- - [ UpdateJobQueue] ( src/main/java/com/example/batch/scenario/BatchActions.java#L347 )
54-
55- ### Scenarios
56-
57- Code examples that show you how to accomplish a specific task by calling multiple
58- functions within the same service.
59-
60- - [ Learn AWS Batch core operations] ( src/main/java/com/example/batch/scenario/BatchScenario.java )
36+ - [ AddTagsToCertificate] ( src/main/java/com/example/acm/AddTagsToCertificate.java#L12 )
37+ - [ DeleteCertificate] ( src/main/java/com/example/acm/DeleteCert.java#L10 )
38+ - [ DescribeCertificate] ( src/main/java/com/example/acm/DescribeCert.java#L11 )
39+ - [ ExportCertificate] ( src/main/java/com/example/acm/ExportCertificate.java#L20 )
40+ - [ ImportCertificate] ( src/main/java/com/example/acm/ImportCert.java#L16 )
41+ - [ ListCertificates] ( src/main/java/com/example/acm/ListCerts.java#L13 )
42+ - [ ListTagsForCertificate] ( src/main/java/com/example/acm/ListCertTags.java#L13 )
43+ - [ RemoveTagsFromCertificate] ( src/main/java/com/example/acm/RemoveTagsFromCert.java#L13 )
44+ - [ RenewCertificate] ( src/main/java/com/example/acm/RenewCert.java#L10 )
45+ - [ RequestCertificate] ( src/main/java/com/example/acm/RequestCert.java#L12 )
6146
6247
6348<!-- custom.examples.start-->
@@ -71,31 +56,7 @@ functions within the same service.
7156<!-- custom.instructions.start-->
7257<!-- custom.instructions.end-->
7358
74- #### Hello AWS Batch
75-
76- This example shows you how to get started using AWS Batch.
77-
78-
79-
80- #### Learn AWS Batch core operations
81-
82- This example shows you how to do the following:
83-
84- - Create an AWS Batch compute environment.
85- - Check the status of the compute environment.
86- - Set up an AWS Batch job queue and job definition.
87- - Register a job definition.
88- - Submit an AWS Batch Job.
89- - Get a list of jobs applicable to the job queue.
90- - Check the status of job.
91- - Delete AWS Batch resources.
92-
93- <!-- custom.scenario_prereqs.batch_Scenario.start-->
94- <!-- custom.scenario_prereqs.batch_Scenario.end-->
95-
9659
97- <!-- custom.scenarios.batch_Scenario.start-->
98- <!-- custom.scenarios.batch_Scenario.end-->
9960
10061### Tests
10162
@@ -112,9 +73,9 @@ in the `javav2` folder.
11273
11374## Additional resources
11475
115- - [ AWS Batch User Guide] ( https://docs.aws.amazon.com/batch /latest/userguide/what-is-batch .html )
116- - [ AWS Batch API Reference] ( https://docs.aws.amazon.com/batch /latest/APIReference/Welcome.html )
117- - [ SDK for Java 2.x AWS Batch reference] ( https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/ec2/package-summary.html )
76+ - [ ACM User Guide] ( https://docs.aws.amazon.com/acm /latest/userguide/acm-overview .html )
77+ - [ ACM API Reference] ( https://docs.aws.amazon.com/acm /latest/APIReference/Welcome.html )
78+ - [ SDK for Java 2.x ACM reference] ( https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/ec2/package-summary.html )
11879
11980<!-- custom.resources.start-->
12081<!-- custom.resources.end-->
0 commit comments