Skip to content

Commit 8d35f2a

Browse files
committed
Add README.md and tutorial walkthrough for script-only tutorials
1 parent adb4015 commit 8d35f2a

10 files changed

Lines changed: 312 additions & 0 deletions

File tree

tuts/138-amazon-amp-gs/README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Amazon Amp Gs
2+
3+
An AWS CLI tutorial that demonstrates Amp operations.
4+
5+
## Running
6+
7+
```bash
8+
bash amazon-amp-gs.sh
9+
```
10+
11+
To auto-run with cleanup:
12+
13+
```bash
14+
echo 'y' | bash amazon-amp-gs.sh
15+
```
16+
17+
## What it does
18+
19+
1. Creating workspace: $WS_ALIAS
20+
2. Waiting for workspace...
21+
3. Workspace details
22+
4. Listing workspaces
23+
24+
## Resources created
25+
26+
- Workspace
27+
28+
The script prompts you to clean up resources when it finishes.
29+
30+
## Cost
31+
32+
Free tier eligible for most operations. Clean up resources after use to avoid charges.
33+
34+
## Related docs
35+
36+
- [AWS CLI amp reference](https://docs.aws.amazon.com/cli/latest/reference/amp/index.html)
37+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Amazon Amp Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Creating workspace: $WS_ALIAS
9+
10+
The script handles this step automatically. See `amazon-amp-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Waiting for workspace...
13+
14+
The script handles this step automatically. See `amazon-amp-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Workspace details
17+
18+
The script handles this step automatically. See `amazon-amp-gs.sh` for the exact CLI commands.
19+
20+
## Step 4: Listing workspaces
21+
22+
The script handles this step automatically. See `amazon-amp-gs.sh` for the exact CLI commands.
23+
24+
## Cleanup
25+
26+
The script prompts you to clean up all created resources. If you need to clean up manually, check the script log for the resource names that were created.
27+

tuts/139-aws-fis-gs/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Aws Fis Gs
2+
3+
An AWS CLI tutorial that demonstrates Fis operations.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-fis-gs.sh
9+
```
10+
11+
To auto-run with cleanup:
12+
13+
```bash
14+
echo 'y' | bash aws-fis-gs.sh
15+
```
16+
17+
## What it does
18+
19+
1. Creating IAM role
20+
2. Listing available actions
21+
3. Creating experiment template
22+
4. Describing template
23+
5. Listing templates
24+
25+
## Resources created
26+
27+
- Experiment Template
28+
- Role
29+
- Role Policy
30+
31+
The script prompts you to clean up resources when it finishes.
32+
33+
## Cost
34+
35+
Free tier eligible for most operations. Clean up resources after use to avoid charges.
36+
37+
## Related docs
38+
39+
- [AWS CLI fis reference](https://docs.aws.amazon.com/cli/latest/reference/fis/index.html)
40+
- [AWS CLI iam reference](https://docs.aws.amazon.com/cli/latest/reference/iam/index.html)
41+

tuts/139-aws-fis-gs/aws-fis-gs.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Aws Fis Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Creating IAM role
9+
10+
The script handles this step automatically. See `aws-fis-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Listing available actions
13+
14+
The script handles this step automatically. See `aws-fis-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Creating experiment template
17+
18+
The script handles this step automatically. See `aws-fis-gs.sh` for the exact CLI commands.
19+
20+
## Step 4: Describing template
21+
22+
The script handles this step automatically. See `aws-fis-gs.sh` for the exact CLI commands.
23+
24+
## Step 5: Listing templates
25+
26+
The script handles this step automatically. See `aws-fis-gs.sh` for the exact CLI commands.
27+
28+
## Cleanup
29+
30+
The script prompts you to clean up all created resources. If you need to clean up manually, check the script log for the resource names that were created.
31+
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Aws Cleanrooms Gs
2+
3+
An AWS CLI tutorial that demonstrates Cleanrooms operations.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-cleanrooms-gs.sh
9+
```
10+
11+
To auto-run with cleanup:
12+
13+
```bash
14+
echo 'y' | bash aws-cleanrooms-gs.sh
15+
```
16+
17+
## What it does
18+
19+
1. Creating collaboration: $COLLAB_NAME
20+
2. Creating membership
21+
3. Describing collaboration
22+
4. Listing collaborations
23+
24+
## Resources created
25+
26+
- Collaboration
27+
- Membership
28+
29+
The script prompts you to clean up resources when it finishes.
30+
31+
## Cost
32+
33+
Free tier eligible for most operations. Clean up resources after use to avoid charges.
34+
35+
## Related docs
36+
37+
- [AWS CLI cleanrooms reference](https://docs.aws.amazon.com/cli/latest/reference/cleanrooms/index.html)
38+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Aws Cleanrooms Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Creating collaboration: $COLLAB_NAME
9+
10+
The script handles this step automatically. See `aws-cleanrooms-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Creating membership
13+
14+
The script handles this step automatically. See `aws-cleanrooms-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Describing collaboration
17+
18+
The script handles this step automatically. See `aws-cleanrooms-gs.sh` for the exact CLI commands.
19+
20+
## Step 4: Listing collaborations
21+
22+
The script handles this step automatically. See `aws-cleanrooms-gs.sh` for the exact CLI commands.
23+
24+
## Cleanup
25+
26+
The script prompts you to clean up all created resources. If you need to clean up manually, check the script log for the resource names that were created.
27+
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Aws Entityresolution Gs
2+
3+
An AWS CLI tutorial that demonstrates Entityresolution operations.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-entityresolution-gs.sh
9+
```
10+
11+
To auto-run with cleanup:
12+
13+
```bash
14+
echo 'y' | bash aws-entityresolution-gs.sh
15+
```
16+
17+
## What it does
18+
19+
1. Creating schema mapping: $SCHEMA_NAME
20+
2. Describing schema
21+
3. Listing schemas
22+
23+
## Resources created
24+
25+
- Schema Mapping
26+
27+
The script prompts you to clean up resources when it finishes.
28+
29+
## Cost
30+
31+
Free tier eligible for most operations. Clean up resources after use to avoid charges.
32+
33+
## Related docs
34+
35+
- [AWS CLI entityresolution reference](https://docs.aws.amazon.com/cli/latest/reference/entityresolution/index.html)
36+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Aws Entityresolution Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Creating schema mapping: $SCHEMA_NAME
9+
10+
The script handles this step automatically. See `aws-entityresolution-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Describing schema
13+
14+
The script handles this step automatically. See `aws-entityresolution-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Listing schemas
17+
18+
The script handles this step automatically. See `aws-entityresolution-gs.sh` for the exact CLI commands.
19+
20+
## Cleanup
21+
22+
The script prompts you to clean up all created resources. If you need to clean up manually, check the script log for the resource names that were created.
23+
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Aws Mediaconvert Gs
2+
3+
A read-only script that queries Mediaconvert resources and displays information.
4+
5+
## Running
6+
7+
```bash
8+
bash aws-mediaconvert-gs.sh
9+
```
10+
11+
## What it does
12+
13+
1. Getting MediaConvert endpoint
14+
2. Listing job templates
15+
3. Listing presets
16+
4. Listing queues
17+
18+
## Resources created
19+
20+
None — this script is read-only.
21+
22+
## Cost
23+
24+
No cost. This script only reads existing resources.
25+
26+
## Related docs
27+
28+
- [AWS CLI mediaconvert reference](https://docs.aws.amazon.com/cli/latest/reference/mediaconvert/index.html)
29+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Aws Mediaconvert Gs
2+
3+
## Prerequisites
4+
5+
1. AWS CLI installed and configured (`aws configure`)
6+
2. Appropriate IAM permissions for the AWS services used
7+
8+
## Step 1: Getting MediaConvert endpoint
9+
10+
The script handles this step automatically. See `aws-mediaconvert-gs.sh` for the exact CLI commands.
11+
12+
## Step 2: Listing job templates
13+
14+
The script handles this step automatically. See `aws-mediaconvert-gs.sh` for the exact CLI commands.
15+
16+
## Step 3: Listing presets
17+
18+
The script handles this step automatically. See `aws-mediaconvert-gs.sh` for the exact CLI commands.
19+
20+
## Step 4: Listing queues
21+
22+
The script handles this step automatically. See `aws-mediaconvert-gs.sh` for the exact CLI commands.
23+

0 commit comments

Comments
 (0)