Skip to content

Commit 13db3fd

Browse files
authored
Merge pull request #170 from stackql/feature/doc-updates
aws doc updates
2 parents 6167569 + 54531b1 commit 13db3fd

File tree

708 files changed

+2356
-2164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

708 files changed

+2356
-2164
lines changed

docs/aws-docs/index.md

Lines changed: 75 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,91 @@
1-
---
2-
title: aws
3-
hide_title: false
4-
hide_table_of_contents: false
5-
keywords:
6-
- aws
7-
- aws cloud control
8-
- cloud control api
9-
- stackql
10-
- infrastructure-as-code
11-
- configuration-as-data
12-
- cloud inventory
13-
description: Query, deploy and manage AWS resources using SQL
14-
custom_edit_url: null
15-
image: /img/providers/aws/stackql-aws-provider-featured-image.png
16-
id: aws-doc
17-
slug: /providers/aws
18-
19-
---
20-
21-
import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
22-
1+
---
2+
title: aws
3+
hide_title: false
4+
hide_table_of_contents: false
5+
keywords:
6+
- aws
7+
- aws cloud control
8+
- cloud control api
9+
- stackql
10+
- infrastructure-as-code
11+
- configuration-as-data
12+
- cloud inventory
13+
description: Query, deploy and manage AWS resources using SQL
14+
custom_edit_url: null
15+
image: /img/providers/aws/stackql-aws-provider-featured-image.png
16+
id: aws-doc
17+
slug: /providers/aws
18+
19+
---
20+
21+
import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
22+
2323
Cloud services from AWS.
2424

2525
:::info Provider Summary (v24.06.00240)
2626

2727
<div class="row">
2828
<div class="providerDocColumn">
2929
<span>total services:&nbsp;<b>218</b></span><br />
30-
<span>total methods:&nbsp;<b>2914</b></span><br />
31-
</div>
32-
<div class="providerDocColumn">
3330
<span>total resources:&nbsp;<b>1013</b></span><br />
34-
<span>total selectable resources:&nbsp;<b>1010</b></span><br />
3531
</div>
3632
</div>
3733

3834
:::
3935

40-
See also:
41-
[[` SHOW `]](https://stackql.io/docs/language-spec/show) [[` DESCRIBE `]](https://stackql.io/docs/language-spec/describe) [[` REGISTRY `]](https://stackql.io/docs/language-spec/registry)
42-
* * *
43-
44-
## Installation
45-
46-
To pull the latest version of the `aws` provider, run the following command:
47-
48-
```bash
49-
REGISTRY PULL aws;
50-
```
51-
> To view previous provider versions or to pull a specific provider version, see [here](https://stackql.io/docs/language-spec/registry).
52-
53-
## Authentication
54-
55-
The following system environment variables are used for authentication by default:
56-
57-
- <CopyableCode code="AWS_ACCESS_KEY_ID" /> - AWS Access Key ID (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html">How to Create AWS Credentials</a>)
58-
- <CopyableCode code="AWS_SECRET_ACCESS_KEY" /> - AWS Secret Access Key (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html">How to Create AWS Credentials</a>)
59-
- <CopyableCode code="AWS_SESSION_TOKEN" /> - [<i>OPTIONAL:</i> only required if using <CopyableCode code="aws sts assume-role" />] AWS Session Token (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary security credentials in IAM</a>)
60-
61-
These variables are sourced at runtime (from the local machine or as CI variables/secrets).
62-
63-
<details>
64-
65-
<summary>Using different environment variables</summary>
66-
67-
To use different environment variables (instead of the defaults), use the `--auth` flag of the `stackql` program. For example:
68-
69-
```bash
70-
71-
AUTH='{ "aws": { "type": "aws_signing_v4", "keyIDenvvar": "YOUR_ACCESS_KEY_ID_VAR", "credentialsenvvar": "YOUR_SECRET_KEY_VAR" }}'
72-
stackql shell --auth="${AUTH}"
73-
74-
```
75-
or using PowerShell:
76-
77-
```powershell
78-
79-
$Auth = "{ 'aws': { 'type': 'aws_signing_v4', 'keyIDenvvar': 'YOUR_ACCESS_KEY_ID_VAR', 'credentialsenvvar': 'YOUR_SECRET_KEY_VAR' }}"
80-
stackql.exe shell --auth=$Auth
81-
82-
```
83-
</details>
84-
85-
86-
## Server Parameters
87-
88-
89-
The following parameter is required for the `aws` provider:
90-
91-
- <CopyableCode code="region" /> - AWS region (e.g. <code>us-east-1</code>)
92-
36+
See also:
37+
[[` SHOW `]](https://stackql.io/docs/language-spec/show) [[` DESCRIBE `]](https://stackql.io/docs/language-spec/describe) [[` REGISTRY `]](https://stackql.io/docs/language-spec/registry)
38+
* * *
39+
40+
## Installation
41+
42+
To pull the latest version of the `aws` provider, run the following command:
43+
44+
```bash
45+
REGISTRY PULL aws;
46+
```
47+
> To view previous provider versions or to pull a specific provider version, see [here](https://stackql.io/docs/language-spec/registry).
48+
49+
## Authentication
50+
51+
The following system environment variables are used for authentication by default:
52+
53+
- <CopyableCode code="AWS_ACCESS_KEY_ID" /> - AWS Access Key ID (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html">How to Create AWS Credentials</a>)
54+
- <CopyableCode code="AWS_SECRET_ACCESS_KEY" /> - AWS Secret Access Key (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html">How to Create AWS Credentials</a>)
55+
- <CopyableCode code="AWS_SESSION_TOKEN" /> - [<i>OPTIONAL:</i> only required if using <CopyableCode code="aws sts assume-role" />] AWS Session Token (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary security credentials in IAM</a>)
56+
57+
These variables are sourced at runtime (from the local machine or as CI variables/secrets).
58+
59+
<details>
60+
61+
<summary>Using different environment variables</summary>
62+
63+
To use different environment variables (instead of the defaults), use the `--auth` flag of the `stackql` program. For example:
64+
65+
```bash
66+
67+
AUTH='{ "aws": { "type": "aws_signing_v4", "keyIDenvvar": "YOUR_ACCESS_KEY_ID_VAR", "credentialsenvvar": "YOUR_SECRET_KEY_VAR" }}'
68+
stackql shell --auth="${AUTH}"
69+
70+
```
71+
or using PowerShell:
72+
73+
```powershell
74+
75+
$Auth = "{ 'aws': { 'type': 'aws_signing_v4', 'keyIDenvvar': 'YOUR_ACCESS_KEY_ID_VAR', 'credentialsenvvar': 'YOUR_SECRET_KEY_VAR' }}"
76+
stackql.exe shell --auth=$Auth
77+
78+
```
79+
</details>
80+
81+
82+
## Server Parameters
83+
84+
85+
The following parameter is required for the `aws` provider:
86+
87+
- <CopyableCode code="region" /> - AWS region (e.g. <code>us-east-1</code>)
88+
9389
This parameter must be supplied to the `WHERE` clause of each `SELECT` statement.
9490

9591
## Services

docs/aws-docs/providers/aws/accessanalyzer/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ The accessanalyzer service documentation.
2121
<div class="row">
2222
<div class="providerDocColumn">
2323
<span>total resources:&nbsp;<b>1</b></span><br />
24-
<span>total selectable resources:&nbsp;<b>1</b></span><br />
25-
<span>total methods:&nbsp;<b>1</b></span><br />
2624
</div>
2725
</div>
2826

docs/aws-docs/providers/aws/acmpca/certificates/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ Creates, updates, deletes or gets a <code>certificate</code> resource or lists <
3333
<table><tbody><tr><th>Name</th><th>Datatype</th><th>Description</th></tr><tr><td><CopyableCode code="api_passthrough" /></td><td><code>object</code></td><td>Specifies X.509 certificate information to be included in the issued certificate. An <code>APIPassthrough</code> or <code>APICSRPassthrough</code> template variant must be selected, or else this parameter is ignored.</td></tr>
3434
<tr><td><CopyableCode code="certificate_authority_arn" /></td><td><code>string</code></td><td>The Amazon Resource Name (ARN) for the private CA issues the certificate.</td></tr>
3535
<tr><td><CopyableCode code="certificate_signing_request" /></td><td><code>string</code></td><td>The certificate signing request (CSR) for the certificate.</td></tr>
36-
<tr><td><CopyableCode code="signing_algorithm" /></td><td><code>string</code></td><td>The name of the algorithm that will be used to sign the certificate to be issued. This parameter should not be confused with the <code>SigningAlgorithm</code> parameter used to sign a CSR in the <code>CreateCertificateAuthority</code> action. The specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key.</td></tr>
36+
<tr><td><CopyableCode code="signing_algorithm" /></td><td><code>string</code></td><td>The name of the algorithm that will be used to sign the certificate to be issued. <br />This parameter should not be confused with the <code>SigningAlgorithm</code> parameter used to sign a CSR in the <code>CreateCertificateAuthority</code> action.<br />The specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key.</td></tr>
3737
<tr><td><CopyableCode code="template_arn" /></td><td><code>string</code></td><td>Specifies a custom configuration template to use when issuing a certificate. If this parameter is not provided, PCAshort defaults to the <code>EndEntityCertificate/V1</code> template. For more information about PCAshort templates, see &#91;Using Templates&#93;(https://docs.aws.amazon.com/privateca/latest/userguide/UsingTemplates.html).</td></tr>
3838
<tr><td><CopyableCode code="validity" /></td><td><code>object</code></td><td>The period of time during which the certificate will be valid.</td></tr>
39-
<tr><td><CopyableCode code="validity_not_before" /></td><td><code>object</code></td><td>Information describing the start of the validity period of the certificate. This parameter sets the “Not Before" date for the certificate. By default, when issuing a certificate, PCAshort sets the "Not Before" date to the issuance time minus 60 minutes. This compensates for clock inconsistencies across computer systems. The <code>ValidityNotBefore</code> parameter can be used to customize the “Not Before” value. Unlike the <code>Validity</code> parameter, the <code>ValidityNotBefore</code> parameter is optional. The <code>ValidityNotBefore</code> value is expressed as an explicit date and time, using the <code>Validity</code> type value <code>ABSOLUTE</code>.</td></tr>
39+
<tr><td><CopyableCode code="validity_not_before" /></td><td><code>object</code></td><td>Information describing the start of the validity period of the certificate. This parameter sets the “Not Before" date for the certificate.<br />By default, when issuing a certificate, PCAshort sets the "Not Before" date to the issuance time minus 60 minutes. This compensates for clock inconsistencies across computer systems. The <code>ValidityNotBefore</code> parameter can be used to customize the “Not Before” value. <br />Unlike the <code>Validity</code> parameter, the <code>ValidityNotBefore</code> parameter is optional.<br />The <code>ValidityNotBefore</code> value is expressed as an explicit date and time, using the <code>Validity</code> type value <code>ABSOLUTE</code>.</td></tr>
4040
<tr><td><CopyableCode code="certificate" /></td><td><code>string</code></td><td></td></tr>
41-
<tr><td><CopyableCode code="arn" /></td><td><code>undefined</code></td><td></td></tr>
41+
<tr><td><CopyableCode code="arn" /></td><td><code>string</code></td><td></td></tr>
4242
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
4343
</tbody></table>
4444

docs/aws-docs/providers/aws/acmpca/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ The acmpca service documentation.
2121
<div class="row">
2222
<div class="providerDocColumn">
2323
<span>total resources:&nbsp;<b>4</b></span><br />
24-
<span>total selectable resources:&nbsp;<b>4</b></span><br />
25-
<span>total methods:&nbsp;<b>4</b></span><br />
2624
</div>
2725
</div>
2826

docs/aws-docs/providers/aws/amplify/apps/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Creates, updates, deletes or gets an <code>app</code> resource or lists <code>ap
3434
<tr><td><CopyableCode code="app_id" /></td><td><code>string</code></td><td></td></tr>
3535
<tr><td><CopyableCode code="app_name" /></td><td><code>string</code></td><td></td></tr>
3636
<tr><td><CopyableCode code="arn" /></td><td><code>string</code></td><td></td></tr>
37-
<tr><td><CopyableCode code="auto_branch_creation_config" /></td><td><code>undefined</code></td><td></td></tr>
38-
<tr><td><CopyableCode code="basic_auth_config" /></td><td><code>undefined</code></td><td></td></tr>
37+
<tr><td><CopyableCode code="auto_branch_creation_config" /></td><td><code>object</code></td><td></td></tr>
38+
<tr><td><CopyableCode code="basic_auth_config" /></td><td><code>object</code></td><td></td></tr>
3939
<tr><td><CopyableCode code="build_spec" /></td><td><code>string</code></td><td></td></tr>
4040
<tr><td><CopyableCode code="custom_headers" /></td><td><code>string</code></td><td></td></tr>
4141
<tr><td><CopyableCode code="custom_rules" /></td><td><code>array</code></td><td></td></tr>

docs/aws-docs/providers/aws/amplify/branches/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Creates, updates, deletes or gets a <code>branch</code> resource or lists <code>
3232
## Fields
3333
<table><tbody><tr><th>Name</th><th>Datatype</th><th>Description</th></tr><tr><td><CopyableCode code="app_id" /></td><td><code>string</code></td><td></td></tr>
3434
<tr><td><CopyableCode code="arn" /></td><td><code>string</code></td><td></td></tr>
35-
<tr><td><CopyableCode code="basic_auth_config" /></td><td><code>undefined</code></td><td></td></tr>
36-
<tr><td><CopyableCode code="backend" /></td><td><code>undefined</code></td><td></td></tr>
35+
<tr><td><CopyableCode code="basic_auth_config" /></td><td><code>object</code></td><td></td></tr>
36+
<tr><td><CopyableCode code="backend" /></td><td><code>object</code></td><td></td></tr>
3737
<tr><td><CopyableCode code="branch_name" /></td><td><code>string</code></td><td></td></tr>
3838
<tr><td><CopyableCode code="build_spec" /></td><td><code>string</code></td><td></td></tr>
3939
<tr><td><CopyableCode code="description" /></td><td><code>string</code></td><td></td></tr>

docs/aws-docs/providers/aws/amplify/domains/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Creates, updates, deletes or gets a <code>domain</code> resource or lists <code>
3535
<tr><td><CopyableCode code="auto_sub_domain_creation_patterns" /></td><td><code>array</code></td><td></td></tr>
3636
<tr><td><CopyableCode code="auto_sub_domain_iam_role" /></td><td><code>string</code></td><td></td></tr>
3737
<tr><td><CopyableCode code="certificate_record" /></td><td><code>string</code></td><td></td></tr>
38-
<tr><td><CopyableCode code="certificate" /></td><td><code>undefined</code></td><td></td></tr>
39-
<tr><td><CopyableCode code="certificate_settings" /></td><td><code>undefined</code></td><td></td></tr>
38+
<tr><td><CopyableCode code="certificate" /></td><td><code>object</code></td><td></td></tr>
39+
<tr><td><CopyableCode code="certificate_settings" /></td><td><code>object</code></td><td></td></tr>
4040
<tr><td><CopyableCode code="domain_name" /></td><td><code>string</code></td><td></td></tr>
4141
<tr><td><CopyableCode code="domain_status" /></td><td><code>string</code></td><td></td></tr>
4242
<tr><td><CopyableCode code="update_status" /></td><td><code>string</code></td><td></td></tr>

docs/aws-docs/providers/aws/amplify/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ The amplify service documentation.
2121
<div class="row">
2222
<div class="providerDocColumn">
2323
<span>total resources:&nbsp;<b>3</b></span><br />
24-
<span>total selectable resources:&nbsp;<b>3</b></span><br />
25-
<span>total methods:&nbsp;<b>3</b></span><br />
2624
</div>
2725
</div>
2826

docs/aws-docs/providers/aws/amplifyuibuilder/components/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@ Creates, updates, deletes or gets a <code>component</code> resource or lists <co
3131

3232
## Fields
3333
<table><tbody><tr><th>Name</th><th>Datatype</th><th>Description</th></tr><tr><td><CopyableCode code="app_id" /></td><td><code>string</code></td><td></td></tr>
34-
<tr><td><CopyableCode code="binding_properties" /></td><td><code>undefined</code></td><td></td></tr>
34+
<tr><td><CopyableCode code="binding_properties" /></td><td><code>object</code></td><td></td></tr>
3535
<tr><td><CopyableCode code="children" /></td><td><code>array</code></td><td></td></tr>
36-
<tr><td><CopyableCode code="collection_properties" /></td><td><code>undefined</code></td><td></td></tr>
36+
<tr><td><CopyableCode code="collection_properties" /></td><td><code>object</code></td><td></td></tr>
3737
<tr><td><CopyableCode code="component_type" /></td><td><code>string</code></td><td></td></tr>
3838
<tr><td><CopyableCode code="created_at" /></td><td><code>string</code></td><td></td></tr>
3939
<tr><td><CopyableCode code="environment_name" /></td><td><code>string</code></td><td></td></tr>
40-
<tr><td><CopyableCode code="events" /></td><td><code>undefined</code></td><td></td></tr>
40+
<tr><td><CopyableCode code="events" /></td><td><code>object</code></td><td></td></tr>
4141
<tr><td><CopyableCode code="id" /></td><td><code>string</code></td><td></td></tr>
4242
<tr><td><CopyableCode code="modified_at" /></td><td><code>string</code></td><td></td></tr>
4343
<tr><td><CopyableCode code="name" /></td><td><code>string</code></td><td></td></tr>
44-
<tr><td><CopyableCode code="overrides" /></td><td><code>undefined</code></td><td></td></tr>
45-
<tr><td><CopyableCode code="properties" /></td><td><code>undefined</code></td><td></td></tr>
44+
<tr><td><CopyableCode code="overrides" /></td><td><code>object</code></td><td></td></tr>
45+
<tr><td><CopyableCode code="properties" /></td><td><code>object</code></td><td></td></tr>
4646
<tr><td><CopyableCode code="schema_version" /></td><td><code>string</code></td><td></td></tr>
4747
<tr><td><CopyableCode code="source_id" /></td><td><code>string</code></td><td></td></tr>
48-
<tr><td><CopyableCode code="tags" /></td><td><code>undefined</code></td><td></td></tr>
48+
<tr><td><CopyableCode code="tags" /></td><td><code>object</code></td><td></td></tr>
4949
<tr><td><CopyableCode code="variants" /></td><td><code>array</code></td><td></td></tr>
5050
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
5151
</tbody></table>

docs/aws-docs/providers/aws/amplifyuibuilder/forms/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ Creates, updates, deletes or gets a <code>form</code> resource or lists <code>fo
3131

3232
## Fields
3333
<table><tbody><tr><th>Name</th><th>Datatype</th><th>Description</th></tr><tr><td><CopyableCode code="app_id" /></td><td><code>string</code></td><td></td></tr>
34-
<tr><td><CopyableCode code="cta" /></td><td><code>undefined</code></td><td></td></tr>
35-
<tr><td><CopyableCode code="data_type" /></td><td><code>undefined</code></td><td></td></tr>
34+
<tr><td><CopyableCode code="cta" /></td><td><code>object</code></td><td></td></tr>
35+
<tr><td><CopyableCode code="data_type" /></td><td><code>object</code></td><td></td></tr>
3636
<tr><td><CopyableCode code="environment_name" /></td><td><code>string</code></td><td></td></tr>
37-
<tr><td><CopyableCode code="fields" /></td><td><code>undefined</code></td><td></td></tr>
38-
<tr><td><CopyableCode code="form_action_type" /></td><td><code>undefined</code></td><td></td></tr>
37+
<tr><td><CopyableCode code="fields" /></td><td><code>object</code></td><td></td></tr>
38+
<tr><td><CopyableCode code="form_action_type" /></td><td><code>string</code></td><td></td></tr>
3939
<tr><td><CopyableCode code="id" /></td><td><code>string</code></td><td></td></tr>
40-
<tr><td><CopyableCode code="label_decorator" /></td><td><code>undefined</code></td><td></td></tr>
40+
<tr><td><CopyableCode code="label_decorator" /></td><td><code>string</code></td><td></td></tr>
4141
<tr><td><CopyableCode code="name" /></td><td><code>string</code></td><td></td></tr>
4242
<tr><td><CopyableCode code="schema_version" /></td><td><code>string</code></td><td></td></tr>
43-
<tr><td><CopyableCode code="sectional_elements" /></td><td><code>undefined</code></td><td></td></tr>
44-
<tr><td><CopyableCode code="style" /></td><td><code>undefined</code></td><td></td></tr>
45-
<tr><td><CopyableCode code="tags" /></td><td><code>undefined</code></td><td></td></tr>
43+
<tr><td><CopyableCode code="sectional_elements" /></td><td><code>object</code></td><td></td></tr>
44+
<tr><td><CopyableCode code="style" /></td><td><code>object</code></td><td></td></tr>
45+
<tr><td><CopyableCode code="tags" /></td><td><code>object</code></td><td></td></tr>
4646
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
4747
</tbody></table>
4848

docs/aws-docs/providers/aws/amplifyuibuilder/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ The amplifyuibuilder service documentation.
2121
<div class="row">
2222
<div class="providerDocColumn">
2323
<span>total resources:&nbsp;<b>3</b></span><br />
24-
<span>total selectable resources:&nbsp;<b>3</b></span><br />
25-
<span>total methods:&nbsp;<b>3</b></span><br />
2624
</div>
2725
</div>
2826

docs/aws-docs/providers/aws/amplifyuibuilder/themes/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Creates, updates, deletes or gets a <code>theme</code> resource or lists <code>t
3737
<tr><td><CopyableCode code="modified_at" /></td><td><code>string</code></td><td></td></tr>
3838
<tr><td><CopyableCode code="name" /></td><td><code>string</code></td><td></td></tr>
3939
<tr><td><CopyableCode code="overrides" /></td><td><code>array</code></td><td></td></tr>
40-
<tr><td><CopyableCode code="tags" /></td><td><code>undefined</code></td><td></td></tr>
40+
<tr><td><CopyableCode code="tags" /></td><td><code>object</code></td><td></td></tr>
4141
<tr><td><CopyableCode code="values" /></td><td><code>array</code></td><td></td></tr>
4242
<tr><td><CopyableCode code="region" /></td><td><code>string</code></td><td>AWS region.</td></tr>
4343
</tbody></table>

0 commit comments

Comments
 (0)