diff --git a/docs/aws-docs/index.md b/docs/aws-docs/index.md index 80972feb11..fde3aacb27 100644 --- a/docs/aws-docs/index.md +++ b/docs/aws-docs/index.md @@ -22,12 +22,12 @@ import CopyableCode from '@site/src/components/CopyableCode/CopyableCode'; Cloud services from AWS. -:::info Provider Summary (v24.06.00240) +:::info Provider Summary (v24.07.00244)
analyzers
in a region
+
+## Overview
+Name | analyzer_tags |
Type | Resource |
Description | The AWS::AccessAnalyzer::Analyzer type specifies an analyzer of the user's account |
Id |
Name | Datatype | Description |
---|---|---|
string | Analyzer name | |
array | ||
string | Amazon Resource Name (ARN) of the analyzer | |
string | The type of the analyzer, must be one of ACCOUNT, ORGANIZATION, ACCOUNT_UNUSED_ACCESS or ORGANIZATION_UNUSED_ACCESS | |
object | The configuration for the analyzer | |
string | Tag key. | |
string | Tag value. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
analyzers
in a region.
+```sql
+SELECT
+region,
+analyzer_name,
+archive_rules,
+arn,
+type,
+analyzer_configuration,
+tag_key,
+tag_value
+FROM aws.accessanalyzer.analyzer_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the analyzer_tags
resource, see analyzers
+
+
diff --git a/docs/aws-docs/providers/aws/accessanalyzer/analyzers/index.md b/docs/aws-docs/providers/aws/accessanalyzer/analyzers/index.md
index d6cb4a9807..7ff97e373a 100644
--- a/docs/aws-docs/providers/aws/accessanalyzer/analyzers/index.md
+++ b/docs/aws-docs/providers/aws/accessanalyzer/analyzers/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets an analyzer
resource or lists SELECT
analyzer
resource or lists analyzers
in a region.
+Gets all analyzers
in a region.
```sql
SELECT
region,
-arn
+analyzer_name,
+archive_rules,
+arn,
+tags,
+type,
+analyzer_configuration
FROM aws.accessanalyzer.analyzers
WHERE region = 'us-east-1';
```
-Gets all properties from an analyzer
.
+Gets all properties from an individual analyzer
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.accessanalyzer.analyzers
WHERE region = 'us-east-1' AND data__Identifier = 'analyzer
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/accessanalyzer/analyzers_list_only/index.md b/docs/aws-docs/providers/aws/accessanalyzer/analyzers_list_only/index.md
new file mode 100644
index 0000000000..c60d8fae81
--- /dev/null
+++ b/docs/aws-docs/providers/aws/accessanalyzer/analyzers_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: analyzers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - analyzers_list_only
+ - accessanalyzer
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists analyzers
in a region or regions, for all properties use analyzers
+
+## Overview
+Name | analyzers_list_only |
Type | Resource |
Description | The AWS::AccessAnalyzer::Analyzer type specifies an analyzer of the user's account |
Id |
Name | Datatype | Description |
---|---|---|
string | Analyzer name | |
array | ||
string | Amazon Resource Name (ARN) of the analyzer | |
array | An array of key-value pairs to apply to this resource. | |
string | The type of the analyzer, must be one of ACCOUNT, ORGANIZATION, ACCOUNT_UNUSED_ACCESS or ORGANIZATION_UNUSED_ACCESS | |
object | The configuration for the analyzer | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
analyzers
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.accessanalyzer.analyzers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the analyzers_list_only
resource, see analyzers
+
+
diff --git a/docs/aws-docs/providers/aws/accessanalyzer/index.md b/docs/aws-docs/providers/aws/accessanalyzer/index.md
index 07a14655e3..1a13facbda 100644
--- a/docs/aws-docs/providers/aws/accessanalyzer/index.md
+++ b/docs/aws-docs/providers/aws/accessanalyzer/index.md
@@ -20,7 +20,7 @@ The accessanalyzer service documentation.
certificate_authority
resource
SELECT
certificate_authority
resource
## `SELECT` examples
-List all certificate_authorities
in a region.
+Gets all certificate_authorities
in a region.
```sql
SELECT
region,
-arn
+arn,
+type,
+key_algorithm,
+signing_algorithm,
+subject,
+revocation_configuration,
+tags,
+certificate_signing_request,
+csr_extensions,
+key_storage_security_standard,
+usage_mode
FROM aws.acmpca.certificate_authorities
WHERE region = 'us-east-1';
```
-Gets all properties from a certificate_authority
.
+Gets all properties from an individual certificate_authority
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.acmpca.certificate_authorities
WHERE region = 'us-east-1' AND data__Identifier = 'certificate_authority
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/acmpca/certificate_authorities_list_only/index.md b/docs/aws-docs/providers/aws/acmpca/certificate_authorities_list_only/index.md
new file mode 100644
index 0000000000..6a683fd4a5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/acmpca/certificate_authorities_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: certificate_authorities_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - certificate_authorities_list_only
+ - acmpca
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists certificate_authorities
in a region or regions, for all properties use certificate_authorities
+
+## Overview
+Name | certificate_authorities_list_only |
Type | Resource |
Description | Private certificate authority. |
Id |
Name | Datatype | Description |
---|---|---|
string | The Amazon Resource Name (ARN) of the certificate authority. | |
string | The type of the certificate authority. | |
string | Public key algorithm and size, in bits, of the key pair that your CA creates when it issues a certificate. | |
string | Algorithm your CA uses to sign certificate requests. | |
object | Structure that contains X.500 distinguished name information for your CA. | |
object | Certificate revocation information used by the CreateCertificateAuthority and UpdateCertificateAuthority actions. | |
array | ||
string | The base64 PEM-encoded certificate signing request (CSR) for your certificate authority certificate. | |
object | Structure that contains CSR pass through extension information used by the CreateCertificateAuthority action. | |
string | KeyStorageSecurityStadard defines a cryptographic key management compliance standard used for handling CA keys. | |
string | Usage mode of the ceritificate authority. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
certificate_authorities
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.acmpca.certificate_authorities_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the certificate_authorities_list_only
resource, see certificate_authorities
+
+
diff --git a/docs/aws-docs/providers/aws/acmpca/certificate_authority_activations/index.md b/docs/aws-docs/providers/aws/acmpca/certificate_authority_activations/index.md
index 52c688a365..1799d0cbdc 100644
--- a/docs/aws-docs/providers/aws/acmpca/certificate_authority_activations/index.md
+++ b/docs/aws-docs/providers/aws/acmpca/certificate_authority_activations/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a certificate_authority_activation
certificate_authority_activation.
+Gets all properties from an individual certificate_authority_activation
.
```sql
SELECT
region,
@@ -83,7 +83,6 @@ FROM aws.acmpca.certificate_authority_activations
WHERE region = 'us-east-1' AND data__Identifier = 'certificate_authority_activation
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/acmpca/certificate_authority_tags/index.md b/docs/aws-docs/providers/aws/acmpca/certificate_authority_tags/index.md
new file mode 100644
index 0000000000..7898982b5c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/acmpca/certificate_authority_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: certificate_authority_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - certificate_authority_tags
+ - acmpca
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for certificate_authorities
in a region
+
+## Overview
+Name | certificate_authority_tags |
Type | Resource |
Description | Private certificate authority. |
Id |
Name | Datatype | Description |
---|---|---|
string | The Amazon Resource Name (ARN) of the certificate authority. | |
string | The type of the certificate authority. | |
string | Public key algorithm and size, in bits, of the key pair that your CA creates when it issues a certificate. | |
string | Algorithm your CA uses to sign certificate requests. | |
object | Structure that contains X.500 distinguished name information for your CA. | |
object | Certificate revocation information used by the CreateCertificateAuthority and UpdateCertificateAuthority actions. | |
string | The base64 PEM-encoded certificate signing request (CSR) for your certificate authority certificate. | |
object | Structure that contains CSR pass through extension information used by the CreateCertificateAuthority action. | |
string | KeyStorageSecurityStadard defines a cryptographic key management compliance standard used for handling CA keys. | |
string | Usage mode of the ceritificate authority. | |
string | Tag key. | |
string | Tag value. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
certificate_authorities
in a region.
+```sql
+SELECT
+region,
+arn,
+type,
+key_algorithm,
+signing_algorithm,
+subject,
+revocation_configuration,
+certificate_signing_request,
+csr_extensions,
+key_storage_security_standard,
+usage_mode,
+tag_key,
+tag_value
+FROM aws.acmpca.certificate_authority_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the certificate_authority_tags
resource, see certificate_authorities
+
+
diff --git a/docs/aws-docs/providers/aws/acmpca/certificates/index.md b/docs/aws-docs/providers/aws/acmpca/certificates/index.md
index 507b794ed4..2f06a23691 100644
--- a/docs/aws-docs/providers/aws/acmpca/certificates/index.md
+++ b/docs/aws-docs/providers/aws/acmpca/certificates/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a certificate
resource or lists <
## `SELECT` examples
-Gets all properties from a certificate
.
+Gets all properties from an individual certificate
.
```sql
SELECT
region,
@@ -86,7 +86,6 @@ FROM aws.acmpca.certificates
WHERE region = 'us-east-1' AND data__Identifier = 'certificate
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/acmpca/index.md b/docs/aws-docs/providers/aws/acmpca/index.md
index e5a826ff6d..506f53881e 100644
--- a/docs/aws-docs/providers/aws/acmpca/index.md
+++ b/docs/aws-docs/providers/aws/acmpca/index.md
@@ -20,7 +20,7 @@ The acmpca service documentation.
permission
resource or lists permission
.
```sql
SELECT
region,
@@ -76,7 +76,6 @@ FROM aws.acmpca.permissions
WHERE region = 'us-east-1' AND data__Identifier = 'permission
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/amplify/app_tags/index.md b/docs/aws-docs/providers/aws/amplify/app_tags/index.md
new file mode 100644
index 0000000000..dd8d780673
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplify/app_tags/index.md
@@ -0,0 +1,105 @@
+---
+title: app_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - app_tags
+ - amplify
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for apps
in a region
+
+## Overview
+Name | app_tags |
Type | Resource |
Description | The AWS::Amplify::App resource creates Apps in the Amplify Console. An App is a collection of branches. |
Id |
Name | Datatype | Description |
---|---|---|
string | ||
string | ||
string | ||
string | ||
object | ||
object | ||
string | ||
string | ||
array | ||
string | ||
string | ||
boolean | ||
array | ||
string | ||
string | ||
string | ||
string | ||
string | ||
string | Tag key. | |
string | Tag value. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
apps
in a region.
+```sql
+SELECT
+region,
+access_token,
+app_id,
+app_name,
+arn,
+auto_branch_creation_config,
+basic_auth_config,
+build_spec,
+custom_headers,
+custom_rules,
+default_domain,
+description,
+enable_branch_auto_deletion,
+environment_variables,
+iam_service_role,
+name,
+oauth_token,
+platform,
+repository,
+tag_key,
+tag_value
+FROM aws.amplify.app_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the app_tags
resource, see apps
+
+
diff --git a/docs/aws-docs/providers/aws/amplify/apps/index.md b/docs/aws-docs/providers/aws/amplify/apps/index.md
index 5ea584b394..c16a4ebc77 100644
--- a/docs/aws-docs/providers/aws/amplify/apps/index.md
+++ b/docs/aws-docs/providers/aws/amplify/apps/index.md
@@ -76,7 +76,7 @@ Creates, updates, deletes or gets an app
resource or lists ap
-
+
SELECT
@@ -88,15 +88,33 @@ Creates, updates, deletes or gets an app
resource or lists ap
## `SELECT` examples
-List all apps
in a region.
+Gets all apps
in a region.
```sql
SELECT
region,
-arn
+access_token,
+app_id,
+app_name,
+arn,
+auto_branch_creation_config,
+basic_auth_config,
+build_spec,
+custom_headers,
+custom_rules,
+default_domain,
+description,
+enable_branch_auto_deletion,
+environment_variables,
+iam_service_role,
+name,
+oauth_token,
+platform,
+repository,
+tags
FROM aws.amplify.apps
WHERE region = 'us-east-1';
```
-Gets all properties from an app
.
+Gets all properties from an individual app
.
```sql
SELECT
region,
@@ -123,7 +141,6 @@ FROM aws.amplify.apps
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new app
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/amplify/apps_list_only/index.md b/docs/aws-docs/providers/aws/amplify/apps_list_only/index.md
new file mode 100644
index 0000000000..ee1ae5776b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplify/apps_list_only/index.md
@@ -0,0 +1,85 @@
+---
+title: apps_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - apps_list_only
+ - amplify
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists apps
in a region or regions, for all properties use apps
+
+## Overview
+
+Name apps_list_only
+Type Resource
+Description The AWS::Amplify::App resource creates Apps in the Amplify Console. An App is a collection of branches.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+object
+object
+string
+string
+array
+string
+string
+boolean
+array
+string
+string
+string
+string
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all apps
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.amplify.apps_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the apps_list_only
resource, see apps
+
+
diff --git a/docs/aws-docs/providers/aws/amplify/branch_tags/index.md b/docs/aws-docs/providers/aws/amplify/branch_tags/index.md
new file mode 100644
index 0000000000..64b19fe914
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplify/branch_tags/index.md
@@ -0,0 +1,97 @@
+---
+title: branch_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - branch_tags
+ - amplify
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for branches
in a region
+
+## Overview
+
+Name branch_tags
+Type Resource
+Description The AWS::Amplify::Branch resource creates a new branch within an app.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+object
+string
+string
+string
+boolean
+boolean
+boolean
+array
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all branches
in a region.
+```sql
+SELECT
+region,
+app_id,
+arn,
+basic_auth_config,
+backend,
+branch_name,
+build_spec,
+description,
+enable_auto_build,
+enable_performance_mode,
+enable_pull_request_preview,
+environment_variables,
+framework,
+pull_request_environment_name,
+stage,
+tag_key,
+tag_value
+FROM aws.amplify.branch_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the branch_tags
resource, see branches
+
+
diff --git a/docs/aws-docs/providers/aws/amplify/branches/index.md b/docs/aws-docs/providers/aws/amplify/branches/index.md
index 1510835dd0..806f7c842d 100644
--- a/docs/aws-docs/providers/aws/amplify/branches/index.md
+++ b/docs/aws-docs/providers/aws/amplify/branches/index.md
@@ -72,7 +72,7 @@ Creates, updates, deletes or gets a branch
resource or lists
-
+
SELECT
@@ -84,15 +84,29 @@ Creates, updates, deletes or gets a branch
resource or lists
## `SELECT` examples
-List all branches
in a region.
+Gets all branches
in a region.
```sql
SELECT
region,
-arn
+app_id,
+arn,
+basic_auth_config,
+backend,
+branch_name,
+build_spec,
+description,
+enable_auto_build,
+enable_performance_mode,
+enable_pull_request_preview,
+environment_variables,
+framework,
+pull_request_environment_name,
+stage,
+tags
FROM aws.amplify.branches
WHERE region = 'us-east-1';
```
-Gets all properties from a branch
.
+Gets all properties from an individual branch
.
```sql
SELECT
region,
@@ -115,7 +129,6 @@ FROM aws.amplify.branches
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new branch
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/amplify/branches_list_only/index.md b/docs/aws-docs/providers/aws/amplify/branches_list_only/index.md
new file mode 100644
index 0000000000..3ef1e5180e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplify/branches_list_only/index.md
@@ -0,0 +1,81 @@
+---
+title: branches_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - branches_list_only
+ - amplify
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists branches
in a region or regions, for all properties use branches
+
+## Overview
+
+Name branches_list_only
+Type Resource
+Description The AWS::Amplify::Branch resource creates a new branch within an app.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+object
+string
+string
+string
+boolean
+boolean
+boolean
+array
+string
+string
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all branches
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.amplify.branches_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the branches_list_only
resource, see branches
+
+
diff --git a/docs/aws-docs/providers/aws/amplify/domains/index.md b/docs/aws-docs/providers/aws/amplify/domains/index.md
index 8cf741d738..54d8e608cd 100644
--- a/docs/aws-docs/providers/aws/amplify/domains/index.md
+++ b/docs/aws-docs/providers/aws/amplify/domains/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a domain
resource or lists
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a domain
resource or lists
## `SELECT` examples
-List all domains
in a region.
+Gets all domains
in a region.
```sql
SELECT
region,
-arn
+app_id,
+arn,
+auto_sub_domain_creation_patterns,
+auto_sub_domain_iam_role,
+certificate_record,
+certificate,
+certificate_settings,
+domain_name,
+domain_status,
+update_status,
+enable_auto_sub_domain,
+status_reason,
+sub_domain_settings
FROM aws.amplify.domains
WHERE region = 'us-east-1';
```
-Gets all properties from a domain
.
+Gets all properties from an individual domain
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.amplify.domains
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/amplify/domains_list_only/index.md b/docs/aws-docs/providers/aws/amplify/domains_list_only/index.md
new file mode 100644
index 0000000000..83097a7b45
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplify/domains_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: domains_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domains_list_only
+ - amplify
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists domains
in a region or regions, for all properties use domains
+
+## Overview
+
+Name domains_list_only
+Type Resource
+Description The AWS::Amplify::Domain resource allows you to connect a custom domain to your app.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+array
+string
+string
+object
+object
+string
+string
+string
+boolean
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all domains
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.amplify.domains_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domains_list_only
resource, see domains
+
+
diff --git a/docs/aws-docs/providers/aws/amplify/index.md b/docs/aws-docs/providers/aws/amplify/index.md
index 53c1bbc3b0..ec5152fa0b 100644
--- a/docs/aws-docs/providers/aws/amplify/index.md
+++ b/docs/aws-docs/providers/aws/amplify/index.md
@@ -20,7 +20,7 @@ The amplify service documentation.
-total resources: 3
+total resources: 8
@@ -29,10 +29,15 @@ The amplify service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/component_tags/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/component_tags/index.md
new file mode 100644
index 0000000000..752b7db81e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/component_tags/index.md
@@ -0,0 +1,101 @@
+---
+title: component_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - component_tags
+ - amplifyuibuilder
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for components
in a region
+
+## Overview
+
+Name component_tags
+Type Resource
+Description Definition of AWS::AmplifyUIBuilder::Component Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+array
+object
+string
+string
+string
+object
+string
+string
+string
+object
+object
+string
+string
+array
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all components
in a region.
+```sql
+SELECT
+region,
+app_id,
+binding_properties,
+children,
+collection_properties,
+component_type,
+created_at,
+environment_name,
+events,
+id,
+modified_at,
+name,
+overrides,
+properties,
+schema_version,
+source_id,
+variants,
+tag_key,
+tag_value
+FROM aws.amplifyuibuilder.component_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the component_tags
resource, see components
+
+
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/components/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/components/index.md
index fc33c92368..de93565131 100644
--- a/docs/aws-docs/providers/aws/amplifyuibuilder/components/index.md
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/components/index.md
@@ -74,7 +74,7 @@ Creates, updates, deletes or gets a component
resource or lists
-
+
SELECT
@@ -86,17 +86,31 @@ Creates, updates, deletes or gets a component
resource or lists
## `SELECT` examples
-List all components
in a region.
+Gets all components
in a region.
```sql
SELECT
region,
app_id,
+binding_properties,
+children,
+collection_properties,
+component_type,
+created_at,
environment_name,
-id
+events,
+id,
+modified_at,
+name,
+overrides,
+properties,
+schema_version,
+source_id,
+tags,
+variants
FROM aws.amplifyuibuilder.components
WHERE region = 'us-east-1';
```
-Gets all properties from a component
.
+Gets all properties from an individual component
.
```sql
SELECT
region,
@@ -121,7 +135,6 @@ FROM aws.amplifyuibuilder.components
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new component
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/components_list_only/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/components_list_only/index.md
new file mode 100644
index 0000000000..d7c718c3bc
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/components_list_only/index.md
@@ -0,0 +1,85 @@
+---
+title: components_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - components_list_only
+ - amplifyuibuilder
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists components
in a region or regions, for all properties use components
+
+## Overview
+
+Name components_list_only
+Type Resource
+Description Definition of AWS::AmplifyUIBuilder::Component Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+array
+object
+string
+string
+string
+object
+string
+string
+string
+object
+object
+string
+string
+object
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all components
in a region.
+```sql
+SELECT
+region,
+app_id,
+environment_name,
+id
+FROM aws.amplifyuibuilder.components_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the components_list_only
resource, see components
+
+
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/form_tags/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/form_tags/index.md
new file mode 100644
index 0000000000..ce19e3c638
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/form_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: form_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - form_tags
+ - amplifyuibuilder
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for forms
in a region
+
+## Overview
+
+Name form_tags
+Type Resource
+Description Definition of AWS::AmplifyUIBuilder::Form Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+object
+string
+object
+string
+string
+string
+string
+string
+object
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all forms
in a region.
+```sql
+SELECT
+region,
+app_id,
+cta,
+data_type,
+environment_name,
+fields,
+form_action_type,
+id,
+label_decorator,
+name,
+schema_version,
+sectional_elements,
+style,
+tag_key,
+tag_value
+FROM aws.amplifyuibuilder.form_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the form_tags
resource, see forms
+
+
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/forms/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/forms/index.md
index 78d0d18b9d..bd81ea44d2 100644
--- a/docs/aws-docs/providers/aws/amplifyuibuilder/forms/index.md
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/forms/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a form
resource or lists fo
-
+
SELECT
@@ -82,17 +82,27 @@ Creates, updates, deletes or gets a form
resource or lists fo
## `SELECT` examples
-List all forms
in a region.
+Gets all forms
in a region.
```sql
SELECT
region,
app_id,
+cta,
+data_type,
environment_name,
-id
+fields,
+form_action_type,
+id,
+label_decorator,
+name,
+schema_version,
+sectional_elements,
+style,
+tags
FROM aws.amplifyuibuilder.forms
WHERE region = 'us-east-1';
```
-Gets all properties from a form
.
+Gets all properties from an individual form
.
```sql
SELECT
region,
@@ -113,7 +123,6 @@ FROM aws.amplifyuibuilder.forms
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new form
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/forms_list_only/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/forms_list_only/index.md
new file mode 100644
index 0000000000..967205d750
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/forms_list_only/index.md
@@ -0,0 +1,81 @@
+---
+title: forms_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - forms_list_only
+ - amplifyuibuilder
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists forms
in a region or regions, for all properties use forms
+
+## Overview
+
+Name forms_list_only
+Type Resource
+Description Definition of AWS::AmplifyUIBuilder::Form Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+object
+string
+object
+string
+string
+string
+string
+string
+object
+object
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all forms
in a region.
+```sql
+SELECT
+region,
+app_id,
+environment_name,
+id
+FROM aws.amplifyuibuilder.forms_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the forms_list_only
resource, see forms
+
+
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/index.md
index 442ae8ca89..d7a53849bf 100644
--- a/docs/aws-docs/providers/aws/amplifyuibuilder/index.md
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/index.md
@@ -20,7 +20,7 @@ The amplifyuibuilder service documentation.
-total resources: 3
+total resources: 9
@@ -29,10 +29,16 @@ The amplifyuibuilder service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/theme_tags/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/theme_tags/index.md
new file mode 100644
index 0000000000..ceda0db46a
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/theme_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: theme_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - theme_tags
+ - amplifyuibuilder
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for themes
in a region
+
+## Overview
+
+Name theme_tags
+Type Resource
+Description Definition of AWS::AmplifyUIBuilder::Theme Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+array
+array
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all themes
in a region.
+```sql
+SELECT
+region,
+app_id,
+created_at,
+environment_name,
+id,
+modified_at,
+name,
+overrides,
+values,
+tag_key,
+tag_value
+FROM aws.amplifyuibuilder.theme_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the theme_tags
resource, see themes
+
+
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/themes/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/themes/index.md
index f54eae921e..c25ba8dd4c 100644
--- a/docs/aws-docs/providers/aws/amplifyuibuilder/themes/index.md
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/themes/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a theme
resource or lists t
-
+
SELECT
@@ -78,17 +78,23 @@ Creates, updates, deletes or gets a theme
resource or lists t
## `SELECT` examples
-List all themes
in a region.
+Gets all themes
in a region.
```sql
SELECT
region,
app_id,
+created_at,
environment_name,
-id
+id,
+modified_at,
+name,
+overrides,
+tags,
+values
FROM aws.amplifyuibuilder.themes
WHERE region = 'us-east-1';
```
-Gets all properties from a theme
.
+Gets all properties from an individual theme
.
```sql
SELECT
region,
@@ -105,7 +111,6 @@ FROM aws.amplifyuibuilder.themes
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new theme
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/amplifyuibuilder/themes_list_only/index.md b/docs/aws-docs/providers/aws/amplifyuibuilder/themes_list_only/index.md
new file mode 100644
index 0000000000..0971145c13
--- /dev/null
+++ b/docs/aws-docs/providers/aws/amplifyuibuilder/themes_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: themes_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - themes_list_only
+ - amplifyuibuilder
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists themes
in a region or regions, for all properties use themes
+
+## Overview
+
+Name themes_list_only
+Type Resource
+Description Definition of AWS::AmplifyUIBuilder::Theme Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+array
+object
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all themes
in a region.
+```sql
+SELECT
+region,
+app_id,
+environment_name,
+id
+FROM aws.amplifyuibuilder.themes_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the themes_list_only
resource, see themes
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/accounts/index.md b/docs/aws-docs/providers/aws/apigateway/accounts/index.md
index a09200e2b2..32dfc4c7a3 100644
--- a/docs/aws-docs/providers/aws/apigateway/accounts/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/accounts/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets an account
resource or lists account
.
+Gets all properties from an individual account
.
```sql
SELECT
region,
@@ -77,7 +77,6 @@ FROM aws.apigateway.accounts
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new account
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/api_key_tags/index.md b/docs/aws-docs/providers/aws/apigateway/api_key_tags/index.md
new file mode 100644
index 0000000000..163c702e3d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/api_key_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: api_key_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - api_key_tags
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for api_keys
in a region
+
+## Overview
+
+Name api_key_tags
+Type Resource
+Description The AWS::ApiGateway::ApiKey
resource creates a unique key that you can distribute to clients who are executing API Gateway Method
resources that require an API key. To specify which API key clients must use, map the API key with the RestApi
and Stage
resources that include the methods that require a key.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
An MKT customer identifier, when integrating with the AWS SaaS Marketplace.
+string
The description of the ApiKey.
+boolean
Specifies whether the ApiKey can be used by callers.
+boolean
Specifies whether (true
) or not (false
) the key identifier is distinct from the created API key value. This parameter is deprecated and should not be used.
+string
A name for the API key. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the API key name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
+array
DEPRECATED FOR USAGE PLANS - Specifies stages associated with the API key.
+string
Specifies a value of the API key.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all api_keys
in a region.
+```sql
+SELECT
+region,
+api_key_id,
+customer_id,
+description,
+enabled,
+generate_distinct_id,
+name,
+stage_keys,
+value,
+tag_key,
+tag_value
+FROM aws.apigateway.api_key_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the api_key_tags
resource, see api_keys
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/api_keys/index.md b/docs/aws-docs/providers/aws/apigateway/api_keys/index.md
index c60d641339..027b3ccc5f 100644
--- a/docs/aws-docs/providers/aws/apigateway/api_keys/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/api_keys/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets an api_key
resource or lists
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets an api_key
resource or lists
## `SELECT` examples
-List all api_keys
in a region.
+Gets all api_keys
in a region.
```sql
SELECT
region,
-api_key_id
+api_key_id,
+customer_id,
+description,
+enabled,
+generate_distinct_id,
+name,
+stage_keys,
+tags,
+value
FROM aws.apigateway.api_keys
WHERE region = 'us-east-1';
```
-Gets all properties from an api_key
.
+Gets all properties from an individual api_key
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.apigateway.api_keys
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new api_key
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/api_keys_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/api_keys_list_only/index.md
new file mode 100644
index 0000000000..e59180c5cf
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/api_keys_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: api_keys_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - api_keys_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists api_keys
in a region or regions, for all properties use api_keys
+
+## Overview
+
+Name api_keys_list_only
+Type Resource
+Description The AWS::ApiGateway::ApiKey
resource creates a unique key that you can distribute to clients who are executing API Gateway Method
resources that require an API key. To specify which API key clients must use, map the API key with the RestApi
and Stage
resources that include the methods that require a key.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
An MKT customer identifier, when integrating with the AWS SaaS Marketplace.
+string
The description of the ApiKey.
+boolean
Specifies whether the ApiKey can be used by callers.
+boolean
Specifies whether (true
) or not (false
) the key identifier is distinct from the created API key value. This parameter is deprecated and should not be used.
+string
A name for the API key. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the API key name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
+array
DEPRECATED FOR USAGE PLANS - Specifies stages associated with the API key.
+array
The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:
. The tag value can be up to 256 characters.
+string
Specifies a value of the API key.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all api_keys
in a region.
+```sql
+SELECT
+region,
+api_key_id
+FROM aws.apigateway.api_keys_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the api_keys_list_only
resource, see api_keys
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/authorizers/index.md b/docs/aws-docs/providers/aws/apigateway/authorizers/index.md
index 0d9e9d35c0..d1726e7e6f 100644
--- a/docs/aws-docs/providers/aws/apigateway/authorizers/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/authorizers/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets an authorizer
resource or lists <
-
+
SELECT
@@ -80,16 +80,25 @@ Creates, updates, deletes or gets an authorizer
resource or lists <
## `SELECT` examples
-List all authorizers
in a region.
+Gets all authorizers
in a region.
```sql
SELECT
region,
rest_api_id,
-authorizer_id
+authorizer_id,
+auth_type,
+authorizer_credentials,
+authorizer_result_ttl_in_seconds,
+authorizer_uri,
+identity_source,
+identity_validation_expression,
+name,
+provider_arns,
+type
FROM aws.apigateway.authorizers
WHERE region = 'us-east-1';
```
-Gets all properties from an authorizer
.
+Gets all properties from an individual authorizer
.
```sql
SELECT
region,
@@ -108,7 +117,6 @@ FROM aws.apigateway.authorizers
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new authorizer
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/authorizers_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/authorizers_list_only/index.md
new file mode 100644
index 0000000000..455ef26f0b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/authorizers_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: authorizers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - authorizers_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists authorizers
in a region or regions, for all properties use authorizers
+
+## Overview
+
+Name authorizers_list_only
+Type Resource
+Description The AWS::ApiGateway::Authorizer
resource creates an authorization layer that API Gateway activates for methods that have authorization enabled. API Gateway activates the authorizer when a client calls those methods.
+Id
+
+
+## Fields
+Name Datatype Description string
The string identifier of the associated RestApi.
+string
+string
Optional customer-defined field, used in OpenAPI imports and exports without functional impact.
+string
Specifies the required credentials as an IAM role for API Gateway to invoke the authorizer. To specify an IAM role for API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null.
+integer
The TTL in seconds of cached authorizer results. If it equals 0, authorization caching is disabled. If it is greater than 0, API Gateway will cache authorizer responses. If this field is not set, the default value is 300. The maximum value is 3600, or 1 hour.
+string
Specifies the authorizer's Uniform Resource Identifier (URI). For TOKEN
or REQUEST
authorizers, this must be a well-formed Lambda function URI, for example, arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:{account_id}:function:{lambda_function_name}/invocations
. In general, the URI has this form arn:aws:apigateway:{region}:lambda:path/{service_api}
, where {region}
is the same as the region hosting the Lambda function, path
indicates that the remaining substring in the URI should be treated as the path to the resource, including the initial /
. For Lambda functions, this is usually of the form /2015-03-31/functions/[FunctionARN]/invocations
.
+string
The identity source for which authorization is requested. For a TOKEN
or COGNITO_USER_POOLS
authorizer, this is required and specifies the request header mapping expression for the custom header holding the authorization token submitted by the client. For example, if the token header name is Auth
, the header mapping expression is method.request.header.Auth
. For the REQUEST
authorizer, this is required when authorization caching is enabled. The value is a comma-separated string of one or more mapping expressions of the specified request parameters. For example, if an Auth
header, a Name
query string parameter are defined as identity sources, this value is method.request.header.Auth, method.request.querystring.Name
. These parameters will be used to derive the authorization caching key and to perform runtime validation of the REQUEST
authorizer by verifying all of the identity-related request parameters are present, not null and non-empty. Only when this is true does the authorizer invoke the authorizer Lambda function, otherwise, it returns a 401 Unauthorized response without calling the Lambda function. The valid value is a string of comma-separated mapping expressions of the specified request parameters. When the authorization caching is not enabled, this property is optional.
+string
A validation expression for the incoming identity token. For TOKEN
authorizers, this value is a regular expression. For COGNITO_USER_POOLS
authorizers, API Gateway will match the aud
field of the incoming token from the client against the specified regular expression. It will invoke the authorizer's Lambda function when there is a match. Otherwise, it will return a 401 Unauthorized response without calling the Lambda function. The validation expression does not apply to the REQUEST
authorizer.
+string
The name of the authorizer.
+array
A list of the Amazon Cognito user pool ARNs for the COGNITO_USER_POOLS
authorizer. Each element is of this format: arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}
. For a TOKEN
or REQUEST
authorizer, this is not defined.
+string
The authorizer type. Valid values are TOKEN
for a Lambda function using a single authorization token submitted in a custom header, REQUEST
for a Lambda function using incoming request parameters, and COGNITO_USER_POOLS
for using an Amazon Cognito user pool.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all authorizers
in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+authorizer_id
+FROM aws.apigateway.authorizers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the authorizers_list_only
resource, see authorizers
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/base_path_mappings/index.md b/docs/aws-docs/providers/aws/apigateway/base_path_mappings/index.md
index 1e82f0857e..ac79570b9d 100644
--- a/docs/aws-docs/providers/aws/apigateway/base_path_mappings/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/base_path_mappings/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a base_path_mapping
resource or l
-
+
SELECT
@@ -73,16 +73,18 @@ Creates, updates, deletes or gets a base_path_mapping
resource or l
## `SELECT` examples
-List all base_path_mappings
in a region.
+Gets all base_path_mappings
in a region.
```sql
SELECT
region,
+base_path,
domain_name,
-base_path
+rest_api_id,
+stage
FROM aws.apigateway.base_path_mappings
WHERE region = 'us-east-1';
```
-Gets all properties from a base_path_mapping
.
+Gets all properties from an individual base_path_mapping
.
```sql
SELECT
region,
@@ -94,7 +96,6 @@ FROM aws.apigateway.base_path_mappings
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new base_path_mapping
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/base_path_mappings_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/base_path_mappings_list_only/index.md
new file mode 100644
index 0000000000..322ff684e5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/base_path_mappings_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: base_path_mappings_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - base_path_mappings_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists base_path_mappings
in a region or regions, for all properties use base_path_mappings
+
+## Overview
+
+Name base_path_mappings_list_only
+Type Resource
+Description The AWS::ApiGateway::BasePathMapping
resource creates a base path that clients who call your API must use in the invocation URL.
+Id
+
+
+## Fields
+Name Datatype Description string
The base path name that callers of the API must provide as part of the URL after the domain name.
+string
The domain name of the BasePathMapping resource to be described.
+string
The string identifier of the associated RestApi.
+string
The name of the associated stage.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all base_path_mappings
in a region.
+```sql
+SELECT
+region,
+domain_name,
+base_path
+FROM aws.apigateway.base_path_mappings_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the base_path_mappings_list_only
resource, see base_path_mappings
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/client_certificate_tags/index.md b/docs/aws-docs/providers/aws/apigateway/client_certificate_tags/index.md
new file mode 100644
index 0000000000..254ae6bbe9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/client_certificate_tags/index.md
@@ -0,0 +1,73 @@
+---
+title: client_certificate_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - client_certificate_tags
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for client_certificates
in a region
+
+## Overview
+
+Name client_certificate_tags
+Type Resource
+Description The AWS::ApiGateway::ClientCertificate
resource creates a client certificate that API Gateway uses to configure client-side SSL authentication for sending requests to the integration endpoint.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The description of the client certificate.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all client_certificates
in a region.
+```sql
+SELECT
+region,
+client_certificate_id,
+description,
+tag_key,
+tag_value
+FROM aws.apigateway.client_certificate_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the client_certificate_tags
resource, see client_certificates
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/client_certificates/index.md b/docs/aws-docs/providers/aws/apigateway/client_certificates/index.md
index 2e5b37c0fd..20f1360292 100644
--- a/docs/aws-docs/providers/aws/apigateway/client_certificates/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/client_certificates/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a client_certificate
resource or
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a client_certificate
resource or
## `SELECT` examples
-List all client_certificates
in a region.
+Gets all client_certificates
in a region.
```sql
SELECT
region,
-client_certificate_id
+client_certificate_id,
+description,
+tags
FROM aws.apigateway.client_certificates
WHERE region = 'us-east-1';
```
-Gets all properties from a client_certificate
.
+Gets all properties from an individual client_certificate
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.apigateway.client_certificates
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new client_certificate
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/client_certificates_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/client_certificates_list_only/index.md
new file mode 100644
index 0000000000..a79a792cac
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/client_certificates_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: client_certificates_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - client_certificates_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists client_certificates
in a region or regions, for all properties use client_certificates
+
+## Overview
+
+Name client_certificates_list_only
+Type Resource
+Description The AWS::ApiGateway::ClientCertificate
resource creates a client certificate that API Gateway uses to configure client-side SSL authentication for sending requests to the integration endpoint.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The description of the client certificate.
+array
The collection of tags. Each tag element is associated with a given resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all client_certificates
in a region.
+```sql
+SELECT
+region,
+client_certificate_id
+FROM aws.apigateway.client_certificates_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the client_certificates_list_only
resource, see client_certificates
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/deployments/index.md b/docs/aws-docs/providers/aws/apigateway/deployments/index.md
index ba0cc970ac..3649fe872e 100644
--- a/docs/aws-docs/providers/aws/apigateway/deployments/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/deployments/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a deployment
resource or lists
-
+
SELECT
@@ -75,16 +75,20 @@ Creates, updates, deletes or gets a deployment
resource or lists
## `SELECT` examples
-List all deployments
in a region.
+Gets all deployments
in a region.
```sql
SELECT
region,
deployment_id,
-rest_api_id
+description,
+stage_description,
+stage_name,
+rest_api_id,
+deployment_canary_settings
FROM aws.apigateway.deployments
WHERE region = 'us-east-1';
```
-Gets all properties from a deployment
.
+Gets all properties from an individual deployment
.
```sql
SELECT
region,
@@ -98,7 +102,6 @@ FROM aws.apigateway.deployments
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new deployment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/deployments_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/deployments_list_only/index.md
new file mode 100644
index 0000000000..1f1a57d8e2
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/deployments_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: deployments_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - deployments_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists deployments
in a region or regions, for all properties use deployments
+
+## Overview
+
+Name deployments_list_only
+Type Resource
+Description The AWS::ApiGateway::Deployment
resource deploys an API Gateway RestApi
resource to a stage so that clients can call the API over the internet. The stage acts as an environment.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The description for the Deployment resource to create.
+object
The description of the Stage resource for the Deployment resource to create. To specify a stage description, you must also provide a stage name.
+string
The name of the Stage resource for the Deployment resource to create.
+string
The string identifier of the associated RestApi.
+object
The input configuration for a canary deployment.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all deployments
in a region.
+```sql
+SELECT
+region,
+deployment_id,
+rest_api_id
+FROM aws.apigateway.deployments_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the deployments_list_only
resource, see deployments
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/documentation_parts/index.md b/docs/aws-docs/providers/aws/apigateway/documentation_parts/index.md
index 61939523e8..c9cfa5bc35 100644
--- a/docs/aws-docs/providers/aws/apigateway/documentation_parts/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/documentation_parts/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a documentation_part
resource or
-
+
SELECT
@@ -73,16 +73,18 @@ Creates, updates, deletes or gets a documentation_part
resource or
## `SELECT` examples
-List all documentation_parts
in a region.
+Gets all documentation_parts
in a region.
```sql
SELECT
region,
documentation_part_id,
+location,
+properties,
rest_api_id
FROM aws.apigateway.documentation_parts
WHERE region = 'us-east-1';
```
-Gets all properties from a documentation_part
.
+Gets all properties from an individual documentation_part
.
```sql
SELECT
region,
@@ -94,7 +96,6 @@ FROM aws.apigateway.documentation_parts
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new documentation_part
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/documentation_parts_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/documentation_parts_list_only/index.md
new file mode 100644
index 0000000000..6fe892affa
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/documentation_parts_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: documentation_parts_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - documentation_parts_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists documentation_parts
in a region or regions, for all properties use documentation_parts
+
+## Overview
+
+Name documentation_parts_list_only
+Type Resource
+Description The AWS::ApiGateway::DocumentationPart
resource creates a documentation part for an API. For more information, see [Representation of API Documentation in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-documenting-api-content-representation.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+object
The location of the targeted API entity of the to-be-created documentation part.
+string
The new documentation content map of the targeted API entity. Enclosed key-value pairs are API-specific, but only OpenAPI-compliant key-value pairs can be exported and, hence, published.
+string
The string identifier of the associated RestApi.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all documentation_parts
in a region.
+```sql
+SELECT
+region,
+documentation_part_id,
+rest_api_id
+FROM aws.apigateway.documentation_parts_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the documentation_parts_list_only
resource, see documentation_parts
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/documentation_versions/index.md b/docs/aws-docs/providers/aws/apigateway/documentation_versions/index.md
index 1029d95465..e8f88d06ca 100644
--- a/docs/aws-docs/providers/aws/apigateway/documentation_versions/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/documentation_versions/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a documentation_version
resource
-
+
SELECT
@@ -72,16 +72,17 @@ Creates, updates, deletes or gets a documentation_version
resource
## `SELECT` examples
-List all documentation_versions
in a region.
+Gets all documentation_versions
in a region.
```sql
SELECT
region,
+description,
documentation_version,
rest_api_id
FROM aws.apigateway.documentation_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a documentation_version
.
+Gets all properties from an individual documentation_version
.
```sql
SELECT
region,
@@ -92,7 +93,6 @@ FROM aws.apigateway.documentation_versions
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new documentation_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/documentation_versions_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/documentation_versions_list_only/index.md
new file mode 100644
index 0000000000..46b5d6a99e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/documentation_versions_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: documentation_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - documentation_versions_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists documentation_versions
in a region or regions, for all properties use documentation_versions
+
+## Overview
+
+Name documentation_versions_list_only
+Type Resource
+Description The AWS::ApiGateway::DocumentationVersion
resource creates a snapshot of the documentation for an API. For more information, see [Representation of API Documentation in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-documenting-api-content-representation.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
A description about the new documentation snapshot.
+string
The version identifier of the to-be-updated documentation version.
+string
The string identifier of the associated RestApi.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all documentation_versions
in a region.
+```sql
+SELECT
+region,
+documentation_version,
+rest_api_id
+FROM aws.apigateway.documentation_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the documentation_versions_list_only
resource, see documentation_versions
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/domain_name_tags/index.md b/docs/aws-docs/providers/aws/apigateway/domain_name_tags/index.md
new file mode 100644
index 0000000000..3d80501343
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/domain_name_tags/index.md
@@ -0,0 +1,91 @@
+---
+title: domain_name_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_name_tags
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for domain_names
in a region
+
+## Overview
+
+Name domain_name_tags
+Type Resource
+Description Resource Type definition for AWS::ApiGateway::DomainName.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+object
The EndpointConfiguration
property type specifies the endpoint types of a REST API.
EndpointConfiguration
is a property of the [AWS::ApiGateway::RestApi](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html) resource.
+object
+string
+string
+string
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all domain_names
in a region.
+```sql
+SELECT
+region,
+domain_name,
+distribution_domain_name,
+distribution_hosted_zone_id,
+endpoint_configuration,
+mutual_tls_authentication,
+regional_domain_name,
+regional_hosted_zone_id,
+certificate_arn,
+regional_certificate_arn,
+ownership_verification_certificate_arn,
+security_policy,
+tag_key,
+tag_value
+FROM aws.apigateway.domain_name_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_name_tags
resource, see domain_names
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/domain_names/index.md b/docs/aws-docs/providers/aws/apigateway/domain_names/index.md
index 3b1edeb0a4..19cf599acd 100644
--- a/docs/aws-docs/providers/aws/apigateway/domain_names/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/domain_names/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a domain_name
resource or lists <
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets a domain_name
resource or lists <
## `SELECT` examples
-List all domain_names
in a region.
+Gets all domain_names
in a region.
```sql
SELECT
region,
-domain_name
+domain_name,
+distribution_domain_name,
+distribution_hosted_zone_id,
+endpoint_configuration,
+mutual_tls_authentication,
+regional_domain_name,
+regional_hosted_zone_id,
+certificate_arn,
+regional_certificate_arn,
+ownership_verification_certificate_arn,
+security_policy,
+tags
FROM aws.apigateway.domain_names
WHERE region = 'us-east-1';
```
-Gets all properties from a domain_name
.
+Gets all properties from an individual domain_name
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.apigateway.domain_names
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain_name
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/domain_names_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/domain_names_list_only/index.md
new file mode 100644
index 0000000000..2f5f7ae902
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/domain_names_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: domain_names_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_names_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists domain_names
in a region or regions, for all properties use domain_names
+
+## Overview
+
+Name domain_names_list_only
+Type Resource
+Description Resource Type definition for AWS::ApiGateway::DomainName.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+object
The EndpointConfiguration
property type specifies the endpoint types of a REST API.
EndpointConfiguration
is a property of the [AWS::ApiGateway::RestApi](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html) resource.
+object
+string
+string
+string
+string
+string
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all domain_names
in a region.
+```sql
+SELECT
+region,
+domain_name
+FROM aws.apigateway.domain_names_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_names_list_only
resource, see domain_names
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/gateway_responses/index.md b/docs/aws-docs/providers/aws/apigateway/gateway_responses/index.md
index 7dcacd4d2d..a270a6dd5d 100644
--- a/docs/aws-docs/providers/aws/apigateway/gateway_responses/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/gateway_responses/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a gateway_response
resource or li
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a gateway_response
resource or li
## `SELECT` examples
-List all gateway_responses
in a region.
+Gets all gateway_responses
in a region.
```sql
SELECT
region,
-id
+id,
+rest_api_id,
+response_type,
+status_code,
+response_parameters,
+response_templates
FROM aws.apigateway.gateway_responses
WHERE region = 'us-east-1';
```
-Gets all properties from a gateway_response
.
+Gets all properties from an individual gateway_response
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.apigateway.gateway_responses
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new gateway_response
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/gateway_responses_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/gateway_responses_list_only/index.md
new file mode 100644
index 0000000000..ac56365baa
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/gateway_responses_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: gateway_responses_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - gateway_responses_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists gateway_responses
in a region or regions, for all properties use gateway_responses
+
+## Overview
+
+Name gateway_responses_list_only
+Type Resource
+Description The AWS::ApiGateway::GatewayResponse
resource creates a gateway response for your API. For more information, see [API Gateway Responses](https://docs.aws.amazon.com/apigateway/latest/developerguide/customize-gateway-responses.html#api-gateway-gatewayResponse-definition) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The string identifier of the associated RestApi.
+string
The response type of the associated GatewayResponse.
+string
The HTTP status code for this GatewayResponse.
+object
Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs.
+object
Response templates of the GatewayResponse as a string-to-string map of key-value pairs.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all gateway_responses
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.apigateway.gateway_responses_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the gateway_responses_list_only
resource, see gateway_responses
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/index.md b/docs/aws-docs/providers/aws/apigateway/index.md
index 3521ee3043..963a0008aa 100644
--- a/docs/aws-docs/providers/aws/apigateway/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/index.md
@@ -20,7 +20,7 @@ The apigateway service documentation.
-total resources: 19
+total resources: 43
@@ -30,25 +30,49 @@ The apigateway service documentation.
accounts
+api_key_tags
api_keys
+api_keys_list_only
authorizers
+authorizers_list_only
base_path_mappings
+base_path_mappings_list_only
+client_certificate_tags
client_certificates
+client_certificates_list_only
deployments
+deployments_list_only
documentation_parts
+documentation_parts_list_only
documentation_versions
+documentation_versions_list_only
+domain_name_tags
domain_names
-gateway_responses
+domain_names_list_only
+gateway_responses
+gateway_responses_list_only
methods
models
+models_list_only
request_validators
+request_validators_list_only
resources
+resources_list_only
+rest_api_tags
rest_apis
+rest_apis_list_only
+stage_tags
stages
+stages_list_only
usage_plan_keys
+usage_plan_keys_list_only
+usage_plan_tags
usage_plans
-vpc_links
+usage_plans_list_only
+vpc_link_tags
+vpc_links
+vpc_links_list_only
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/apigateway/methods/index.md b/docs/aws-docs/providers/aws/apigateway/methods/index.md
index cda99d100f..ec3dc626fb 100644
--- a/docs/aws-docs/providers/aws/apigateway/methods/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/methods/index.md
@@ -78,7 +78,7 @@ Creates, updates, deletes or gets a method
resource or lists
## `SELECT` examples
-Gets all properties from a method
.
+Gets all properties from an individual method
.
```sql
SELECT
region,
@@ -99,7 +99,6 @@ FROM aws.apigateway.methods
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new method
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/models/index.md b/docs/aws-docs/providers/aws/apigateway/models/index.md
index b9da5b4aaf..9cffb84a51 100644
--- a/docs/aws-docs/providers/aws/apigateway/models/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/models/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a model
resource or lists m
-
+
SELECT
@@ -74,16 +74,19 @@ Creates, updates, deletes or gets a model
resource or lists m
## `SELECT` examples
-List all models
in a region.
+Gets all models
in a region.
```sql
SELECT
region,
+content_type,
+description,
+name,
rest_api_id,
-name
+schema
FROM aws.apigateway.models
WHERE region = 'us-east-1';
```
-Gets all properties from a model
.
+Gets all properties from an individual model
.
```sql
SELECT
region,
@@ -96,7 +99,6 @@ FROM aws.apigateway.models
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new model
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/models_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/models_list_only/index.md
new file mode 100644
index 0000000000..ccdee631df
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/models_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: models_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - models_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists models
in a region or regions, for all properties use models
+
+## Overview
+
+Name models_list_only
+Type Resource
+Description The AWS::ApiGateway::Model
resource defines the structure of a request or response payload for an API method.
+Id
+
+
+## Fields
+Name Datatype Description string
The content-type for the model.
+string
The description of the model.
+string
A name for the model. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the model name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
+string
The string identifier of the associated RestApi.
+object
The schema for the model. For application/json
models, this should be JSON schema draft 4 model. Do not include "\*/" characters in the description of any properties because such "\*/" characters may be interpreted as the closing marker for comments in some languages, such as Java or JavaScript, causing the installation of your API's SDK generated by API Gateway to fail.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all models
in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+name
+FROM aws.apigateway.models_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the models_list_only
resource, see models
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/request_validators/index.md b/docs/aws-docs/providers/aws/apigateway/request_validators/index.md
index 3893be70eb..28c20c6426 100644
--- a/docs/aws-docs/providers/aws/apigateway/request_validators/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/request_validators/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a request_validator
resource or l
-
+
SELECT
@@ -74,16 +74,19 @@ Creates, updates, deletes or gets a request_validator
resource or l
## `SELECT` examples
-List all request_validators
in a region.
+Gets all request_validators
in a region.
```sql
SELECT
region,
+request_validator_id,
+name,
rest_api_id,
-request_validator_id
+validate_request_body,
+validate_request_parameters
FROM aws.apigateway.request_validators
WHERE region = 'us-east-1';
```
-Gets all properties from a request_validator
.
+Gets all properties from an individual request_validator
.
```sql
SELECT
region,
@@ -96,7 +99,6 @@ FROM aws.apigateway.request_validators
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new request_validator
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/request_validators_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/request_validators_list_only/index.md
new file mode 100644
index 0000000000..adb5d1cefd
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/request_validators_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: request_validators_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - request_validators_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists request_validators
in a region or regions, for all properties use request_validators
+
+## Overview
+
+Name request_validators_list_only
+Type Resource
+Description The AWS::ApiGateway::RequestValidator
resource sets up basic validation rules for incoming requests to your API. For more information, see [Enable Basic Request Validation for an API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-method-request-validation.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The name of this RequestValidator
+string
The string identifier of the associated RestApi.
+boolean
A Boolean flag to indicate whether to validate a request body according to the configured Model schema.
+boolean
A Boolean flag to indicate whether to validate request parameters (true
) or not (false
).
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all request_validators
in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+request_validator_id
+FROM aws.apigateway.request_validators_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the request_validators_list_only
resource, see request_validators
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/resources/index.md b/docs/aws-docs/providers/aws/apigateway/resources/index.md
index 549778d333..f6d91f7a3d 100644
--- a/docs/aws-docs/providers/aws/apigateway/resources/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/resources/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a resource
resource or lists
-
+
SELECT
@@ -73,16 +73,18 @@ Creates, updates, deletes or gets a resource
resource or lists
## `SELECT` examples
-List all resources
in a region.
+Gets all resources
in a region.
```sql
SELECT
region,
-rest_api_id,
-resource_id
+parent_id,
+path_part,
+resource_id,
+rest_api_id
FROM aws.apigateway.resources
WHERE region = 'us-east-1';
```
-Gets all properties from a resource
.
+Gets all properties from an individual resource
.
```sql
SELECT
region,
@@ -94,7 +96,6 @@ FROM aws.apigateway.resources
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new resource
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/resources_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/resources_list_only/index.md
new file mode 100644
index 0000000000..da17c67ef5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/resources_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: resources_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - resources_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists resources
in a region or regions, for all properties use resources
+
+## Overview
+
+Name resources_list_only
+Type Resource
+Description The AWS::ApiGateway::Resource
resource creates a resource in an API.
+Id
+
+
+## Fields
+Name Datatype Description string
The parent resource's identifier.
+string
The last path segment for this resource.
+string
+string
The string identifier of the associated RestApi.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all resources
in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+resource_id
+FROM aws.apigateway.resources_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the resources_list_only
resource, see resources
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/rest_api_tags/index.md b/docs/aws-docs/providers/aws/apigateway/rest_api_tags/index.md
new file mode 100644
index 0000000000..d0513f1585
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/rest_api_tags/index.md
@@ -0,0 +1,101 @@
+---
+title: rest_api_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - rest_api_tags
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for rest_apis
in a region
+
+## Overview
+
+Name rest_api_tags
+Type Resource
+Description The AWS::ApiGateway::RestApi
resource creates a REST API. For more information, see [restapi:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateRestApi.html) in the *Amazon API Gateway REST API Reference*.
On January 1, 2016, the Swagger Specification was donated to the [OpenAPI initiative](https://docs.aws.amazon.com/https://www.openapis.org/), becoming the foundation of the OpenAPI Specification.
+Id
+
+
+## Fields
+Name Datatype Description object
A policy document that contains the permissions for the RestApi
resource. To set the ARN for the policy, use the !Join
intrinsic function with ""
as delimiter and values of "execute-api:/"
and "*"
.
+object
The Amazon Simple Storage Service (Amazon S3) location that points to an OpenAPI file, which defines a set of RESTful APIs in JSON or YAML format.
+string
The description of the RestApi.
+integer
A nullable integer that is used to enable compression (with non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable compression (with a null value) on an API. When compression is enabled, compression or decompression is not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size.
+object
Custom header parameters as part of the request. For example, to exclude DocumentationParts from an imported API, set ignore=documentation
as a parameters
value, as in the AWS CLI command of aws apigateway import-rest-api --parameters ignore=documentation --body 'file:///path/to/imported-api-body.json'
.
+string
The ID of the RestApi that you want to clone from.
+string
This property applies only when you use OpenAPI to define your REST API. The Mode
determines how API Gateway handles resource updates.
Valid values are overwrite
or merge
.
For overwrite
, the new API definition replaces the existing one. The existing API identifier remains unchanged.
For merge
, the new API definition is merged with the existing API.
If you don't specify this property, a default value is chosen. For REST APIs created before March 29, 2021, the default is overwrite
. For REST APIs created after March 29, 2021, the new API definition takes precedence, but any container types such as endpoint configurations and binary media types are merged with the existing API.
Use the default mode to define top-level RestApi
properties in addition to using OpenAPI. Generally, it's preferred to use API Gateway's OpenAPI extensions to model these properties.
+string
+boolean
Specifies whether clients can invoke your API by using the default execute-api
endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com
endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint
+boolean
A query parameter to indicate whether to rollback the API update (true
) or not (false
) when a warning is encountered. The default value is false
.
+array
The list of binary media types supported by the RestApi. By default, the RestApi supports only UTF-8-encoded text payloads.
+string
The name of the RestApi. A name is required if the REST API is not based on an OpenAPI specification.
+string
+string
The source of the API key for metering requests according to a usage plan. Valid values are: HEADER
to read the API key from the X-API-Key
header of a request. AUTHORIZER
to read the API key from the UsageIdentifierKey
from a custom authorizer.
+object
A list of the endpoint types of the API. Use this property when creating an API. When importing an existing API, specify the endpoint configuration types using the Parameters
property.
+object
An OpenAPI specification that defines a set of RESTful APIs in JSON format. For YAML templates, you can also provide the specification in YAML format.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all rest_apis
in a region.
+```sql
+SELECT
+region,
+policy,
+body_s3_location,
+description,
+minimum_compression_size,
+parameters,
+clone_from,
+mode,
+rest_api_id,
+disable_execute_api_endpoint,
+fail_on_warnings,
+binary_media_types,
+name,
+root_resource_id,
+api_key_source_type,
+endpoint_configuration,
+body,
+tag_key,
+tag_value
+FROM aws.apigateway.rest_api_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the rest_api_tags
resource, see rest_apis
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/rest_apis/index.md b/docs/aws-docs/providers/aws/apigateway/rest_apis/index.md
index 6005ac1db5..92c1267959 100644
--- a/docs/aws-docs/providers/aws/apigateway/rest_apis/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/rest_apis/index.md
@@ -74,7 +74,7 @@ Creates, updates, deletes or gets a rest_api
resource or lists
-
+
SELECT
@@ -86,15 +86,31 @@ Creates, updates, deletes or gets a rest_api
resource or lists
## `SELECT` examples
-List all rest_apis
in a region.
+Gets all rest_apis
in a region.
```sql
SELECT
region,
-rest_api_id
+policy,
+body_s3_location,
+description,
+minimum_compression_size,
+parameters,
+clone_from,
+mode,
+rest_api_id,
+disable_execute_api_endpoint,
+fail_on_warnings,
+binary_media_types,
+name,
+root_resource_id,
+api_key_source_type,
+endpoint_configuration,
+body,
+tags
FROM aws.apigateway.rest_apis
WHERE region = 'us-east-1';
```
-Gets all properties from a rest_api
.
+Gets all properties from an individual rest_api
.
```sql
SELECT
region,
@@ -119,7 +135,6 @@ FROM aws.apigateway.rest_apis
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new rest_api
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/rest_apis_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/rest_apis_list_only/index.md
new file mode 100644
index 0000000000..e1e689d74a
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/rest_apis_list_only/index.md
@@ -0,0 +1,83 @@
+---
+title: rest_apis_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - rest_apis_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists rest_apis
in a region or regions, for all properties use rest_apis
+
+## Overview
+
+Name rest_apis_list_only
+Type Resource
+Description The AWS::ApiGateway::RestApi
resource creates a REST API. For more information, see [restapi:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateRestApi.html) in the *Amazon API Gateway REST API Reference*.
On January 1, 2016, the Swagger Specification was donated to the [OpenAPI initiative](https://docs.aws.amazon.com/https://www.openapis.org/), becoming the foundation of the OpenAPI Specification.
+Id
+
+
+## Fields
+Name Datatype Description object
A policy document that contains the permissions for the RestApi
resource. To set the ARN for the policy, use the !Join
intrinsic function with ""
as delimiter and values of "execute-api:/"
and "*"
.
+object
The Amazon Simple Storage Service (Amazon S3) location that points to an OpenAPI file, which defines a set of RESTful APIs in JSON or YAML format.
+string
The description of the RestApi.
+integer
A nullable integer that is used to enable compression (with non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable compression (with a null value) on an API. When compression is enabled, compression or decompression is not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size.
+object
Custom header parameters as part of the request. For example, to exclude DocumentationParts from an imported API, set ignore=documentation
as a parameters
value, as in the AWS CLI command of aws apigateway import-rest-api --parameters ignore=documentation --body 'file:///path/to/imported-api-body.json'
.
+string
The ID of the RestApi that you want to clone from.
+string
This property applies only when you use OpenAPI to define your REST API. The Mode
determines how API Gateway handles resource updates.
Valid values are overwrite
or merge
.
For overwrite
, the new API definition replaces the existing one. The existing API identifier remains unchanged.
For merge
, the new API definition is merged with the existing API.
If you don't specify this property, a default value is chosen. For REST APIs created before March 29, 2021, the default is overwrite
. For REST APIs created after March 29, 2021, the new API definition takes precedence, but any container types such as endpoint configurations and binary media types are merged with the existing API.
Use the default mode to define top-level RestApi
properties in addition to using OpenAPI. Generally, it's preferred to use API Gateway's OpenAPI extensions to model these properties.
+string
+boolean
Specifies whether clients can invoke your API by using the default execute-api
endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com
endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint
+boolean
A query parameter to indicate whether to rollback the API update (true
) or not (false
) when a warning is encountered. The default value is false
.
+array
The list of binary media types supported by the RestApi. By default, the RestApi supports only UTF-8-encoded text payloads.
+string
The name of the RestApi. A name is required if the REST API is not based on an OpenAPI specification.
+string
+string
The source of the API key for metering requests according to a usage plan. Valid values are: HEADER
to read the API key from the X-API-Key
header of a request. AUTHORIZER
to read the API key from the UsageIdentifierKey
from a custom authorizer.
+object
A list of the endpoint types of the API. Use this property when creating an API. When importing an existing API, specify the endpoint configuration types using the Parameters
property.
+object
An OpenAPI specification that defines a set of RESTful APIs in JSON format. For YAML templates, you can also provide the specification in YAML format.
+array
The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:
. The tag value can be up to 256 characters.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all rest_apis
in a region.
+```sql
+SELECT
+region,
+rest_api_id
+FROM aws.apigateway.rest_apis_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the rest_apis_list_only
resource, see rest_apis
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/stage_tags/index.md b/docs/aws-docs/providers/aws/apigateway/stage_tags/index.md
new file mode 100644
index 0000000000..69c8b90c76
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/stage_tags/index.md
@@ -0,0 +1,95 @@
+---
+title: stage_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stage_tags
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for stages
in a region
+
+## Overview
+
+Name stage_tags
+Type Resource
+Description The AWS::ApiGateway::Stage
resource creates a stage for a deployment.
+Id
+
+
+## Fields
+Name Datatype Description object
Access log settings, including the access log format and access log destination ARN.
+boolean
Specifies whether a cache cluster is enabled for the stage.
+string
The stage's cache capacity in GB. For more information about choosing a cache size, see [Enabling API caching to enhance responsiveness](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html).
+object
Settings for the canary deployment in this stage.
+string
The identifier of a client certificate for an API stage.
+string
The identifier of the Deployment that the stage points to.
+string
The stage's description.
+string
The version of the associated API documentation.
+array
A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key
below) are method paths defined as {resource_path}/{http_method}
for an individual method override, or /\*/\*
for overriding all methods in the stage.
+string
The string identifier of the associated RestApi.
+string
The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.
+boolean
Specifies whether active tracing with X-ray is enabled for the Stage.
+object
A map (string-to-string map) that defines the stage variables, where the variable name is the key and the variable value is the value. Variable names are limited to alphanumeric characters. Values must match the following regular expression: [A-Za-z0-9-._~:/?#&=,]+
.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all stages
in a region.
+```sql
+SELECT
+region,
+access_log_setting,
+cache_cluster_enabled,
+cache_cluster_size,
+canary_setting,
+client_certificate_id,
+deployment_id,
+description,
+documentation_version,
+method_settings,
+rest_api_id,
+stage_name,
+tracing_enabled,
+variables,
+tag_key,
+tag_value
+FROM aws.apigateway.stage_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stage_tags
resource, see stages
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/stages/index.md b/docs/aws-docs/providers/aws/apigateway/stages/index.md
index a59a5a3426..5354a0b52b 100644
--- a/docs/aws-docs/providers/aws/apigateway/stages/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/stages/index.md
@@ -71,7 +71,7 @@ Creates, updates, deletes or gets a stage
resource or lists s
-
+
SELECT
@@ -83,16 +83,28 @@ Creates, updates, deletes or gets a stage
resource or lists s
## `SELECT` examples
-List all stages
in a region.
+Gets all stages
in a region.
```sql
SELECT
region,
+access_log_setting,
+cache_cluster_enabled,
+cache_cluster_size,
+canary_setting,
+client_certificate_id,
+deployment_id,
+description,
+documentation_version,
+method_settings,
rest_api_id,
-stage_name
+stage_name,
+tags,
+tracing_enabled,
+variables
FROM aws.apigateway.stages
WHERE region = 'us-east-1';
```
-Gets all properties from a stage
.
+Gets all properties from an individual stage
.
```sql
SELECT
region,
@@ -114,7 +126,6 @@ FROM aws.apigateway.stages
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new stage
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/stages_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/stages_list_only/index.md
new file mode 100644
index 0000000000..b99893e461
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/stages_list_only/index.md
@@ -0,0 +1,81 @@
+---
+title: stages_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stages_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists stages
in a region or regions, for all properties use stages
+
+## Overview
+
+Name stages_list_only
+Type Resource
+Description The AWS::ApiGateway::Stage
resource creates a stage for a deployment.
+Id
+
+
+## Fields
+Name Datatype Description object
Access log settings, including the access log format and access log destination ARN.
+boolean
Specifies whether a cache cluster is enabled for the stage.
+string
The stage's cache capacity in GB. For more information about choosing a cache size, see [Enabling API caching to enhance responsiveness](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html).
+object
Settings for the canary deployment in this stage.
+string
The identifier of a client certificate for an API stage.
+string
The identifier of the Deployment that the stage points to.
+string
The stage's description.
+string
The version of the associated API documentation.
+array
A map that defines the method settings for a Stage resource. Keys (designated as /{method_setting_key
below) are method paths defined as {resource_path}/{http_method}
for an individual method override, or /\*/\*
for overriding all methods in the stage.
+string
The string identifier of the associated RestApi.
+string
The name of the stage is the first path segment in the Uniform Resource Identifier (URI) of a call to API Gateway. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.
+array
The collection of tags. Each tag element is associated with a given resource.
+boolean
Specifies whether active tracing with X-ray is enabled for the Stage.
+object
A map (string-to-string map) that defines the stage variables, where the variable name is the key and the variable value is the value. Variable names are limited to alphanumeric characters. Values must match the following regular expression: [A-Za-z0-9-._~:/?#&=,]+
.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all stages
in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+stage_name
+FROM aws.apigateway.stages_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stages_list_only
resource, see stages
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/usage_plan_keys/index.md b/docs/aws-docs/providers/aws/apigateway/usage_plan_keys/index.md
index cc5595f7db..a2f572e5ac 100644
--- a/docs/aws-docs/providers/aws/apigateway/usage_plan_keys/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/usage_plan_keys/index.md
@@ -56,7 +56,7 @@ Creates, updates, deletes or gets an usage_plan_key
resource or lis
-
+
SELECT
@@ -68,15 +68,18 @@ Creates, updates, deletes or gets an usage_plan_key
resource or lis
## `SELECT` examples
-List all usage_plan_keys
in a region.
+Gets all usage_plan_keys
in a region.
```sql
SELECT
region,
+key_id,
+key_type,
+usage_plan_id,
id
FROM aws.apigateway.usage_plan_keys
WHERE region = 'us-east-1';
```
-Gets all properties from an usage_plan_key
.
+Gets all properties from an individual usage_plan_key
.
```sql
SELECT
region,
@@ -88,7 +91,6 @@ FROM aws.apigateway.usage_plan_keys
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new usage_plan_key
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/usage_plan_keys_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/usage_plan_keys_list_only/index.md
new file mode 100644
index 0000000000..8699b27630
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/usage_plan_keys_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: usage_plan_keys_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - usage_plan_keys_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists usage_plan_keys
in a region or regions, for all properties use usage_plan_keys
+
+## Overview
+
+Name usage_plan_keys_list_only
+Type Resource
+Description The AWS::ApiGateway::UsagePlanKey
resource associates an API key with a usage plan. This association determines which users the usage plan is applied to.
+Id
+
+
+## Fields
+Name Datatype Description string
The Id of the UsagePlanKey resource.
+string
The type of a UsagePlanKey resource for a plan customer.
+string
The Id of the UsagePlan resource representing the usage plan containing the UsagePlanKey resource representing a plan customer.
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all usage_plan_keys
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.apigateway.usage_plan_keys_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the usage_plan_keys_list_only
resource, see usage_plan_keys
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/usage_plan_tags/index.md b/docs/aws-docs/providers/aws/apigateway/usage_plan_tags/index.md
new file mode 100644
index 0000000000..c5e1b530d1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/usage_plan_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: usage_plan_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - usage_plan_tags
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for usage_plans
in a region
+
+## Overview
+
+Name usage_plan_tags
+Type Resource
+Description The AWS::ApiGateway::UsagePlan
resource creates a usage plan for deployed APIs. A usage plan sets a target for the throttling and quota limits on individual client API keys. For more information, see [Creating and Using API Usage Plans in Amazon API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-api-usage-plans.html) in the *API Gateway Developer Guide*.
In some cases clients can exceed the targets that you set. Don’t rely on usage plans to control costs. Consider using [](https://docs.aws.amazon.com/cost-management/latest/userguide/budgets-managing-costs.html) to monitor costs and [](https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html) to manage API requests.
+Id
+
+
+## Fields
+Name Datatype Description string
+array
The associated API stages of a usage plan.
+string
The description of a usage plan.
+object
The target maximum number of permitted requests per a given unit time interval.
+object
A map containing method level throttling information for API stage in a usage plan.
+string
The name of a usage plan.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all usage_plans
in a region.
+```sql
+SELECT
+region,
+id,
+api_stages,
+description,
+quota,
+throttle,
+usage_plan_name,
+tag_key,
+tag_value
+FROM aws.apigateway.usage_plan_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the usage_plan_tags
resource, see usage_plans
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/usage_plans/index.md b/docs/aws-docs/providers/aws/apigateway/usage_plans/index.md
index 00b0c75091..77159d9543 100644
--- a/docs/aws-docs/providers/aws/apigateway/usage_plans/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/usage_plans/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets an usage_plan
resource or lists <
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets an usage_plan
resource or lists <
## `SELECT` examples
-List all usage_plans
in a region.
+Gets all usage_plans
in a region.
```sql
SELECT
region,
-id
+id,
+api_stages,
+description,
+quota,
+tags,
+throttle,
+usage_plan_name
FROM aws.apigateway.usage_plans
WHERE region = 'us-east-1';
```
-Gets all properties from an usage_plan
.
+Gets all properties from an individual usage_plan
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.apigateway.usage_plans
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new usage_plan
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/usage_plans_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/usage_plans_list_only/index.md
new file mode 100644
index 0000000000..d6d8ed6b46
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/usage_plans_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: usage_plans_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - usage_plans_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists usage_plans
in a region or regions, for all properties use usage_plans
+
+## Overview
+
+Name usage_plans_list_only
+Type Resource
+Description The AWS::ApiGateway::UsagePlan
resource creates a usage plan for deployed APIs. A usage plan sets a target for the throttling and quota limits on individual client API keys. For more information, see [Creating and Using API Usage Plans in Amazon API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-api-usage-plans.html) in the *API Gateway Developer Guide*.
In some cases clients can exceed the targets that you set. Don’t rely on usage plans to control costs. Consider using [](https://docs.aws.amazon.com/cost-management/latest/userguide/budgets-managing-costs.html) to monitor costs and [](https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html) to manage API requests.
+Id
+
+
+## Fields
+Name Datatype Description string
+array
The associated API stages of a usage plan.
+string
The description of a usage plan.
+object
The target maximum number of permitted requests per a given unit time interval.
+array
The collection of tags. Each tag element is associated with a given resource.
+object
A map containing method level throttling information for API stage in a usage plan.
+string
The name of a usage plan.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all usage_plans
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.apigateway.usage_plans_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the usage_plans_list_only
resource, see usage_plans
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/vpc_link_tags/index.md b/docs/aws-docs/providers/aws/apigateway/vpc_link_tags/index.md
new file mode 100644
index 0000000000..063e87f793
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/vpc_link_tags/index.md
@@ -0,0 +1,77 @@
+---
+title: vpc_link_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_link_tags
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for vpc_links
in a region
+
+## Overview
+
+Name vpc_link_tags
+Type Resource
+Description The AWS::ApiGateway::VpcLink
resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the Amazon API Gateway REST API Reference
.
+Id
+
+
+## Fields
+Name Datatype Description string
The name used to label and identify the VPC link.
+string
The description of the VPC link.
+array
The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS-account of the API owner.
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all vpc_links
in a region.
+```sql
+SELECT
+region,
+name,
+description,
+target_arns,
+vpc_link_id,
+tag_key,
+tag_value
+FROM aws.apigateway.vpc_link_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_link_tags
resource, see vpc_links
+
+
diff --git a/docs/aws-docs/providers/aws/apigateway/vpc_links/index.md b/docs/aws-docs/providers/aws/apigateway/vpc_links/index.md
index de89681b61..dc4da3454e 100644
--- a/docs/aws-docs/providers/aws/apigateway/vpc_links/index.md
+++ b/docs/aws-docs/providers/aws/apigateway/vpc_links/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a vpc_link
resource or lists
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a vpc_link
resource or lists
## `SELECT` examples
-List all vpc_links
in a region.
+Gets all vpc_links
in a region.
```sql
SELECT
region,
+name,
+description,
+tags,
+target_arns,
vpc_link_id
FROM aws.apigateway.vpc_links
WHERE region = 'us-east-1';
```
-Gets all properties from a vpc_link
.
+Gets all properties from an individual vpc_link
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.apigateway.vpc_links
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new vpc_link
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigateway/vpc_links_list_only/index.md b/docs/aws-docs/providers/aws/apigateway/vpc_links_list_only/index.md
new file mode 100644
index 0000000000..9d7242ea65
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigateway/vpc_links_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: vpc_links_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_links_list_only
+ - apigateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists vpc_links
in a region or regions, for all properties use vpc_links
+
+## Overview
+
+Name vpc_links_list_only
+Type Resource
+Description The AWS::ApiGateway::VpcLink
resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the Amazon API Gateway REST API Reference
.
+Id
+
+
+## Fields
+Name Datatype Description string
The name used to label and identify the VPC link.
+string
The description of the VPC link.
+array
An array of arbitrary tags (key-value pairs) to associate with the VPC link.
+array
The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS-account of the API owner.
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all vpc_links
in a region.
+```sql
+SELECT
+region,
+vpc_link_id
+FROM aws.apigateway.vpc_links_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_links_list_only
resource, see vpc_links
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/api_mappings/index.md b/docs/aws-docs/providers/aws/apigatewayv2/api_mappings/index.md
index 26fc51a215..d9f374d853 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/api_mappings/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/api_mappings/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets an api_mapping
resource or lists
-
+
SELECT
@@ -74,16 +74,19 @@ Creates, updates, deletes or gets an api_mapping
resource or lists
## `SELECT` examples
-List all api_mappings
in a region.
+Gets all api_mappings
in a region.
```sql
SELECT
region,
api_mapping_id,
-domain_name
+domain_name,
+stage,
+api_mapping_key,
+api_id
FROM aws.apigatewayv2.api_mappings
WHERE region = 'us-east-1';
```
-Gets all properties from an api_mapping
.
+Gets all properties from an individual api_mapping
.
```sql
SELECT
region,
@@ -96,7 +99,6 @@ FROM aws.apigatewayv2.api_mappings
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new api_mapping
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/api_mappings_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/api_mappings_list_only/index.md
new file mode 100644
index 0000000000..c08ca776f9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/api_mappings_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: api_mappings_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - api_mappings_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists api_mappings
in a region or regions, for all properties use api_mappings
+
+## Overview
+
+Name api_mappings_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::ApiMapping
resource contains an API mapping. An API mapping relates a path of your custom domain name to a stage of your API. A custom domain name can have multiple API mappings, but the paths can't overlap. A custom domain can map only to APIs of the same protocol type. For more information, see [CreateApiMapping](https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/domainnames-domainname-apimappings.html#CreateApiMapping) in the *Amazon API Gateway V2 API Reference*.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The domain name.
+string
The API stage.
+string
The API mapping key.
+string
The identifier of the API.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all api_mappings
in a region.
+```sql
+SELECT
+region,
+api_mapping_id,
+domain_name
+FROM aws.apigatewayv2.api_mappings_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the api_mappings_list_only
resource, see api_mappings
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/api_tags/index.md b/docs/aws-docs/providers/aws/apigatewayv2/api_tags/index.md
new file mode 100644
index 0000000000..3564916fd0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/api_tags/index.md
@@ -0,0 +1,105 @@
+---
+title: api_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - api_tags
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for apis
in a region
+
+## Overview
+
+Name api_tags
+Type Resource
+Description The AWS::ApiGatewayV2::Api
resource creates an API. WebSocket APIs and HTTP APIs are supported. For more information about WebSocket APIs, see [About WebSocket APIs in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-overview.html) in the *API Gateway Developer Guide*. For more information about HTTP APIs, see [HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html) in the *API Gateway Developer Guide.*
+Id
+
+
+## Fields
+Name Datatype Description string
The route selection expression for the API. For HTTP APIs, the routeSelectionExpression
must be ${request.method} ${request.path}
. If not provided, this will be the default for HTTP APIs. This property is required for WebSocket APIs.
+object
The S3 location of an OpenAPI definition. Supported only for HTTP APIs. To import an HTTP API, you must specify a Body
or BodyS3Location
. If you specify a Body
or BodyS3Location
, don't specify CloudFormation resources such as AWS::ApiGatewayV2::Authorizer
or AWS::ApiGatewayV2::Route
. API Gateway doesn't support the combination of OpenAPI and CloudFormation resources.
+string
The description of the API.
+string
+string
Specifies how to interpret the base path of the API during import. Valid values are ignore
, prepend
, and split
. The default value is ignore
. To learn more, see [Set the OpenAPI basePath Property](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-import-api-basePath.html). Supported only for HTTP APIs.
+boolean
Specifies whether to rollback the API creation when a warning is encountered. By default, API creation continues if a warning is encountered.
+boolean
Specifies whether clients can invoke your API by using the default execute-api
endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.
+boolean
Avoid validating models when creating a deployment. Supported only for WebSocket APIs.
+string
The name of the API. Required unless you specify an OpenAPI definition for Body
or S3BodyLocation
.
+string
This property is part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Supported only for HTTP APIs.
+string
This property is part of quick create. It specifies the credentials required for the integration, if any. For a Lambda integration, three options are available. To specify an IAM Role for API Gateway to assume, use the role's Amazon Resource Name (ARN). To require that the caller's identity be passed through from the request, specify arn:aws:iam::*:user/*
. To use resource-based permissions on supported AWS services, specify null
. Currently, this property is not used for HTTP integrations. Supported only for HTTP APIs.
+object
A CORS configuration. Supported only for HTTP APIs. See [Configuring CORS](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-cors.html) for more information.
+string
A version identifier for the API.
+string
The API protocol. Valid values are WEBSOCKET
or HTTP
. Required unless you specify an OpenAPI definition for Body
or S3BodyLocation
.
+string
This property is part of quick create. If you don't specify a routeKey
, a default route of $default
is created. The $default
route acts as a catch-all for any request made to your API, for a particular stage. The $default
route key can't be modified. You can add routes after creating the API, and you can update the route keys of additional routes. Supported only for HTTP APIs.
+string
+object
The OpenAPI definition. Supported only for HTTP APIs. To import an HTTP API, you must specify a Body
or BodyS3Location
. If you specify a Body
or BodyS3Location
, don't specify CloudFormation resources such as AWS::ApiGatewayV2::Authorizer
or AWS::ApiGatewayV2::Route
. API Gateway doesn't support the combination of OpenAPI and CloudFormation resources.
+string
An API key selection expression. Supported only for WebSocket APIs. See [API Key Selection Expressions](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions).
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all apis
in a region.
+```sql
+SELECT
+region,
+route_selection_expression,
+body_s3_location,
+description,
+api_endpoint,
+base_path,
+fail_on_warnings,
+disable_execute_api_endpoint,
+disable_schema_validation,
+name,
+target,
+credentials_arn,
+cors_configuration,
+version,
+protocol_type,
+route_key,
+api_id,
+body,
+api_key_selection_expression,
+tag_key,
+tag_value
+FROM aws.apigatewayv2.api_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the api_tags
resource, see apis
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/apis/index.md b/docs/aws-docs/providers/aws/apigatewayv2/apis/index.md
index e3cbe4f16a..8950d5dff6 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/apis/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/apis/index.md
@@ -76,7 +76,7 @@ Creates, updates, deletes or gets an api
resource or lists ap
-
+
SELECT
@@ -88,15 +88,33 @@ Creates, updates, deletes or gets an api
resource or lists ap
## `SELECT` examples
-List all apis
in a region.
+Gets all apis
in a region.
```sql
SELECT
region,
-api_id
+route_selection_expression,
+body_s3_location,
+description,
+api_endpoint,
+base_path,
+fail_on_warnings,
+disable_execute_api_endpoint,
+disable_schema_validation,
+name,
+target,
+credentials_arn,
+cors_configuration,
+version,
+protocol_type,
+route_key,
+api_id,
+body,
+tags,
+api_key_selection_expression
FROM aws.apigatewayv2.apis
WHERE region = 'us-east-1';
```
-Gets all properties from an api
.
+Gets all properties from an individual api
.
```sql
SELECT
region,
@@ -123,7 +141,6 @@ FROM aws.apigatewayv2.apis
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new api
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/apis_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/apis_list_only/index.md
new file mode 100644
index 0000000000..3d431a8d98
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/apis_list_only/index.md
@@ -0,0 +1,85 @@
+---
+title: apis_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - apis_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists apis
in a region or regions, for all properties use apis
+
+## Overview
+
+Name apis_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::Api
resource creates an API. WebSocket APIs and HTTP APIs are supported. For more information about WebSocket APIs, see [About WebSocket APIs in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-overview.html) in the *API Gateway Developer Guide*. For more information about HTTP APIs, see [HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html) in the *API Gateway Developer Guide.*
+Id
+
+
+## Fields
+Name Datatype Description string
The route selection expression for the API. For HTTP APIs, the routeSelectionExpression
must be ${request.method} ${request.path}
. If not provided, this will be the default for HTTP APIs. This property is required for WebSocket APIs.
+object
The S3 location of an OpenAPI definition. Supported only for HTTP APIs. To import an HTTP API, you must specify a Body
or BodyS3Location
. If you specify a Body
or BodyS3Location
, don't specify CloudFormation resources such as AWS::ApiGatewayV2::Authorizer
or AWS::ApiGatewayV2::Route
. API Gateway doesn't support the combination of OpenAPI and CloudFormation resources.
+string
The description of the API.
+string
+string
Specifies how to interpret the base path of the API during import. Valid values are ignore
, prepend
, and split
. The default value is ignore
. To learn more, see [Set the OpenAPI basePath Property](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-import-api-basePath.html). Supported only for HTTP APIs.
+boolean
Specifies whether to rollback the API creation when a warning is encountered. By default, API creation continues if a warning is encountered.
+boolean
Specifies whether clients can invoke your API by using the default execute-api
endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.
+boolean
Avoid validating models when creating a deployment. Supported only for WebSocket APIs.
+string
The name of the API. Required unless you specify an OpenAPI definition for Body
or S3BodyLocation
.
+string
This property is part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Supported only for HTTP APIs.
+string
This property is part of quick create. It specifies the credentials required for the integration, if any. For a Lambda integration, three options are available. To specify an IAM Role for API Gateway to assume, use the role's Amazon Resource Name (ARN). To require that the caller's identity be passed through from the request, specify arn:aws:iam::*:user/*
. To use resource-based permissions on supported AWS services, specify null
. Currently, this property is not used for HTTP integrations. Supported only for HTTP APIs.
+object
A CORS configuration. Supported only for HTTP APIs. See [Configuring CORS](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-cors.html) for more information.
+string
A version identifier for the API.
+string
The API protocol. Valid values are WEBSOCKET
or HTTP
. Required unless you specify an OpenAPI definition for Body
or S3BodyLocation
.
+string
This property is part of quick create. If you don't specify a routeKey
, a default route of $default
is created. The $default
route acts as a catch-all for any request made to your API, for a particular stage. The $default
route key can't be modified. You can add routes after creating the API, and you can update the route keys of additional routes. Supported only for HTTP APIs.
+string
+object
The OpenAPI definition. Supported only for HTTP APIs. To import an HTTP API, you must specify a Body
or BodyS3Location
. If you specify a Body
or BodyS3Location
, don't specify CloudFormation resources such as AWS::ApiGatewayV2::Authorizer
or AWS::ApiGatewayV2::Route
. API Gateway doesn't support the combination of OpenAPI and CloudFormation resources.
+object
The collection of tags. Each tag element is associated with a given resource.
+string
An API key selection expression. Supported only for WebSocket APIs. See [API Key Selection Expressions](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions).
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all apis
in a region.
+```sql
+SELECT
+region,
+api_id
+FROM aws.apigatewayv2.apis_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the apis_list_only
resource, see apis
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/authorizers/index.md b/docs/aws-docs/providers/aws/apigatewayv2/authorizers/index.md
index 7e7a9ee2d4..51d017114f 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/authorizers/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/authorizers/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets an authorizer
resource or lists <
-
+
SELECT
@@ -81,16 +81,26 @@ Creates, updates, deletes or gets an authorizer
resource or lists <
## `SELECT` examples
-List all authorizers
in a region.
+Gets all authorizers
in a region.
```sql
SELECT
region,
+identity_validation_expression,
+authorizer_uri,
+authorizer_credentials_arn,
+authorizer_type,
+jwt_configuration,
+authorizer_result_ttl_in_seconds,
+identity_source,
+authorizer_payload_format_version,
+api_id,
+enable_simple_responses,
authorizer_id,
-api_id
+name
FROM aws.apigatewayv2.authorizers
WHERE region = 'us-east-1';
```
-Gets all properties from an authorizer
.
+Gets all properties from an individual authorizer
.
```sql
SELECT
region,
@@ -110,7 +120,6 @@ FROM aws.apigatewayv2.authorizers
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new authorizer
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/authorizers_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/authorizers_list_only/index.md
new file mode 100644
index 0000000000..bab99d6c25
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/authorizers_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: authorizers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - authorizers_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists authorizers
in a region or regions, for all properties use authorizers
+
+## Overview
+
+Name authorizers_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::Authorizer
resource creates an authorizer for a WebSocket API or an HTTP API. To learn more, see [Controlling and managing access to a WebSocket API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-control-access.html) and [Controlling and managing access to an HTTP API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-access-control.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
This parameter is not used.
+string
The authorizer's Uniform Resource Identifier (URI). For REQUEST
authorizers, this must be a well-formed Lambda function URI, for example, arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:{account_id}:function:{lambda_function_name}/invocations
. In general, the URI has this form: arn:aws:apigateway:{region}:lambda:path/{service_api}
, where *{region}* is the same as the region hosting the Lambda function, path indicates that the remaining substring in the URI should be treated as the path to the resource, including the initial /
. For Lambda functions, this is usually of the form /2015-03-31/functions/[FunctionARN]/invocations
.
+string
Specifies the required credentials as an IAM role for API Gateway to invoke the authorizer. To specify an IAM role for API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null. Supported only for REQUEST
authorizers.
+string
The authorizer type. Specify REQUEST
for a Lambda function using incoming request parameters. Specify JWT
to use JSON Web Tokens (supported only for HTTP APIs).
+object
The JWTConfiguration
property specifies the configuration of a JWT authorizer. Required for the JWT
authorizer type. Supported only for HTTP APIs.
+integer
The time to live (TTL) for cached authorizer results, in seconds. If it equals 0, authorization caching is disabled. If it is greater than 0, API Gateway caches authorizer responses. The maximum value is 3600, or 1 hour. Supported only for HTTP API Lambda authorizers.
+array
The identity source for which authorization is requested.
For a REQUEST
authorizer, this is optional. The value is a set of one or more mapping expressions of the specified request parameters. The identity source can be headers, query string parameters, stage variables, and context parameters. For example, if an Auth header and a Name query string parameter are defined as identity sources, this value is route.request.header.Auth, route.request.querystring.Name for WebSocket APIs. For HTTP APIs, use selection expressions prefixed with $
, for example, $request.header.Auth
, $request.querystring.Name
. These parameters are used to perform runtime validation for Lambda-based authorizers by verifying all of the identity-related request parameters are present in the request, not null, and non-empty. Only when this is true does the authorizer invoke the authorizer Lambda function. Otherwise, it returns a 401 Unauthorized response without calling the Lambda function. For HTTP APIs, identity sources are also used as the cache key when caching is enabled. To learn more, see [Working with Lambda authorizers for HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-lambda-authorizer.html).
For JWT
, a single entry that specifies where to extract the JSON Web Token (JWT) from inbound requests. Currently only header-based and query parameter-based selections are supported, for example $request.header.Authorization
.
+string
Specifies the format of the payload sent to an HTTP API Lambda authorizer. Required for HTTP API Lambda authorizers. Supported values are 1.0
and 2.0
. To learn more, see [Working with Lambda authorizers for HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-lambda-authorizer.html).
+string
The API identifier.
+boolean
Specifies whether a Lambda authorizer returns a response in a simple format. By default, a Lambda authorizer must return an IAM policy. If enabled, the Lambda authorizer can return a boolean value instead of an IAM policy. Supported only for HTTP APIs. To learn more, see [Working with Lambda authorizers for HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-lambda-authorizer.html).
+string
+string
The name of the authorizer.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all authorizers
in a region.
+```sql
+SELECT
+region,
+authorizer_id,
+api_id
+FROM aws.apigatewayv2.authorizers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the authorizers_list_only
resource, see authorizers
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/deployments/index.md b/docs/aws-docs/providers/aws/apigatewayv2/deployments/index.md
index 44feb4aa51..e3a2f196df 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/deployments/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/deployments/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a deployment
resource or lists
-
+
SELECT
@@ -73,16 +73,18 @@ Creates, updates, deletes or gets a deployment
resource or lists
## `SELECT` examples
-List all deployments
in a region.
+Gets all deployments
in a region.
```sql
SELECT
region,
-api_id,
-deployment_id
+deployment_id,
+description,
+stage_name,
+api_id
FROM aws.apigatewayv2.deployments
WHERE region = 'us-east-1';
```
-Gets all properties from a deployment
.
+Gets all properties from an individual deployment
.
```sql
SELECT
region,
@@ -94,7 +96,6 @@ FROM aws.apigatewayv2.deployments
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new deployment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/deployments_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/deployments_list_only/index.md
new file mode 100644
index 0000000000..5c142eebb5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/deployments_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: deployments_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - deployments_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists deployments
in a region or regions, for all properties use deployments
+
+## Overview
+
+Name deployments_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::Deployment
resource creates a deployment for an API.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The description for the deployment resource.
+string
The name of an existing stage to associate with the deployment.
+string
The API identifier.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all deployments
in a region.
+```sql
+SELECT
+region,
+api_id,
+deployment_id
+FROM aws.apigatewayv2.deployments_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the deployments_list_only
resource, see deployments
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/domain_name_tags/index.md b/docs/aws-docs/providers/aws/apigatewayv2/domain_name_tags/index.md
new file mode 100644
index 0000000000..b3dd97381c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/domain_name_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: domain_name_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_name_tags
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for domain_names
in a region
+
+## Overview
+
+Name domain_name_tags
+Type Resource
+Description The AWS::ApiGatewayV2::DomainName
resource specifies a custom domain name for your API in Amazon API Gateway (API Gateway).
You can use a custom domain name to provide a URL that's more intuitive and easier to recall. For more information about using custom domain names, see [Set up Custom Domain Name for an API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-custom-domains.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description object
The mutual TLS authentication configuration for a custom domain name.
+string
+string
+string
The custom domain name for your API in Amazon API Gateway. Uppercase letters are not supported.
+array
The domain name configurations.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all domain_names
in a region.
+```sql
+SELECT
+region,
+mutual_tls_authentication,
+regional_hosted_zone_id,
+regional_domain_name,
+domain_name,
+domain_name_configurations,
+tag_key,
+tag_value
+FROM aws.apigatewayv2.domain_name_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_name_tags
resource, see domain_names
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/domain_names/index.md b/docs/aws-docs/providers/aws/apigatewayv2/domain_names/index.md
index a4265bfb0d..0284bfdd1c 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/domain_names/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/domain_names/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a domain_name
resource or lists <
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a domain_name
resource or lists <
## `SELECT` examples
-List all domain_names
in a region.
+Gets all domain_names
in a region.
```sql
SELECT
region,
-domain_name
+mutual_tls_authentication,
+regional_hosted_zone_id,
+regional_domain_name,
+domain_name,
+domain_name_configurations,
+tags
FROM aws.apigatewayv2.domain_names
WHERE region = 'us-east-1';
```
-Gets all properties from a domain_name
.
+Gets all properties from an individual domain_name
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.apigatewayv2.domain_names
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain_name
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/domain_names_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/domain_names_list_only/index.md
new file mode 100644
index 0000000000..4ed1f6abc3
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/domain_names_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: domain_names_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_names_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists domain_names
in a region or regions, for all properties use domain_names
+
+## Overview
+
+Name domain_names_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::DomainName
resource specifies a custom domain name for your API in Amazon API Gateway (API Gateway).
You can use a custom domain name to provide a URL that's more intuitive and easier to recall. For more information about using custom domain names, see [Set up Custom Domain Name for an API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-custom-domains.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description object
The mutual TLS authentication configuration for a custom domain name.
+string
+string
+string
The custom domain name for your API in Amazon API Gateway. Uppercase letters are not supported.
+array
The domain name configurations.
+object
The collection of tags associated with a domain name.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all domain_names
in a region.
+```sql
+SELECT
+region,
+domain_name
+FROM aws.apigatewayv2.domain_names_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_names_list_only
resource, see domain_names
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/index.md b/docs/aws-docs/providers/aws/apigatewayv2/index.md
index 9df4d27a11..eb09a61224 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/index.md
@@ -20,7 +20,7 @@ The apigatewayv2 service documentation.
-total resources: 10
+total resources: 23
@@ -30,16 +30,29 @@ The apigatewayv2 service documentation.
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/integration_responses/index.md b/docs/aws-docs/providers/aws/apigatewayv2/integration_responses/index.md
index 21a1754e4d..712e1d5990 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/integration_responses/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/integration_responses/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets an integration_response
resource
-
+
SELECT
@@ -77,17 +77,22 @@ Creates, updates, deletes or gets an integration_response
resource
## `SELECT` examples
-List all integration_responses
in a region.
+Gets all integration_responses
in a region.
```sql
SELECT
region,
-api_id,
+integration_response_id,
+response_templates,
+template_selection_expression,
+response_parameters,
+content_handling_strategy,
integration_id,
-integration_response_id
+integration_response_key,
+api_id
FROM aws.apigatewayv2.integration_responses
WHERE region = 'us-east-1';
```
-Gets all properties from an integration_response
.
+Gets all properties from an individual integration_response
.
```sql
SELECT
region,
@@ -103,7 +108,6 @@ FROM aws.apigatewayv2.integration_responses
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new integration_response
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/integration_responses_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/integration_responses_list_only/index.md
new file mode 100644
index 0000000000..3df570e405
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/integration_responses_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: integration_responses_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - integration_responses_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists integration_responses
in a region or regions, for all properties use integration_responses
+
+## Overview
+
+Name integration_responses_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::IntegrationResponse
resource updates an integration response for an WebSocket API. For more information, see [Set up WebSocket API Integration Responses in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-integration-responses.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+object
The collection of response templates for the integration response as a string-to-string map of key-value pairs. Response templates are represented as a key/value map, with a content-type as the key and a template as the value.
+string
The template selection expression for the integration response. Supported only for WebSocket APIs.
+object
A key-value map specifying response parameters that are passed to the method response from the backend. The key is a method response header parameter name and the mapped value is an integration response header value, a static value enclosed within a pair of single quotes, or a JSON expression from the integration response body. The mapping key must match the pattern of method.response.header.{name}
, where name is a valid and unique header name. The mapped non-static value must match the pattern of integration.response.header.{name}
or integration.response.body.{JSON-expression}
, where {name}
is a valid and unique response header name and {JSON-expression}
is a valid JSON expression without the $
prefix.
+string
Supported only for WebSocket APIs. Specifies how to handle response payload content type conversions. Supported values are CONVERT_TO_BINARY
and CONVERT_TO_TEXT
, with the following behaviors:
CONVERT_TO_BINARY
: Converts a response payload from a Base64-encoded string to the corresponding binary blob.
CONVERT_TO_TEXT
: Converts a response payload from a binary blob to a Base64-encoded string.
If this property is not defined, the response payload will be passed through from the integration response to the route response or method response without modification.
+string
The integration ID.
+string
The integration response key.
+string
The API identifier.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all integration_responses
in a region.
+```sql
+SELECT
+region,
+api_id,
+integration_id,
+integration_response_id
+FROM aws.apigatewayv2.integration_responses_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the integration_responses_list_only
resource, see integration_responses
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/models/index.md b/docs/aws-docs/providers/aws/apigatewayv2/models/index.md
index d91e578ff1..c343a1bd89 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/models/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/models/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a model
resource or lists m
-
+
SELECT
@@ -75,16 +75,20 @@ Creates, updates, deletes or gets a model
resource or lists m
## `SELECT` examples
-List all models
in a region.
+Gets all models
in a region.
```sql
SELECT
region,
+model_id,
+description,
+content_type,
+schema,
api_id,
-model_id
+name
FROM aws.apigatewayv2.models
WHERE region = 'us-east-1';
```
-Gets all properties from a model
.
+Gets all properties from an individual model
.
```sql
SELECT
region,
@@ -98,7 +102,6 @@ FROM aws.apigatewayv2.models
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new model
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/models_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/models_list_only/index.md
new file mode 100644
index 0000000000..9b0566789e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/models_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: models_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - models_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists models
in a region or regions, for all properties use models
+
+## Overview
+
+Name models_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::Model
resource updates data model for a WebSocket API. For more information, see [Model Selection Expressions](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-model-selection-expressions) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The description of the model.
+string
The content-type for the model, for example, "application/json".
+object
The schema for the model. For application/json models, this should be JSON schema draft 4 model.
+string
The API identifier.
+string
The name of the model.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all models
in a region.
+```sql
+SELECT
+region,
+api_id,
+model_id
+FROM aws.apigatewayv2.models_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the models_list_only
resource, see models
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/route_responses/index.md b/docs/aws-docs/providers/aws/apigatewayv2/route_responses/index.md
index 75f20cbc63..83abfd3fd0 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/route_responses/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/route_responses/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a route_response
resource or list
-
+
SELECT
@@ -76,17 +76,21 @@ Creates, updates, deletes or gets a route_response
resource or list
## `SELECT` examples
-List all route_responses
in a region.
+Gets all route_responses
in a region.
```sql
SELECT
region,
-api_id,
+route_response_key,
+response_parameters,
route_id,
+model_selection_expression,
+api_id,
+response_models,
route_response_id
FROM aws.apigatewayv2.route_responses
WHERE region = 'us-east-1';
```
-Gets all properties from a route_response
.
+Gets all properties from an individual route_response
.
```sql
SELECT
region,
@@ -101,7 +105,6 @@ FROM aws.apigatewayv2.route_responses
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new route_response
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/route_responses_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/route_responses_list_only/index.md
new file mode 100644
index 0000000000..5e350080d5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/route_responses_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: route_responses_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - route_responses_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists route_responses
in a region or regions, for all properties use route_responses
+
+## Overview
+
+Name route_responses_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::RouteResponse
resource creates a route response for a WebSocket API. For more information, see [Set up Route Responses for a WebSocket API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-route-response.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
The route response key.
+undefined
The route response parameters.
+string
The route ID.
+string
The model selection expression for the route response. Supported only for WebSocket APIs.
+string
The API identifier.
+object
The response models for the route response.
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all route_responses
in a region.
+```sql
+SELECT
+region,
+api_id,
+route_id,
+route_response_id
+FROM aws.apigatewayv2.route_responses_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the route_responses_list_only
resource, see route_responses
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/routes/index.md b/docs/aws-docs/providers/aws/apigatewayv2/routes/index.md
index e81bdd85e3..47ae75d70c 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/routes/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/routes/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a route
resource or lists r
-
+
SELECT
@@ -82,16 +82,27 @@ Creates, updates, deletes or gets a route
resource or lists r
## `SELECT` examples
-List all routes
in a region.
+Gets all routes
in a region.
```sql
SELECT
region,
+route_id,
+route_response_selection_expression,
+request_models,
+operation_name,
+authorization_scopes,
+api_key_required,
+route_key,
+authorization_type,
+model_selection_expression,
api_id,
-route_id
+request_parameters,
+target,
+authorizer_id
FROM aws.apigatewayv2.routes
WHERE region = 'us-east-1';
```
-Gets all properties from a route
.
+Gets all properties from an individual route
.
```sql
SELECT
region,
@@ -112,7 +123,6 @@ FROM aws.apigatewayv2.routes
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new route
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/routes_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/routes_list_only/index.md
new file mode 100644
index 0000000000..7696358ce0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/routes_list_only/index.md
@@ -0,0 +1,80 @@
+---
+title: routes_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - routes_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists routes
in a region or regions, for all properties use routes
+
+## Overview
+
+Name routes_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::Route
resource creates a route for an API.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The route response selection expression for the route. Supported only for WebSocket APIs.
+object
The request models for the route. Supported only for WebSocket APIs.
+string
The operation name for the route.
+array
The authorization scopes supported by this route.
+boolean
Specifies whether an API key is required for the route. Supported only for WebSocket APIs.
+string
The route key for the route. For HTTP APIs, the route key can be either $default
, or a combination of an HTTP method and resource path, for example, GET /pets
.
+string
The authorization type for the route. For WebSocket APIs, valid values are NONE
for open access, AWS_IAM
for using AWS IAM permissions, and CUSTOM
for using a Lambda authorizer. For HTTP APIs, valid values are NONE
for open access, JWT
for using JSON Web Tokens, AWS_IAM
for using AWS IAM permissions, and CUSTOM
for using a Lambda authorizer.
+string
The model selection expression for the route. Supported only for WebSocket APIs.
+string
The API identifier.
+object
The request parameters for the route. Supported only for WebSocket APIs.
+string
The target for the route.
+string
The identifier of the Authorizer
resource to be associated with this route. The authorizer identifier is generated by API Gateway when you created the authorizer.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all routes
in a region.
+```sql
+SELECT
+region,
+api_id,
+route_id
+FROM aws.apigatewayv2.routes_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the routes_list_only
resource, see routes
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/vpc_link_tags/index.md b/docs/aws-docs/providers/aws/apigatewayv2/vpc_link_tags/index.md
new file mode 100644
index 0000000000..8afba52651
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/vpc_link_tags/index.md
@@ -0,0 +1,77 @@
+---
+title: vpc_link_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_link_tags
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for vpc_links
in a region
+
+## Overview
+
+Name vpc_link_tags
+Type Resource
+Description The AWS::ApiGatewayV2::VpcLink
resource creates a VPC link. Supported only for HTTP APIs. The VPC link status must transition from PENDING
to AVAILABLE
to successfully create a VPC link, which can take up to 10 minutes. To learn more, see [Working with VPC Links for HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-vpc-links.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+array
A list of subnet IDs to include in the VPC link.
+array
A list of security group IDs for the VPC link.
+string
The name of the VPC link.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all vpc_links
in a region.
+```sql
+SELECT
+region,
+vpc_link_id,
+subnet_ids,
+security_group_ids,
+name,
+tag_key,
+tag_value
+FROM aws.apigatewayv2.vpc_link_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_link_tags
resource, see vpc_links
+
+
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/vpc_links/index.md b/docs/aws-docs/providers/aws/apigatewayv2/vpc_links/index.md
index ef8b7db177..6824fbf674 100644
--- a/docs/aws-docs/providers/aws/apigatewayv2/vpc_links/index.md
+++ b/docs/aws-docs/providers/aws/apigatewayv2/vpc_links/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a vpc_link
resource or lists
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a vpc_link
resource or lists
## `SELECT` examples
-List all vpc_links
in a region.
+Gets all vpc_links
in a region.
```sql
SELECT
region,
-vpc_link_id
+vpc_link_id,
+subnet_ids,
+security_group_ids,
+tags,
+name
FROM aws.apigatewayv2.vpc_links
WHERE region = 'us-east-1';
```
-Gets all properties from a vpc_link
.
+Gets all properties from an individual vpc_link
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.apigatewayv2.vpc_links
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new vpc_link
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apigatewayv2/vpc_links_list_only/index.md b/docs/aws-docs/providers/aws/apigatewayv2/vpc_links_list_only/index.md
new file mode 100644
index 0000000000..f7437f4127
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apigatewayv2/vpc_links_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: vpc_links_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_links_list_only
+ - apigatewayv2
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists vpc_links
in a region or regions, for all properties use vpc_links
+
+## Overview
+
+Name vpc_links_list_only
+Type Resource
+Description The AWS::ApiGatewayV2::VpcLink
resource creates a VPC link. Supported only for HTTP APIs. The VPC link status must transition from PENDING
to AVAILABLE
to successfully create a VPC link, which can take up to 10 minutes. To learn more, see [Working with VPC Links for HTTP APIs](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-vpc-links.html) in the *API Gateway Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+array
A list of subnet IDs to include in the VPC link.
+array
A list of security group IDs for the VPC link.
+object
The collection of tags. Each tag element is associated with a given resource.
+string
The name of the VPC link.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all vpc_links
in a region.
+```sql
+SELECT
+region,
+vpc_link_id
+FROM aws.apigatewayv2.vpc_links_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_links_list_only
resource, see vpc_links
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/application_tags/index.md b/docs/aws-docs/providers/aws/appconfig/application_tags/index.md
new file mode 100644
index 0000000000..afa53360c6
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/application_tags/index.md
@@ -0,0 +1,75 @@
+---
+title: application_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - application_tags
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for applications
in a region
+
+## Overview
+
+Name application_tags
+Type Resource
+Description Resource Type definition for AWS::AppConfig::Application
+Id
+
+
+## Fields
+Name Datatype Description string
A description of the application.
+string
The application Id
+string
A name for the application.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all applications
in a region.
+```sql
+SELECT
+region,
+description,
+application_id,
+name,
+tag_key,
+tag_value
+FROM aws.appconfig.application_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the application_tags
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/applications/index.md b/docs/aws-docs/providers/aws/appconfig/applications/index.md
index ee184b97a9..7ff4d0a214 100644
--- a/docs/aws-docs/providers/aws/appconfig/applications/index.md
+++ b/docs/aws-docs/providers/aws/appconfig/applications/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets an application
resource or lists
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets an application
resource or lists
## `SELECT` examples
-List all applications
in a region.
+Gets all applications
in a region.
```sql
SELECT
region,
-application_id
+description,
+application_id,
+tags,
+name
FROM aws.appconfig.applications
WHERE region = 'us-east-1';
```
-Gets all properties from an application
.
+Gets all properties from an individual application
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.appconfig.applications
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new application
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appconfig/applications_list_only/index.md b/docs/aws-docs/providers/aws/appconfig/applications_list_only/index.md
new file mode 100644
index 0000000000..1cee140aa4
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/applications_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: applications_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - applications_list_only
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists applications
in a region or regions, for all properties use applications
+
+## Overview
+
+Name applications_list_only
+Type Resource
+Description Resource Type definition for AWS::AppConfig::Application
+Id
+
+
+## Fields
+Name Datatype Description string
A description of the application.
+string
The application Id
+array
Metadata to assign to the application. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
+string
A name for the application.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all applications
in a region.
+```sql
+SELECT
+region,
+application_id
+FROM aws.appconfig.applications_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the applications_list_only
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/configuration_profile_tags/index.md b/docs/aws-docs/providers/aws/appconfig/configuration_profile_tags/index.md
new file mode 100644
index 0000000000..6468d53a30
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/configuration_profile_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: configuration_profile_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configuration_profile_tags
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for configuration_profiles
in a region
+
+## Overview
+
+Name configuration_profile_tags
+Type Resource
+Description An example resource schema demonstrating some basic constructs and validation rules.
+Id
+
+
+## Fields
+Name Datatype Description string
The configuration profile ID
+string
A URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object.
+string
The type of configurations contained in the profile. When calling this API, enter one of the following values for Type: AWS.AppConfig.FeatureFlags, AWS.Freeform
+string
The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
+string
A description of the configuration profile.
+string
The Amazon Resource Name of the AWS Key Management Service key to encrypt new configuration data versions in the AWS AppConfig hosted configuration store. This attribute is only used for hosted configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an AWS KMS key for that particular service.
+array
A list of methods for validating the configuration.
+string
The ARN of an IAM role with permission to access the configuration at the specified LocationUri.
+string
The application ID.
+string
A name for the configuration profile.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all configuration_profiles
in a region.
+```sql
+SELECT
+region,
+configuration_profile_id,
+location_uri,
+type,
+kms_key_identifier,
+description,
+kms_key_arn,
+validators,
+retrieval_role_arn,
+application_id,
+name,
+tag_key,
+tag_value
+FROM aws.appconfig.configuration_profile_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configuration_profile_tags
resource, see configuration_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/configuration_profiles/index.md b/docs/aws-docs/providers/aws/appconfig/configuration_profiles/index.md
index 7ef7d88aae..7d21fdca61 100644
--- a/docs/aws-docs/providers/aws/appconfig/configuration_profiles/index.md
+++ b/docs/aws-docs/providers/aws/appconfig/configuration_profiles/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a configuration_profile
resource
-
+
SELECT
@@ -80,16 +80,25 @@ Creates, updates, deletes or gets a configuration_profile
resource
## `SELECT` examples
-List all configuration_profiles
in a region.
+Gets all configuration_profiles
in a region.
```sql
SELECT
region,
+configuration_profile_id,
+location_uri,
+type,
+kms_key_identifier,
+description,
+kms_key_arn,
+validators,
+retrieval_role_arn,
application_id,
-configuration_profile_id
+tags,
+name
FROM aws.appconfig.configuration_profiles
WHERE region = 'us-east-1';
```
-Gets all properties from a configuration_profile
.
+Gets all properties from an individual configuration_profile
.
```sql
SELECT
region,
@@ -108,7 +117,6 @@ FROM aws.appconfig.configuration_profiles
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new configuration_profile
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appconfig/configuration_profiles_list_only/index.md b/docs/aws-docs/providers/aws/appconfig/configuration_profiles_list_only/index.md
new file mode 100644
index 0000000000..8ae0b254a9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/configuration_profiles_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: configuration_profiles_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configuration_profiles_list_only
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists configuration_profiles
in a region or regions, for all properties use configuration_profiles
+
+## Overview
+
+Name configuration_profiles_list_only
+Type Resource
+Description An example resource schema demonstrating some basic constructs and validation rules.
+Id
+
+
+## Fields
+Name Datatype Description string
The configuration profile ID
+string
A URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object.
+string
The type of configurations contained in the profile. When calling this API, enter one of the following values for Type: AWS.AppConfig.FeatureFlags, AWS.Freeform
+string
The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
+string
A description of the configuration profile.
+string
The Amazon Resource Name of the AWS Key Management Service key to encrypt new configuration data versions in the AWS AppConfig hosted configuration store. This attribute is only used for hosted configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an AWS KMS key for that particular service.
+array
A list of methods for validating the configuration.
+string
The ARN of an IAM role with permission to access the configuration at the specified LocationUri.
+string
The application ID.
+array
Metadata to assign to the configuration profile. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
+string
A name for the configuration profile.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all configuration_profiles
in a region.
+```sql
+SELECT
+region,
+application_id,
+configuration_profile_id
+FROM aws.appconfig.configuration_profiles_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configuration_profiles_list_only
resource, see configuration_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/environment_tags/index.md b/docs/aws-docs/providers/aws/appconfig/environment_tags/index.md
new file mode 100644
index 0000000000..32e7da08a1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/environment_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: environment_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - environment_tags
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for environments
in a region
+
+## Overview
+
+Name environment_tags
+Type Resource
+Description Resource Type definition for AWS::AppConfig::Environment
+Id
+
+
+## Fields
+Name Datatype Description string
The environment ID.
+string
A description of the environment.
+array
Amazon CloudWatch alarms to monitor during the deployment process.
+string
The application ID.
+string
A name for the environment.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all environments
in a region.
+```sql
+SELECT
+region,
+environment_id,
+description,
+monitors,
+application_id,
+name,
+tag_key,
+tag_value
+FROM aws.appconfig.environment_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the environment_tags
resource, see environments
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/environments/index.md b/docs/aws-docs/providers/aws/appconfig/environments/index.md
index 0c2756b4f8..c28bfa374c 100644
--- a/docs/aws-docs/providers/aws/appconfig/environments/index.md
+++ b/docs/aws-docs/providers/aws/appconfig/environments/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets an environment
resource or lists
-
+
SELECT
@@ -75,16 +75,20 @@ Creates, updates, deletes or gets an environment
resource or lists
## `SELECT` examples
-List all environments
in a region.
+Gets all environments
in a region.
```sql
SELECT
region,
+environment_id,
+description,
+monitors,
application_id,
-environment_id
+tags,
+name
FROM aws.appconfig.environments
WHERE region = 'us-east-1';
```
-Gets all properties from an environment
.
+Gets all properties from an individual environment
.
```sql
SELECT
region,
@@ -98,7 +102,6 @@ FROM aws.appconfig.environments
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new environment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appconfig/environments_list_only/index.md b/docs/aws-docs/providers/aws/appconfig/environments_list_only/index.md
new file mode 100644
index 0000000000..34e59fd47c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/environments_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: environments_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - environments_list_only
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists environments
in a region or regions, for all properties use environments
+
+## Overview
+
+Name environments_list_only
+Type Resource
+Description Resource Type definition for AWS::AppConfig::Environment
+Id
+
+
+## Fields
+Name Datatype Description string
The environment ID.
+string
A description of the environment.
+array
Amazon CloudWatch alarms to monitor during the deployment process.
+string
The application ID.
+array
Metadata to assign to the environment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
+string
A name for the environment.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all environments
in a region.
+```sql
+SELECT
+region,
+application_id,
+environment_id
+FROM aws.appconfig.environments_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the environments_list_only
resource, see environments
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/extension_association_tags/index.md b/docs/aws-docs/providers/aws/appconfig/extension_association_tags/index.md
new file mode 100644
index 0000000000..cc63f31532
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/extension_association_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: extension_association_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - extension_association_tags
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for extension_associations
in a region
+
+## Overview
+
+Name extension_association_tags
+Type Resource
+Description An example resource schema demonstrating some basic constructs and validation rules.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+integer
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all extension_associations
in a region.
+```sql
+SELECT
+region,
+id,
+arn,
+extension_arn,
+resource_arn,
+extension_identifier,
+resource_identifier,
+extension_version_number,
+parameters,
+tag_key,
+tag_value
+FROM aws.appconfig.extension_association_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the extension_association_tags
resource, see extension_associations
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/extension_associations/index.md b/docs/aws-docs/providers/aws/appconfig/extension_associations/index.md
index 41aca56940..2c95b13481 100644
--- a/docs/aws-docs/providers/aws/appconfig/extension_associations/index.md
+++ b/docs/aws-docs/providers/aws/appconfig/extension_associations/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets an extension_association
resource
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets an extension_association
resource
## `SELECT` examples
-List all extension_associations
in a region.
+Gets all extension_associations
in a region.
```sql
SELECT
region,
-id
+id,
+arn,
+extension_arn,
+resource_arn,
+extension_identifier,
+resource_identifier,
+extension_version_number,
+parameters,
+tags
FROM aws.appconfig.extension_associations
WHERE region = 'us-east-1';
```
-Gets all properties from an extension_association
.
+Gets all properties from an individual extension_association
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.appconfig.extension_associations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new extension_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appconfig/extension_associations_list_only/index.md b/docs/aws-docs/providers/aws/appconfig/extension_associations_list_only/index.md
new file mode 100644
index 0000000000..91e7f5a989
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/extension_associations_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: extension_associations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - extension_associations_list_only
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists extension_associations
in a region or regions, for all properties use extension_associations
+
+## Overview
+
+Name extension_associations_list_only
+Type Resource
+Description An example resource schema demonstrating some basic constructs and validation rules.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+integer
+object
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all extension_associations
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.appconfig.extension_associations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the extension_associations_list_only
resource, see extension_associations
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/extension_tags/index.md b/docs/aws-docs/providers/aws/appconfig/extension_tags/index.md
new file mode 100644
index 0000000000..ad1d3af999
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/extension_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: extension_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - extension_tags
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for extensions
in a region
+
+## Overview
+
+Name extension_tags
+Type Resource
+Description Resource Type definition for AWS::AppConfig::Extension
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+integer
+string
Name of the extension.
+string
Description of the extension.
+object
+object
+integer
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all extensions
in a region.
+```sql
+SELECT
+region,
+id,
+arn,
+version_number,
+name,
+description,
+actions,
+parameters,
+latest_version_number,
+tag_key,
+tag_value
+FROM aws.appconfig.extension_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the extension_tags
resource, see extensions
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/extensions/index.md b/docs/aws-docs/providers/aws/appconfig/extensions/index.md
index d9de3f6212..c460f008af 100644
--- a/docs/aws-docs/providers/aws/appconfig/extensions/index.md
+++ b/docs/aws-docs/providers/aws/appconfig/extensions/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets an extension
resource or lists
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets an extension
resource or lists
## `SELECT` examples
-List all extensions
in a region.
+Gets all extensions
in a region.
```sql
SELECT
region,
-id
+id,
+arn,
+version_number,
+name,
+description,
+actions,
+parameters,
+latest_version_number,
+tags
FROM aws.appconfig.extensions
WHERE region = 'us-east-1';
```
-Gets all properties from an extension
.
+Gets all properties from an individual extension
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.appconfig.extensions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new extension
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appconfig/extensions_list_only/index.md b/docs/aws-docs/providers/aws/appconfig/extensions_list_only/index.md
new file mode 100644
index 0000000000..79ae743ded
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/extensions_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: extensions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - extensions_list_only
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists extensions
in a region or regions, for all properties use extensions
+
+## Overview
+
+Name extensions_list_only
+Type Resource
+Description Resource Type definition for AWS::AppConfig::Extension
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+integer
+string
Name of the extension.
+string
Description of the extension.
+object
+object
+integer
+array
An array of key-value tags to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all extensions
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.appconfig.extensions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the extensions_list_only
resource, see extensions
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/hosted_configuration_versions/index.md b/docs/aws-docs/providers/aws/appconfig/hosted_configuration_versions/index.md
index 7b6f0e0bd2..95fb684e02 100644
--- a/docs/aws-docs/providers/aws/appconfig/hosted_configuration_versions/index.md
+++ b/docs/aws-docs/providers/aws/appconfig/hosted_configuration_versions/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a hosted_configuration_version
re
-
+
SELECT
@@ -72,17 +72,22 @@ Creates, updates, deletes or gets a hosted_configuration_version
re
## `SELECT` examples
-List all hosted_configuration_versions
in a region.
+Gets all hosted_configuration_versions
in a region.
```sql
SELECT
region,
-application_id,
configuration_profile_id,
+description,
+content_type,
+latest_version_number,
+content,
+version_label,
+application_id,
version_number
FROM aws.appconfig.hosted_configuration_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a hosted_configuration_version
.
+Gets all properties from an individual hosted_configuration_version
.
```sql
SELECT
region,
@@ -98,7 +103,6 @@ FROM aws.appconfig.hosted_configuration_versions
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new hosted_configuration_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appconfig/hosted_configuration_versions_list_only/index.md b/docs/aws-docs/providers/aws/appconfig/hosted_configuration_versions_list_only/index.md
new file mode 100644
index 0000000000..83cca1ee4a
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appconfig/hosted_configuration_versions_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: hosted_configuration_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hosted_configuration_versions_list_only
+ - appconfig
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists hosted_configuration_versions
in a region or regions, for all properties use hosted_configuration_versions
+
+## Overview
+
+Name hosted_configuration_versions_list_only
+Type Resource
+Description Resource Type definition for AWS::AppConfig::HostedConfigurationVersion
+Id
+
+
+## Fields
+Name Datatype Description string
The configuration profile ID.
+string
A description of the hosted configuration version.
+string
A standard MIME type describing the format of the configuration content.
+integer
An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
+string
The content of the configuration or the configuration data.
+string
A user-defined label for an AWS AppConfig hosted configuration version.
+string
The application ID.
+string
Current version number of hosted configuration version.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all hosted_configuration_versions
in a region.
+```sql
+SELECT
+region,
+application_id,
+configuration_profile_id,
+version_number
+FROM aws.appconfig.hosted_configuration_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hosted_configuration_versions_list_only
resource, see hosted_configuration_versions
+
+
diff --git a/docs/aws-docs/providers/aws/appconfig/index.md b/docs/aws-docs/providers/aws/appconfig/index.md
index 43d7728453..caad9bdc6a 100644
--- a/docs/aws-docs/providers/aws/appconfig/index.md
+++ b/docs/aws-docs/providers/aws/appconfig/index.md
@@ -20,7 +20,7 @@ The appconfig service documentation.
-total resources: 6
+total resources: 17
@@ -29,13 +29,24 @@ The appconfig service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/appflow/connector_profiles/index.md b/docs/aws-docs/providers/aws/appflow/connector_profiles/index.md
index 9ac76d42de..0261b885a3 100644
--- a/docs/aws-docs/providers/aws/appflow/connector_profiles/index.md
+++ b/docs/aws-docs/providers/aws/appflow/connector_profiles/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a connector_profile
resource or l
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a connector_profile
resource or l
## `SELECT` examples
-List all connector_profiles
in a region.
+Gets all connector_profiles
in a region.
```sql
SELECT
region,
-connector_profile_name
+connector_profile_arn,
+connector_label,
+connector_profile_name,
+kms_arn,
+connector_type,
+connection_mode,
+connector_profile_config,
+credentials_arn
FROM aws.appflow.connector_profiles
WHERE region = 'us-east-1';
```
-Gets all properties from a connector_profile
.
+Gets all properties from an individual connector_profile
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.appflow.connector_profiles
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new connector_profile
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appflow/connector_profiles_list_only/index.md b/docs/aws-docs/providers/aws/appflow/connector_profiles_list_only/index.md
new file mode 100644
index 0000000000..f4756e6fb3
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appflow/connector_profiles_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: connector_profiles_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - connector_profiles_list_only
+ - appflow
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists connector_profiles
in a region or regions, for all properties use connector_profiles
+
+## Overview
+
+Name connector_profiles_list_only
+Type Resource
+Description Resource Type definition for AWS::AppFlow::ConnectorProfile
+Id
+
+
+## Fields
+Name Datatype Description string
Unique identifier for connector profile resources
+string
The label of the connector. The label is unique for each ConnectorRegistration in your AWS account. Only needed if calling for CUSTOMCONNECTOR connector type/.
+string
The maximum number of items to retrieve in a single batch.
+string
The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your function's environment variables. If it's not provided, AWS Lambda uses a default service key.
+string
List of Saas providers that need connector profile to be created
+string
Mode in which data transfer should be enabled. Private connection mode is currently enabled for Salesforce, Snowflake, Trendmicro and Singular
+object
Connector specific configurations needed to create connector profile
+string
A unique Arn for Connector-Profile resource
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all connector_profiles
in a region.
+```sql
+SELECT
+region,
+connector_profile_name
+FROM aws.appflow.connector_profiles_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the connector_profiles_list_only
resource, see connector_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/appflow/connectors/index.md b/docs/aws-docs/providers/aws/appflow/connectors/index.md
index 88cf220849..3fda0145f1 100644
--- a/docs/aws-docs/providers/aws/appflow/connectors/index.md
+++ b/docs/aws-docs/providers/aws/appflow/connectors/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a connector
resource or lists
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a connector
resource or lists
## `SELECT` examples
-List all connectors
in a region.
+Gets all connectors
in a region.
```sql
SELECT
region,
-connector_label
+connector_label,
+connector_arn,
+connector_provisioning_type,
+connector_provisioning_config,
+description
FROM aws.appflow.connectors
WHERE region = 'us-east-1';
```
-Gets all properties from a connector
.
+Gets all properties from an individual connector
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.appflow.connectors
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new connector
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appflow/connectors_list_only/index.md b/docs/aws-docs/providers/aws/appflow/connectors_list_only/index.md
new file mode 100644
index 0000000000..becbaaace7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appflow/connectors_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: connectors_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - connectors_list_only
+ - appflow
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists connectors
in a region or regions, for all properties use connectors
+
+## Overview
+
+Name connectors_list_only
+Type Resource
+Description Resource schema for AWS::AppFlow::Connector
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the connector. The name is unique for each ConnectorRegistration in your AWS account.
+string
The arn of the connector. The arn is unique for each ConnectorRegistration in your AWS account.
+string
The provisioning type of the connector. Currently the only supported value is LAMBDA.
+object
Contains information about the configuration of the connector being registered.
+string
A description about the connector that's being registered.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all connectors
in a region.
+```sql
+SELECT
+region,
+connector_label
+FROM aws.appflow.connectors_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the connectors_list_only
resource, see connectors
+
+
diff --git a/docs/aws-docs/providers/aws/appflow/flow_tags/index.md b/docs/aws-docs/providers/aws/appflow/flow_tags/index.md
new file mode 100644
index 0000000000..812df3069b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appflow/flow_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: flow_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - flow_tags
+ - appflow
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for flows
in a region
+
+## Overview
+
+Name flow_tags
+Type Resource
+Description Resource schema for AWS::AppFlow::Flow.
+Id
+
+
+## Fields
+Name Datatype Description string
ARN identifier of the flow.
+string
Name of the flow.
+string
Description of the flow.
+string
The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your function's environment variables. If it's not provided, AWS Lambda uses a default service key.
+object
Trigger settings of the flow.
+string
Flow activation status for Scheduled- and Event-triggered flows
+object
Configurations of Source connector of the flow.
+array
List of Destination connectors of the flow.
+array
List of tasks for the flow.
+object
Configurations of metadata catalog of the flow.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all flows
in a region.
+```sql
+SELECT
+region,
+flow_arn,
+flow_name,
+description,
+kms_arn,
+trigger_config,
+flow_status,
+source_flow_config,
+destination_flow_config_list,
+tasks,
+metadata_catalog_config,
+tag_key,
+tag_value
+FROM aws.appflow.flow_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the flow_tags
resource, see flows
+
+
diff --git a/docs/aws-docs/providers/aws/appflow/flows/index.md b/docs/aws-docs/providers/aws/appflow/flows/index.md
index dffd82c37e..41f422a82f 100644
--- a/docs/aws-docs/providers/aws/appflow/flows/index.md
+++ b/docs/aws-docs/providers/aws/appflow/flows/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a flow
resource or lists fl
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a flow
resource or lists fl
## `SELECT` examples
-List all flows
in a region.
+Gets all flows
in a region.
```sql
SELECT
region,
-flow_name
+flow_arn,
+flow_name,
+description,
+kms_arn,
+trigger_config,
+flow_status,
+source_flow_config,
+destination_flow_config_list,
+tasks,
+tags,
+metadata_catalog_config
FROM aws.appflow.flows
WHERE region = 'us-east-1';
```
-Gets all properties from a flow
.
+Gets all properties from an individual flow
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.appflow.flows
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new flow
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appflow/flows_list_only/index.md b/docs/aws-docs/providers/aws/appflow/flows_list_only/index.md
new file mode 100644
index 0000000000..5d9473b683
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appflow/flows_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: flows_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - flows_list_only
+ - appflow
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists flows
in a region or regions, for all properties use flows
+
+## Overview
+
+Name flows_list_only
+Type Resource
+Description Resource schema for AWS::AppFlow::Flow.
+Id
+
+
+## Fields
+Name Datatype Description string
ARN identifier of the flow.
+string
Name of the flow.
+string
Description of the flow.
+string
The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your function's environment variables. If it's not provided, AWS Lambda uses a default service key.
+object
Trigger settings of the flow.
+string
Flow activation status for Scheduled- and Event-triggered flows
+object
Configurations of Source connector of the flow.
+array
List of Destination connectors of the flow.
+array
List of tasks for the flow.
+array
List of Tags.
+object
Configurations of metadata catalog of the flow.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all flows
in a region.
+```sql
+SELECT
+region,
+flow_name
+FROM aws.appflow.flows_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the flows_list_only
resource, see flows
+
+
diff --git a/docs/aws-docs/providers/aws/appflow/index.md b/docs/aws-docs/providers/aws/appflow/index.md
index fe14a70a07..d9671e145b 100644
--- a/docs/aws-docs/providers/aws/appflow/index.md
+++ b/docs/aws-docs/providers/aws/appflow/index.md
@@ -20,7 +20,7 @@ The appflow service documentation.
-total resources: 3
+total resources: 7
@@ -30,9 +30,13 @@ The appflow service documentation.
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/appintegrations/application_tags/index.md b/docs/aws-docs/providers/aws/appintegrations/application_tags/index.md
new file mode 100644
index 0000000000..c3a83bb3eb
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appintegrations/application_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: application_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - application_tags
+ - appintegrations
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for applications
in a region
+
+## Overview
+
+Name application_tags
+Type Resource
+Description Resource Type definition for AWS:AppIntegrations::Application
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the application.
+string
The id of the application.
+string
The namespace of the application.
+string
The application description.
+string
The Amazon Resource Name (ARN) of the application.
+object
Application source config
+array
The configuration of events or requests that the application has access to.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all applications
in a region.
+```sql
+SELECT
+region,
+name,
+id,
+namespace,
+description,
+application_arn,
+application_source_config,
+permissions,
+tag_key,
+tag_value
+FROM aws.appintegrations.application_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the application_tags
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/appintegrations/applications/index.md b/docs/aws-docs/providers/aws/appintegrations/applications/index.md
index 4a1d445aa2..8754b6a393 100644
--- a/docs/aws-docs/providers/aws/appintegrations/applications/index.md
+++ b/docs/aws-docs/providers/aws/appintegrations/applications/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets an application
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets an application
resource or lists
## `SELECT` examples
-List all applications
in a region.
+Gets all applications
in a region.
```sql
SELECT
region,
-application_arn
+name,
+id,
+namespace,
+description,
+application_arn,
+application_source_config,
+permissions,
+tags
FROM aws.appintegrations.applications
WHERE region = 'us-east-1';
```
-Gets all properties from an application
.
+Gets all properties from an individual application
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.appintegrations.applications
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new application
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appintegrations/applications_list_only/index.md b/docs/aws-docs/providers/aws/appintegrations/applications_list_only/index.md
new file mode 100644
index 0000000000..ba2f01792c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appintegrations/applications_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: applications_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - applications_list_only
+ - appintegrations
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists applications
in a region or regions, for all properties use applications
+
+## Overview
+
+Name applications_list_only
+Type Resource
+Description Resource Type definition for AWS:AppIntegrations::Application
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the application.
+string
The id of the application.
+string
The namespace of the application.
+string
The application description.
+string
The Amazon Resource Name (ARN) of the application.
+object
Application source config
+array
The configuration of events or requests that the application has access to.
+array
The tags (keys and values) associated with the application.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all applications
in a region.
+```sql
+SELECT
+region,
+application_arn
+FROM aws.appintegrations.applications_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the applications_list_only
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/appintegrations/data_integration_tags/index.md b/docs/aws-docs/providers/aws/appintegrations/data_integration_tags/index.md
new file mode 100644
index 0000000000..e2d5732989
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appintegrations/data_integration_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: data_integration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - data_integration_tags
+ - appintegrations
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for data_integrations
in a region
+
+## Overview
+
+Name data_integration_tags
+Type Resource
+Description Resource Type definition for AWS::AppIntegrations::DataIntegration
+Id
+
+
+## Fields
+Name Datatype Description string
The data integration description.
+string
The unique identifer of the data integration.
+string
The Amazon Resource Name (ARN) of the data integration.
+string
The name of the data integration.
+string
The KMS key of the data integration.
+object
The name of the data and how often it should be pulled from the source.
+string
The URI of the data source.
+object
The configuration for what files should be pulled from the source.
+object
The configuration for what data should be pulled from the source.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all data_integrations
in a region.
+```sql
+SELECT
+region,
+description,
+id,
+data_integration_arn,
+name,
+kms_key,
+schedule_config,
+source_uri,
+file_configuration,
+object_configuration,
+tag_key,
+tag_value
+FROM aws.appintegrations.data_integration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the data_integration_tags
resource, see data_integrations
+
+
diff --git a/docs/aws-docs/providers/aws/appintegrations/data_integrations/index.md b/docs/aws-docs/providers/aws/appintegrations/data_integrations/index.md
index 2965a2d0ef..e75976c2fe 100644
--- a/docs/aws-docs/providers/aws/appintegrations/data_integrations/index.md
+++ b/docs/aws-docs/providers/aws/appintegrations/data_integrations/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a data_integration
resource or li
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a data_integration
resource or li
## `SELECT` examples
-List all data_integrations
in a region.
+Gets all data_integrations
in a region.
```sql
SELECT
region,
-id
+description,
+id,
+data_integration_arn,
+name,
+kms_key,
+schedule_config,
+source_uri,
+tags,
+file_configuration,
+object_configuration
FROM aws.appintegrations.data_integrations
WHERE region = 'us-east-1';
```
-Gets all properties from a data_integration
.
+Gets all properties from an individual data_integration
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.appintegrations.data_integrations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new data_integration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appintegrations/data_integrations_list_only/index.md b/docs/aws-docs/providers/aws/appintegrations/data_integrations_list_only/index.md
new file mode 100644
index 0000000000..902fa22369
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appintegrations/data_integrations_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: data_integrations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - data_integrations_list_only
+ - appintegrations
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists data_integrations
in a region or regions, for all properties use data_integrations
+
+## Overview
+
+Name data_integrations_list_only
+Type Resource
+Description Resource Type definition for AWS::AppIntegrations::DataIntegration
+Id
+
+
+## Fields
+Name Datatype Description string
The data integration description.
+string
The unique identifer of the data integration.
+string
The Amazon Resource Name (ARN) of the data integration.
+string
The name of the data integration.
+string
The KMS key of the data integration.
+object
The name of the data and how often it should be pulled from the source.
+string
The URI of the data source.
+array
The tags (keys and values) associated with the data integration.
+object
The configuration for what files should be pulled from the source.
+object
The configuration for what data should be pulled from the source.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all data_integrations
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.appintegrations.data_integrations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the data_integrations_list_only
resource, see data_integrations
+
+
diff --git a/docs/aws-docs/providers/aws/appintegrations/event_integration_tags/index.md b/docs/aws-docs/providers/aws/appintegrations/event_integration_tags/index.md
new file mode 100644
index 0000000000..3e850c4bb7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appintegrations/event_integration_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: event_integration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - event_integration_tags
+ - appintegrations
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for event_integrations
in a region
+
+## Overview
+
+Name event_integration_tags
+Type Resource
+Description Resource Type definition for AWS::AppIntegrations::EventIntegration
+Id
+
+
+## Fields
+Name Datatype Description string
The event integration description.
+string
The Amazon Resource Name (ARN) of the event integration.
+string
The name of the event integration.
+string
The Amazon Eventbridge bus for the event integration.
+object
The EventFilter (source) associated with the event integration.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all event_integrations
in a region.
+```sql
+SELECT
+region,
+description,
+event_integration_arn,
+name,
+event_bridge_bus,
+event_filter,
+tag_key,
+tag_value
+FROM aws.appintegrations.event_integration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the event_integration_tags
resource, see event_integrations
+
+
diff --git a/docs/aws-docs/providers/aws/appintegrations/event_integrations/index.md b/docs/aws-docs/providers/aws/appintegrations/event_integrations/index.md
index 9337613b91..b1fcd41fb5 100644
--- a/docs/aws-docs/providers/aws/appintegrations/event_integrations/index.md
+++ b/docs/aws-docs/providers/aws/appintegrations/event_integrations/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets an event_integration
resource or
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets an event_integration
resource or
## `SELECT` examples
-List all event_integrations
in a region.
+Gets all event_integrations
in a region.
```sql
SELECT
region,
-name
+description,
+event_integration_arn,
+name,
+event_bridge_bus,
+event_filter,
+tags
FROM aws.appintegrations.event_integrations
WHERE region = 'us-east-1';
```
-Gets all properties from an event_integration
.
+Gets all properties from an individual event_integration
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.appintegrations.event_integrations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new event_integration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appintegrations/event_integrations_list_only/index.md b/docs/aws-docs/providers/aws/appintegrations/event_integrations_list_only/index.md
new file mode 100644
index 0000000000..8c7046ba12
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appintegrations/event_integrations_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: event_integrations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - event_integrations_list_only
+ - appintegrations
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists event_integrations
in a region or regions, for all properties use event_integrations
+
+## Overview
+
+Name event_integrations_list_only
+Type Resource
+Description Resource Type definition for AWS::AppIntegrations::EventIntegration
+Id
+
+
+## Fields
+Name Datatype Description string
The event integration description.
+string
The Amazon Resource Name (ARN) of the event integration.
+string
The name of the event integration.
+string
The Amazon Eventbridge bus for the event integration.
+object
The EventFilter (source) associated with the event integration.
+array
The tags (keys and values) associated with the event integration.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all event_integrations
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.appintegrations.event_integrations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the event_integrations_list_only
resource, see event_integrations
+
+
diff --git a/docs/aws-docs/providers/aws/appintegrations/index.md b/docs/aws-docs/providers/aws/appintegrations/index.md
index 1337aa549e..2075cec9f0 100644
--- a/docs/aws-docs/providers/aws/appintegrations/index.md
+++ b/docs/aws-docs/providers/aws/appintegrations/index.md
@@ -20,7 +20,7 @@ The appintegrations service documentation.
-total resources: 3
+total resources: 9
@@ -29,10 +29,16 @@ The appintegrations service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/applicationautoscaling/index.md b/docs/aws-docs/providers/aws/applicationautoscaling/index.md
index 3bc8c816a1..2c2fca82e1 100644
--- a/docs/aws-docs/providers/aws/applicationautoscaling/index.md
+++ b/docs/aws-docs/providers/aws/applicationautoscaling/index.md
@@ -20,7 +20,7 @@ The applicationautoscaling service documentation.
-total resources: 2
+total resources: 4
@@ -29,9 +29,11 @@ The applicationautoscaling service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/applicationautoscaling/scalable_targets/index.md b/docs/aws-docs/providers/aws/applicationautoscaling/scalable_targets/index.md
index 951a5ca31b..00734d9c46 100644
--- a/docs/aws-docs/providers/aws/applicationautoscaling/scalable_targets/index.md
+++ b/docs/aws-docs/providers/aws/applicationautoscaling/scalable_targets/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a scalable_target
resource or lis
-
+
SELECT
@@ -78,17 +78,23 @@ Creates, updates, deletes or gets a scalable_target
resource or lis
## `SELECT` examples
-List all scalable_targets
in a region.
+Gets all scalable_targets
in a region.
```sql
SELECT
region,
+scheduled_actions,
resource_id,
+service_namespace,
scalable_dimension,
-service_namespace
+suspended_state,
+id,
+min_capacity,
+role_arn,
+max_capacity
FROM aws.applicationautoscaling.scalable_targets
WHERE region = 'us-east-1';
```
-Gets all properties from a scalable_target
.
+Gets all properties from an individual scalable_target
.
```sql
SELECT
region,
@@ -105,7 +111,6 @@ FROM aws.applicationautoscaling.scalable_targets
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new scalable_target
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/applicationautoscaling/scalable_targets_list_only/index.md b/docs/aws-docs/providers/aws/applicationautoscaling/scalable_targets_list_only/index.md
new file mode 100644
index 0000000000..865979275c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/applicationautoscaling/scalable_targets_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: scalable_targets_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scalable_targets_list_only
+ - applicationautoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists scalable_targets
in a region or regions, for all properties use scalable_targets
+
+## Overview
+
+Name scalable_targets_list_only
+Type Resource
+Description The AWS::ApplicationAutoScaling::ScalableTarget
resource specifies a resource that Application Auto Scaling can scale, such as an AWS::DynamoDB::Table or AWS::ECS::Service resource.
For more information, see [Getting started](https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html) in the *Application Auto Scaling User Guide*.
If the resource that you want Application Auto Scaling to scale is not yet created in your account, add a dependency on the resource when registering it as a scalable target using the [DependsOn](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) attribute.
+Id
+
+
+## Fields
+Name Datatype Description array
The scheduled actions for the scalable target. Duplicates aren't allowed.
+string
The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier.
+ ECS service - The resource type is service
and the unique identifier is the cluster name and service name. Example: service/my-cluster/my-service
.
+ Spot Fleet - The resource type is spot-fleet-request
and the unique identifier is the Spot Fleet request ID. Example: spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE
.
+ EMR cluster - The resource type is instancegroup
and the unique identifier is the cluster ID and instance group ID. Example: instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0
.
+ AppStream 2.0 fleet - The resource type is fleet
and the unique identifier is the fleet name. Example: fleet/sample-fleet
.
+ DynamoDB table - The resource type is table
and the unique identifier is the table name. Example: table/my-table
.
+ DynamoDB global secondary index - The resource type is index
and the unique identifier is the index name. Example: table/my-table/index/my-table-index
.
+ Aurora DB cluster - The resource type is cluster
and the unique identifier is the cluster name. Example: cluster:my-db-cluster
.
+ SageMaker endpoint variant - The resource type is variant
and the unique identifier is the resource ID. Example: endpoint/my-end-point/variant/KMeansClustering
.
+ Custom resources are not supported with a resource type. This parameter must specify the OutputValue
from the CloudFormation template stack used to access the resources. The unique identifier is defined by the service provider. More information is available in our [GitHub repository](https://docs.aws.amazon.com/https://github.com/aws/aws-auto-scaling-custom-resource).
+ Amazon Comprehend document classification endpoint - The resource type and unique identifier are specified using the endpoint ARN. Example: arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE
.
+ Amazon Comprehend entity recognizer endpoint - The resource type and unique identifier are specified using the endpoint ARN. Example: arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE
.
+ Lambda provisioned concurrency - The resource type is function
and the unique identifier is the function name with a function version or alias name suffix that is not $LATEST
. Example: function:my-function:prod
or function:my-function:1
.
+ Amazon Keyspaces table - The resource type is table
and the unique identifier is the table name. Example: keyspace/mykeyspace/table/mytable
.
+ Amazon MSK cluster - The resource type and unique identifier are specified using the cluster ARN. Example: arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5
.
+ Amazon ElastiCache replication group - The resource type is replication-group
and the unique identifier is the replication group name. Example: replication-group/mycluster
.
+ Neptune cluster - The resource type is cluster
and the unique identifier is the cluster name. Example: cluster:mycluster
.
+ SageMaker serverless endpoint - The resource type is variant
and the unique identifier is the resource ID. Example: endpoint/my-end-point/variant/KMeansClustering
.
+ SageMaker inference component - The resource type is inference-component
and the unique identifier is the resource ID. Example: inference-component/my-inference-component
.
+string
The namespace of the AWS service that provides the resource, or a custom-resource
.
+string
The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property.
+ ecs:service:DesiredCount
- The desired task count of an ECS service.
+ elasticmapreduce:instancegroup:InstanceCount
- The instance count of an EMR Instance Group.
+ ec2:spot-fleet-request:TargetCapacity
- The target capacity of a Spot Fleet.
+ appstream:fleet:DesiredCapacity
- The desired capacity of an AppStream 2.0 fleet.
+ dynamodb:table:ReadCapacityUnits
- The provisioned read capacity for a DynamoDB table.
+ dynamodb:table:WriteCapacityUnits
- The provisioned write capacity for a DynamoDB table.
+ dynamodb:index:ReadCapacityUnits
- The provisioned read capacity for a DynamoDB global secondary index.
+ dynamodb:index:WriteCapacityUnits
- The provisioned write capacity for a DynamoDB global secondary index.
+ rds:cluster:ReadReplicaCount
- The count of Aurora Replicas in an Aurora DB cluster. Available for Aurora MySQL-compatible edition and Aurora PostgreSQL-compatible edition.
+ sagemaker:variant:DesiredInstanceCount
- The number of EC2 instances for a SageMaker model endpoint variant.
+ custom-resource:ResourceType:Property
- The scalable dimension for a custom resource provided by your own application or service.
+ comprehend:document-classifier-endpoint:DesiredInferenceUnits
- The number of inference units for an Amazon Comprehend document classification endpoint.
+ comprehend:entity-recognizer-endpoint:DesiredInferenceUnits
- The number of inference units for an Amazon Comprehend entity recognizer endpoint.
+ lambda:function:ProvisionedConcurrency
- The provisioned concurrency for a Lambda function.
+ cassandra:table:ReadCapacityUnits
- The provisioned read capacity for an Amazon Keyspaces table.
+ cassandra:table:WriteCapacityUnits
- The provisioned write capacity for an Amazon Keyspaces table.
+ kafka:broker-storage:VolumeSize
- The provisioned volume size (in GiB) for brokers in an Amazon MSK cluster.
+ elasticache:replication-group:NodeGroups
- The number of node groups for an Amazon ElastiCache replication group.
+ elasticache:replication-group:Replicas
- The number of replicas per node group for an Amazon ElastiCache replication group.
+ neptune:cluster:ReadReplicaCount
- The count of read replicas in an Amazon Neptune DB cluster.
+ sagemaker:variant:DesiredProvisionedConcurrency
- The provisioned concurrency for a SageMaker serverless endpoint.
+ sagemaker:inference-component:DesiredCopyCount
- The number of copies across an endpoint for a SageMaker inference component.
+object
An embedded object that contains attributes and attribute values that are used to suspend and resume automatic scaling. Setting the value of an attribute to true
suspends the specified scaling activities. Setting it to false
(default) resumes the specified scaling activities.
*Suspension Outcomes*
+ For DynamicScalingInSuspended
, while a suspension is in effect, all scale-in activities that are triggered by a scaling policy are suspended.
+ For DynamicScalingOutSuspended
, while a suspension is in effect, all scale-out activities that are triggered by a scaling policy are suspended.
+ For ScheduledScalingSuspended
, while a suspension is in effect, all scaling activities that involve scheduled actions are suspended.
+string
+integer
The minimum value that you plan to scale in to. When a scaling policy is in effect, Application Auto Scaling can scale in (contract) as needed to the minimum capacity limit in response to changing demand.
+string
Specify the Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that allows Application Auto Scaling to modify the scalable target on your behalf. This can be either an IAM service role that Application Auto Scaling can assume to make calls to other AWS resources on your behalf, or a service-linked role for the specified service. For more information, see [How Application Auto Scaling works with IAM](https://docs.aws.amazon.com/autoscaling/application/userguide/security_iam_service-with-iam.html) in the *Application Auto Scaling User Guide*.
To automatically create a service-linked role (recommended), specify the full ARN of the service-linked role in your stack template. To find the exact ARN of the service-linked role for your AWS or custom resource, see the [Service-linked roles](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-service-linked-roles.html) topic in the *Application Auto Scaling User Guide*. Look for the ARN in the table at the bottom of the page.
+integer
The maximum value that you plan to scale out to. When a scaling policy is in effect, Application Auto Scaling can scale out (expand) as needed to the maximum capacity limit in response to changing demand.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all scalable_targets
in a region.
+```sql
+SELECT
+region,
+resource_id,
+scalable_dimension,
+service_namespace
+FROM aws.applicationautoscaling.scalable_targets_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scalable_targets_list_only
resource, see scalable_targets
+
+
diff --git a/docs/aws-docs/providers/aws/applicationautoscaling/scaling_policies/index.md b/docs/aws-docs/providers/aws/applicationautoscaling/scaling_policies/index.md
index b6eaf5ffa3..1843388590 100644
--- a/docs/aws-docs/providers/aws/applicationautoscaling/scaling_policies/index.md
+++ b/docs/aws-docs/providers/aws/applicationautoscaling/scaling_policies/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a scaling_policy
resource or list
-
+
SELECT
@@ -78,16 +78,23 @@ Creates, updates, deletes or gets a scaling_policy
resource or list
## `SELECT` examples
-List all scaling_policies
in a region.
+Gets all scaling_policies
in a region.
```sql
SELECT
region,
-arn,
-scalable_dimension
+policy_name,
+policy_type,
+resource_id,
+scalable_dimension,
+scaling_target_id,
+service_namespace,
+step_scaling_policy_configuration,
+target_tracking_scaling_policy_configuration,
+arn
FROM aws.applicationautoscaling.scaling_policies
WHERE region = 'us-east-1';
```
-Gets all properties from a scaling_policy
.
+Gets all properties from an individual scaling_policy
.
```sql
SELECT
region,
@@ -104,7 +111,6 @@ FROM aws.applicationautoscaling.scaling_policies
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new scaling_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/applicationautoscaling/scaling_policies_list_only/index.md b/docs/aws-docs/providers/aws/applicationautoscaling/scaling_policies_list_only/index.md
new file mode 100644
index 0000000000..617ede4a36
--- /dev/null
+++ b/docs/aws-docs/providers/aws/applicationautoscaling/scaling_policies_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: scaling_policies_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scaling_policies_list_only
+ - applicationautoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists scaling_policies
in a region or regions, for all properties use scaling_policies
+
+## Overview
+
+Name scaling_policies_list_only
+Type Resource
+Description Resource Type definition for AWS::ApplicationAutoScaling::ScalingPolicy
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the scaling policy.
Updates to the name of a target tracking scaling policy are not supported, unless you also update the metric used for scaling. To change only a target tracking scaling policy's name, first delete the policy by removing the existing AWS::ApplicationAutoScaling::ScalingPolicy resource from the template and updating the stack. Then, recreate the resource with the same settings and a different name.
+string
The scaling policy type.
The following policy types are supported:
TargetTrackingScaling Not supported for Amazon EMR
StepScaling Not supported for DynamoDB, Amazon Comprehend, Lambda, Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
+string
The identifier of the resource associated with the scaling policy. This string consists of the resource type and unique identifier.
+string
The scalable dimension. This string consists of the service namespace, resource type, and scaling property.
+string
The CloudFormation-generated ID of an Application Auto Scaling scalable target. For more information about the ID, see the Return Value section of the AWS::ApplicationAutoScaling::ScalableTarget resource.
+string
The namespace of the AWS service that provides the resource, or a custom-resource.
+object
A step scaling policy.
+object
A target tracking scaling policy.
+string
ARN is a read only property for the resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all scaling_policies
in a region.
+```sql
+SELECT
+region,
+arn,
+scalable_dimension
+FROM aws.applicationautoscaling.scaling_policies_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scaling_policies_list_only
resource, see scaling_policies
+
+
diff --git a/docs/aws-docs/providers/aws/applicationinsights/application_tags/index.md b/docs/aws-docs/providers/aws/applicationinsights/application_tags/index.md
new file mode 100644
index 0000000000..2145598172
--- /dev/null
+++ b/docs/aws-docs/providers/aws/applicationinsights/application_tags/index.md
@@ -0,0 +1,91 @@
+---
+title: application_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - application_tags
+ - applicationinsights
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for applications
in a region
+
+## Overview
+
+Name application_tags
+Type Resource
+Description Resource schema for AWS::ApplicationInsights::Application
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the resource group.
+string
The ARN of the ApplicationInsights application.
+boolean
Indicates whether Application Insights can listen to CloudWatch events for the application resources.
+boolean
When set to true, creates opsItems for any problems detected on an application.
+string
The SNS topic provided to Application Insights that is associated to the created opsItem.
+array
The custom grouped components.
+array
The log pattern sets.
+boolean
If set to true, application will be configured with recommended monitoring configuration.
+array
The monitoring settings of the components.
+string
The grouping type of the application
+boolean
If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all applications
in a region.
+```sql
+SELECT
+region,
+resource_group_name,
+application_arn,
+cwe_monitor_enabled,
+ops_center_enabled,
+ops_item_sns_topic_arn,
+custom_components,
+log_pattern_sets,
+auto_configuration_enabled,
+component_monitoring_settings,
+grouping_type,
+attach_missing_permission,
+tag_key,
+tag_value
+FROM aws.applicationinsights.application_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the application_tags
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/applicationinsights/applications/index.md b/docs/aws-docs/providers/aws/applicationinsights/applications/index.md
index d2335613be..7e8bca1077 100644
--- a/docs/aws-docs/providers/aws/applicationinsights/applications/index.md
+++ b/docs/aws-docs/providers/aws/applicationinsights/applications/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets an application
resource or lists
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets an application
resource or lists
## `SELECT` examples
-List all applications
in a region.
+Gets all applications
in a region.
```sql
SELECT
region,
-application_arn
+resource_group_name,
+application_arn,
+cwe_monitor_enabled,
+ops_center_enabled,
+ops_item_sns_topic_arn,
+tags,
+custom_components,
+log_pattern_sets,
+auto_configuration_enabled,
+component_monitoring_settings,
+grouping_type,
+attach_missing_permission
FROM aws.applicationinsights.applications
WHERE region = 'us-east-1';
```
-Gets all properties from an application
.
+Gets all properties from an individual application
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.applicationinsights.applications
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new application
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/applicationinsights/applications_list_only/index.md b/docs/aws-docs/providers/aws/applicationinsights/applications_list_only/index.md
new file mode 100644
index 0000000000..25b0290bb7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/applicationinsights/applications_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: applications_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - applications_list_only
+ - applicationinsights
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists applications
in a region or regions, for all properties use applications
+
+## Overview
+
+Name applications_list_only
+Type Resource
+Description Resource schema for AWS::ApplicationInsights::Application
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the resource group.
+string
The ARN of the ApplicationInsights application.
+boolean
Indicates whether Application Insights can listen to CloudWatch events for the application resources.
+boolean
When set to true, creates opsItems for any problems detected on an application.
+string
The SNS topic provided to Application Insights that is associated to the created opsItem.
+array
The tags of Application Insights application.
+array
The custom grouped components.
+array
The log pattern sets.
+boolean
If set to true, application will be configured with recommended monitoring configuration.
+array
The monitoring settings of the components.
+string
The grouping type of the application
+boolean
If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all applications
in a region.
+```sql
+SELECT
+region,
+application_arn
+FROM aws.applicationinsights.applications_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the applications_list_only
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/applicationinsights/index.md b/docs/aws-docs/providers/aws/applicationinsights/index.md
index 9d8ea97732..8aca746bf8 100644
--- a/docs/aws-docs/providers/aws/applicationinsights/index.md
+++ b/docs/aws-docs/providers/aws/applicationinsights/index.md
@@ -20,7 +20,7 @@ The applicationinsights service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The applicationinsights service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/apprunner/auto_scaling_configuration_tags/index.md b/docs/aws-docs/providers/aws/apprunner/auto_scaling_configuration_tags/index.md
new file mode 100644
index 0000000000..e410e57a96
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/auto_scaling_configuration_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: auto_scaling_configuration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - auto_scaling_configuration_tags
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for auto_scaling_configurations
in a region
+
+## Overview
+
+Name auto_scaling_configuration_tags
+Type Resource
+Description Describes an AWS App Runner automatic configuration resource that enables automatic scaling of instances used to process web requests. You can share an auto scaling configuration across multiple services.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of this auto scaling configuration.
+string
The customer-provided auto scaling configuration name. When you use it for the first time in an AWS Region, App Runner creates revision number 1 of this name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration. The auto scaling configuration name can be used in multiple revisions of a configuration.
+integer
The revision of this auto scaling configuration. It's unique among all the active configurations ("Status": "ACTIVE") that share the same AutoScalingConfigurationName.
+integer
The maximum number of concurrent requests that an instance processes. If the number of concurrent requests exceeds this limit, App Runner scales the service up to use more instances to process the requests.
+integer
The maximum number of instances that an App Runner service scales up to. At most MaxSize instances actively serve traffic for your service.
+integer
The minimum number of instances that App Runner provisions for a service. The service always has at least MinSize provisioned instances. Some of them actively serve traffic. The rest of them (provisioned and inactive instances) are a cost-effective compute capacity reserve and are ready to be quickly activated. You pay for memory usage of all the provisioned instances. You pay for CPU usage of only the active subset.
+boolean
It's set to true for the configuration with the highest Revision among all configurations that share the same AutoScalingConfigurationName. It's set to false otherwise. App Runner temporarily doubles the number of provisioned instances during deployments, to maintain the same capacity for both old and new code.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all auto_scaling_configurations
in a region.
+```sql
+SELECT
+region,
+auto_scaling_configuration_arn,
+auto_scaling_configuration_name,
+auto_scaling_configuration_revision,
+max_concurrency,
+max_size,
+min_size,
+latest,
+tag_key,
+tag_value
+FROM aws.apprunner.auto_scaling_configuration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the auto_scaling_configuration_tags
resource, see auto_scaling_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/auto_scaling_configurations/index.md b/docs/aws-docs/providers/aws/apprunner/auto_scaling_configurations/index.md
index c38825ef84..d1e69e2cfa 100644
--- a/docs/aws-docs/providers/aws/apprunner/auto_scaling_configurations/index.md
+++ b/docs/aws-docs/providers/aws/apprunner/auto_scaling_configurations/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets an auto_scaling_configuration
res
-
+
SELECT
@@ -72,15 +72,22 @@ Creates, updates, deletes or gets an auto_scaling_configuration
res
## `SELECT` examples
-List all auto_scaling_configurations
in a region.
+Gets all auto_scaling_configurations
in a region.
```sql
SELECT
region,
-auto_scaling_configuration_arn
+auto_scaling_configuration_arn,
+auto_scaling_configuration_name,
+auto_scaling_configuration_revision,
+max_concurrency,
+max_size,
+min_size,
+latest,
+tags
FROM aws.apprunner.auto_scaling_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from an auto_scaling_configuration
.
+Gets all properties from an individual auto_scaling_configuration
.
```sql
SELECT
region,
@@ -96,7 +103,6 @@ FROM aws.apprunner.auto_scaling_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new auto_scaling_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apprunner/auto_scaling_configurations_list_only/index.md b/docs/aws-docs/providers/aws/apprunner/auto_scaling_configurations_list_only/index.md
new file mode 100644
index 0000000000..b434f7980e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/auto_scaling_configurations_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: auto_scaling_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - auto_scaling_configurations_list_only
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists auto_scaling_configurations
in a region or regions, for all properties use auto_scaling_configurations
+
+## Overview
+
+Name auto_scaling_configurations_list_only
+Type Resource
+Description Describes an AWS App Runner automatic configuration resource that enables automatic scaling of instances used to process web requests. You can share an auto scaling configuration across multiple services.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of this auto scaling configuration.
+string
The customer-provided auto scaling configuration name. When you use it for the first time in an AWS Region, App Runner creates revision number 1 of this name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration. The auto scaling configuration name can be used in multiple revisions of a configuration.
+integer
The revision of this auto scaling configuration. It's unique among all the active configurations ("Status": "ACTIVE") that share the same AutoScalingConfigurationName.
+integer
The maximum number of concurrent requests that an instance processes. If the number of concurrent requests exceeds this limit, App Runner scales the service up to use more instances to process the requests.
+integer
The maximum number of instances that an App Runner service scales up to. At most MaxSize instances actively serve traffic for your service.
+integer
The minimum number of instances that App Runner provisions for a service. The service always has at least MinSize provisioned instances. Some of them actively serve traffic. The rest of them (provisioned and inactive instances) are a cost-effective compute capacity reserve and are ready to be quickly activated. You pay for memory usage of all the provisioned instances. You pay for CPU usage of only the active subset.
+boolean
It's set to true for the configuration with the highest Revision among all configurations that share the same AutoScalingConfigurationName. It's set to false otherwise. App Runner temporarily doubles the number of provisioned instances during deployments, to maintain the same capacity for both old and new code.
+array
A list of metadata items that you can associate with your auto scaling configuration resource. A tag is a key-value pair.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all auto_scaling_configurations
in a region.
+```sql
+SELECT
+region,
+auto_scaling_configuration_arn
+FROM aws.apprunner.auto_scaling_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the auto_scaling_configurations_list_only
resource, see auto_scaling_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/index.md b/docs/aws-docs/providers/aws/apprunner/index.md
index 3b3ea0a915..e56ac40adc 100644
--- a/docs/aws-docs/providers/aws/apprunner/index.md
+++ b/docs/aws-docs/providers/aws/apprunner/index.md
@@ -20,7 +20,7 @@ The apprunner service documentation.
-total resources: 5
+total resources: 15
@@ -29,12 +29,22 @@ The apprunner service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/apprunner/observability_configuration_tags/index.md b/docs/aws-docs/providers/aws/apprunner/observability_configuration_tags/index.md
new file mode 100644
index 0000000000..13bb99b04c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/observability_configuration_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: observability_configuration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - observability_configuration_tags
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for observability_configurations
in a region
+
+## Overview
+
+Name observability_configuration_tags
+Type Resource
+Description The AWS::AppRunner::ObservabilityConfiguration resource is an AWS App Runner resource type that specifies an App Runner observability configuration
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of this ObservabilityConfiguration
+string
A name for the observability configuration. When you use it for the first time in an AWS Region, App Runner creates revision number 1 of this name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration.
+integer
The revision of this observability configuration. It's unique among all the active configurations ('Status': 'ACTIVE') that share the same ObservabilityConfigurationName.
+boolean
It's set to true for the configuration with the highest Revision among all configurations that share the same Name. It's set to false otherwise.
+object
The configuration of the tracing feature within this observability configuration. If you don't specify it, App Runner doesn't enable tracing.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all observability_configurations
in a region.
+```sql
+SELECT
+region,
+observability_configuration_arn,
+observability_configuration_name,
+observability_configuration_revision,
+latest,
+trace_configuration,
+tag_key,
+tag_value
+FROM aws.apprunner.observability_configuration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the observability_configuration_tags
resource, see observability_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/observability_configurations/index.md b/docs/aws-docs/providers/aws/apprunner/observability_configurations/index.md
index 5673d7eadb..ba96ad0c61 100644
--- a/docs/aws-docs/providers/aws/apprunner/observability_configurations/index.md
+++ b/docs/aws-docs/providers/aws/apprunner/observability_configurations/index.md
@@ -58,7 +58,7 @@ Creates, updates, deletes or gets an observability_configuration
re
-
+
SELECT
@@ -70,15 +70,20 @@ Creates, updates, deletes or gets an observability_configuration
re
## `SELECT` examples
-List all observability_configurations
in a region.
+Gets all observability_configurations
in a region.
```sql
SELECT
region,
-observability_configuration_arn
+observability_configuration_arn,
+observability_configuration_name,
+observability_configuration_revision,
+latest,
+trace_configuration,
+tags
FROM aws.apprunner.observability_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from an observability_configuration
.
+Gets all properties from an individual observability_configuration
.
```sql
SELECT
region,
@@ -92,7 +97,6 @@ FROM aws.apprunner.observability_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new observability_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apprunner/observability_configurations_list_only/index.md b/docs/aws-docs/providers/aws/apprunner/observability_configurations_list_only/index.md
new file mode 100644
index 0000000000..37841e892c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/observability_configurations_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: observability_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - observability_configurations_list_only
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists observability_configurations
in a region or regions, for all properties use observability_configurations
+
+## Overview
+
+Name observability_configurations_list_only
+Type Resource
+Description The AWS::AppRunner::ObservabilityConfiguration resource is an AWS App Runner resource type that specifies an App Runner observability configuration
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of this ObservabilityConfiguration
+string
A name for the observability configuration. When you use it for the first time in an AWS Region, App Runner creates revision number 1 of this name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration.
+integer
The revision of this observability configuration. It's unique among all the active configurations ('Status': 'ACTIVE') that share the same ObservabilityConfigurationName.
+boolean
It's set to true for the configuration with the highest Revision among all configurations that share the same Name. It's set to false otherwise.
+object
The configuration of the tracing feature within this observability configuration. If you don't specify it, App Runner doesn't enable tracing.
+array
A list of metadata items that you can associate with your observability configuration resource. A tag is a key-value pair.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all observability_configurations
in a region.
+```sql
+SELECT
+region,
+observability_configuration_arn
+FROM aws.apprunner.observability_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the observability_configurations_list_only
resource, see observability_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/service_tags/index.md b/docs/aws-docs/providers/aws/apprunner/service_tags/index.md
new file mode 100644
index 0000000000..a737f3ed0f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/service_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: service_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - service_tags
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for services
in a region
+
+## Overview
+
+Name service_tags
+Type Resource
+Description The AWS::AppRunner::Service resource specifies an AppRunner Service.
+Id
+
+
+## Fields
+Name Datatype Description string
The AppRunner Service Name.
+string
The AppRunner Service Id
+string
The Amazon Resource Name (ARN) of the AppRunner Service.
+string
The Service Url of the AppRunner Service.
+string
AppRunner Service status.
+object
Source Code configuration
+object
Instance Configuration
+object
Encryption configuration (KMS key)
+object
Health check configuration
+object
Service observability configuration
+string
Autoscaling configuration ARN
+object
Network configuration
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all services
in a region.
+```sql
+SELECT
+region,
+service_name,
+service_id,
+service_arn,
+service_url,
+status,
+source_configuration,
+instance_configuration,
+encryption_configuration,
+health_check_configuration,
+observability_configuration,
+auto_scaling_configuration_arn,
+network_configuration,
+tag_key,
+tag_value
+FROM aws.apprunner.service_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the service_tags
resource, see services
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/services/index.md b/docs/aws-docs/providers/aws/apprunner/services/index.md
index 4c038930ad..a99fa26672 100644
--- a/docs/aws-docs/providers/aws/apprunner/services/index.md
+++ b/docs/aws-docs/providers/aws/apprunner/services/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a service
resource or lists
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a service
resource or lists
## `SELECT` examples
-List all services
in a region.
+Gets all services
in a region.
```sql
SELECT
region,
-service_arn
+service_name,
+service_id,
+service_arn,
+service_url,
+status,
+source_configuration,
+instance_configuration,
+tags,
+encryption_configuration,
+health_check_configuration,
+observability_configuration,
+auto_scaling_configuration_arn,
+network_configuration
FROM aws.apprunner.services
WHERE region = 'us-east-1';
```
-Gets all properties from a service
.
+Gets all properties from an individual service
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.apprunner.services
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new service
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apprunner/services_list_only/index.md b/docs/aws-docs/providers/aws/apprunner/services_list_only/index.md
new file mode 100644
index 0000000000..9a6fbab5fe
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/services_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: services_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - services_list_only
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists services
in a region or regions, for all properties use services
+
+## Overview
+
+Name services_list_only
+Type Resource
+Description The AWS::AppRunner::Service resource specifies an AppRunner Service.
+Id
+
+
+## Fields
+Name Datatype Description string
The AppRunner Service Name.
+string
The AppRunner Service Id
+string
The Amazon Resource Name (ARN) of the AppRunner Service.
+string
The Service Url of the AppRunner Service.
+string
AppRunner Service status.
+object
Source Code configuration
+object
Instance Configuration
+array
+object
Encryption configuration (KMS key)
+object
Health check configuration
+object
Service observability configuration
+string
Autoscaling configuration ARN
+object
Network configuration
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all services
in a region.
+```sql
+SELECT
+region,
+service_arn
+FROM aws.apprunner.services_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the services_list_only
resource, see services
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/vpc_connector_tags/index.md b/docs/aws-docs/providers/aws/apprunner/vpc_connector_tags/index.md
new file mode 100644
index 0000000000..4280ecff67
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/vpc_connector_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: vpc_connector_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_connector_tags
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for vpc_connectors
in a region
+
+## Overview
+
+Name vpc_connector_tags
+Type Resource
+Description The AWS::AppRunner::VpcConnector resource specifies an App Runner VpcConnector.
+Id
+
+
+## Fields
+Name Datatype Description string
A name for the VPC connector. If you don't specify a name, AWS CloudFormation generates a name for your VPC connector.
+string
The Amazon Resource Name (ARN) of this VPC connector.
+integer
The revision of this VPC connector. It's unique among all the active connectors ("Status": "ACTIVE") that share the same Name.
+array
A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC. Specify IDs of subnets of a single Amazon VPC. App Runner determines the Amazon VPC from the subnets you specify.
+array
A list of IDs of security groups that App Runner should use for access to AWS resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all vpc_connectors
in a region.
+```sql
+SELECT
+region,
+vpc_connector_name,
+vpc_connector_arn,
+vpc_connector_revision,
+subnets,
+security_groups,
+tag_key,
+tag_value
+FROM aws.apprunner.vpc_connector_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_connector_tags
resource, see vpc_connectors
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/vpc_connectors/index.md b/docs/aws-docs/providers/aws/apprunner/vpc_connectors/index.md
index 0bad4270dc..d61a2b2a77 100644
--- a/docs/aws-docs/providers/aws/apprunner/vpc_connectors/index.md
+++ b/docs/aws-docs/providers/aws/apprunner/vpc_connectors/index.md
@@ -58,7 +58,7 @@ Creates, updates, deletes or gets a vpc_connector
resource or lists
-
+
SELECT
@@ -70,15 +70,20 @@ Creates, updates, deletes or gets a vpc_connector
resource or lists
## `SELECT` examples
-List all vpc_connectors
in a region.
+Gets all vpc_connectors
in a region.
```sql
SELECT
region,
-vpc_connector_arn
+vpc_connector_name,
+vpc_connector_arn,
+vpc_connector_revision,
+subnets,
+security_groups,
+tags
FROM aws.apprunner.vpc_connectors
WHERE region = 'us-east-1';
```
-Gets all properties from a vpc_connector
.
+Gets all properties from an individual vpc_connector
.
```sql
SELECT
region,
@@ -92,7 +97,6 @@ FROM aws.apprunner.vpc_connectors
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new vpc_connector
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apprunner/vpc_connectors_list_only/index.md b/docs/aws-docs/providers/aws/apprunner/vpc_connectors_list_only/index.md
new file mode 100644
index 0000000000..b5a1303137
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/vpc_connectors_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: vpc_connectors_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_connectors_list_only
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists vpc_connectors
in a region or regions, for all properties use vpc_connectors
+
+## Overview
+
+Name vpc_connectors_list_only
+Type Resource
+Description The AWS::AppRunner::VpcConnector resource specifies an App Runner VpcConnector.
+Id
+
+
+## Fields
+Name Datatype Description string
A name for the VPC connector. If you don't specify a name, AWS CloudFormation generates a name for your VPC connector.
+string
The Amazon Resource Name (ARN) of this VPC connector.
+integer
The revision of this VPC connector. It's unique among all the active connectors ("Status": "ACTIVE") that share the same Name.
+array
A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC. Specify IDs of subnets of a single Amazon VPC. App Runner determines the Amazon VPC from the subnets you specify.
+array
A list of IDs of security groups that App Runner should use for access to AWS resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.
+array
A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all vpc_connectors
in a region.
+```sql
+SELECT
+region,
+vpc_connector_arn
+FROM aws.apprunner.vpc_connectors_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_connectors_list_only
resource, see vpc_connectors
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connection_tags/index.md b/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connection_tags/index.md
new file mode 100644
index 0000000000..50268f78fd
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connection_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: vpc_ingress_connection_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_ingress_connection_tags
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for vpc_ingress_connections
in a region
+
+## Overview
+
+Name vpc_ingress_connection_tags
+Type Resource
+Description The AWS::AppRunner::VpcIngressConnection resource is an App Runner resource that specifies an App Runner VpcIngressConnection.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the VpcIngressConnection.
+string
The customer-provided Vpc Ingress Connection name.
+string
The Amazon Resource Name (ARN) of the service.
+string
The current status of the VpcIngressConnection.
+string
The Domain name associated with the VPC Ingress Connection.
+object
The configuration of customer’s VPC and related VPC endpoint
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all vpc_ingress_connections
in a region.
+```sql
+SELECT
+region,
+vpc_ingress_connection_arn,
+vpc_ingress_connection_name,
+service_arn,
+status,
+domain_name,
+ingress_vpc_configuration,
+tag_key,
+tag_value
+FROM aws.apprunner.vpc_ingress_connection_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_ingress_connection_tags
resource, see vpc_ingress_connections
+
+
diff --git a/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connections/index.md b/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connections/index.md
index bc6d4881fb..91f6bd40d6 100644
--- a/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connections/index.md
+++ b/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connections/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a vpc_ingress_connection
resource
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a vpc_ingress_connection
resource
## `SELECT` examples
-List all vpc_ingress_connections
in a region.
+Gets all vpc_ingress_connections
in a region.
```sql
SELECT
region,
-vpc_ingress_connection_arn
+vpc_ingress_connection_arn,
+vpc_ingress_connection_name,
+service_arn,
+status,
+domain_name,
+ingress_vpc_configuration,
+tags
FROM aws.apprunner.vpc_ingress_connections
WHERE region = 'us-east-1';
```
-Gets all properties from a vpc_ingress_connection
.
+Gets all properties from an individual vpc_ingress_connection
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.apprunner.vpc_ingress_connections
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new vpc_ingress_connection
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connections_list_only/index.md b/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connections_list_only/index.md
new file mode 100644
index 0000000000..9e81f9a687
--- /dev/null
+++ b/docs/aws-docs/providers/aws/apprunner/vpc_ingress_connections_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: vpc_ingress_connections_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - vpc_ingress_connections_list_only
+ - apprunner
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists vpc_ingress_connections
in a region or regions, for all properties use vpc_ingress_connections
+
+## Overview
+
+Name vpc_ingress_connections_list_only
+Type Resource
+Description The AWS::AppRunner::VpcIngressConnection resource is an App Runner resource that specifies an App Runner VpcIngressConnection.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the VpcIngressConnection.
+string
The customer-provided Vpc Ingress Connection name.
+string
The Amazon Resource Name (ARN) of the service.
+string
The current status of the VpcIngressConnection.
+string
The Domain name associated with the VPC Ingress Connection.
+object
The configuration of customer’s VPC and related VPC endpoint
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all vpc_ingress_connections
in a region.
+```sql
+SELECT
+region,
+vpc_ingress_connection_arn
+FROM aws.apprunner.vpc_ingress_connections_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the vpc_ingress_connections_list_only
resource, see vpc_ingress_connections
+
+
diff --git a/docs/aws-docs/providers/aws/appstream/app_block_builder_tags/index.md b/docs/aws-docs/providers/aws/appstream/app_block_builder_tags/index.md
new file mode 100644
index 0000000000..2d6c675065
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appstream/app_block_builder_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: app_block_builder_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - app_block_builder_tags
+ - appstream
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for app_block_builders
in a region
+
+## Overview
+
+Name app_block_builder_tags
+Type Resource
+Description Resource Type definition for AWS::AppStream::AppBlockBuilder.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+array
+object
+boolean
+string
+string
+string
+array
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all app_block_builders
in a region.
+```sql
+SELECT
+region,
+name,
+arn,
+description,
+display_name,
+platform,
+access_endpoints,
+vpc_config,
+enable_default_internet_access,
+iam_role_arn,
+created_time,
+instance_type,
+app_block_arns,
+tag_key,
+tag_value
+FROM aws.appstream.app_block_builder_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the app_block_builder_tags
resource, see app_block_builders
+
+
diff --git a/docs/aws-docs/providers/aws/appstream/app_block_builders/index.md b/docs/aws-docs/providers/aws/appstream/app_block_builders/index.md
index e79e042b00..d28e12a398 100644
--- a/docs/aws-docs/providers/aws/appstream/app_block_builders/index.md
+++ b/docs/aws-docs/providers/aws/appstream/app_block_builders/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets an app_block_builder
resource or
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets an app_block_builder
resource or
## `SELECT` examples
-List all app_block_builders
in a region.
+Gets all app_block_builders
in a region.
```sql
SELECT
region,
-name
+name,
+arn,
+description,
+display_name,
+platform,
+access_endpoints,
+tags,
+vpc_config,
+enable_default_internet_access,
+iam_role_arn,
+created_time,
+instance_type,
+app_block_arns
FROM aws.appstream.app_block_builders
WHERE region = 'us-east-1';
```
-Gets all properties from an app_block_builder
.
+Gets all properties from an individual app_block_builder
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.appstream.app_block_builders
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new app_block_builder
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/app_block_builders_list_only/index.md b/docs/aws-docs/providers/aws/appstream/app_block_builders_list_only/index.md
new file mode 100644
index 0000000000..03851146e6
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appstream/app_block_builders_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: app_block_builders_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - app_block_builders_list_only
+ - appstream
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists app_block_builders
in a region or regions, for all properties use app_block_builders
+
+## Overview
+
+Name app_block_builders_list_only
+Type Resource
+Description Resource Type definition for AWS::AppStream::AppBlockBuilder.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+array
+array
+object
+boolean
+string
+string
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all app_block_builders
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.appstream.app_block_builders_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the app_block_builders_list_only
resource, see app_block_builders
+
+
diff --git a/docs/aws-docs/providers/aws/appstream/app_blocks/index.md b/docs/aws-docs/providers/aws/appstream/app_blocks/index.md
index 8acdca5152..e8a3301ac5 100644
--- a/docs/aws-docs/providers/aws/appstream/app_blocks/index.md
+++ b/docs/aws-docs/providers/aws/appstream/app_blocks/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets an app_block
resource or lists app_block
.
+Gets all properties from an individual app_block
.
```sql
SELECT
region,
@@ -88,7 +88,6 @@ FROM aws.appstream.app_blocks
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new app_block
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/application_entitlement_associations/index.md b/docs/aws-docs/providers/aws/appstream/application_entitlement_associations/index.md
index 9cc97175c2..df55ee0a40 100644
--- a/docs/aws-docs/providers/aws/appstream/application_entitlement_associations/index.md
+++ b/docs/aws-docs/providers/aws/appstream/application_entitlement_associations/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets an application_entitlement_association
## `SELECT` examples
-Gets all properties from an application_entitlement_association
.
+Gets all properties from an individual application_entitlement_association
.
```sql
SELECT
region,
@@ -74,7 +74,6 @@ FROM aws.appstream.application_entitlement_associations
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new application_entitlement_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/application_fleet_associations/index.md b/docs/aws-docs/providers/aws/appstream/application_fleet_associations/index.md
index 61819b7e85..797d839636 100644
--- a/docs/aws-docs/providers/aws/appstream/application_fleet_associations/index.md
+++ b/docs/aws-docs/providers/aws/appstream/application_fleet_associations/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets an application_fleet_association
## `SELECT` examples
-Gets all properties from an application_fleet_association
.
+Gets all properties from an individual application_fleet_association
.
```sql
SELECT
region,
@@ -72,7 +72,6 @@ FROM aws.appstream.application_fleet_associations
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new application_fleet_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/applications/index.md b/docs/aws-docs/providers/aws/appstream/applications/index.md
index cc36f2d5f8..30f8e1de9d 100644
--- a/docs/aws-docs/providers/aws/appstream/applications/index.md
+++ b/docs/aws-docs/providers/aws/appstream/applications/index.md
@@ -79,7 +79,7 @@ Creates, updates, deletes or gets an application
resource or lists
## `SELECT` examples
-Gets all properties from an application
.
+Gets all properties from an individual application
.
```sql
SELECT
region,
@@ -101,7 +101,6 @@ FROM aws.appstream.applications
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new application
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/directory_configs/index.md b/docs/aws-docs/providers/aws/appstream/directory_configs/index.md
index 340683793e..1c911d4d99 100644
--- a/docs/aws-docs/providers/aws/appstream/directory_configs/index.md
+++ b/docs/aws-docs/providers/aws/appstream/directory_configs/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a directory_config
resource or li
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets a directory_config
resource or li
## `SELECT` examples
-List all directory_configs
in a region.
+Gets all directory_configs
in a region.
```sql
SELECT
region,
-directory_name
+organizational_unit_distinguished_names,
+service_account_credentials,
+directory_name,
+certificate_based_auth_properties
FROM aws.appstream.directory_configs
WHERE region = 'us-east-1';
```
-Gets all properties from a directory_config
.
+Gets all properties from an individual directory_config
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.appstream.directory_configs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new directory_config
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/directory_configs_list_only/index.md b/docs/aws-docs/providers/aws/appstream/directory_configs_list_only/index.md
new file mode 100644
index 0000000000..e8cdaabb27
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appstream/directory_configs_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: directory_configs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - directory_configs_list_only
+ - appstream
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists directory_configs
in a region or regions, for all properties use directory_configs
+
+## Overview
+
+Name directory_configs_list_only
+Type Resource
+Description Resource Type definition for AWS::AppStream::DirectoryConfig
+Id
+
+
+## Fields
+Name Datatype Description array
+object
+string
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all directory_configs
in a region.
+```sql
+SELECT
+region,
+directory_name
+FROM aws.appstream.directory_configs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the directory_configs_list_only
resource, see directory_configs
+
+
diff --git a/docs/aws-docs/providers/aws/appstream/entitlements/index.md b/docs/aws-docs/providers/aws/appstream/entitlements/index.md
index 435966d59e..68904cba09 100644
--- a/docs/aws-docs/providers/aws/appstream/entitlements/index.md
+++ b/docs/aws-docs/providers/aws/appstream/entitlements/index.md
@@ -72,7 +72,7 @@ Creates, updates, deletes or gets an entitlement
resource or lists
## `SELECT` examples
-Gets all properties from an entitlement
.
+Gets all properties from an individual entitlement
.
```sql
SELECT
region,
@@ -87,7 +87,6 @@ FROM aws.appstream.entitlements
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new entitlement
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/image_builder_tags/index.md b/docs/aws-docs/providers/aws/appstream/image_builder_tags/index.md
new file mode 100644
index 0000000000..826c7b4d19
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appstream/image_builder_tags/index.md
@@ -0,0 +1,95 @@
+---
+title: image_builder_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - image_builder_tags
+ - appstream
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for image_builders
in a region
+
+## Overview
+
+Name image_builder_tags
+Type Resource
+Description Resource Type definition for AWS::AppStream::ImageBuilder
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+boolean
+object
+string
+string
+string
+string
+string
+string
+string
+string
+array
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all image_builders
in a region.
+```sql
+SELECT
+region,
+description,
+vpc_config,
+enable_default_internet_access,
+domain_join_info,
+appstream_agent_version,
+name,
+image_name,
+display_name,
+iam_role_arn,
+instance_type,
+streaming_url,
+image_arn,
+access_endpoints,
+tag_key,
+tag_value
+FROM aws.appstream.image_builder_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the image_builder_tags
resource, see image_builders
+
+
diff --git a/docs/aws-docs/providers/aws/appstream/image_builders/index.md b/docs/aws-docs/providers/aws/appstream/image_builders/index.md
index 4173ed6942..264f7327c1 100644
--- a/docs/aws-docs/providers/aws/appstream/image_builders/index.md
+++ b/docs/aws-docs/providers/aws/appstream/image_builders/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets an image_builder
resource or list
-
+
SELECT
@@ -78,15 +78,28 @@ Creates, updates, deletes or gets an image_builder
resource or list
## `SELECT` examples
-List all image_builders
in a region.
+Gets all image_builders
in a region.
```sql
SELECT
region,
-name
+description,
+vpc_config,
+enable_default_internet_access,
+domain_join_info,
+appstream_agent_version,
+name,
+image_name,
+display_name,
+iam_role_arn,
+instance_type,
+tags,
+streaming_url,
+image_arn,
+access_endpoints
FROM aws.appstream.image_builders
WHERE region = 'us-east-1';
```
-Gets all properties from an image_builder
.
+Gets all properties from an individual image_builder
.
```sql
SELECT
region,
@@ -108,7 +121,6 @@ FROM aws.appstream.image_builders
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new image_builder
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appstream/image_builders_list_only/index.md b/docs/aws-docs/providers/aws/appstream/image_builders_list_only/index.md
new file mode 100644
index 0000000000..578f012cca
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appstream/image_builders_list_only/index.md
@@ -0,0 +1,80 @@
+---
+title: image_builders_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - image_builders_list_only
+ - appstream
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists image_builders
in a region or regions, for all properties use image_builders
+
+## Overview
+
+Name image_builders_list_only
+Type Resource
+Description Resource Type definition for AWS::AppStream::ImageBuilder
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+boolean
+object
+string
+string
+string
+string
+string
+string
+array
+string
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all image_builders
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.appstream.image_builders_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the image_builders_list_only
resource, see image_builders
+
+
diff --git a/docs/aws-docs/providers/aws/appstream/index.md b/docs/aws-docs/providers/aws/appstream/index.md
index d667f84983..e38b9713ae 100644
--- a/docs/aws-docs/providers/aws/appstream/index.md
+++ b/docs/aws-docs/providers/aws/appstream/index.md
@@ -20,7 +20,7 @@ The appstream service documentation.
-total resources: 8
+total resources: 13
@@ -29,15 +29,20 @@ The appstream service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/appsync/domain_name_api_associations/index.md b/docs/aws-docs/providers/aws/appsync/domain_name_api_associations/index.md
index a5116fa95a..630281d881 100644
--- a/docs/aws-docs/providers/aws/appsync/domain_name_api_associations/index.md
+++ b/docs/aws-docs/providers/aws/appsync/domain_name_api_associations/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a domain_name_api_association
res
## `SELECT` examples
-Gets all properties from a domain_name_api_association
.
+Gets all properties from an individual domain_name_api_association
.
```sql
SELECT
region,
@@ -79,7 +79,6 @@ FROM aws.appsync.domain_name_api_associations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain_name_api_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appsync/domain_names/index.md b/docs/aws-docs/providers/aws/appsync/domain_names/index.md
index 2cdfc49219..3f8a8326ed 100644
--- a/docs/aws-docs/providers/aws/appsync/domain_names/index.md
+++ b/docs/aws-docs/providers/aws/appsync/domain_names/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a domain_name
resource or lists <
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a domain_name
resource or lists <
## `SELECT` examples
-List all domain_names
in a region.
+Gets all domain_names
in a region.
```sql
SELECT
region,
-domain_name
+domain_name,
+description,
+certificate_arn,
+app_sync_domain_name,
+hosted_zone_id
FROM aws.appsync.domain_names
WHERE region = 'us-east-1';
```
-Gets all properties from a domain_name
.
+Gets all properties from an individual domain_name
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.appsync.domain_names
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain_name
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appsync/domain_names_list_only/index.md b/docs/aws-docs/providers/aws/appsync/domain_names_list_only/index.md
new file mode 100644
index 0000000000..1d59a04442
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appsync/domain_names_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: domain_names_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_names_list_only
+ - appsync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists domain_names
in a region or regions, for all properties use domain_names
+
+## Overview
+
+Name domain_names_list_only
+Type Resource
+Description Resource Type definition for AWS::AppSync::DomainName
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all domain_names
in a region.
+```sql
+SELECT
+region,
+domain_name
+FROM aws.appsync.domain_names_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_names_list_only
resource, see domain_names
+
+
diff --git a/docs/aws-docs/providers/aws/appsync/function_configurations/index.md b/docs/aws-docs/providers/aws/appsync/function_configurations/index.md
index ddd9ac9987..2b165167b8 100644
--- a/docs/aws-docs/providers/aws/appsync/function_configurations/index.md
+++ b/docs/aws-docs/providers/aws/appsync/function_configurations/index.md
@@ -73,7 +73,7 @@ Creates, updates, deletes or gets a function_configuration
resource
-
+
SELECT
@@ -85,15 +85,30 @@ Creates, updates, deletes or gets a function_configuration
resource
## `SELECT` examples
-List all function_configurations
in a region.
+Gets all function_configurations
in a region.
```sql
SELECT
region,
-function_arn
+function_id,
+function_arn,
+api_id,
+code,
+code_s3_location,
+data_source_name,
+description,
+function_version,
+max_batch_size,
+name,
+request_mapping_template,
+request_mapping_template_s3_location,
+response_mapping_template,
+response_mapping_template_s3_location,
+runtime,
+sync_config
FROM aws.appsync.function_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from a function_configuration
.
+Gets all properties from an individual function_configuration
.
```sql
SELECT
region,
@@ -117,7 +132,6 @@ FROM aws.appsync.function_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new function_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appsync/function_configurations_list_only/index.md b/docs/aws-docs/providers/aws/appsync/function_configurations_list_only/index.md
new file mode 100644
index 0000000000..e17836b4f5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appsync/function_configurations_list_only/index.md
@@ -0,0 +1,82 @@
+---
+title: function_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - function_configurations_list_only
+ - appsync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists function_configurations
in a region or regions, for all properties use function_configurations
+
+## Overview
+
+Name function_configurations_list_only
+Type Resource
+Description An example resource schema demonstrating some basic constructs and validation rules.
+Id
+
+
+## Fields
+Name Datatype Description string
The unique identifier for the function generated by the service
+string
The ARN for the function generated by the service
+string
The AWS AppSync GraphQL API that you want to attach using this function.
+string
The resolver code that contains the request and response functions. When code is used, the runtime is required. The runtime value must be APPSYNC_JS.
+string
The Amazon S3 endpoint (where the code is located??).
+string
The name of data source this function will attach.
+string
The function description.
+string
The version of the request mapping template. Currently, only the 2018-05-29 version of the template is supported.
+integer
The maximum number of resolver request inputs that will be sent to a single AWS Lambda function in a BatchInvoke operation.
+string
The name of the function.
+string
The Function request mapping template. Functions support only the 2018-05-29 version of the request mapping template.
+string
Describes a Sync configuration for a resolver. Contains information on which Conflict Detection, as well as Resolution strategy, should be performed when the resolver is invoked.
+string
The Function response mapping template.
+string
The location of a response mapping template in an Amazon S3 bucket. Use this if you want to provision with a template file in Amazon S3 rather than embedding it in your CloudFormation template.
+object
Describes a runtime used by an AWS AppSync pipeline resolver or AWS AppSync function. Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified.
+object
Describes a Sync configuration for a resolver. Specifies which Conflict Detection strategy and Resolution strategy to use when the resolver is invoked.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all function_configurations
in a region.
+```sql
+SELECT
+region,
+function_arn
+FROM aws.appsync.function_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the function_configurations_list_only
resource, see function_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/appsync/index.md b/docs/aws-docs/providers/aws/appsync/index.md
index 66bb2111d4..630af6520f 100644
--- a/docs/aws-docs/providers/aws/appsync/index.md
+++ b/docs/aws-docs/providers/aws/appsync/index.md
@@ -20,7 +20,7 @@ The appsync service documentation.
-total resources: 5
+total resources: 9
@@ -31,10 +31,14 @@ The appsync service documentation.
resolver
resource or lists SELECT
resolver
resource or lists resolvers
in a region.
+Gets all resolvers
in a region.
```sql
SELECT
region,
-resolver_arn
+api_id,
+caching_config,
+code,
+code_s3_location,
+data_source_name,
+field_name,
+kind,
+max_batch_size,
+pipeline_config,
+request_mapping_template,
+request_mapping_template_s3_location,
+resolver_arn,
+response_mapping_template,
+response_mapping_template_s3_location,
+runtime,
+sync_config,
+type_name,
+metrics_config
FROM aws.appsync.resolvers
WHERE region = 'us-east-1';
```
-Gets all properties from a resolver
.
+Gets all properties from an individual resolver
.
```sql
SELECT
region,
@@ -121,7 +138,6 @@ FROM aws.appsync.resolvers
WHERE region = 'us-east-1' AND data__Identifier = 'resolver
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appsync/resolvers_list_only/index.md b/docs/aws-docs/providers/aws/appsync/resolvers_list_only/index.md
new file mode 100644
index 0000000000..adee50d723
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appsync/resolvers_list_only/index.md
@@ -0,0 +1,84 @@
+---
+title: resolvers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - resolvers_list_only
+ - appsync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists resolvers
in a region or regions, for all properties use resolvers
+
+## Overview
+Name | resolvers_list_only |
Type | Resource |
Description | The AWS::AppSync::Resolver resource defines the logical GraphQL resolver that you attach to fields in a schema. Request and response templates for resolvers are written in Apache Velocity Template Language (VTL) format. For more information about resolvers, see [Resolver Mapping Template Reference](https://docs.aws.amazon.com/appsync/latest/devguide/resolver-mapping-template-reference.html).When you submit an update, CFNLong updates resources based on differences between what you submit and the stack's current template. To cause this resource to be updated you must change a property value for this resource in the CFNshort template. Changing the S3 file content without changing a property value will not result in an update operation. See [Update Behaviors of Stack Resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html) in the *User Guide*. |
Id |
Name | Datatype | Description |
---|---|---|
string | The APSYlong GraphQL API to which you want to attach this resolver. | |
object | The caching configuration for the resolver. | |
string | The resolver code that contains the request and response functions. When code is used, the runtime is required. The runtime value must be APPSYNC_JS . | |
string | The Amazon S3 endpoint. | |
string | The resolver data source name. | |
string | The GraphQL field on a type that invokes the resolver. | |
string | The resolver type. + *UNIT*: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source. + *PIPELINE*: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of Function objects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources. | |
integer | The maximum number of resolver request inputs that will be sent to a single LAMlong function in a BatchInvoke operation. | |
object | Functions linked with the pipeline resolver. | |
string | The request mapping template. Request mapping templates are optional when using a Lambda data source. For all other data sources, a request mapping template is required. | |
string | The location of a request mapping template in an S3 bucket. Use this if you want to provision with a template file in S3 rather than embedding it in your CFNshort template. | |
string | ||
string | The response mapping template. | |
string | The location of a response mapping template in an S3 bucket. Use this if you want to provision with a template file in S3 rather than embedding it in your CFNshort template. | |
object | Describes a runtime used by an APSYlong resolver or APSYlong function. Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified. | |
object | The SyncConfig for a resolver attached to a versioned data source. | |
string | The GraphQL type that invokes this resolver. | |
string | Enables or disables enhanced resolver metrics for specified resolvers. Note that MetricsConfig won't be used unless the resolverLevelMetricsBehavior value is set to PER_RESOLVER_METRICS . If the resolverLevelMetricsBehavior is set to FULL_REQUEST_RESOLVER_METRICS instead, MetricsConfig will be ignored. However, you can still set its value. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
resolvers
in a region.
+```sql
+SELECT
+region,
+resolver_arn
+FROM aws.appsync.resolvers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the resolvers_list_only
resource, see resolvers
+
+
diff --git a/docs/aws-docs/providers/aws/appsync/source_api_associations/index.md b/docs/aws-docs/providers/aws/appsync/source_api_associations/index.md
index fbc44a9b98..3cb248c68b 100644
--- a/docs/aws-docs/providers/aws/appsync/source_api_associations/index.md
+++ b/docs/aws-docs/providers/aws/appsync/source_api_associations/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a source_api_association
resource
SELECT
source_api_association
resource
## `SELECT` examples
-List all source_api_associations
in a region.
+Gets all source_api_associations
in a region.
```sql
SELECT
region,
-association_arn
+source_api_identifier,
+merged_api_identifier,
+description,
+source_api_association_config,
+association_id,
+association_arn,
+source_api_id,
+source_api_arn,
+merged_api_id,
+merged_api_arn,
+source_api_association_status,
+source_api_association_status_detail,
+last_successful_merge_date
FROM aws.appsync.source_api_associations
WHERE region = 'us-east-1';
```
-Gets all properties from a source_api_association
.
+Gets all properties from an individual source_api_association
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.appsync.source_api_associations
WHERE region = 'us-east-1' AND data__Identifier = 'source_api_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/appsync/source_api_associations_list_only/index.md b/docs/aws-docs/providers/aws/appsync/source_api_associations_list_only/index.md
new file mode 100644
index 0000000000..7285d4770f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/appsync/source_api_associations_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: source_api_associations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - source_api_associations_list_only
+ - appsync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists source_api_associations
in a region or regions, for all properties use source_api_associations
+
+## Overview
+Name | source_api_associations_list_only |
Type | Resource |
Description | Resource Type definition for AWS::AppSync::SourceApiAssociation |
Id |
Name | Datatype | Description |
---|---|---|
string | Identifier of the Source GraphQLApi to associate. It could be either GraphQLApi ApiId or ARN | |
string | Identifier of the Merged GraphQLApi to associate. It could be either GraphQLApi ApiId or ARN | |
string | Description of the SourceApiAssociation. | |
undefined | Customized configuration for SourceApiAssociation. | |
string | Id of the SourceApiAssociation. | |
string | ARN of the SourceApiAssociation. | |
string | GraphQLApiId of the source API in the association. | |
string | ARN of the source API in the association. | |
string | GraphQLApiId of the Merged API in the association. | |
string | ARN of the Merged API in the association. | |
string | Current status of SourceApiAssociation. | |
string | Current SourceApiAssociation status details. | |
string | Date of last schema successful merge. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
source_api_associations
in a region.
+```sql
+SELECT
+region,
+association_arn
+FROM aws.appsync.source_api_associations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the source_api_associations_list_only
resource, see source_api_associations
+
+
diff --git a/docs/aws-docs/providers/aws/aps/index.md b/docs/aws-docs/providers/aws/aps/index.md
index e99dbc6480..3b8a3944fb 100644
--- a/docs/aws-docs/providers/aws/aps/index.md
+++ b/docs/aws-docs/providers/aws/aps/index.md
@@ -20,7 +20,7 @@ The aps service documentation.
rule_groups_namespaces
in a region
+
+## Overview
+Name | rule_groups_namespace_tags |
Type | Resource |
Description | RuleGroupsNamespace schema for cloudformation. |
Id |
Name | Datatype | Description |
---|---|---|
string | Required to identify a specific APS Workspace associated with this RuleGroupsNamespace. | |
string | The RuleGroupsNamespace name. | |
string | The RuleGroupsNamespace data. | |
string | The RuleGroupsNamespace ARN. | |
string | Tag key. | |
string | Tag value. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
rule_groups_namespaces
in a region.
+```sql
+SELECT
+region,
+workspace,
+name,
+data,
+arn,
+tag_key,
+tag_value
+FROM aws.aps.rule_groups_namespace_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the rule_groups_namespace_tags
resource, see rule_groups_namespaces
+
+
diff --git a/docs/aws-docs/providers/aws/aps/rule_groups_namespaces/index.md b/docs/aws-docs/providers/aws/aps/rule_groups_namespaces/index.md
index 022e562dec..61f21147cb 100644
--- a/docs/aws-docs/providers/aws/aps/rule_groups_namespaces/index.md
+++ b/docs/aws-docs/providers/aws/aps/rule_groups_namespaces/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a rule_groups_namespace
resource
SELECT
rule_groups_namespace
resource
## `SELECT` examples
-List all rule_groups_namespaces
in a region.
+Gets all rule_groups_namespaces
in a region.
```sql
SELECT
region,
-arn
+workspace,
+name,
+data,
+arn,
+tags
FROM aws.aps.rule_groups_namespaces
WHERE region = 'us-east-1';
```
-Gets all properties from a rule_groups_namespace
.
+Gets all properties from an individual rule_groups_namespace
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.aps.rule_groups_namespaces
WHERE region = 'us-east-1' AND data__Identifier = 'rule_groups_namespace
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/aps/rule_groups_namespaces_list_only/index.md b/docs/aws-docs/providers/aws/aps/rule_groups_namespaces_list_only/index.md
new file mode 100644
index 0000000000..9bdf0748f8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/aps/rule_groups_namespaces_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: rule_groups_namespaces_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - rule_groups_namespaces_list_only
+ - aps
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists rule_groups_namespaces
in a region or regions, for all properties use rule_groups_namespaces
+
+## Overview
+Name | rule_groups_namespaces_list_only |
Type | Resource |
Description | RuleGroupsNamespace schema for cloudformation. |
Id |
Name | Datatype | Description |
---|---|---|
string | Required to identify a specific APS Workspace associated with this RuleGroupsNamespace. | |
string | The RuleGroupsNamespace name. | |
string | The RuleGroupsNamespace data. | |
string | The RuleGroupsNamespace ARN. | |
array | An array of key-value pairs to apply to this resource. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
rule_groups_namespaces
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.aps.rule_groups_namespaces_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the rule_groups_namespaces_list_only
resource, see rule_groups_namespaces
+
+
diff --git a/docs/aws-docs/providers/aws/aps/scraper_tags/index.md b/docs/aws-docs/providers/aws/aps/scraper_tags/index.md
new file mode 100644
index 0000000000..5234b9d858
--- /dev/null
+++ b/docs/aws-docs/providers/aws/aps/scraper_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: scraper_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scraper_tags
+ - aps
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for scrapers
in a region
+
+## Overview
+Name | scraper_tags |
Type | Resource |
Description | Resource Type definition for AWS::APS::Scraper |
Id |
Name | Datatype | Description |
---|---|---|
string | Required to identify a specific scraper. | |
string | Scraper alias. | |
string | Scraper ARN. | |
string | IAM role ARN for the scraper. | |
object | Scraper configuration | |
object | Scraper metrics source | |
object | Scraper metrics destination | |
string | Tag key. | |
string | Tag value. | |
string | AWS region. |
Name | +Accessible by | +Required Params | +
---|---|---|
SELECT |
+
scrapers
in a region.
+```sql
+SELECT
+region,
+scraper_id,
+alias,
+arn,
+role_arn,
+scrape_configuration,
+source,
+destination,
+tag_key,
+tag_value
+FROM aws.aps.scraper_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scraper_tags
resource, see scrapers
+
+
diff --git a/docs/aws-docs/providers/aws/aps/scrapers/index.md b/docs/aws-docs/providers/aws/aps/scrapers/index.md
index 63c2c59cde..3e465ec630 100644
--- a/docs/aws-docs/providers/aws/aps/scrapers/index.md
+++ b/docs/aws-docs/providers/aws/aps/scrapers/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a scraper
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a scraper
resource or lists
## `SELECT` examples
-List all scrapers
in a region.
+Gets all scrapers
in a region.
```sql
SELECT
region,
-arn
+scraper_id,
+alias,
+arn,
+role_arn,
+scrape_configuration,
+source,
+destination,
+tags
FROM aws.aps.scrapers
WHERE region = 'us-east-1';
```
-Gets all properties from a scraper
.
+Gets all properties from an individual scraper
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.aps.scrapers
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new scraper
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/aps/scrapers_list_only/index.md b/docs/aws-docs/providers/aws/aps/scrapers_list_only/index.md
new file mode 100644
index 0000000000..da919c433f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/aps/scrapers_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: scrapers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scrapers_list_only
+ - aps
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists scrapers
in a region or regions, for all properties use scrapers
+
+## Overview
+
+Name scrapers_list_only
+Type Resource
+Description Resource Type definition for AWS::APS::Scraper
+Id
+
+
+## Fields
+Name Datatype Description string
Required to identify a specific scraper.
+string
Scraper alias.
+string
Scraper ARN.
+string
IAM role ARN for the scraper.
+object
Scraper configuration
+object
Scraper metrics source
+object
Scraper metrics destination
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all scrapers
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.aps.scrapers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scrapers_list_only
resource, see scrapers
+
+
diff --git a/docs/aws-docs/providers/aws/aps/workspace_tags/index.md b/docs/aws-docs/providers/aws/aps/workspace_tags/index.md
new file mode 100644
index 0000000000..de8a071c0d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/aps/workspace_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: workspace_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - workspace_tags
+ - aps
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for workspaces
in a region
+
+## Overview
+
+Name workspace_tags
+Type Resource
+Description Resource Type definition for AWS::APS::Workspace
+Id
+
+
+## Fields
+Name Datatype Description string
Required to identify a specific APS Workspace.
+string
AMP Workspace alias.
+string
Workspace arn.
+string
The AMP Workspace alert manager definition data
+string
AMP Workspace prometheus endpoint
+object
Logging configuration
+string
KMS Key ARN used to encrypt and decrypt AMP workspace data.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all workspaces
in a region.
+```sql
+SELECT
+region,
+workspace_id,
+alias,
+arn,
+alert_manager_definition,
+prometheus_endpoint,
+logging_configuration,
+kms_key_arn,
+tag_key,
+tag_value
+FROM aws.aps.workspace_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the workspace_tags
resource, see workspaces
+
+
diff --git a/docs/aws-docs/providers/aws/aps/workspaces/index.md b/docs/aws-docs/providers/aws/aps/workspaces/index.md
index c495376dc0..5b9df3a4b7 100644
--- a/docs/aws-docs/providers/aws/aps/workspaces/index.md
+++ b/docs/aws-docs/providers/aws/aps/workspaces/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a workspace
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a workspace
resource or lists
## `SELECT` examples
-List all workspaces
in a region.
+Gets all workspaces
in a region.
```sql
SELECT
region,
-arn
+workspace_id,
+alias,
+arn,
+alert_manager_definition,
+prometheus_endpoint,
+logging_configuration,
+kms_key_arn,
+tags
FROM aws.aps.workspaces
WHERE region = 'us-east-1';
```
-Gets all properties from a workspace
.
+Gets all properties from an individual workspace
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.aps.workspaces
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new workspace
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/aps/workspaces_list_only/index.md b/docs/aws-docs/providers/aws/aps/workspaces_list_only/index.md
new file mode 100644
index 0000000000..48088bd123
--- /dev/null
+++ b/docs/aws-docs/providers/aws/aps/workspaces_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: workspaces_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - workspaces_list_only
+ - aps
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists workspaces
in a region or regions, for all properties use workspaces
+
+## Overview
+
+Name workspaces_list_only
+Type Resource
+Description Resource Type definition for AWS::APS::Workspace
+Id
+
+
+## Fields
+Name Datatype Description string
Required to identify a specific APS Workspace.
+string
AMP Workspace alias.
+string
Workspace arn.
+string
The AMP Workspace alert manager definition data
+string
AMP Workspace prometheus endpoint
+object
Logging configuration
+string
KMS Key ARN used to encrypt and decrypt AMP workspace data.
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all workspaces
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.aps.workspaces_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the workspaces_list_only
resource, see workspaces
+
+
diff --git a/docs/aws-docs/providers/aws/arczonalshift/index.md b/docs/aws-docs/providers/aws/arczonalshift/index.md
index 52f04c5ed6..7db479b356 100644
--- a/docs/aws-docs/providers/aws/arczonalshift/index.md
+++ b/docs/aws-docs/providers/aws/arczonalshift/index.md
@@ -20,7 +20,7 @@ The arczonalshift service documentation.
-total resources: 1
+total resources: 2
@@ -32,6 +32,6 @@ The arczonalshift service documentation.
zonal_autoshift_configurations
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/arczonalshift/zonal_autoshift_configurations/index.md b/docs/aws-docs/providers/aws/arczonalshift/zonal_autoshift_configurations/index.md
index c9c649397f..426d947d79 100644
--- a/docs/aws-docs/providers/aws/arczonalshift/zonal_autoshift_configurations/index.md
+++ b/docs/aws-docs/providers/aws/arczonalshift/zonal_autoshift_configurations/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a zonal_autoshift_configuration
r
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a zonal_autoshift_configuration
r
## `SELECT` examples
-List all zonal_autoshift_configurations
in a region.
+Gets all zonal_autoshift_configurations
in a region.
```sql
SELECT
region,
+zonal_autoshift_status,
+practice_run_configuration,
resource_identifier
FROM aws.arczonalshift.zonal_autoshift_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from a zonal_autoshift_configuration
.
+Gets all properties from an individual zonal_autoshift_configuration
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.arczonalshift.zonal_autoshift_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new zonal_autoshift_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/arczonalshift/zonal_autoshift_configurations_list_only/index.md b/docs/aws-docs/providers/aws/arczonalshift/zonal_autoshift_configurations_list_only/index.md
new file mode 100644
index 0000000000..730ed6e20a
--- /dev/null
+++ b/docs/aws-docs/providers/aws/arczonalshift/zonal_autoshift_configurations_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: zonal_autoshift_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - zonal_autoshift_configurations_list_only
+ - arczonalshift
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists zonal_autoshift_configurations
in a region or regions, for all properties use zonal_autoshift_configurations
+
+## Overview
+
+Name zonal_autoshift_configurations_list_only
+Type Resource
+Description Definition of AWS::ARCZonalShift::ZonalAutoshiftConfiguration Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all zonal_autoshift_configurations
in a region.
+```sql
+SELECT
+region,
+resource_identifier
+FROM aws.arczonalshift.zonal_autoshift_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the zonal_autoshift_configurations_list_only
resource, see zonal_autoshift_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/athena/capacity_reservation_tags/index.md b/docs/aws-docs/providers/aws/athena/capacity_reservation_tags/index.md
new file mode 100644
index 0000000000..6a5f52a7ca
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/capacity_reservation_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: capacity_reservation_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - capacity_reservation_tags
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for capacity_reservations
in a region
+
+## Overview
+
+Name capacity_reservation_tags
+Type Resource
+Description Resource schema for AWS::Athena::CapacityReservation
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the specified capacity reservation
+string
The reservation name.
+string
The status of the reservation.
+integer
The number of DPUs to request to be allocated to the reservation.
+integer
The number of DPUs Athena has provisioned and allocated for the reservation
+object
Assignment configuration to assign workgroups to a reservation
+string
The date and time the reservation was created.
+string
The timestamp when the last successful allocated was made
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all capacity_reservations
in a region.
+```sql
+SELECT
+region,
+arn,
+name,
+status,
+target_dpus,
+allocated_dpus,
+capacity_assignment_configuration,
+creation_time,
+last_successful_allocation_time,
+tag_key,
+tag_value
+FROM aws.athena.capacity_reservation_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the capacity_reservation_tags
resource, see capacity_reservations
+
+
diff --git a/docs/aws-docs/providers/aws/athena/capacity_reservations/index.md b/docs/aws-docs/providers/aws/athena/capacity_reservations/index.md
index f96b84122f..ced03c8e61 100644
--- a/docs/aws-docs/providers/aws/athena/capacity_reservations/index.md
+++ b/docs/aws-docs/providers/aws/athena/capacity_reservations/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a capacity_reservation
resource o
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a capacity_reservation
resource o
## `SELECT` examples
-List all capacity_reservations
in a region.
+Gets all capacity_reservations
in a region.
```sql
SELECT
region,
-arn
+arn,
+name,
+status,
+target_dpus,
+allocated_dpus,
+capacity_assignment_configuration,
+creation_time,
+last_successful_allocation_time,
+tags
FROM aws.athena.capacity_reservations
WHERE region = 'us-east-1';
```
-Gets all properties from a capacity_reservation
.
+Gets all properties from an individual capacity_reservation
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.athena.capacity_reservations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new capacity_reservation
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/athena/capacity_reservations_list_only/index.md b/docs/aws-docs/providers/aws/athena/capacity_reservations_list_only/index.md
new file mode 100644
index 0000000000..0bf9510e29
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/capacity_reservations_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: capacity_reservations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - capacity_reservations_list_only
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists capacity_reservations
in a region or regions, for all properties use capacity_reservations
+
+## Overview
+
+Name capacity_reservations_list_only
+Type Resource
+Description Resource schema for AWS::Athena::CapacityReservation
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the specified capacity reservation
+string
The reservation name.
+string
The status of the reservation.
+integer
The number of DPUs to request to be allocated to the reservation.
+integer
The number of DPUs Athena has provisioned and allocated for the reservation
+object
Assignment configuration to assign workgroups to a reservation
+string
The date and time the reservation was created.
+string
The timestamp when the last successful allocated was made
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all capacity_reservations
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.athena.capacity_reservations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the capacity_reservations_list_only
resource, see capacity_reservations
+
+
diff --git a/docs/aws-docs/providers/aws/athena/data_catalog_tags/index.md b/docs/aws-docs/providers/aws/athena/data_catalog_tags/index.md
new file mode 100644
index 0000000000..13d3d653ab
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/data_catalog_tags/index.md
@@ -0,0 +1,77 @@
+---
+title: data_catalog_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - data_catalog_tags
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for data_catalogs
in a region
+
+## Overview
+
+Name data_catalog_tags
+Type Resource
+Description Resource schema for AWS::Athena::DataCatalog
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the data catalog to create. The catalog name must be unique for the AWS account and can use a maximum of 128 alphanumeric, underscore, at sign, or hyphen characters.
+string
A description of the data catalog to be created.
+object
Specifies the Lambda function or functions to use for creating the data catalog. This is a mapping whose values depend on the catalog type.
+string
The type of data catalog to create: LAMBDA for a federated catalog, GLUE for AWS Glue Catalog, or HIVE for an external hive metastore.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all data_catalogs
in a region.
+```sql
+SELECT
+region,
+name,
+description,
+parameters,
+type,
+tag_key,
+tag_value
+FROM aws.athena.data_catalog_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the data_catalog_tags
resource, see data_catalogs
+
+
diff --git a/docs/aws-docs/providers/aws/athena/data_catalogs/index.md b/docs/aws-docs/providers/aws/athena/data_catalogs/index.md
index dcc8a88389..74930d60a5 100644
--- a/docs/aws-docs/providers/aws/athena/data_catalogs/index.md
+++ b/docs/aws-docs/providers/aws/athena/data_catalogs/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a data_catalog
resource or lists
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a data_catalog
resource or lists
## `SELECT` examples
-List all data_catalogs
in a region.
+Gets all data_catalogs
in a region.
```sql
SELECT
region,
-name
+name,
+description,
+parameters,
+tags,
+type
FROM aws.athena.data_catalogs
WHERE region = 'us-east-1';
```
-Gets all properties from a data_catalog
.
+Gets all properties from an individual data_catalog
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.athena.data_catalogs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new data_catalog
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/athena/data_catalogs_list_only/index.md b/docs/aws-docs/providers/aws/athena/data_catalogs_list_only/index.md
new file mode 100644
index 0000000000..7802fc4fa2
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/data_catalogs_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: data_catalogs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - data_catalogs_list_only
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists data_catalogs
in a region or regions, for all properties use data_catalogs
+
+## Overview
+
+Name data_catalogs_list_only
+Type Resource
+Description Resource schema for AWS::Athena::DataCatalog
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the data catalog to create. The catalog name must be unique for the AWS account and can use a maximum of 128 alphanumeric, underscore, at sign, or hyphen characters.
+string
A description of the data catalog to be created.
+object
Specifies the Lambda function or functions to use for creating the data catalog. This is a mapping whose values depend on the catalog type.
+array
A list of comma separated tags to add to the data catalog that is created.
+string
The type of data catalog to create: LAMBDA for a federated catalog, GLUE for AWS Glue Catalog, or HIVE for an external hive metastore.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all data_catalogs
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.athena.data_catalogs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the data_catalogs_list_only
resource, see data_catalogs
+
+
diff --git a/docs/aws-docs/providers/aws/athena/index.md b/docs/aws-docs/providers/aws/athena/index.md
index 6183152091..72d9d18696 100644
--- a/docs/aws-docs/providers/aws/athena/index.md
+++ b/docs/aws-docs/providers/aws/athena/index.md
@@ -20,7 +20,7 @@ The athena service documentation.
-total resources: 5
+total resources: 13
@@ -29,12 +29,20 @@ The athena service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/athena/named_queries/index.md b/docs/aws-docs/providers/aws/athena/named_queries/index.md
index 3d07cd2bcb..c09550040f 100644
--- a/docs/aws-docs/providers/aws/athena/named_queries/index.md
+++ b/docs/aws-docs/providers/aws/athena/named_queries/index.md
@@ -58,7 +58,7 @@ Creates, updates, deletes or gets a named_query
resource or lists <
-
+
SELECT
@@ -70,15 +70,20 @@ Creates, updates, deletes or gets a named_query
resource or lists <
## `SELECT` examples
-List all named_queries
in a region.
+Gets all named_queries
in a region.
```sql
SELECT
region,
+name,
+database,
+description,
+query_string,
+work_group,
named_query_id
FROM aws.athena.named_queries
WHERE region = 'us-east-1';
```
-Gets all properties from a named_query
.
+Gets all properties from an individual named_query
.
```sql
SELECT
region,
@@ -92,7 +97,6 @@ FROM aws.athena.named_queries
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new named_query
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/athena/named_queries_list_only/index.md b/docs/aws-docs/providers/aws/athena/named_queries_list_only/index.md
new file mode 100644
index 0000000000..0c92d814c1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/named_queries_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: named_queries_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - named_queries_list_only
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists named_queries
in a region or regions, for all properties use named_queries
+
+## Overview
+
+Name named_queries_list_only
+Type Resource
+Description Resource schema for AWS::Athena::NamedQuery
+Id
+
+
+## Fields
+Name Datatype Description string
The query name.
+string
The database to which the query belongs.
+string
The query description.
+string
The contents of the query with all query statements.
+string
The name of the workgroup that contains the named query.
+string
The unique ID of the query.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all named_queries
in a region.
+```sql
+SELECT
+region,
+named_query_id
+FROM aws.athena.named_queries_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the named_queries_list_only
resource, see named_queries
+
+
diff --git a/docs/aws-docs/providers/aws/athena/prepared_statements/index.md b/docs/aws-docs/providers/aws/athena/prepared_statements/index.md
index 440501b0c8..e37e5943a8 100644
--- a/docs/aws-docs/providers/aws/athena/prepared_statements/index.md
+++ b/docs/aws-docs/providers/aws/athena/prepared_statements/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a prepared_statement
resource or
-
+
SELECT
@@ -73,16 +73,18 @@ Creates, updates, deletes or gets a prepared_statement
resource or
## `SELECT` examples
-List all prepared_statements
in a region.
+Gets all prepared_statements
in a region.
```sql
SELECT
region,
statement_name,
-work_group
+work_group,
+description,
+query_statement
FROM aws.athena.prepared_statements
WHERE region = 'us-east-1';
```
-Gets all properties from a prepared_statement
.
+Gets all properties from an individual prepared_statement
.
```sql
SELECT
region,
@@ -94,7 +96,6 @@ FROM aws.athena.prepared_statements
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new prepared_statement
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/athena/prepared_statements_list_only/index.md b/docs/aws-docs/providers/aws/athena/prepared_statements_list_only/index.md
new file mode 100644
index 0000000000..c704921568
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/prepared_statements_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: prepared_statements_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - prepared_statements_list_only
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists prepared_statements
in a region or regions, for all properties use prepared_statements
+
+## Overview
+
+Name prepared_statements_list_only
+Type Resource
+Description Resource schema for AWS::Athena::PreparedStatement
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the prepared statement.
+string
The name of the workgroup to which the prepared statement belongs.
+string
The description of the prepared statement.
+string
The query string for the prepared statement.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all prepared_statements
in a region.
+```sql
+SELECT
+region,
+statement_name,
+work_group
+FROM aws.athena.prepared_statements_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the prepared_statements_list_only
resource, see prepared_statements
+
+
diff --git a/docs/aws-docs/providers/aws/athena/work_group_tags/index.md b/docs/aws-docs/providers/aws/athena/work_group_tags/index.md
new file mode 100644
index 0000000000..1c65156a91
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/work_group_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: work_group_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - work_group_tags
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for work_groups
in a region
+
+## Overview
+
+Name work_group_tags
+Type Resource
+Description Resource schema for AWS::Athena::WorkGroup
+Id
+
+
+## Fields
+Name Datatype Description string
The workGroup name.
+string
The workgroup description.
+object
The workgroup configuration
+object
The workgroup configuration update object
+string
The date and time the workgroup was created.
+string
The state of the workgroup: ENABLED or DISABLED.
+boolean
The option to delete the workgroup and its contents even if the workgroup contains any named queries.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all work_groups
in a region.
+```sql
+SELECT
+region,
+name,
+description,
+work_group_configuration,
+work_group_configuration_updates,
+creation_time,
+state,
+recursive_delete_option,
+tag_key,
+tag_value
+FROM aws.athena.work_group_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the work_group_tags
resource, see work_groups
+
+
diff --git a/docs/aws-docs/providers/aws/athena/work_groups/index.md b/docs/aws-docs/providers/aws/athena/work_groups/index.md
index c788a1b8e6..278f979c95 100644
--- a/docs/aws-docs/providers/aws/athena/work_groups/index.md
+++ b/docs/aws-docs/providers/aws/athena/work_groups/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a work_group
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a work_group
resource or lists
## `SELECT` examples
-List all work_groups
in a region.
+Gets all work_groups
in a region.
```sql
SELECT
region,
-name
+name,
+description,
+tags,
+work_group_configuration,
+work_group_configuration_updates,
+creation_time,
+state,
+recursive_delete_option
FROM aws.athena.work_groups
WHERE region = 'us-east-1';
```
-Gets all properties from a work_group
.
+Gets all properties from an individual work_group
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.athena.work_groups
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new work_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/athena/work_groups_list_only/index.md b/docs/aws-docs/providers/aws/athena/work_groups_list_only/index.md
new file mode 100644
index 0000000000..a66fc73cf4
--- /dev/null
+++ b/docs/aws-docs/providers/aws/athena/work_groups_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: work_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - work_groups_list_only
+ - athena
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists work_groups
in a region or regions, for all properties use work_groups
+
+## Overview
+
+Name work_groups_list_only
+Type Resource
+Description Resource schema for AWS::Athena::WorkGroup
+Id
+
+
+## Fields
+Name Datatype Description string
The workGroup name.
+string
The workgroup description.
+array
One or more tags, separated by commas, that you want to attach to the workgroup as you create it
+object
The workgroup configuration
+object
The workgroup configuration update object
+string
The date and time the workgroup was created.
+string
The state of the workgroup: ENABLED or DISABLED.
+boolean
The option to delete the workgroup and its contents even if the workgroup contains any named queries.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all work_groups
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.athena.work_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the work_groups_list_only
resource, see work_groups
+
+
diff --git a/docs/aws-docs/providers/aws/auditmanager/assessment_tags/index.md b/docs/aws-docs/providers/aws/auditmanager/assessment_tags/index.md
new file mode 100644
index 0000000000..8d5b460f04
--- /dev/null
+++ b/docs/aws-docs/providers/aws/auditmanager/assessment_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: assessment_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - assessment_tags
+ - auditmanager
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for assessments
in a region
+
+## Overview
+
+Name assessment_tags
+Type Resource
+Description An entity that defines the scope of audit evidence collected by AWS Audit Manager.
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier for the specified framework.
+string
+object
The AWS account associated with the assessment.
+string
The Amazon Resource Name (ARN) of the assessment.
+array
The list of delegations.
+array
The list of roles for the specified assessment.
+object
The wrapper that contains the AWS accounts and AWS services in scope for the assessment.
+object
The destination in which evidence reports are stored for the specified assessment.
+string
The status of the specified assessment.
+number
The sequence of characters that identifies when the event occurred.
+string
The name of the related assessment.
+string
The description of the specified assessment.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all assessments
in a region.
+```sql
+SELECT
+region,
+framework_id,
+assessment_id,
+aws_account,
+arn,
+delegations,
+roles,
+scope,
+assessment_reports_destination,
+status,
+creation_time,
+name,
+description,
+tag_key,
+tag_value
+FROM aws.auditmanager.assessment_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the assessment_tags
resource, see assessments
+
+
diff --git a/docs/aws-docs/providers/aws/auditmanager/assessments/index.md b/docs/aws-docs/providers/aws/auditmanager/assessments/index.md
index 464c57cce6..ab58f954d1 100644
--- a/docs/aws-docs/providers/aws/auditmanager/assessments/index.md
+++ b/docs/aws-docs/providers/aws/auditmanager/assessments/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets an assessment
resource or lists <
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets an assessment
resource or lists <
## `SELECT` examples
-List all assessments
in a region.
+Gets all assessments
in a region.
```sql
SELECT
region,
-assessment_id
+framework_id,
+assessment_id,
+aws_account,
+arn,
+tags,
+delegations,
+roles,
+scope,
+assessment_reports_destination,
+status,
+creation_time,
+name,
+description
FROM aws.auditmanager.assessments
WHERE region = 'us-east-1';
```
-Gets all properties from an assessment
.
+Gets all properties from an individual assessment
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.auditmanager.assessments
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new assessment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/auditmanager/assessments_list_only/index.md b/docs/aws-docs/providers/aws/auditmanager/assessments_list_only/index.md
new file mode 100644
index 0000000000..d3add28842
--- /dev/null
+++ b/docs/aws-docs/providers/aws/auditmanager/assessments_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: assessments_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - assessments_list_only
+ - auditmanager
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists assessments
in a region or regions, for all properties use assessments
+
+## Overview
+
+Name assessments_list_only
+Type Resource
+Description An entity that defines the scope of audit evidence collected by AWS Audit Manager.
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier for the specified framework.
+string
+object
The AWS account associated with the assessment.
+string
The Amazon Resource Name (ARN) of the assessment.
+array
The tags associated with the assessment.
+array
The list of delegations.
+array
The list of roles for the specified assessment.
+object
The wrapper that contains the AWS accounts and AWS services in scope for the assessment.
+object
The destination in which evidence reports are stored for the specified assessment.
+string
The status of the specified assessment.
+number
The sequence of characters that identifies when the event occurred.
+string
The name of the related assessment.
+string
The description of the specified assessment.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all assessments
in a region.
+```sql
+SELECT
+region,
+assessment_id
+FROM aws.auditmanager.assessments_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the assessments_list_only
resource, see assessments
+
+
diff --git a/docs/aws-docs/providers/aws/auditmanager/index.md b/docs/aws-docs/providers/aws/auditmanager/index.md
index 6f7f690cf2..edbe19f8fe 100644
--- a/docs/aws-docs/providers/aws/auditmanager/index.md
+++ b/docs/aws-docs/providers/aws/auditmanager/index.md
@@ -20,7 +20,7 @@ The auditmanager service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The auditmanager service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/autoscaling/auto_scaling_group_tags/index.md b/docs/aws-docs/providers/aws/autoscaling/auto_scaling_group_tags/index.md
new file mode 100644
index 0000000000..3e32b52794
--- /dev/null
+++ b/docs/aws-docs/providers/aws/autoscaling/auto_scaling_group_tags/index.md
@@ -0,0 +1,127 @@
+---
+title: auto_scaling_group_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - auto_scaling_group_tags
+ - autoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for auto_scaling_groups
in a region
+
+## Overview
+
+Name auto_scaling_group_tags
+Type Resource
+Description The AWS::AutoScaling::AutoScalingGroup
resource defines an Amazon EC2 Auto Scaling group, which is a collection of Amazon EC2 instances that are treated as a logical grouping for the purposes of automatic scaling and management.
For more information about Amazon EC2 Auto Scaling, see the [Amazon EC2 Auto Scaling User Guide](https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html).
Amazon EC2 Auto Scaling configures instances launched as part of an Auto Scaling group using either a [launch template](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html) or a launch configuration. We strongly recommend that you do not use launch configurations. For more information, see [Launch configurations](https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html) in the *Amazon EC2 Auto Scaling User Guide*.
For help migrating from launch configurations to launch templates, see [Migrate CloudFormation stacks from launch configurations to launch templates](https://docs.aws.amazon.com/autoscaling/ec2/userguide/migrate-launch-configurations-with-cloudformation.html) in the *Amazon EC2 Auto Scaling User Guide*.
+Id
+
+
+## Fields
+Name Datatype Description array
One or more lifecycle hooks to add to the Auto Scaling group before instances are launched.
+array
A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load Balancers, specify the TargetGroupARNs
property instead.
+string
The name of the launch configuration to use to launch instances.
Required only if you don't specify LaunchTemplate
, MixedInstancesPolicy
, or InstanceId
.
+string
The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS service on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role named AWSServiceRoleForAutoScaling
, which it creates if it does not exist. For more information, see [Service-linked roles](https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-service-linked-role.html) in the *Amazon EC2 Auto Scaling User Guide*.
+array
The Amazon Resource Names (ARN) of the Elastic Load Balancing target groups to associate with the Auto Scaling group. Instances are registered as targets with the target groups. The target groups receive incoming traffic and route requests to one or more registered targets. For more information, see [Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html) in the *Amazon EC2 Auto Scaling User Guide*.
+string
*Only needed if you use simple scaling policies.*
The amount of time, in seconds, between one scaling activity ending and another one starting due to simple scaling policies. For more information, see [Scaling cooldowns for Amazon EC2 Auto Scaling](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-scaling-cooldowns.html) in the *Amazon EC2 Auto Scaling User Guide*.
Default: 300
seconds
+array
Configures an Auto Scaling group to send notifications when specified events take place.
+string
The desired capacity is the initial capacity of the Auto Scaling group at the time of its creation and the capacity it attempts to maintain. It can scale beyond this capacity if you configure automatic scaling.
The number must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group. If you do not specify a desired capacity when creating the stack, the default is the minimum size of the group.
CloudFormation marks the Auto Scaling group as successful (by setting its status to CREATE_COMPLETE) when the desired capacity is reached. However, if a maximum Spot price is set in the launch template or launch configuration that you specified, then desired capacity is not used as a criteria for success. Whether your request is fulfilled depends on Spot Instance capacity and your maximum price.
+integer
The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service and marking it unhealthy due to a failed health check. This is useful if your instances do not immediately pass their health checks after they enter the InService
state. For more information, see [Set the health check grace period for an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/health-check-grace-period.html) in the *Amazon EC2 Auto Scaling User Guide*.
Default: 0
seconds
+integer
The amount of time, in seconds, until a new instance is considered to have finished initializing and resource consumption to become stable after it enters the InService
state.
During an instance refresh, Amazon EC2 Auto Scaling waits for the warm-up period after it replaces an instance before it moves on to replacing the next instance. Amazon EC2 Auto Scaling also waits for the warm-up period before aggregating the metrics for new instances with existing instances in the Amazon CloudWatch metrics that are used for scaling, resulting in more reliable usage data. For more information, see [Set the default instance warmup for an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-default-instance-warmup.html) in the *Amazon EC2 Auto Scaling User Guide*.
To manage various warm-up settings at the group level, we recommend that you set the default instance warmup, *even if it is set to 0 seconds*. To remove a value that you previously set, include the property but specify -1
for the value. However, we strongly recommend keeping the default instance warmup enabled by specifying a value of 0
or other nominal value.
Default: None
+boolean
Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in. For more information about preventing instances from terminating on scale in, see [Use instance scale-in protection](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-protection.html) in the *Amazon EC2 Auto Scaling User Guide*.
+object
Information used to specify the launch template and version to use to launch instances. You can alternatively associate a launch template to the Auto Scaling group by specifying a MixedInstancesPolicy
. For more information about creating launch templates, see [Create a launch template for an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-launch-template.html) in the *Amazon EC2 Auto Scaling User Guide*.
If you omit this property, you must specify MixedInstancesPolicy
, LaunchConfigurationName
, or InstanceId
.
+object
An embedded object that specifies a mixed instances policy.
The policy includes properties that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances (optional), and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities, but also the properties that specify the instance configuration information—the launch template and instance types. The policy can also include a weight for each instance type and different launch templates for individual instance types.
For more information, see [Auto Scaling groups with multiple instance types and purchase options](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-mixed-instances-groups.html) in the *Amazon EC2 Auto Scaling User Guide*.
+array
A list of subnet IDs for a virtual private cloud (VPC) where instances in the Auto Scaling group can be created.
If this resource specifies public subnets and is also in a VPC that is defined in the same stack template, you must use the [DependsOn attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) to declare a dependency on the [VPC-gateway attachment](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html).
When you update VPCZoneIdentifier
, this retains the same Auto Scaling group and replaces old instances with new ones, according to the specified subnets. You can optionally specify how CloudFormation handles these updates by using an [UpdatePolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html).
Required to launch instances into a nondefault VPC. If you specify VPCZoneIdentifier
with AvailabilityZones
, the subnets that you specify for this property must reside in those Availability Zones.
+string
Reserved.
+boolean
Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see [Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html) in the in the *Amazon EC2 Auto Scaling User Guide*.
+string
The ID of the instance used to base the launch configuration on. For more information, see [Create an Auto Scaling group using an EC2 instance](https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-asg-from-instance.html) in the *Amazon EC2 Auto Scaling User Guide*.
If you specify LaunchTemplate
, MixedInstancesPolicy
, or LaunchConfigurationName
, don't specify InstanceId
.
+array
A list of Availability Zones where instances in the Auto Scaling group can be created. Used for launching into the default VPC subnet in each Availability Zone when not using the VPCZoneIdentifier
property, or for attaching a network interface when an existing network interface ID is specified in a launch template.
+object
A structure that specifies an Amazon SNS notification configuration for the NotificationConfigurations
property of the [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
For an example template snippet, see [Configure Amazon EC2 Auto Scaling resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-ec2-auto-scaling.html).
For more information, see [Get Amazon SNS notifications when your Auto Scaling group scales](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ASGettingNotifications.html) in the *Amazon EC2 Auto Scaling User Guide*.
+array
Enables the monitoring of group metrics of an Auto Scaling group. By default, these metrics are disabled.
+object
An instance maintenance policy. For more information, see [Set instance maintenance policy](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-maintenance-policy.html) in the *Amazon EC2 Auto Scaling User Guide*.
+string
The maximum size of the group.
With a mixed instances policy that uses instance weighting, Amazon EC2 Auto Scaling may need to go above MaxSize
to meet your capacity requirements. In this event, Amazon EC2 Auto Scaling will never go above MaxSize
by more than your largest instance weight (weights that define how many units each instance contributes to the desired capacity of the group).
+string
The minimum size of the group.
+array
A policy or a list of policies that are used to select the instance to terminate. These policies are executed in the order that you list them. For more information, see [Configure termination policies for Amazon EC2 Auto Scaling](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-termination-policies.html) in the *Amazon EC2 Auto Scaling User Guide*.
Valid values: Default
| AllocationStrategy
| ClosestToNextInstanceHour
| NewestInstance
| OldestInstance
| OldestLaunchConfiguration
| OldestLaunchTemplate
| arn:aws:lambda:region:account-id:function:my-function:my-alias
+string
The name of the Auto Scaling group. This name must be unique per Region per account.
The name can contain any ASCII character 33 to 126 including most punctuation characters, digits, and upper and lowercased letters.
You cannot use a colon (:) in the name.
+string
The unit of measurement for the value specified for desired capacity. Amazon EC2 Auto Scaling supports DesiredCapacityType
for attribute-based instance type selection only. For more information, see [Create a mixed instances group using attribute-based instance type selection](https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-mixed-instances-group-attribute-based-instance-type-selection.html) in the *Amazon EC2 Auto Scaling User Guide*.
By default, Amazon EC2 Auto Scaling specifies units
, which translates into number of instances.
Valid values: units
| vcpu
| memory-mib
+string
The name of the placement group into which to launch your instances. For more information, see [Placement groups](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html) in the *Amazon EC2 User Guide for Linux Instances*.
A *cluster* placement group is a logical grouping of instances within a single Availability Zone. You cannot specify multiple Availability Zones and a cluster placement group.
+string
A comma-separated value string of one or more health check types.
The valid values are EC2
, ELB
, and VPC_LATTICE
. EC2
is the default health check and cannot be disabled. For more information, see [Health checks for instances in an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-health-checks.html) in the *Amazon EC2 Auto Scaling User Guide*.
Only specify EC2
if you must clear a value that was previously set.
+integer
The maximum amount of time, in seconds, that an instance can be in service. The default is null. If specified, the value must be either 0 or a number equal to or greater than 86,400 seconds (1 day). For more information, see [Replace Auto Scaling instances based on maximum instance lifetime](https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-max-instance-lifetime.html) in the *Amazon EC2 Auto Scaling User Guide*.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all auto_scaling_groups
in a region.
+```sql
+SELECT
+region,
+lifecycle_hook_specification_list,
+load_balancer_names,
+launch_configuration_name,
+service_linked_role_arn,
+target_group_arns,
+cooldown,
+notification_configurations,
+desired_capacity,
+health_check_grace_period,
+default_instance_warmup,
+new_instances_protected_from_scale_in,
+launch_template,
+mixed_instances_policy,
+vpc_zone_identifier,
+context,
+capacity_rebalance,
+instance_id,
+availability_zones,
+notification_configuration,
+metrics_collection,
+instance_maintenance_policy,
+max_size,
+min_size,
+termination_policies,
+auto_scaling_group_name,
+desired_capacity_type,
+placement_group,
+health_check_type,
+max_instance_lifetime,
+tag_key,
+tag_value
+FROM aws.autoscaling.auto_scaling_group_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the auto_scaling_group_tags
resource, see auto_scaling_groups
+
+
diff --git a/docs/aws-docs/providers/aws/autoscaling/auto_scaling_groups/index.md b/docs/aws-docs/providers/aws/autoscaling/auto_scaling_groups/index.md
index aaf1a3b7dd..928476b60c 100644
--- a/docs/aws-docs/providers/aws/autoscaling/auto_scaling_groups/index.md
+++ b/docs/aws-docs/providers/aws/autoscaling/auto_scaling_groups/index.md
@@ -87,7 +87,7 @@ Creates, updates, deletes or gets an auto_scaling_group
resource or
-
+
SELECT
@@ -99,15 +99,44 @@ Creates, updates, deletes or gets an auto_scaling_group
resource or
## `SELECT` examples
-List all auto_scaling_groups
in a region.
+Gets all auto_scaling_groups
in a region.
```sql
SELECT
region,
-auto_scaling_group_name
+lifecycle_hook_specification_list,
+load_balancer_names,
+launch_configuration_name,
+service_linked_role_arn,
+target_group_arns,
+cooldown,
+notification_configurations,
+desired_capacity,
+health_check_grace_period,
+default_instance_warmup,
+new_instances_protected_from_scale_in,
+launch_template,
+mixed_instances_policy,
+vpc_zone_identifier,
+tags,
+context,
+capacity_rebalance,
+instance_id,
+availability_zones,
+notification_configuration,
+metrics_collection,
+instance_maintenance_policy,
+max_size,
+min_size,
+termination_policies,
+auto_scaling_group_name,
+desired_capacity_type,
+placement_group,
+health_check_type,
+max_instance_lifetime
FROM aws.autoscaling.auto_scaling_groups
WHERE region = 'us-east-1';
```
-Gets all properties from an auto_scaling_group
.
+Gets all properties from an individual auto_scaling_group
.
```sql
SELECT
region,
@@ -145,7 +174,6 @@ FROM aws.autoscaling.auto_scaling_groups
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new auto_scaling_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/autoscaling/auto_scaling_groups_list_only/index.md b/docs/aws-docs/providers/aws/autoscaling/auto_scaling_groups_list_only/index.md
new file mode 100644
index 0000000000..1dcfbddb15
--- /dev/null
+++ b/docs/aws-docs/providers/aws/autoscaling/auto_scaling_groups_list_only/index.md
@@ -0,0 +1,96 @@
+---
+title: auto_scaling_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - auto_scaling_groups_list_only
+ - autoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists auto_scaling_groups
in a region or regions, for all properties use auto_scaling_groups
+
+## Overview
+
+Name auto_scaling_groups_list_only
+Type Resource
+Description The AWS::AutoScaling::AutoScalingGroup
resource defines an Amazon EC2 Auto Scaling group, which is a collection of Amazon EC2 instances that are treated as a logical grouping for the purposes of automatic scaling and management.
For more information about Amazon EC2 Auto Scaling, see the [Amazon EC2 Auto Scaling User Guide](https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html).
Amazon EC2 Auto Scaling configures instances launched as part of an Auto Scaling group using either a [launch template](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html) or a launch configuration. We strongly recommend that you do not use launch configurations. For more information, see [Launch configurations](https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html) in the *Amazon EC2 Auto Scaling User Guide*.
For help migrating from launch configurations to launch templates, see [Migrate CloudFormation stacks from launch configurations to launch templates](https://docs.aws.amazon.com/autoscaling/ec2/userguide/migrate-launch-configurations-with-cloudformation.html) in the *Amazon EC2 Auto Scaling User Guide*.
+Id
+
+
+## Fields
+Name Datatype Description array
One or more lifecycle hooks to add to the Auto Scaling group before instances are launched.
+array
A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load Balancers, specify the TargetGroupARNs
property instead.
+string
The name of the launch configuration to use to launch instances.
Required only if you don't specify LaunchTemplate
, MixedInstancesPolicy
, or InstanceId
.
+string
The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS service on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role named AWSServiceRoleForAutoScaling
, which it creates if it does not exist. For more information, see [Service-linked roles](https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-service-linked-role.html) in the *Amazon EC2 Auto Scaling User Guide*.
+array
The Amazon Resource Names (ARN) of the Elastic Load Balancing target groups to associate with the Auto Scaling group. Instances are registered as targets with the target groups. The target groups receive incoming traffic and route requests to one or more registered targets. For more information, see [Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html) in the *Amazon EC2 Auto Scaling User Guide*.
+string
*Only needed if you use simple scaling policies.*
The amount of time, in seconds, between one scaling activity ending and another one starting due to simple scaling policies. For more information, see [Scaling cooldowns for Amazon EC2 Auto Scaling](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-scaling-cooldowns.html) in the *Amazon EC2 Auto Scaling User Guide*.
Default: 300
seconds
+array
Configures an Auto Scaling group to send notifications when specified events take place.
+string
The desired capacity is the initial capacity of the Auto Scaling group at the time of its creation and the capacity it attempts to maintain. It can scale beyond this capacity if you configure automatic scaling.
The number must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group. If you do not specify a desired capacity when creating the stack, the default is the minimum size of the group.
CloudFormation marks the Auto Scaling group as successful (by setting its status to CREATE_COMPLETE) when the desired capacity is reached. However, if a maximum Spot price is set in the launch template or launch configuration that you specified, then desired capacity is not used as a criteria for success. Whether your request is fulfilled depends on Spot Instance capacity and your maximum price.
+integer
The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service and marking it unhealthy due to a failed health check. This is useful if your instances do not immediately pass their health checks after they enter the InService
state. For more information, see [Set the health check grace period for an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/health-check-grace-period.html) in the *Amazon EC2 Auto Scaling User Guide*.
Default: 0
seconds
+integer
The amount of time, in seconds, until a new instance is considered to have finished initializing and resource consumption to become stable after it enters the InService
state.
During an instance refresh, Amazon EC2 Auto Scaling waits for the warm-up period after it replaces an instance before it moves on to replacing the next instance. Amazon EC2 Auto Scaling also waits for the warm-up period before aggregating the metrics for new instances with existing instances in the Amazon CloudWatch metrics that are used for scaling, resulting in more reliable usage data. For more information, see [Set the default instance warmup for an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-default-instance-warmup.html) in the *Amazon EC2 Auto Scaling User Guide*.
To manage various warm-up settings at the group level, we recommend that you set the default instance warmup, *even if it is set to 0 seconds*. To remove a value that you previously set, include the property but specify -1
for the value. However, we strongly recommend keeping the default instance warmup enabled by specifying a value of 0
or other nominal value.
Default: None
+boolean
Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in. For more information about preventing instances from terminating on scale in, see [Use instance scale-in protection](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-protection.html) in the *Amazon EC2 Auto Scaling User Guide*.
+object
Information used to specify the launch template and version to use to launch instances. You can alternatively associate a launch template to the Auto Scaling group by specifying a MixedInstancesPolicy
. For more information about creating launch templates, see [Create a launch template for an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-launch-template.html) in the *Amazon EC2 Auto Scaling User Guide*.
If you omit this property, you must specify MixedInstancesPolicy
, LaunchConfigurationName
, or InstanceId
.
+object
An embedded object that specifies a mixed instances policy.
The policy includes properties that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances (optional), and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities, but also the properties that specify the instance configuration information—the launch template and instance types. The policy can also include a weight for each instance type and different launch templates for individual instance types.
For more information, see [Auto Scaling groups with multiple instance types and purchase options](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-mixed-instances-groups.html) in the *Amazon EC2 Auto Scaling User Guide*.
+array
A list of subnet IDs for a virtual private cloud (VPC) where instances in the Auto Scaling group can be created.
If this resource specifies public subnets and is also in a VPC that is defined in the same stack template, you must use the [DependsOn attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) to declare a dependency on the [VPC-gateway attachment](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html).
When you update VPCZoneIdentifier
, this retains the same Auto Scaling group and replaces old instances with new ones, according to the specified subnets. You can optionally specify how CloudFormation handles these updates by using an [UpdatePolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html).
Required to launch instances into a nondefault VPC. If you specify VPCZoneIdentifier
with AvailabilityZones
, the subnets that you specify for this property must reside in those Availability Zones.
+array
One or more tags. You can tag your Auto Scaling group and propagate the tags to the Amazon EC2 instances it launches. Tags are not propagated to Amazon EBS volumes. To add tags to Amazon EBS volumes, specify the tags in a launch template but use caution. If the launch template specifies an instance tag with a key that is also specified for the Auto Scaling group, Amazon EC2 Auto Scaling overrides the value of that instance tag with the value specified by the Auto Scaling group. For more information, see [Tag Auto Scaling groups and instances](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-tagging.html) in the *Amazon EC2 Auto Scaling User Guide*.
+string
Reserved.
+boolean
Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see [Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html) in the in the *Amazon EC2 Auto Scaling User Guide*.
+string
The ID of the instance used to base the launch configuration on. For more information, see [Create an Auto Scaling group using an EC2 instance](https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-asg-from-instance.html) in the *Amazon EC2 Auto Scaling User Guide*.
If you specify LaunchTemplate
, MixedInstancesPolicy
, or LaunchConfigurationName
, don't specify InstanceId
.
+array
A list of Availability Zones where instances in the Auto Scaling group can be created. Used for launching into the default VPC subnet in each Availability Zone when not using the VPCZoneIdentifier
property, or for attaching a network interface when an existing network interface ID is specified in a launch template.
+object
A structure that specifies an Amazon SNS notification configuration for the NotificationConfigurations
property of the [AWS::AutoScaling::AutoScalingGroup](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html) resource.
For an example template snippet, see [Configure Amazon EC2 Auto Scaling resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-ec2-auto-scaling.html).
For more information, see [Get Amazon SNS notifications when your Auto Scaling group scales](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ASGettingNotifications.html) in the *Amazon EC2 Auto Scaling User Guide*.
+array
Enables the monitoring of group metrics of an Auto Scaling group. By default, these metrics are disabled.
+object
An instance maintenance policy. For more information, see [Set instance maintenance policy](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-maintenance-policy.html) in the *Amazon EC2 Auto Scaling User Guide*.
+string
The maximum size of the group.
With a mixed instances policy that uses instance weighting, Amazon EC2 Auto Scaling may need to go above MaxSize
to meet your capacity requirements. In this event, Amazon EC2 Auto Scaling will never go above MaxSize
by more than your largest instance weight (weights that define how many units each instance contributes to the desired capacity of the group).
+string
The minimum size of the group.
+array
A policy or a list of policies that are used to select the instance to terminate. These policies are executed in the order that you list them. For more information, see [Configure termination policies for Amazon EC2 Auto Scaling](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-termination-policies.html) in the *Amazon EC2 Auto Scaling User Guide*.
Valid values: Default
| AllocationStrategy
| ClosestToNextInstanceHour
| NewestInstance
| OldestInstance
| OldestLaunchConfiguration
| OldestLaunchTemplate
| arn:aws:lambda:region:account-id:function:my-function:my-alias
+string
The name of the Auto Scaling group. This name must be unique per Region per account.
The name can contain any ASCII character 33 to 126 including most punctuation characters, digits, and upper and lowercased letters.
You cannot use a colon (:) in the name.
+string
The unit of measurement for the value specified for desired capacity. Amazon EC2 Auto Scaling supports DesiredCapacityType
for attribute-based instance type selection only. For more information, see [Create a mixed instances group using attribute-based instance type selection](https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-mixed-instances-group-attribute-based-instance-type-selection.html) in the *Amazon EC2 Auto Scaling User Guide*.
By default, Amazon EC2 Auto Scaling specifies units
, which translates into number of instances.
Valid values: units
| vcpu
| memory-mib
+string
The name of the placement group into which to launch your instances. For more information, see [Placement groups](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html) in the *Amazon EC2 User Guide for Linux Instances*.
A *cluster* placement group is a logical grouping of instances within a single Availability Zone. You cannot specify multiple Availability Zones and a cluster placement group.
+string
A comma-separated value string of one or more health check types.
The valid values are EC2
, ELB
, and VPC_LATTICE
. EC2
is the default health check and cannot be disabled. For more information, see [Health checks for instances in an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-health-checks.html) in the *Amazon EC2 Auto Scaling User Guide*.
Only specify EC2
if you must clear a value that was previously set.
+integer
The maximum amount of time, in seconds, that an instance can be in service. The default is null. If specified, the value must be either 0 or a number equal to or greater than 86,400 seconds (1 day). For more information, see [Replace Auto Scaling instances based on maximum instance lifetime](https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-max-instance-lifetime.html) in the *Amazon EC2 Auto Scaling User Guide*.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all auto_scaling_groups
in a region.
+```sql
+SELECT
+region,
+auto_scaling_group_name
+FROM aws.autoscaling.auto_scaling_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the auto_scaling_groups_list_only
resource, see auto_scaling_groups
+
+
diff --git a/docs/aws-docs/providers/aws/autoscaling/index.md b/docs/aws-docs/providers/aws/autoscaling/index.md
index 10a53c0857..24838cf3c6 100644
--- a/docs/aws-docs/providers/aws/autoscaling/index.md
+++ b/docs/aws-docs/providers/aws/autoscaling/index.md
@@ -20,7 +20,7 @@ The autoscaling service documentation.
-total resources: 6
+total resources: 12
@@ -29,13 +29,19 @@ The autoscaling service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/autoscaling/launch_configurations/index.md b/docs/aws-docs/providers/aws/autoscaling/launch_configurations/index.md
index f4f2b56046..354c17f15f 100644
--- a/docs/aws-docs/providers/aws/autoscaling/launch_configurations/index.md
+++ b/docs/aws-docs/providers/aws/autoscaling/launch_configurations/index.md
@@ -71,7 +71,7 @@ Creates, updates, deletes or gets a launch_configuration
resource o
-
+
SELECT
@@ -83,15 +83,33 @@ Creates, updates, deletes or gets a launch_configuration
resource o
## `SELECT` examples
-List all launch_configurations
in a region.
+Gets all launch_configurations
in a region.
```sql
SELECT
region,
-launch_configuration_name
+placement_tenancy,
+security_groups,
+launch_configuration_name,
+metadata_options,
+instance_id,
+user_data,
+classic_link_vpc_security_groups,
+block_device_mappings,
+iam_instance_profile,
+kernel_id,
+associate_public_ip_address,
+classic_link_vpc_id,
+ebs_optimized,
+key_name,
+spot_price,
+image_id,
+instance_type,
+ram_disk_id,
+instance_monitoring
FROM aws.autoscaling.launch_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from a launch_configuration
.
+Gets all properties from an individual launch_configuration
.
```sql
SELECT
region,
@@ -118,7 +136,6 @@ FROM aws.autoscaling.launch_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new launch_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/autoscaling/launch_configurations_list_only/index.md b/docs/aws-docs/providers/aws/autoscaling/launch_configurations_list_only/index.md
new file mode 100644
index 0000000000..91aa885822
--- /dev/null
+++ b/docs/aws-docs/providers/aws/autoscaling/launch_configurations_list_only/index.md
@@ -0,0 +1,85 @@
+---
+title: launch_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - launch_configurations_list_only
+ - autoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists launch_configurations
in a region or regions, for all properties use launch_configurations
+
+## Overview
+
+Name launch_configurations_list_only
+Type Resource
+Description The AWS::AutoScaling::LaunchConfiguration resource specifies the launch configuration that can be used by an Auto Scaling group to configure Amazon EC2 instances.
+Id
+
+
+## Fields
+Name Datatype Description string
The tenancy of the instance, either default or dedicated.
+array
A list that contains the security groups to assign to the instances in the Auto Scaling group.
+string
The name of the launch configuration. This name must be unique per Region per account.
+object
The metadata options for the instances.
+string
The ID of the Amazon EC2 instance you want to use to create the launch configuration.
+string
The Base64-encoded user data to make available to the launched EC2 instances.
+array
The IDs of one or more security groups for the VPC that you specified in the ClassicLinkVPCId property.
+array
Specifies how block devices are exposed to the instance. You can specify virtual devices and EBS volumes.
+string
Provides the name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance. The instance profile contains the IAM role.
+string
Provides the ID of the kernel associated with the EC2 AMI.
+boolean
For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public IP address to the group's instances.
+string
The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to.
+boolean
Specifies whether the launch configuration is optimized for EBS I/O (true) or not (false).
+string
Provides the name of the EC2 key pair.
+string
The maximum hourly price you are willing to pay for any Spot Instances launched to fulfill the request.
+string
Provides the unique ID of the Amazon Machine Image (AMI) that was assigned during registration.
+string
Specifies the instance type of the EC2 instance.
+string
The ID of the RAM disk to select.
+boolean
Controls whether instances in this group are launched with detailed (true) or basic (false) monitoring.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all launch_configurations
in a region.
+```sql
+SELECT
+region,
+launch_configuration_name
+FROM aws.autoscaling.launch_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the launch_configurations_list_only
resource, see launch_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/autoscaling/lifecycle_hooks/index.md b/docs/aws-docs/providers/aws/autoscaling/lifecycle_hooks/index.md
index 69141b0585..6641ab32e1 100644
--- a/docs/aws-docs/providers/aws/autoscaling/lifecycle_hooks/index.md
+++ b/docs/aws-docs/providers/aws/autoscaling/lifecycle_hooks/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a lifecycle_hook
resource or list
-
+
SELECT
@@ -77,16 +77,22 @@ Creates, updates, deletes or gets a lifecycle_hook
resource or list
## `SELECT` examples
-List all lifecycle_hooks
in a region.
+Gets all lifecycle_hooks
in a region.
```sql
SELECT
region,
auto_scaling_group_name,
-lifecycle_hook_name
+default_result,
+heartbeat_timeout,
+lifecycle_hook_name,
+lifecycle_transition,
+notification_metadata,
+notification_target_arn,
+role_arn
FROM aws.autoscaling.lifecycle_hooks
WHERE region = 'us-east-1';
```
-Gets all properties from a lifecycle_hook
.
+Gets all properties from an individual lifecycle_hook
.
```sql
SELECT
region,
@@ -102,7 +108,6 @@ FROM aws.autoscaling.lifecycle_hooks
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new lifecycle_hook
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/autoscaling/lifecycle_hooks_list_only/index.md b/docs/aws-docs/providers/aws/autoscaling/lifecycle_hooks_list_only/index.md
new file mode 100644
index 0000000000..f3e50b457c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/autoscaling/lifecycle_hooks_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: lifecycle_hooks_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - lifecycle_hooks_list_only
+ - autoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists lifecycle_hooks
in a region or regions, for all properties use lifecycle_hooks
+
+## Overview
+
+Name lifecycle_hooks_list_only
+Type Resource
+Description Resource Type definition for AWS::AutoScaling::LifecycleHook
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the Auto Scaling group for the lifecycle hook.
+string
The action the Auto Scaling group takes when the lifecycle hook timeout elapses or if an unexpected failure occurs. The valid values are CONTINUE and ABANDON (default).
+integer
The maximum time, in seconds, that can elapse before the lifecycle hook times out. The range is from 30 to 7200 seconds. The default value is 3600 seconds (1 hour). If the lifecycle hook times out, Amazon EC2 Auto Scaling performs the action that you specified in the DefaultResult property.
+string
The name of the lifecycle hook.
+string
The instance state to which you want to attach the lifecycle hook.
+string
Additional information that is included any time Amazon EC2 Auto Scaling sends a message to the notification target.
+string
The Amazon Resource Name (ARN) of the notification target that Amazon EC2 Auto Scaling uses to notify you when an instance is in the transition state for the lifecycle hook. You can specify an Amazon SQS queue or an Amazon SNS topic. The notification message includes the following information: lifecycle action token, user account ID, Auto Scaling group name, lifecycle hook name, instance ID, lifecycle transition, and notification metadata.
+string
The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target, for example, an Amazon SNS topic or an Amazon SQS queue.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all lifecycle_hooks
in a region.
+```sql
+SELECT
+region,
+auto_scaling_group_name,
+lifecycle_hook_name
+FROM aws.autoscaling.lifecycle_hooks_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the lifecycle_hooks_list_only
resource, see lifecycle_hooks
+
+
diff --git a/docs/aws-docs/providers/aws/autoscaling/scaling_policies/index.md b/docs/aws-docs/providers/aws/autoscaling/scaling_policies/index.md
index 2179edf969..deba0b5da9 100644
--- a/docs/aws-docs/providers/aws/autoscaling/scaling_policies/index.md
+++ b/docs/aws-docs/providers/aws/autoscaling/scaling_policies/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a scaling_policy
resource or list
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a scaling_policy
resource or list
## `SELECT` examples
-List all scaling_policies
in a region.
+Gets all scaling_policies
in a region.
```sql
SELECT
region,
+metric_aggregation_type,
+policy_name,
+policy_type,
+predictive_scaling_configuration,
+scaling_adjustment,
+cooldown,
+step_adjustments,
+auto_scaling_group_name,
+min_adjustment_magnitude,
+target_tracking_configuration,
+estimated_instance_warmup,
+adjustment_type,
arn
FROM aws.autoscaling.scaling_policies
WHERE region = 'us-east-1';
```
-Gets all properties from a scaling_policy
.
+Gets all properties from an individual scaling_policy
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.autoscaling.scaling_policies
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new scaling_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/autoscaling/scaling_policies_list_only/index.md b/docs/aws-docs/providers/aws/autoscaling/scaling_policies_list_only/index.md
new file mode 100644
index 0000000000..b2fe74a0de
--- /dev/null
+++ b/docs/aws-docs/providers/aws/autoscaling/scaling_policies_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: scaling_policies_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scaling_policies_list_only
+ - autoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists scaling_policies
in a region or regions, for all properties use scaling_policies
+
+## Overview
+
+Name scaling_policies_list_only
+Type Resource
+Description The AWS::AutoScaling::ScalingPolicy resource specifies an Amazon EC2 Auto Scaling scaling policy so that the Auto Scaling group can scale the number of instances available for your application.
+Id
+
+
+## Fields
+Name Datatype Description string
The aggregation type for the CloudWatch metrics. The valid values are Minimum, Maximum, and Average. If the aggregation type is null, the value is treated as Average. Valid only if the policy type is StepScaling.
+string
+string
One of the following policy types: TargetTrackingScaling, StepScaling, SimpleScaling (default), PredictiveScaling
+object
A predictive scaling policy. Includes support for predefined metrics only.
+integer
The amount by which to scale, based on the specified adjustment type. A positive value adds to the current capacity while a negative number removes from the current capacity. For exact capacity, you must specify a positive value. Required if the policy type is SimpleScaling. (Not used with any other policy type.)
+string
The duration of the policy's cooldown period, in seconds. When a cooldown period is specified here, it overrides the default cooldown period defined for the Auto Scaling group.
+array
A set of adjustments that enable you to scale based on the size of the alarm breach. Required if the policy type is StepScaling. (Not used with any other policy type.)
+string
The name of the Auto Scaling group.
+integer
The minimum value to scale by when the adjustment type is PercentChangeInCapacity. For example, suppose that you create a step scaling policy to scale out an Auto Scaling group by 25 percent and you specify a MinAdjustmentMagnitude of 2. If the group has 4 instances and the scaling policy is performed, 25 percent of 4 is 1. However, because you specified a MinAdjustmentMagnitude of 2, Amazon EC2 Auto Scaling scales out the group by 2 instances.
+object
A target tracking scaling policy. Includes support for predefined or customized metrics.
+integer
The estimated time, in seconds, until a newly launched instance can contribute to the CloudWatch metrics. If not provided, the default is to use the value from the default cooldown period for the Auto Scaling group. Valid only if the policy type is TargetTrackingScaling or StepScaling.
+string
Specifies how the scaling adjustment is interpreted. The valid values are ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.
+string
The ARN of the AutoScaling scaling policy
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all scaling_policies
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.autoscaling.scaling_policies_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scaling_policies_list_only
resource, see scaling_policies
+
+
diff --git a/docs/aws-docs/providers/aws/autoscaling/scheduled_actions/index.md b/docs/aws-docs/providers/aws/autoscaling/scheduled_actions/index.md
index 7d8467cb7b..a867af7de3 100644
--- a/docs/aws-docs/providers/aws/autoscaling/scheduled_actions/index.md
+++ b/docs/aws-docs/providers/aws/autoscaling/scheduled_actions/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a scheduled_action
resource or li
-
+
SELECT
@@ -78,16 +78,23 @@ Creates, updates, deletes or gets a scheduled_action
resource or li
## `SELECT` examples
-List all scheduled_actions
in a region.
+Gets all scheduled_actions
in a region.
```sql
SELECT
region,
scheduled_action_name,
-auto_scaling_group_name
+min_size,
+recurrence,
+time_zone,
+end_time,
+auto_scaling_group_name,
+start_time,
+desired_capacity,
+max_size
FROM aws.autoscaling.scheduled_actions
WHERE region = 'us-east-1';
```
-Gets all properties from a scheduled_action
.
+Gets all properties from an individual scheduled_action
.
```sql
SELECT
region,
@@ -104,7 +111,6 @@ FROM aws.autoscaling.scheduled_actions
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new scheduled_action
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/autoscaling/scheduled_actions_list_only/index.md b/docs/aws-docs/providers/aws/autoscaling/scheduled_actions_list_only/index.md
new file mode 100644
index 0000000000..acdf17452b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/autoscaling/scheduled_actions_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: scheduled_actions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scheduled_actions_list_only
+ - autoscaling
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists scheduled_actions
in a region or regions, for all properties use scheduled_actions
+
+## Overview
+
+Name scheduled_actions_list_only
+Type Resource
+Description The AWS::AutoScaling::ScheduledAction resource specifies an Amazon EC2 Auto Scaling scheduled action so that the Auto Scaling group can change the number of instances available for your application in response to predictable load changes.
+Id
+
+
+## Fields
+Name Datatype Description string
Auto-generated unique identifier
+integer
The minimum size of the Auto Scaling group.
+string
The recurring schedule for the action, in Unix cron syntax format. When StartTime and EndTime are specified with Recurrence , they form the boundaries of when the recurring action starts and stops.
+string
The time zone for the cron expression.
+string
The latest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.
+string
The name of the Auto Scaling group.
+string
The earliest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.
+integer
The desired capacity is the initial capacity of the Auto Scaling group after the scheduled action runs and the capacity it attempts to maintain.
+integer
The minimum size of the Auto Scaling group.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all scheduled_actions
in a region.
+```sql
+SELECT
+region,
+scheduled_action_name,
+auto_scaling_group_name
+FROM aws.autoscaling.scheduled_actions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scheduled_actions_list_only
resource, see scheduled_actions
+
+
diff --git a/docs/aws-docs/providers/aws/autoscaling/warm_pools/index.md b/docs/aws-docs/providers/aws/autoscaling/warm_pools/index.md
index 68bf3d783f..d49955159f 100644
--- a/docs/aws-docs/providers/aws/autoscaling/warm_pools/index.md
+++ b/docs/aws-docs/providers/aws/autoscaling/warm_pools/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a warm_pool
resource or lists warm_pool
.
+Gets all properties from an individual warm_pool
.
```sql
SELECT
region,
@@ -83,7 +83,6 @@ FROM aws.autoscaling.warm_pools
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new warm_pool
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/b2bi/capabilities/index.md b/docs/aws-docs/providers/aws/b2bi/capabilities/index.md
index e5ce4ce7ce..2fff5b2ec5 100644
--- a/docs/aws-docs/providers/aws/b2bi/capabilities/index.md
+++ b/docs/aws-docs/providers/aws/b2bi/capabilities/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a capability
resource or lists
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a capability
resource or lists
## `SELECT` examples
-List all capabilities
in a region.
+Gets all capabilities
in a region.
```sql
SELECT
region,
-capability_id
+capability_arn,
+capability_id,
+configuration,
+created_at,
+instructions_documents,
+modified_at,
+name,
+tags,
+type
FROM aws.b2bi.capabilities
WHERE region = 'us-east-1';
```
-Gets all properties from a capability
.
+Gets all properties from an individual capability
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.b2bi.capabilities
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new capability
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/b2bi/capabilities_list_only/index.md b/docs/aws-docs/providers/aws/b2bi/capabilities_list_only/index.md
new file mode 100644
index 0000000000..76d3345f7d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/capabilities_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: capabilities_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - capabilities_list_only
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists capabilities
in a region or regions, for all properties use capabilities
+
+## Overview
+
+Name capabilities_list_only
+Type Resource
+Description Definition of AWS::B2BI::Capability Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+undefined
+string
+array
+string
+string
+array
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all capabilities
in a region.
+```sql
+SELECT
+region,
+capability_id
+FROM aws.b2bi.capabilities_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the capabilities_list_only
resource, see capabilities
+
+
diff --git a/docs/aws-docs/providers/aws/b2bi/capability_tags/index.md b/docs/aws-docs/providers/aws/b2bi/capability_tags/index.md
new file mode 100644
index 0000000000..f0bf014615
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/capability_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: capability_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - capability_tags
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for capabilities
in a region
+
+## Overview
+
+Name capability_tags
+Type Resource
+Description Definition of AWS::B2BI::Capability Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+undefined
+string
+array
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all capabilities
in a region.
+```sql
+SELECT
+region,
+capability_arn,
+capability_id,
+configuration,
+created_at,
+instructions_documents,
+modified_at,
+name,
+type,
+tag_key,
+tag_value
+FROM aws.b2bi.capability_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the capability_tags
resource, see capabilities
+
+
diff --git a/docs/aws-docs/providers/aws/b2bi/index.md b/docs/aws-docs/providers/aws/b2bi/index.md
index be70ef6454..895d111979 100644
--- a/docs/aws-docs/providers/aws/b2bi/index.md
+++ b/docs/aws-docs/providers/aws/b2bi/index.md
@@ -20,7 +20,7 @@ The b2bi service documentation.
-total resources: 4
+total resources: 12
@@ -30,10 +30,18 @@ The b2bi service documentation.
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/b2bi/partnership_tags/index.md b/docs/aws-docs/providers/aws/b2bi/partnership_tags/index.md
new file mode 100644
index 0000000000..78dd59a52c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/partnership_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: partnership_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - partnership_tags
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for partnerships
in a region
+
+## Overview
+
+Name partnership_tags
+Type Resource
+Description Definition of AWS::B2BI::Partnership Resource Type
+Id
+
+
+## Fields
+Name Datatype Description array
+string
+string
+string
+string
+string
+string
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all partnerships
in a region.
+```sql
+SELECT
+region,
+capabilities,
+created_at,
+email,
+modified_at,
+name,
+partnership_arn,
+partnership_id,
+phone,
+profile_id,
+trading_partner_id,
+tag_key,
+tag_value
+FROM aws.b2bi.partnership_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the partnership_tags
resource, see partnerships
+
+
diff --git a/docs/aws-docs/providers/aws/b2bi/partnerships/index.md b/docs/aws-docs/providers/aws/b2bi/partnerships/index.md
index 111bd12682..5f26283444 100644
--- a/docs/aws-docs/providers/aws/b2bi/partnerships/index.md
+++ b/docs/aws-docs/providers/aws/b2bi/partnerships/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a partnership
resource or lists <
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a partnership
resource or lists <
## `SELECT` examples
-List all partnerships
in a region.
+Gets all partnerships
in a region.
```sql
SELECT
region,
-partnership_id
+capabilities,
+created_at,
+email,
+modified_at,
+name,
+partnership_arn,
+partnership_id,
+phone,
+profile_id,
+tags,
+trading_partner_id
FROM aws.b2bi.partnerships
WHERE region = 'us-east-1';
```
-Gets all properties from a partnership
.
+Gets all properties from an individual partnership
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.b2bi.partnerships
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new partnership
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/b2bi/partnerships_list_only/index.md b/docs/aws-docs/providers/aws/b2bi/partnerships_list_only/index.md
new file mode 100644
index 0000000000..418bb0f052
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/partnerships_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: partnerships_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - partnerships_list_only
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists partnerships
in a region or regions, for all properties use partnerships
+
+## Overview
+
+Name partnerships_list_only
+Type Resource
+Description Definition of AWS::B2BI::Partnership Resource Type
+Id
+
+
+## Fields
+Name Datatype Description array
+string
+string
+string
+string
+string
+string
+string
+string
+array
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all partnerships
in a region.
+```sql
+SELECT
+region,
+partnership_id
+FROM aws.b2bi.partnerships_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the partnerships_list_only
resource, see partnerships
+
+
diff --git a/docs/aws-docs/providers/aws/b2bi/profile_tags/index.md b/docs/aws-docs/providers/aws/b2bi/profile_tags/index.md
new file mode 100644
index 0000000000..7d01bd7346
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/profile_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: profile_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - profile_tags
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for profiles
in a region
+
+## Overview
+
+Name profile_tags
+Type Resource
+Description Definition of AWS::B2BI::Profile Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+string
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all profiles
in a region.
+```sql
+SELECT
+region,
+business_name,
+created_at,
+email,
+log_group_name,
+logging,
+modified_at,
+name,
+phone,
+profile_arn,
+profile_id,
+tag_key,
+tag_value
+FROM aws.b2bi.profile_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the profile_tags
resource, see profiles
+
+
diff --git a/docs/aws-docs/providers/aws/b2bi/profiles/index.md b/docs/aws-docs/providers/aws/b2bi/profiles/index.md
index b2c6f62f25..09207cd167 100644
--- a/docs/aws-docs/providers/aws/b2bi/profiles/index.md
+++ b/docs/aws-docs/providers/aws/b2bi/profiles/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a profile
resource or lists
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a profile
resource or lists
## `SELECT` examples
-List all profiles
in a region.
+Gets all profiles
in a region.
```sql
SELECT
region,
-profile_id
+business_name,
+created_at,
+email,
+log_group_name,
+logging,
+modified_at,
+name,
+phone,
+profile_arn,
+profile_id,
+tags
FROM aws.b2bi.profiles
WHERE region = 'us-east-1';
```
-Gets all properties from a profile
.
+Gets all properties from an individual profile
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.b2bi.profiles
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new profile
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/b2bi/profiles_list_only/index.md b/docs/aws-docs/providers/aws/b2bi/profiles_list_only/index.md
new file mode 100644
index 0000000000..ad4ac48363
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/profiles_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: profiles_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - profiles_list_only
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists profiles
in a region or regions, for all properties use profiles
+
+## Overview
+
+Name profiles_list_only
+Type Resource
+Description Definition of AWS::B2BI::Profile Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+string
+string
+string
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all profiles
in a region.
+```sql
+SELECT
+region,
+profile_id
+FROM aws.b2bi.profiles_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the profiles_list_only
resource, see profiles
+
+
diff --git a/docs/aws-docs/providers/aws/b2bi/transformer_tags/index.md b/docs/aws-docs/providers/aws/b2bi/transformer_tags/index.md
new file mode 100644
index 0000000000..cc9ceebe15
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/transformer_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: transformer_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - transformer_tags
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for transformers
in a region
+
+## Overview
+
+Name transformer_tags
+Type Resource
+Description Definition of AWS::B2BI::Transformer Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+undefined
+string
+string
+string
+string
+string
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all transformers
in a region.
+```sql
+SELECT
+region,
+created_at,
+edi_type,
+file_format,
+mapping_template,
+modified_at,
+name,
+sample_document,
+status,
+transformer_arn,
+transformer_id,
+tag_key,
+tag_value
+FROM aws.b2bi.transformer_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the transformer_tags
resource, see transformers
+
+
diff --git a/docs/aws-docs/providers/aws/b2bi/transformers/index.md b/docs/aws-docs/providers/aws/b2bi/transformers/index.md
index ba0037f422..69cc24ce8c 100644
--- a/docs/aws-docs/providers/aws/b2bi/transformers/index.md
+++ b/docs/aws-docs/providers/aws/b2bi/transformers/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a transformer
resource or lists <
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a transformer
resource or lists <
## `SELECT` examples
-List all transformers
in a region.
+Gets all transformers
in a region.
```sql
SELECT
region,
+created_at,
+edi_type,
+file_format,
+mapping_template,
+modified_at,
+name,
+sample_document,
+status,
+tags,
+transformer_arn,
transformer_id
FROM aws.b2bi.transformers
WHERE region = 'us-east-1';
```
-Gets all properties from a transformer
.
+Gets all properties from an individual transformer
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.b2bi.transformers
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new transformer
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/b2bi/transformers_list_only/index.md b/docs/aws-docs/providers/aws/b2bi/transformers_list_only/index.md
new file mode 100644
index 0000000000..122bd660f9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/b2bi/transformers_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: transformers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - transformers_list_only
+ - b2bi
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists transformers
in a region or regions, for all properties use transformers
+
+## Overview
+
+Name transformers_list_only
+Type Resource
+Description Definition of AWS::B2BI::Transformer Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+undefined
+string
+string
+string
+string
+string
+string
+array
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all transformers
in a region.
+```sql
+SELECT
+region,
+transformer_id
+FROM aws.b2bi.transformers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the transformers_list_only
resource, see transformers
+
+
diff --git a/docs/aws-docs/providers/aws/backup/backup_plans/index.md b/docs/aws-docs/providers/aws/backup/backup_plans/index.md
index f39a7564ca..cb82c576cf 100644
--- a/docs/aws-docs/providers/aws/backup/backup_plans/index.md
+++ b/docs/aws-docs/providers/aws/backup/backup_plans/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a backup_plan
resource or lists <
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a backup_plan
resource or lists <
## `SELECT` examples
-List all backup_plans
in a region.
+Gets all backup_plans
in a region.
```sql
SELECT
region,
-backup_plan_id
+backup_plan,
+backup_plan_tags,
+backup_plan_arn,
+backup_plan_id,
+version_id
FROM aws.backup.backup_plans
WHERE region = 'us-east-1';
```
-Gets all properties from a backup_plan
.
+Gets all properties from an individual backup_plan
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.backup.backup_plans
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new backup_plan
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backup/backup_plans_list_only/index.md b/docs/aws-docs/providers/aws/backup/backup_plans_list_only/index.md
new file mode 100644
index 0000000000..fe2aaceb43
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/backup_plans_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: backup_plans_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - backup_plans_list_only
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists backup_plans
in a region or regions, for all properties use backup_plans
+
+## Overview
+
+Name backup_plans_list_only
+Type Resource
+Description Resource Type definition for AWS::Backup::BackupPlan
+Id
+
+
+## Fields
+Name Datatype Description object
+object
+string
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all backup_plans
in a region.
+```sql
+SELECT
+region,
+backup_plan_id
+FROM aws.backup.backup_plans_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the backup_plans_list_only
resource, see backup_plans
+
+
diff --git a/docs/aws-docs/providers/aws/backup/backup_selections/index.md b/docs/aws-docs/providers/aws/backup/backup_selections/index.md
index 636c102d7c..2329b22602 100644
--- a/docs/aws-docs/providers/aws/backup/backup_selections/index.md
+++ b/docs/aws-docs/providers/aws/backup/backup_selections/index.md
@@ -56,7 +56,7 @@ Creates, updates, deletes or gets a backup_selection
resource or li
-
+
SELECT
@@ -68,15 +68,18 @@ Creates, updates, deletes or gets a backup_selection
resource or li
## `SELECT` examples
-List all backup_selections
in a region.
+Gets all backup_selections
in a region.
```sql
SELECT
region,
-id
+id,
+backup_plan_id,
+backup_selection,
+selection_id
FROM aws.backup.backup_selections
WHERE region = 'us-east-1';
```
-Gets all properties from a backup_selection
.
+Gets all properties from an individual backup_selection
.
```sql
SELECT
region,
@@ -88,7 +91,6 @@ FROM aws.backup.backup_selections
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new backup_selection
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backup/backup_selections_list_only/index.md b/docs/aws-docs/providers/aws/backup/backup_selections_list_only/index.md
new file mode 100644
index 0000000000..6505bd3929
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/backup_selections_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: backup_selections_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - backup_selections_list_only
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists backup_selections
in a region or regions, for all properties use backup_selections
+
+## Overview
+
+Name backup_selections_list_only
+Type Resource
+Description Resource Type definition for AWS::Backup::BackupSelection
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all backup_selections
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.backup.backup_selections_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the backup_selections_list_only
resource, see backup_selections
+
+
diff --git a/docs/aws-docs/providers/aws/backup/backup_vaults/index.md b/docs/aws-docs/providers/aws/backup/backup_vaults/index.md
index e17ceef2c4..5e4e73eafc 100644
--- a/docs/aws-docs/providers/aws/backup/backup_vaults/index.md
+++ b/docs/aws-docs/providers/aws/backup/backup_vaults/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a backup_vault
resource or lists
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a backup_vault
resource or lists
## `SELECT` examples
-List all backup_vaults
in a region.
+Gets all backup_vaults
in a region.
```sql
SELECT
region,
-backup_vault_name
+access_policy,
+backup_vault_name,
+backup_vault_tags,
+encryption_key_arn,
+notifications,
+lock_configuration,
+backup_vault_arn
FROM aws.backup.backup_vaults
WHERE region = 'us-east-1';
```
-Gets all properties from a backup_vault
.
+Gets all properties from an individual backup_vault
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.backup.backup_vaults
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new backup_vault
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backup/backup_vaults_list_only/index.md b/docs/aws-docs/providers/aws/backup/backup_vaults_list_only/index.md
new file mode 100644
index 0000000000..7d27d9c6f8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/backup_vaults_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: backup_vaults_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - backup_vaults_list_only
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists backup_vaults
in a region or regions, for all properties use backup_vaults
+
+## Overview
+
+Name backup_vaults_list_only
+Type Resource
+Description Resource Type definition for AWS::Backup::BackupVault
+Id
+
+
+## Fields
+Name Datatype Description object
+string
+object
+string
+object
+object
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all backup_vaults
in a region.
+```sql
+SELECT
+region,
+backup_vault_name
+FROM aws.backup.backup_vaults_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the backup_vaults_list_only
resource, see backup_vaults
+
+
diff --git a/docs/aws-docs/providers/aws/backup/frameworks/index.md b/docs/aws-docs/providers/aws/backup/frameworks/index.md
index bc4f3f14b7..a31253bdee 100644
--- a/docs/aws-docs/providers/aws/backup/frameworks/index.md
+++ b/docs/aws-docs/providers/aws/backup/frameworks/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a framework
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a framework
resource or lists
## `SELECT` examples
-List all frameworks
in a region.
+Gets all frameworks
in a region.
```sql
SELECT
region,
-framework_arn
+framework_name,
+framework_description,
+framework_arn,
+deployment_status,
+creation_time,
+framework_controls,
+framework_status,
+framework_tags
FROM aws.backup.frameworks
WHERE region = 'us-east-1';
```
-Gets all properties from a framework
.
+Gets all properties from an individual framework
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.backup.frameworks
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new framework
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backup/frameworks_list_only/index.md b/docs/aws-docs/providers/aws/backup/frameworks_list_only/index.md
new file mode 100644
index 0000000000..f1022856f1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/frameworks_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: frameworks_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - frameworks_list_only
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists frameworks
in a region or regions, for all properties use frameworks
+
+## Overview
+
+Name frameworks_list_only
+Type Resource
+Description Contains detailed information about a framework. Frameworks contain controls, which evaluate and report on your backup events and resources. Frameworks generate daily compliance results.
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of a framework. This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
+string
An optional description of the framework with a maximum 1,024 characters.
+string
An Amazon Resource Name (ARN) that uniquely identifies Framework as a resource
+string
The deployment status of a framework. The statuses are: `CREATE_IN_PROGRESS | UPDATE_IN_PROGRESS | DELETE_IN_PROGRESS | COMPLETED | FAILED`
+string
The date and time that a framework is created, in ISO 8601 representation. The value of CreationTime is accurate to milliseconds. For example, 2020-07-10T15:00:00.000-08:00 represents the 10th of July 2020 at 3:00 PM 8 hours behind UTC.
+array
Contains detailed information about all of the controls of a framework. Each framework must contain at least one control.
+string
A framework consists of one or more controls. Each control governs a resource, such as backup plans, backup selections, backup vaults, or recovery points. You can also turn AWS Config recording on or off for each resource. The statuses are:
`ACTIVE` when recording is turned on for all resources governed by the framework.
`PARTIALLY_ACTIVE` when recording is turned off for at least one resource governed by the framework.
`INACTIVE` when recording is turned off for all resources governed by the framework.
`UNAVAILABLE` when AWS Backup is unable to validate recording status at this time.
+array
Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all frameworks
in a region.
+```sql
+SELECT
+region,
+framework_arn
+FROM aws.backup.frameworks_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the frameworks_list_only
resource, see frameworks
+
+
diff --git a/docs/aws-docs/providers/aws/backup/index.md b/docs/aws-docs/providers/aws/backup/index.md
index e4cfdba3f4..2c71c0a820 100644
--- a/docs/aws-docs/providers/aws/backup/index.md
+++ b/docs/aws-docs/providers/aws/backup/index.md
@@ -20,7 +20,7 @@ The backup service documentation.
-total resources: 7
+total resources: 15
@@ -30,13 +30,21 @@ The backup service documentation.
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/backup/report_plans/index.md b/docs/aws-docs/providers/aws/backup/report_plans/index.md
index f1d586886c..372e30c5f6 100644
--- a/docs/aws-docs/providers/aws/backup/report_plans/index.md
+++ b/docs/aws-docs/providers/aws/backup/report_plans/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a report_plan
resource or lists <
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a report_plan
resource or lists <
## `SELECT` examples
-List all report_plans
in a region.
+Gets all report_plans
in a region.
```sql
SELECT
region,
-report_plan_arn
+report_plan_name,
+report_plan_arn,
+report_plan_description,
+report_plan_tags,
+report_delivery_channel,
+report_setting
FROM aws.backup.report_plans
WHERE region = 'us-east-1';
```
-Gets all properties from a report_plan
.
+Gets all properties from an individual report_plan
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.backup.report_plans
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new report_plan
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backup/report_plans_list_only/index.md b/docs/aws-docs/providers/aws/backup/report_plans_list_only/index.md
new file mode 100644
index 0000000000..ac713b1842
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/report_plans_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: report_plans_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - report_plans_list_only
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists report_plans
in a region or regions, for all properties use report_plans
+
+## Overview
+
+Name report_plans_list_only
+Type Resource
+Description Contains detailed information about a report plan in AWS Backup Audit Manager.
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the report plan. The name must be between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
+string
An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
+string
An optional description of the report plan with a maximum of 1,024 characters.
+array
Metadata that you can assign to help organize the report plans that you create. Each tag is a key-value pair.
+object
A structure that contains information about where and how to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
+object
Identifies the report template for the report. Reports are built using a report template.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all report_plans
in a region.
+```sql
+SELECT
+region,
+report_plan_arn
+FROM aws.backup.report_plans_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the report_plans_list_only
resource, see report_plans
+
+
diff --git a/docs/aws-docs/providers/aws/backup/restore_testing_plan_tags/index.md b/docs/aws-docs/providers/aws/backup/restore_testing_plan_tags/index.md
new file mode 100644
index 0000000000..55987030f5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/restore_testing_plan_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: restore_testing_plan_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - restore_testing_plan_tags
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for restore_testing_plans
in a region
+
+## Overview
+
+Name restore_testing_plan_tags
+Type Resource
+Description Definition of AWS::Backup::RestoreTestingPlan Resource Type
+Id
+
+
+## Fields
+Name Datatype Description object
+string
+string
+string
+string
+integer
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all restore_testing_plans
in a region.
+```sql
+SELECT
+region,
+recovery_point_selection,
+restore_testing_plan_arn,
+restore_testing_plan_name,
+schedule_expression,
+schedule_expression_timezone,
+start_window_hours,
+tag_key,
+tag_value
+FROM aws.backup.restore_testing_plan_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the restore_testing_plan_tags
resource, see restore_testing_plans
+
+
diff --git a/docs/aws-docs/providers/aws/backup/restore_testing_plans/index.md b/docs/aws-docs/providers/aws/backup/restore_testing_plans/index.md
index 6e69e0f16f..4f568573af 100644
--- a/docs/aws-docs/providers/aws/backup/restore_testing_plans/index.md
+++ b/docs/aws-docs/providers/aws/backup/restore_testing_plans/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a restore_testing_plan
resource o
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a restore_testing_plan
resource o
## `SELECT` examples
-List all restore_testing_plans
in a region.
+Gets all restore_testing_plans
in a region.
```sql
SELECT
region,
-restore_testing_plan_name
+recovery_point_selection,
+restore_testing_plan_arn,
+restore_testing_plan_name,
+schedule_expression,
+schedule_expression_timezone,
+start_window_hours,
+tags
FROM aws.backup.restore_testing_plans
WHERE region = 'us-east-1';
```
-Gets all properties from a restore_testing_plan
.
+Gets all properties from an individual restore_testing_plan
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.backup.restore_testing_plans
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new restore_testing_plan
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backup/restore_testing_plans_list_only/index.md b/docs/aws-docs/providers/aws/backup/restore_testing_plans_list_only/index.md
new file mode 100644
index 0000000000..c82102641e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/restore_testing_plans_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: restore_testing_plans_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - restore_testing_plans_list_only
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists restore_testing_plans
in a region or regions, for all properties use restore_testing_plans
+
+## Overview
+
+Name restore_testing_plans_list_only
+Type Resource
+Description Definition of AWS::Backup::RestoreTestingPlan Resource Type
+Id
+
+
+## Fields
+Name Datatype Description object
+string
+string
+string
+string
+integer
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all restore_testing_plans
in a region.
+```sql
+SELECT
+region,
+restore_testing_plan_name
+FROM aws.backup.restore_testing_plans_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the restore_testing_plans_list_only
resource, see restore_testing_plans
+
+
diff --git a/docs/aws-docs/providers/aws/backup/restore_testing_selections/index.md b/docs/aws-docs/providers/aws/backup/restore_testing_selections/index.md
index 182a0c6a92..e352285746 100644
--- a/docs/aws-docs/providers/aws/backup/restore_testing_selections/index.md
+++ b/docs/aws-docs/providers/aws/backup/restore_testing_selections/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a restore_testing_selection
resou
-
+
SELECT
@@ -77,16 +77,22 @@ Creates, updates, deletes or gets a restore_testing_selection
resou
## `SELECT` examples
-List all restore_testing_selections
in a region.
+Gets all restore_testing_selections
in a region.
```sql
SELECT
region,
+iam_role_arn,
+protected_resource_arns,
+protected_resource_conditions,
+protected_resource_type,
+restore_metadata_overrides,
restore_testing_plan_name,
-restore_testing_selection_name
+restore_testing_selection_name,
+validation_window_hours
FROM aws.backup.restore_testing_selections
WHERE region = 'us-east-1';
```
-Gets all properties from a restore_testing_selection
.
+Gets all properties from an individual restore_testing_selection
.
```sql
SELECT
region,
@@ -102,7 +108,6 @@ FROM aws.backup.restore_testing_selections
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new restore_testing_selection
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backup/restore_testing_selections_list_only/index.md b/docs/aws-docs/providers/aws/backup/restore_testing_selections_list_only/index.md
new file mode 100644
index 0000000000..e9d9c363d1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backup/restore_testing_selections_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: restore_testing_selections_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - restore_testing_selections_list_only
+ - backup
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists restore_testing_selections
in a region or regions, for all properties use restore_testing_selections
+
+## Overview
+
+Name restore_testing_selections_list_only
+Type Resource
+Description Resource Type definition for AWS::Backup::RestoreTestingSelection
+Id
+
+
+## Fields
+Name Datatype Description string
+array
+object
+string
+object
+string
+string
+integer
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all restore_testing_selections
in a region.
+```sql
+SELECT
+region,
+restore_testing_plan_name,
+restore_testing_selection_name
+FROM aws.backup.restore_testing_selections_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the restore_testing_selections_list_only
resource, see restore_testing_selections
+
+
diff --git a/docs/aws-docs/providers/aws/backupgateway/hypervisor_tags/index.md b/docs/aws-docs/providers/aws/backupgateway/hypervisor_tags/index.md
new file mode 100644
index 0000000000..3d55438b52
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backupgateway/hypervisor_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: hypervisor_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hypervisor_tags
+ - backupgateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for hypervisors
in a region
+
+## Overview
+
+Name hypervisor_tags
+Type Resource
+Description Definition of AWS::BackupGateway::Hypervisor Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all hypervisors
in a region.
+```sql
+SELECT
+region,
+host,
+hypervisor_arn,
+kms_key_arn,
+log_group_arn,
+name,
+password,
+username,
+tag_key,
+tag_value
+FROM aws.backupgateway.hypervisor_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hypervisor_tags
resource, see hypervisors
+
+
diff --git a/docs/aws-docs/providers/aws/backupgateway/hypervisors/index.md b/docs/aws-docs/providers/aws/backupgateway/hypervisors/index.md
index 1762fa6c04..2f228e56f6 100644
--- a/docs/aws-docs/providers/aws/backupgateway/hypervisors/index.md
+++ b/docs/aws-docs/providers/aws/backupgateway/hypervisors/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a hypervisor
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a hypervisor
resource or lists
## `SELECT` examples
-List all hypervisors
in a region.
+Gets all hypervisors
in a region.
```sql
SELECT
region,
-hypervisor_arn
+host,
+hypervisor_arn,
+kms_key_arn,
+log_group_arn,
+name,
+password,
+tags,
+username
FROM aws.backupgateway.hypervisors
WHERE region = 'us-east-1';
```
-Gets all properties from a hypervisor
.
+Gets all properties from an individual hypervisor
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.backupgateway.hypervisors
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new hypervisor
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/backupgateway/hypervisors_list_only/index.md b/docs/aws-docs/providers/aws/backupgateway/hypervisors_list_only/index.md
new file mode 100644
index 0000000000..4c4c523f99
--- /dev/null
+++ b/docs/aws-docs/providers/aws/backupgateway/hypervisors_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: hypervisors_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hypervisors_list_only
+ - backupgateway
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists hypervisors
in a region or regions, for all properties use hypervisors
+
+## Overview
+
+Name hypervisors_list_only
+Type Resource
+Description Definition of AWS::BackupGateway::Hypervisor Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+array
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all hypervisors
in a region.
+```sql
+SELECT
+region,
+hypervisor_arn
+FROM aws.backupgateway.hypervisors_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hypervisors_list_only
resource, see hypervisors
+
+
diff --git a/docs/aws-docs/providers/aws/backupgateway/index.md b/docs/aws-docs/providers/aws/backupgateway/index.md
index 7089f02781..41592c7248 100644
--- a/docs/aws-docs/providers/aws/backupgateway/index.md
+++ b/docs/aws-docs/providers/aws/backupgateway/index.md
@@ -20,7 +20,7 @@ The backupgateway service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The backupgateway service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/batch/compute_environment_tags/index.md b/docs/aws-docs/providers/aws/batch/compute_environment_tags/index.md
new file mode 100644
index 0000000000..ce9f60b0a1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/batch/compute_environment_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: compute_environment_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - compute_environment_tags
+ - batch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for compute_environments
in a region
+
+## Overview
+
+Name compute_environment_tags
+Type Resource
+Description Resource Type definition for AWS::Batch::ComputeEnvironment
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+boolean
+string
+string
+string
+object
+integer
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all compute_environments
in a region.
+```sql
+SELECT
+region,
+compute_environment_arn,
+compute_environment_name,
+compute_resources,
+replace_compute_environment,
+service_role,
+state,
+type,
+update_policy,
+unmanagedv_cpus,
+eks_configuration,
+tag_key,
+tag_value
+FROM aws.batch.compute_environment_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the compute_environment_tags
resource, see compute_environments
+
+
diff --git a/docs/aws-docs/providers/aws/batch/compute_environments/index.md b/docs/aws-docs/providers/aws/batch/compute_environments/index.md
index c952f8e45b..83058e8a65 100644
--- a/docs/aws-docs/providers/aws/batch/compute_environments/index.md
+++ b/docs/aws-docs/providers/aws/batch/compute_environments/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a compute_environment
resource or
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a compute_environment
resource or
## `SELECT` examples
-List all compute_environments
in a region.
+Gets all compute_environments
in a region.
```sql
SELECT
region,
-compute_environment_arn
+compute_environment_arn,
+compute_environment_name,
+compute_resources,
+replace_compute_environment,
+service_role,
+state,
+tags,
+type,
+update_policy,
+unmanagedv_cpus,
+eks_configuration
FROM aws.batch.compute_environments
WHERE region = 'us-east-1';
```
-Gets all properties from a compute_environment
.
+Gets all properties from an individual compute_environment
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.batch.compute_environments
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new compute_environment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/batch/compute_environments_list_only/index.md b/docs/aws-docs/providers/aws/batch/compute_environments_list_only/index.md
new file mode 100644
index 0000000000..7e4bf9d573
--- /dev/null
+++ b/docs/aws-docs/providers/aws/batch/compute_environments_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: compute_environments_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - compute_environments_list_only
+ - batch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists compute_environments
in a region or regions, for all properties use compute_environments
+
+## Overview
+
+Name compute_environments_list_only
+Type Resource
+Description Resource Type definition for AWS::Batch::ComputeEnvironment
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+boolean
+string
+string
+object
A key-value pair to associate with a resource.
+string
+object
+integer
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all compute_environments
in a region.
+```sql
+SELECT
+region,
+compute_environment_arn
+FROM aws.batch.compute_environments_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the compute_environments_list_only
resource, see compute_environments
+
+
diff --git a/docs/aws-docs/providers/aws/batch/index.md b/docs/aws-docs/providers/aws/batch/index.md
index 9e2db87345..5ca9ef29b4 100644
--- a/docs/aws-docs/providers/aws/batch/index.md
+++ b/docs/aws-docs/providers/aws/batch/index.md
@@ -20,7 +20,7 @@ The batch service documentation.
-total resources: 3
+total resources: 9
@@ -29,10 +29,16 @@ The batch service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/batch/job_queue_tags/index.md b/docs/aws-docs/providers/aws/batch/job_queue_tags/index.md
new file mode 100644
index 0000000000..05826c20a1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/batch/job_queue_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: job_queue_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - job_queue_tags
+ - batch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for job_queues
in a region
+
+## Overview
+
+Name job_queue_tags
+Type Resource
+Description Resource Type definition for AWS::Batch::JobQueue
+Id
+
+
+## Fields
+Name Datatype Description string
+string
ARN of the Scheduling Policy.
+array
+array
+integer
+string
+string
ARN of the Scheduling Policy.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all job_queues
in a region.
+```sql
+SELECT
+region,
+job_queue_name,
+job_queue_arn,
+compute_environment_order,
+job_state_time_limit_actions,
+priority,
+state,
+scheduling_policy_arn,
+tag_key,
+tag_value
+FROM aws.batch.job_queue_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the job_queue_tags
resource, see job_queues
+
+
diff --git a/docs/aws-docs/providers/aws/batch/job_queues/index.md b/docs/aws-docs/providers/aws/batch/job_queues/index.md
index ff0ee49dcf..0b5e5f88fd 100644
--- a/docs/aws-docs/providers/aws/batch/job_queues/index.md
+++ b/docs/aws-docs/providers/aws/batch/job_queues/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a job_queue
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a job_queue
resource or lists
## `SELECT` examples
-List all job_queues
in a region.
+Gets all job_queues
in a region.
```sql
SELECT
region,
-job_queue_arn
+job_queue_name,
+job_queue_arn,
+compute_environment_order,
+job_state_time_limit_actions,
+priority,
+state,
+scheduling_policy_arn,
+tags
FROM aws.batch.job_queues
WHERE region = 'us-east-1';
```
-Gets all properties from a job_queue
.
+Gets all properties from an individual job_queue
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.batch.job_queues
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new job_queue
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/batch/job_queues_list_only/index.md b/docs/aws-docs/providers/aws/batch/job_queues_list_only/index.md
new file mode 100644
index 0000000000..4b2a33e1dd
--- /dev/null
+++ b/docs/aws-docs/providers/aws/batch/job_queues_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: job_queues_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - job_queues_list_only
+ - batch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists job_queues
in a region or regions, for all properties use job_queues
+
+## Overview
+
+Name job_queues_list_only
+Type Resource
+Description Resource Type definition for AWS::Batch::JobQueue
+Id
+
+
+## Fields
+Name Datatype Description string
+string
ARN of the Scheduling Policy.
+array
+array
+integer
+string
+string
ARN of the Scheduling Policy.
+object
A key-value pair to associate with a resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all job_queues
in a region.
+```sql
+SELECT
+region,
+job_queue_arn
+FROM aws.batch.job_queues_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the job_queues_list_only
resource, see job_queues
+
+
diff --git a/docs/aws-docs/providers/aws/batch/scheduling_policies/index.md b/docs/aws-docs/providers/aws/batch/scheduling_policies/index.md
index 23c605bd13..c7f5a1da90 100644
--- a/docs/aws-docs/providers/aws/batch/scheduling_policies/index.md
+++ b/docs/aws-docs/providers/aws/batch/scheduling_policies/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a scheduling_policy
resource or l
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets a scheduling_policy
resource or l
## `SELECT` examples
-List all scheduling_policies
in a region.
+Gets all scheduling_policies
in a region.
```sql
SELECT
region,
-arn
+name,
+arn,
+fairshare_policy,
+tags
FROM aws.batch.scheduling_policies
WHERE region = 'us-east-1';
```
-Gets all properties from a scheduling_policy
.
+Gets all properties from an individual scheduling_policy
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.batch.scheduling_policies
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new scheduling_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/batch/scheduling_policies_list_only/index.md b/docs/aws-docs/providers/aws/batch/scheduling_policies_list_only/index.md
new file mode 100644
index 0000000000..e6527a0964
--- /dev/null
+++ b/docs/aws-docs/providers/aws/batch/scheduling_policies_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: scheduling_policies_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scheduling_policies_list_only
+ - batch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists scheduling_policies
in a region or regions, for all properties use scheduling_policies
+
+## Overview
+
+Name scheduling_policies_list_only
+Type Resource
+Description Resource Type schema for AWS::Batch::SchedulingPolicy
+Id
+
+
+## Fields
+Name Datatype Description string
Name of Scheduling Policy.
+string
ARN of the Scheduling Policy.
+object
Fair Share Policy for the Job Queue.
+object
A key-value pair to associate with a resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all scheduling_policies
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.batch.scheduling_policies_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scheduling_policies_list_only
resource, see scheduling_policies
+
+
diff --git a/docs/aws-docs/providers/aws/batch/scheduling_policy_tags/index.md b/docs/aws-docs/providers/aws/batch/scheduling_policy_tags/index.md
new file mode 100644
index 0000000000..e2160a69c1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/batch/scheduling_policy_tags/index.md
@@ -0,0 +1,75 @@
+---
+title: scheduling_policy_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - scheduling_policy_tags
+ - batch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for scheduling_policies
in a region
+
+## Overview
+
+Name scheduling_policy_tags
+Type Resource
+Description Resource Type schema for AWS::Batch::SchedulingPolicy
+Id
+
+
+## Fields
+Name Datatype Description string
Name of Scheduling Policy.
+string
ARN of the Scheduling Policy.
+object
Fair Share Policy for the Job Queue.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all scheduling_policies
in a region.
+```sql
+SELECT
+region,
+name,
+arn,
+fairshare_policy,
+tag_key,
+tag_value
+FROM aws.batch.scheduling_policy_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the scheduling_policy_tags
resource, see scheduling_policies
+
+
diff --git a/docs/aws-docs/providers/aws/bcmdataexports/export_tags/index.md b/docs/aws-docs/providers/aws/bcmdataexports/export_tags/index.md
new file mode 100644
index 0000000000..35e62c2e58
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bcmdataexports/export_tags/index.md
@@ -0,0 +1,73 @@
+---
+title: export_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - export_tags
+ - bcmdataexports
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for exports
in a region
+
+## Overview
+
+Name export_tags
+Type Resource
+Description Definition of AWS::BCMDataExports::Export Resource Type
+Id
+
+
+## Fields
+Name Datatype Description object
Definition of AWS::BCMDataExports::Export Resource Type
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all exports
in a region.
+```sql
+SELECT
+region,
+export,
+export_arn,
+tag_key,
+tag_value
+FROM aws.bcmdataexports.export_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the export_tags
resource, see exports
+
+
diff --git a/docs/aws-docs/providers/aws/bcmdataexports/exports/index.md b/docs/aws-docs/providers/aws/bcmdataexports/exports/index.md
index c41895fa3e..8ceb64742b 100644
--- a/docs/aws-docs/providers/aws/bcmdataexports/exports/index.md
+++ b/docs/aws-docs/providers/aws/bcmdataexports/exports/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets an export
resource or lists
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets an export
resource or lists
## `SELECT` examples
-List all exports
in a region.
+Gets all exports
in a region.
```sql
SELECT
region,
-export_arn
+export,
+export_arn,
+tags
FROM aws.bcmdataexports.exports
WHERE region = 'us-east-1';
```
-Gets all properties from an export
.
+Gets all properties from an individual export
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.bcmdataexports.exports
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new export
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/bcmdataexports/exports_list_only/index.md b/docs/aws-docs/providers/aws/bcmdataexports/exports_list_only/index.md
new file mode 100644
index 0000000000..13e0222f91
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bcmdataexports/exports_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: exports_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - exports_list_only
+ - bcmdataexports
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists exports
in a region or regions, for all properties use exports
+
+## Overview
+
+Name exports_list_only
+Type Resource
+Description Definition of AWS::BCMDataExports::Export Resource Type
+Id
+
+
+## Fields
+Name Datatype Description object
Definition of AWS::BCMDataExports::Export Resource Type
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all exports
in a region.
+```sql
+SELECT
+region,
+export_arn
+FROM aws.bcmdataexports.exports_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the exports_list_only
resource, see exports
+
+
diff --git a/docs/aws-docs/providers/aws/bcmdataexports/index.md b/docs/aws-docs/providers/aws/bcmdataexports/index.md
index 752935b782..91c15e3670 100644
--- a/docs/aws-docs/providers/aws/bcmdataexports/index.md
+++ b/docs/aws-docs/providers/aws/bcmdataexports/index.md
@@ -20,7 +20,7 @@ The bcmdataexports service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The bcmdataexports service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/bedrock/agent_alias_tags/index.md b/docs/aws-docs/providers/aws/bedrock/agent_alias_tags/index.md
new file mode 100644
index 0000000000..54934a6310
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/agent_alias_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: agent_alias_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - agent_alias_tags
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for agent_aliases
in a region
+
+## Overview
+
+Name agent_alias_tags
+Type Resource
+Description Definition of AWS::Bedrock::AgentAlias Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Arn representation of the Agent Alias.
+array
The list of history events for an alias for an Agent.
+string
Id for an Agent Alias generated at the server side.
+string
Name for a resource.
+string
The statuses an Agent Alias can be in.
+string
Identifier for a resource.
+string
Time Stamp.
+string
Description of the Resource.
+array
Routing configuration for an Agent alias.
+string
Time Stamp.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all agent_aliases
in a region.
+```sql
+SELECT
+region,
+agent_alias_arn,
+agent_alias_history_events,
+agent_alias_id,
+agent_alias_name,
+agent_alias_status,
+agent_id,
+created_at,
+description,
+routing_configuration,
+updated_at,
+tag_key,
+tag_value
+FROM aws.bedrock.agent_alias_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the agent_alias_tags
resource, see agent_aliases
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/agent_aliases/index.md b/docs/aws-docs/providers/aws/bedrock/agent_aliases/index.md
index 19f44adbfb..39d8287746 100644
--- a/docs/aws-docs/providers/aws/bedrock/agent_aliases/index.md
+++ b/docs/aws-docs/providers/aws/bedrock/agent_aliases/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets an agent_alias
resource or lists
-
+
SELECT
@@ -80,16 +80,25 @@ Creates, updates, deletes or gets an agent_alias
resource or lists
## `SELECT` examples
-List all agent_aliases
in a region.
+Gets all agent_aliases
in a region.
```sql
SELECT
region,
+agent_alias_arn,
+agent_alias_history_events,
+agent_alias_id,
+agent_alias_name,
+agent_alias_status,
agent_id,
-agent_alias_id
+created_at,
+description,
+routing_configuration,
+tags,
+updated_at
FROM aws.bedrock.agent_aliases
WHERE region = 'us-east-1';
```
-Gets all properties from an agent_alias
.
+Gets all properties from an individual agent_alias
.
```sql
SELECT
region,
@@ -108,7 +117,6 @@ FROM aws.bedrock.agent_aliases
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new agent_alias
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/bedrock/agent_aliases_list_only/index.md b/docs/aws-docs/providers/aws/bedrock/agent_aliases_list_only/index.md
new file mode 100644
index 0000000000..3b43570d25
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/agent_aliases_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: agent_aliases_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - agent_aliases_list_only
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists agent_aliases
in a region or regions, for all properties use agent_aliases
+
+## Overview
+
+Name agent_aliases_list_only
+Type Resource
+Description Definition of AWS::Bedrock::AgentAlias Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Arn representation of the Agent Alias.
+array
The list of history events for an alias for an Agent.
+string
Id for an Agent Alias generated at the server side.
+string
Name for a resource.
+string
The statuses an Agent Alias can be in.
+string
Identifier for a resource.
+string
Time Stamp.
+string
Description of the Resource.
+array
Routing configuration for an Agent alias.
+object
A map of tag keys and values
+string
Time Stamp.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all agent_aliases
in a region.
+```sql
+SELECT
+region,
+agent_id,
+agent_alias_id
+FROM aws.bedrock.agent_aliases_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the agent_aliases_list_only
resource, see agent_aliases
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/agent_tags/index.md b/docs/aws-docs/providers/aws/bedrock/agent_tags/index.md
new file mode 100644
index 0000000000..76a1e610ae
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/agent_tags/index.md
@@ -0,0 +1,113 @@
+---
+title: agent_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - agent_tags
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for agents
in a region
+
+## Overview
+
+Name agent_tags
+Type Resource
+Description Definition of AWS::Bedrock::Agent Resource Type
+Id
+
+
+## Fields
+Name Datatype Description array
List of ActionGroups
+string
Arn representation of the Agent.
+string
Identifier for a resource.
+string
Name for a resource.
+string
ARN of a IAM role.
+string
Schema Type for Action APIs.
+string
Draft Agent Version.
+boolean
Specifies whether to automatically prepare after creating or updating the agent.
+string
Time Stamp.
+string
A KMS key ARN
+boolean
Specifies whether to allow deleting agent while it is in use.
+string
Description of the Resource.
+array
Failure Reasons for Error.
+string
ARN or name of a Bedrock model.
+number
Max Session Time.
+string
Instruction for the agent.
+array
List of Agent Knowledge Bases
+string
Time Stamp.
+object
Configuration for prompt override.
+array
The recommended actions users can take to resolve an error in failureReasons.
+object
A map of tag keys and values
+string
Time Stamp.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all agents
in a region.
+```sql
+SELECT
+region,
+action_groups,
+agent_arn,
+agent_id,
+agent_name,
+agent_resource_role_arn,
+agent_status,
+agent_version,
+auto_prepare,
+created_at,
+customer_encryption_key_arn,
+skip_resource_in_use_check_on_delete,
+description,
+failure_reasons,
+foundation_model,
+idle_session_ttl_in_seconds,
+instruction,
+knowledge_bases,
+prepared_at,
+prompt_override_configuration,
+recommended_actions,
+test_alias_tags,
+updated_at,
+tag_key,
+tag_value
+FROM aws.bedrock.agent_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the agent_tags
resource, see agents
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/agents/index.md b/docs/aws-docs/providers/aws/bedrock/agents/index.md
index e2b017bb04..8b9b96462d 100644
--- a/docs/aws-docs/providers/aws/bedrock/agents/index.md
+++ b/docs/aws-docs/providers/aws/bedrock/agents/index.md
@@ -80,7 +80,7 @@ Creates, updates, deletes or gets an agent
resource or lists
-
+
SELECT
@@ -92,15 +92,37 @@ Creates, updates, deletes or gets an agent
resource or lists
## `SELECT` examples
-List all agents
in a region.
+Gets all agents
in a region.
```sql
SELECT
region,
-agent_id
+action_groups,
+agent_arn,
+agent_id,
+agent_name,
+agent_resource_role_arn,
+agent_status,
+agent_version,
+auto_prepare,
+created_at,
+customer_encryption_key_arn,
+skip_resource_in_use_check_on_delete,
+description,
+failure_reasons,
+foundation_model,
+idle_session_ttl_in_seconds,
+instruction,
+knowledge_bases,
+prepared_at,
+prompt_override_configuration,
+recommended_actions,
+tags,
+test_alias_tags,
+updated_at
FROM aws.bedrock.agents
WHERE region = 'us-east-1';
```
-Gets all properties from an agent
.
+Gets all properties from an individual agent
.
```sql
SELECT
region,
@@ -131,7 +153,6 @@ FROM aws.bedrock.agents
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new agent
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/bedrock/agents_list_only/index.md b/docs/aws-docs/providers/aws/bedrock/agents_list_only/index.md
new file mode 100644
index 0000000000..68b8331500
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/agents_list_only/index.md
@@ -0,0 +1,89 @@
+---
+title: agents_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - agents_list_only
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists agents
in a region or regions, for all properties use agents
+
+## Overview
+
+Name agents_list_only
+Type Resource
+Description Definition of AWS::Bedrock::Agent Resource Type
+Id
+
+
+## Fields
+Name Datatype Description array
List of ActionGroups
+string
Arn representation of the Agent.
+string
Identifier for a resource.
+string
Name for a resource.
+string
ARN of a IAM role.
+string
Schema Type for Action APIs.
+string
Draft Agent Version.
+boolean
Specifies whether to automatically prepare after creating or updating the agent.
+string
Time Stamp.
+string
A KMS key ARN
+boolean
Specifies whether to allow deleting agent while it is in use.
+string
Description of the Resource.
+array
Failure Reasons for Error.
+string
ARN or name of a Bedrock model.
+number
Max Session Time.
+string
Instruction for the agent.
+array
List of Agent Knowledge Bases
+string
Time Stamp.
+object
Configuration for prompt override.
+array
The recommended actions users can take to resolve an error in failureReasons.
+object
A map of tag keys and values
+object
A map of tag keys and values
+string
Time Stamp.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all agents
in a region.
+```sql
+SELECT
+region,
+agent_id
+FROM aws.bedrock.agents_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the agents_list_only
resource, see agents
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/data_sources/index.md b/docs/aws-docs/providers/aws/bedrock/data_sources/index.md
index 41a2f0e9ac..d6595fcc20 100644
--- a/docs/aws-docs/providers/aws/bedrock/data_sources/index.md
+++ b/docs/aws-docs/providers/aws/bedrock/data_sources/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a data_source
resource or lists <
-
+
SELECT
@@ -81,16 +81,26 @@ Creates, updates, deletes or gets a data_source
resource or lists <
## `SELECT` examples
-List all data_sources
in a region.
+Gets all data_sources
in a region.
```sql
SELECT
region,
+data_source_configuration,
+data_source_id,
+description,
knowledge_base_id,
-data_source_id
+data_source_status,
+name,
+server_side_encryption_configuration,
+vector_ingestion_configuration,
+data_deletion_policy,
+created_at,
+updated_at,
+failure_reasons
FROM aws.bedrock.data_sources
WHERE region = 'us-east-1';
```
-Gets all properties from a data_source
.
+Gets all properties from an individual data_source
.
```sql
SELECT
region,
@@ -110,7 +120,6 @@ FROM aws.bedrock.data_sources
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new data_source
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/bedrock/data_sources_list_only/index.md b/docs/aws-docs/providers/aws/bedrock/data_sources_list_only/index.md
new file mode 100644
index 0000000000..e8e8345197
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/data_sources_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: data_sources_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - data_sources_list_only
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists data_sources
in a region or regions, for all properties use data_sources
+
+## Overview
+
+Name data_sources_list_only
+Type Resource
+Description Definition of AWS::Bedrock::DataSource Resource Type
+Id
+
+
+## Fields
+Name Datatype Description object
Specifies a raw data source location to ingest.
+string
Identifier for a resource.
+string
Description of the Resource.
+string
The unique identifier of the knowledge base to which to add the data source.
+string
The status of a data source.
+string
The name of the data source.
+object
Contains details about the server-side encryption for the data source.
+object
Details about how to chunk the documents in the data source. A chunk refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
+string
The deletion policy for the data source.
+string
The time at which the data source was created.
+string
The time at which the knowledge base was last updated.
+array
The details of the failure reasons related to the data source.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all data_sources
in a region.
+```sql
+SELECT
+region,
+knowledge_base_id,
+data_source_id
+FROM aws.bedrock.data_sources_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the data_sources_list_only
resource, see data_sources
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/guardrail_tags/index.md b/docs/aws-docs/providers/aws/bedrock/guardrail_tags/index.md
new file mode 100644
index 0000000000..6d7d518680
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/guardrail_tags/index.md
@@ -0,0 +1,103 @@
+---
+title: guardrail_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - guardrail_tags
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for guardrails
in a region
+
+## Overview
+
+Name guardrail_tags
+Type Resource
+Description Definition of AWS::Bedrock::Guardrail Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Messaging for when violations are detected in text
+string
Messaging for when violations are detected in text
+object
Content policy config for a guardrail.
+string
Time Stamp
+string
Description of the guardrail or its version
+array
List of failure recommendations
+string
Arn representation for the guardrail
+string
Unique id for the guardrail
+string
The KMS key with which the guardrail was encrypted at rest
+string
Name of the guardrail
+object
Sensitive information policy config for a guardrail.
+string
Status of the guardrail
+array
List of status reasons
+object
Topic policy config for a guardrail.
+string
Time Stamp
+string
Guardrail version
+object
Word policy config for a guardrail.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all guardrails
in a region.
+```sql
+SELECT
+region,
+blocked_input_messaging,
+blocked_outputs_messaging,
+content_policy_config,
+created_at,
+description,
+failure_recommendations,
+guardrail_arn,
+guardrail_id,
+kms_key_arn,
+name,
+sensitive_information_policy_config,
+status,
+status_reasons,
+topic_policy_config,
+updated_at,
+version,
+word_policy_config,
+tag_key,
+tag_value
+FROM aws.bedrock.guardrail_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the guardrail_tags
resource, see guardrails
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/guardrail_versions/index.md b/docs/aws-docs/providers/aws/bedrock/guardrail_versions/index.md
index dfecc3d441..52e31c19fe 100644
--- a/docs/aws-docs/providers/aws/bedrock/guardrail_versions/index.md
+++ b/docs/aws-docs/providers/aws/bedrock/guardrail_versions/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a guardrail_version
resource or l
## `SELECT` examples
-Gets all properties from a guardrail_version
.
+Gets all properties from an individual guardrail_version
.
```sql
SELECT
region,
@@ -78,7 +78,6 @@ FROM aws.bedrock.guardrail_versions
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new guardrail_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/bedrock/guardrails/index.md b/docs/aws-docs/providers/aws/bedrock/guardrails/index.md
index d1e3e65656..e50060a553 100644
--- a/docs/aws-docs/providers/aws/bedrock/guardrails/index.md
+++ b/docs/aws-docs/providers/aws/bedrock/guardrails/index.md
@@ -75,7 +75,7 @@ Creates, updates, deletes or gets a guardrail
resource or lists
-
+
SELECT
@@ -87,15 +87,32 @@ Creates, updates, deletes or gets a guardrail
resource or lists
## `SELECT` examples
-List all guardrails
in a region.
+Gets all guardrails
in a region.
```sql
SELECT
region,
-guardrail_arn
+blocked_input_messaging,
+blocked_outputs_messaging,
+content_policy_config,
+created_at,
+description,
+failure_recommendations,
+guardrail_arn,
+guardrail_id,
+kms_key_arn,
+name,
+sensitive_information_policy_config,
+status,
+status_reasons,
+tags,
+topic_policy_config,
+updated_at,
+version,
+word_policy_config
FROM aws.bedrock.guardrails
WHERE region = 'us-east-1';
```
-Gets all properties from a guardrail
.
+Gets all properties from an individual guardrail
.
```sql
SELECT
region,
@@ -121,7 +138,6 @@ FROM aws.bedrock.guardrails
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new guardrail
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/bedrock/guardrails_list_only/index.md b/docs/aws-docs/providers/aws/bedrock/guardrails_list_only/index.md
new file mode 100644
index 0000000000..21c3344655
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/guardrails_list_only/index.md
@@ -0,0 +1,84 @@
+---
+title: guardrails_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - guardrails_list_only
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists guardrails
in a region or regions, for all properties use guardrails
+
+## Overview
+
+Name guardrails_list_only
+Type Resource
+Description Definition of AWS::Bedrock::Guardrail Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Messaging for when violations are detected in text
+string
Messaging for when violations are detected in text
+object
Content policy config for a guardrail.
+string
Time Stamp
+string
Description of the guardrail or its version
+array
List of failure recommendations
+string
Arn representation for the guardrail
+string
Unique id for the guardrail
+string
The KMS key with which the guardrail was encrypted at rest
+string
Name of the guardrail
+object
Sensitive information policy config for a guardrail.
+string
Status of the guardrail
+array
List of status reasons
+array
List of Tags
+object
Topic policy config for a guardrail.
+string
Time Stamp
+string
Guardrail version
+object
Word policy config for a guardrail.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all guardrails
in a region.
+```sql
+SELECT
+region,
+guardrail_arn
+FROM aws.bedrock.guardrails_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the guardrails_list_only
resource, see guardrails
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/index.md b/docs/aws-docs/providers/aws/bedrock/index.md
index 87b0a22e0a..90d5c8d5b2 100644
--- a/docs/aws-docs/providers/aws/bedrock/index.md
+++ b/docs/aws-docs/providers/aws/bedrock/index.md
@@ -20,7 +20,7 @@ The bedrock service documentation.
-total resources: 6
+total resources: 15
@@ -29,13 +29,22 @@ The bedrock service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/bedrock/knowledge_base_tags/index.md b/docs/aws-docs/providers/aws/bedrock/knowledge_base_tags/index.md
new file mode 100644
index 0000000000..9de1e0d80c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/knowledge_base_tags/index.md
@@ -0,0 +1,91 @@
+---
+title: knowledge_base_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - knowledge_base_tags
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for knowledge_bases
in a region
+
+## Overview
+
+Name knowledge_base_tags
+Type Resource
+Description Definition of AWS::Bedrock::KnowledgeBase Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Description of the Resource.
+object
Contains details about the embeddings model used for the knowledge base.
+string
The unique identifier of the knowledge base.
+string
The ARN of the knowledge base.
+string
The name of the knowledge base.
+string
The status of a knowledge base.
+string
The ARN of the IAM role with permissions to invoke API operations on the knowledge base. The ARN must begin with AmazonBedrockExecutionRoleForKnowledgeBase_
+string
The time at which the knowledge base was created.
+array
A list of reasons that the API operation on the knowledge base failed.
+string
The time at which the knowledge base was last updated.
+object
The vector store service in which the knowledge base is stored.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all knowledge_bases
in a region.
+```sql
+SELECT
+region,
+description,
+knowledge_base_configuration,
+knowledge_base_id,
+knowledge_base_arn,
+name,
+status,
+role_arn,
+created_at,
+failure_reasons,
+updated_at,
+storage_configuration,
+tag_key,
+tag_value
+FROM aws.bedrock.knowledge_base_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the knowledge_base_tags
resource, see knowledge_bases
+
+
diff --git a/docs/aws-docs/providers/aws/bedrock/knowledge_bases/index.md b/docs/aws-docs/providers/aws/bedrock/knowledge_bases/index.md
index d1c7e11ca9..ce754ae0d6 100644
--- a/docs/aws-docs/providers/aws/bedrock/knowledge_bases/index.md
+++ b/docs/aws-docs/providers/aws/bedrock/knowledge_bases/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a knowledge_base
resource or list
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets a knowledge_base
resource or list
## `SELECT` examples
-List all knowledge_bases
in a region.
+Gets all knowledge_bases
in a region.
```sql
SELECT
region,
-knowledge_base_id
+description,
+knowledge_base_configuration,
+knowledge_base_id,
+knowledge_base_arn,
+name,
+status,
+role_arn,
+created_at,
+failure_reasons,
+updated_at,
+storage_configuration,
+tags
FROM aws.bedrock.knowledge_bases
WHERE region = 'us-east-1';
```
-Gets all properties from a knowledge_base
.
+Gets all properties from an individual knowledge_base
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.bedrock.knowledge_bases
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new knowledge_base
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/bedrock/knowledge_bases_list_only/index.md b/docs/aws-docs/providers/aws/bedrock/knowledge_bases_list_only/index.md
new file mode 100644
index 0000000000..5adaf963ae
--- /dev/null
+++ b/docs/aws-docs/providers/aws/bedrock/knowledge_bases_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: knowledge_bases_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - knowledge_bases_list_only
+ - bedrock
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists knowledge_bases
in a region or regions, for all properties use knowledge_bases
+
+## Overview
+
+Name knowledge_bases_list_only
+Type Resource
+Description Definition of AWS::Bedrock::KnowledgeBase Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Description of the Resource.
+object
Contains details about the embeddings model used for the knowledge base.
+string
The unique identifier of the knowledge base.
+string
The ARN of the knowledge base.
+string
The name of the knowledge base.
+string
The status of a knowledge base.
+string
The ARN of the IAM role with permissions to invoke API operations on the knowledge base. The ARN must begin with AmazonBedrockExecutionRoleForKnowledgeBase_
+string
The time at which the knowledge base was created.
+array
A list of reasons that the API operation on the knowledge base failed.
+string
The time at which the knowledge base was last updated.
+object
The vector store service in which the knowledge base is stored.
+object
A map of tag keys and values
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all knowledge_bases
in a region.
+```sql
+SELECT
+region,
+knowledge_base_id
+FROM aws.bedrock.knowledge_bases_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the knowledge_bases_list_only
resource, see knowledge_bases
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/billing_group_tags/index.md b/docs/aws-docs/providers/aws/billingconductor/billing_group_tags/index.md
new file mode 100644
index 0000000000..68e166f23f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/billing_group_tags/index.md
@@ -0,0 +1,91 @@
+---
+title: billing_group_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - billing_group_tags
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for billing_groups
in a region
+
+## Overview
+
+Name billing_group_tags
+Type Resource
+Description A billing group is a set of linked account which belong to the same end customer. It can be seen as a virtual consolidated billing family.
+Id
+
+
+## Fields
+Name Datatype Description string
Billing Group ARN
+string
+string
+string
This account will act as a virtual payer account of the billing group
+object
+object
+integer
Number of accounts in the billing group
+string
+string
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all billing_groups
in a region.
+```sql
+SELECT
+region,
+arn,
+name,
+description,
+primary_account_id,
+computation_preference,
+account_grouping,
+size,
+status,
+status_reason,
+creation_time,
+last_modified_time,
+tag_key,
+tag_value
+FROM aws.billingconductor.billing_group_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the billing_group_tags
resource, see billing_groups
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/billing_groups/index.md b/docs/aws-docs/providers/aws/billingconductor/billing_groups/index.md
index ba0605b93d..0e3171e18d 100644
--- a/docs/aws-docs/providers/aws/billingconductor/billing_groups/index.md
+++ b/docs/aws-docs/providers/aws/billingconductor/billing_groups/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a billing_group
resource or lists
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets a billing_group
resource or lists
## `SELECT` examples
-List all billing_groups
in a region.
+Gets all billing_groups
in a region.
```sql
SELECT
region,
-arn
+arn,
+name,
+description,
+primary_account_id,
+computation_preference,
+account_grouping,
+size,
+status,
+status_reason,
+creation_time,
+last_modified_time,
+tags
FROM aws.billingconductor.billing_groups
WHERE region = 'us-east-1';
```
-Gets all properties from a billing_group
.
+Gets all properties from an individual billing_group
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.billingconductor.billing_groups
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new billing_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/billingconductor/billing_groups_list_only/index.md b/docs/aws-docs/providers/aws/billingconductor/billing_groups_list_only/index.md
new file mode 100644
index 0000000000..38172cfb8c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/billing_groups_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: billing_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - billing_groups_list_only
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists billing_groups
in a region or regions, for all properties use billing_groups
+
+## Overview
+
+Name billing_groups_list_only
+Type Resource
+Description A billing group is a set of linked account which belong to the same end customer. It can be seen as a virtual consolidated billing family.
+Id
+
+
+## Fields
+Name Datatype Description string
Billing Group ARN
+string
+string
+string
This account will act as a virtual payer account of the billing group
+object
+object
+integer
Number of accounts in the billing group
+string
+string
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all billing_groups
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.billingconductor.billing_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the billing_groups_list_only
resource, see billing_groups
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/custom_line_item_tags/index.md b/docs/aws-docs/providers/aws/billingconductor/custom_line_item_tags/index.md
new file mode 100644
index 0000000000..aca309a907
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/custom_line_item_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: custom_line_item_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - custom_line_item_tags
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for custom_line_items
in a region
+
+## Overview
+
+Name custom_line_item_tags
+Type Resource
+Description A custom line item is an one time charge that is applied to a specific billing group's bill.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+string
Billing Group ARN
+object
+string
ARN
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+integer
Number of source values associated to this custom line item
+string
+string
+string
The account which this custom line item will be charged to
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all custom_line_items
in a region.
+```sql
+SELECT
+region,
+name,
+description,
+custom_line_item_charge_details,
+billing_group_arn,
+billing_period_range,
+arn,
+creation_time,
+last_modified_time,
+association_size,
+product_code,
+currency_code,
+account_id,
+tag_key,
+tag_value
+FROM aws.billingconductor.custom_line_item_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the custom_line_item_tags
resource, see custom_line_items
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/custom_line_items/index.md b/docs/aws-docs/providers/aws/billingconductor/custom_line_items/index.md
index e33f1fe0df..9018d444ea 100644
--- a/docs/aws-docs/providers/aws/billingconductor/custom_line_items/index.md
+++ b/docs/aws-docs/providers/aws/billingconductor/custom_line_items/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a custom_line_item
resource or li
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a custom_line_item
resource or li
## `SELECT` examples
-List all custom_line_items
in a region.
+Gets all custom_line_items
in a region.
```sql
SELECT
region,
-arn
+name,
+description,
+custom_line_item_charge_details,
+billing_group_arn,
+billing_period_range,
+arn,
+creation_time,
+last_modified_time,
+association_size,
+product_code,
+currency_code,
+account_id,
+tags
FROM aws.billingconductor.custom_line_items
WHERE region = 'us-east-1';
```
-Gets all properties from a custom_line_item
.
+Gets all properties from an individual custom_line_item
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.billingconductor.custom_line_items
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new custom_line_item
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/billingconductor/custom_line_items_list_only/index.md b/docs/aws-docs/providers/aws/billingconductor/custom_line_items_list_only/index.md
new file mode 100644
index 0000000000..36592ef240
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/custom_line_items_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: custom_line_items_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - custom_line_items_list_only
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists custom_line_items
in a region or regions, for all properties use custom_line_items
+
+## Overview
+
+Name custom_line_items_list_only
+Type Resource
+Description A custom line item is an one time charge that is applied to a specific billing group's bill.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+string
Billing Group ARN
+object
+string
ARN
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+integer
Number of source values associated to this custom line item
+string
+string
+string
The account which this custom line item will be charged to
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all custom_line_items
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.billingconductor.custom_line_items_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the custom_line_items_list_only
resource, see custom_line_items
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/index.md b/docs/aws-docs/providers/aws/billingconductor/index.md
index 02cda397ef..37b4432629 100644
--- a/docs/aws-docs/providers/aws/billingconductor/index.md
+++ b/docs/aws-docs/providers/aws/billingconductor/index.md
@@ -20,7 +20,7 @@ The billingconductor service documentation.
-total resources: 4
+total resources: 12
@@ -29,11 +29,19 @@ The billingconductor service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/billingconductor/pricing_plan_tags/index.md b/docs/aws-docs/providers/aws/billingconductor/pricing_plan_tags/index.md
new file mode 100644
index 0000000000..6a1e2ee3b5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/pricing_plan_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: pricing_plan_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - pricing_plan_tags
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for pricing_plans
in a region
+
+## Overview
+
+Name pricing_plan_tags
+Type Resource
+Description Pricing Plan enables you to customize your billing details consistent with the usage that accrues in each of your billing groups.
+Id
+
+
+## Fields
+Name Datatype Description string
Pricing Plan ARN
+string
+array
+integer
Number of associated pricing rules
+string
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all pricing_plans
in a region.
+```sql
+SELECT
+region,
+arn,
+name,
+pricing_rule_arns,
+size,
+description,
+creation_time,
+last_modified_time,
+tag_key,
+tag_value
+FROM aws.billingconductor.pricing_plan_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the pricing_plan_tags
resource, see pricing_plans
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/pricing_plans/index.md b/docs/aws-docs/providers/aws/billingconductor/pricing_plans/index.md
index b90d362b93..d6f3a265ae 100644
--- a/docs/aws-docs/providers/aws/billingconductor/pricing_plans/index.md
+++ b/docs/aws-docs/providers/aws/billingconductor/pricing_plans/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a pricing_plan
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a pricing_plan
resource or lists
## `SELECT` examples
-List all pricing_plans
in a region.
+Gets all pricing_plans
in a region.
```sql
SELECT
region,
-arn
+arn,
+name,
+pricing_rule_arns,
+size,
+description,
+creation_time,
+last_modified_time,
+tags
FROM aws.billingconductor.pricing_plans
WHERE region = 'us-east-1';
```
-Gets all properties from a pricing_plan
.
+Gets all properties from an individual pricing_plan
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.billingconductor.pricing_plans
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new pricing_plan
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/billingconductor/pricing_plans_list_only/index.md b/docs/aws-docs/providers/aws/billingconductor/pricing_plans_list_only/index.md
new file mode 100644
index 0000000000..38653daf7e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/pricing_plans_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: pricing_plans_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - pricing_plans_list_only
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists pricing_plans
in a region or regions, for all properties use pricing_plans
+
+## Overview
+
+Name pricing_plans_list_only
+Type Resource
+Description Pricing Plan enables you to customize your billing details consistent with the usage that accrues in each of your billing groups.
+Id
+
+
+## Fields
+Name Datatype Description string
Pricing Plan ARN
+string
+array
+integer
Number of associated pricing rules
+string
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all pricing_plans
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.billingconductor.pricing_plans_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the pricing_plans_list_only
resource, see pricing_plans
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/pricing_rule_tags/index.md b/docs/aws-docs/providers/aws/billingconductor/pricing_rule_tags/index.md
new file mode 100644
index 0000000000..bf05d91603
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/pricing_rule_tags/index.md
@@ -0,0 +1,97 @@
+---
+title: pricing_rule_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - pricing_rule_tags
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for pricing_rules
in a region
+
+## Overview
+
+Name pricing_rule_tags
+Type Resource
+Description A markup/discount that is defined for a specific set of services that can later be associated with a pricing plan.
+Id
+
+
+## Fields
+Name Datatype Description string
Pricing rule ARN
+string
Pricing rule name
+string
Pricing rule description
+string
A term used to categorize the granularity of a Pricing Rule.
+string
One of MARKUP, DISCOUNT or TIERING that describes the behaviour of the pricing rule.
+number
Pricing rule modifier percentage
+string
The service which a pricing rule is applied on
+string
The seller of services provided by AWS, their affiliates, or third-party providers selling services via AWS Marketplaces. Supported billing entities are AWS, AWS Marketplace, and AISPL.
+object
The set of tiering configurations for the pricing rule.
+string
The UsageType which a SKU pricing rule is modifying
+string
The Operation which a SKU pricing rule is modifying
+integer
The number of pricing plans associated with pricing rule
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all pricing_rules
in a region.
+```sql
+SELECT
+region,
+arn,
+name,
+description,
+scope,
+type,
+modifier_percentage,
+service,
+billing_entity,
+tiering,
+usage_type,
+operation,
+associated_pricing_plan_count,
+creation_time,
+last_modified_time,
+tag_key,
+tag_value
+FROM aws.billingconductor.pricing_rule_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the pricing_rule_tags
resource, see pricing_rules
+
+
diff --git a/docs/aws-docs/providers/aws/billingconductor/pricing_rules/index.md b/docs/aws-docs/providers/aws/billingconductor/pricing_rules/index.md
index ee91d2a09c..4c3b0db3b4 100644
--- a/docs/aws-docs/providers/aws/billingconductor/pricing_rules/index.md
+++ b/docs/aws-docs/providers/aws/billingconductor/pricing_rules/index.md
@@ -72,7 +72,7 @@ Creates, updates, deletes or gets a pricing_rule
resource or lists
-
+
SELECT
@@ -84,15 +84,29 @@ Creates, updates, deletes or gets a pricing_rule
resource or lists
## `SELECT` examples
-List all pricing_rules
in a region.
+Gets all pricing_rules
in a region.
```sql
SELECT
region,
-arn
+arn,
+name,
+description,
+scope,
+type,
+modifier_percentage,
+service,
+billing_entity,
+tiering,
+usage_type,
+operation,
+associated_pricing_plan_count,
+creation_time,
+last_modified_time,
+tags
FROM aws.billingconductor.pricing_rules
WHERE region = 'us-east-1';
```
-Gets all properties from a pricing_rule
.
+Gets all properties from an individual pricing_rule
.
```sql
SELECT
region,
@@ -115,7 +129,6 @@ FROM aws.billingconductor.pricing_rules
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new pricing_rule
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/billingconductor/pricing_rules_list_only/index.md b/docs/aws-docs/providers/aws/billingconductor/pricing_rules_list_only/index.md
new file mode 100644
index 0000000000..3683d36ae7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/billingconductor/pricing_rules_list_only/index.md
@@ -0,0 +1,81 @@
+---
+title: pricing_rules_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - pricing_rules_list_only
+ - billingconductor
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists pricing_rules
in a region or regions, for all properties use pricing_rules
+
+## Overview
+
+Name pricing_rules_list_only
+Type Resource
+Description A markup/discount that is defined for a specific set of services that can later be associated with a pricing plan.
+Id
+
+
+## Fields
+Name Datatype Description string
Pricing rule ARN
+string
Pricing rule name
+string
Pricing rule description
+string
A term used to categorize the granularity of a Pricing Rule.
+string
One of MARKUP, DISCOUNT or TIERING that describes the behaviour of the pricing rule.
+number
Pricing rule modifier percentage
+string
The service which a pricing rule is applied on
+string
The seller of services provided by AWS, their affiliates, or third-party providers selling services via AWS Marketplaces. Supported billing entities are AWS, AWS Marketplace, and AISPL.
+object
The set of tiering configurations for the pricing rule.
+string
The UsageType which a SKU pricing rule is modifying
+string
The Operation which a SKU pricing rule is modifying
+integer
The number of pricing plans associated with pricing rule
+integer
Creation timestamp in UNIX epoch time format
+integer
Latest modified timestamp in UNIX epoch time format
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all pricing_rules
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.billingconductor.pricing_rules_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the pricing_rules_list_only
resource, see pricing_rules
+
+
diff --git a/docs/aws-docs/providers/aws/budgets/budgets_actions/index.md b/docs/aws-docs/providers/aws/budgets/budgets_actions/index.md
index f053e2f4ee..0415de825d 100644
--- a/docs/aws-docs/providers/aws/budgets/budgets_actions/index.md
+++ b/docs/aws-docs/providers/aws/budgets/budgets_actions/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a budgets_action
resource or list
-
+
SELECT
@@ -79,16 +79,24 @@ Creates, updates, deletes or gets a budgets_action
resource or list
## `SELECT` examples
-List all budgets_actions
in a region.
+Gets all budgets_actions
in a region.
```sql
SELECT
region,
action_id,
-budget_name
+budget_name,
+notification_type,
+action_type,
+action_threshold,
+execution_role_arn,
+approval_model,
+subscribers,
+definition,
+resource_tags
FROM aws.budgets.budgets_actions
WHERE region = 'us-east-1';
```
-Gets all properties from a budgets_action
.
+Gets all properties from an individual budgets_action
.
```sql
SELECT
region,
@@ -106,7 +114,6 @@ FROM aws.budgets.budgets_actions
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new budgets_action
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/budgets/budgets_actions_list_only/index.md b/docs/aws-docs/providers/aws/budgets/budgets_actions_list_only/index.md
new file mode 100644
index 0000000000..92af218d2e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/budgets/budgets_actions_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: budgets_actions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - budgets_actions_list_only
+ - budgets
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists budgets_actions
in a region or regions, for all properties use budgets_actions
+
+## Overview
+
+Name budgets_actions_list_only
+Type Resource
+Description An example resource schema demonstrating some basic constructs and validation rules.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+object
+string
+string
+array
+object
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all budgets_actions
in a region.
+```sql
+SELECT
+region,
+action_id,
+budget_name
+FROM aws.budgets.budgets_actions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the budgets_actions_list_only
resource, see budgets_actions
+
+
diff --git a/docs/aws-docs/providers/aws/budgets/index.md b/docs/aws-docs/providers/aws/budgets/index.md
index 34a49d5132..da14ea6873 100644
--- a/docs/aws-docs/providers/aws/budgets/index.md
+++ b/docs/aws-docs/providers/aws/budgets/index.md
@@ -20,7 +20,7 @@ The budgets service documentation.
-total resources: 1
+total resources: 2
@@ -32,6 +32,6 @@ The budgets service documentation.
budgets_actions
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cassandra/index.md b/docs/aws-docs/providers/aws/cassandra/index.md
index f20b79558a..c83dbb6c26 100644
--- a/docs/aws-docs/providers/aws/cassandra/index.md
+++ b/docs/aws-docs/providers/aws/cassandra/index.md
@@ -20,7 +20,7 @@ The cassandra service documentation.
-total resources: 2
+total resources: 6
@@ -29,9 +29,13 @@ The cassandra service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cassandra/keyspace_tags/index.md b/docs/aws-docs/providers/aws/cassandra/keyspace_tags/index.md
new file mode 100644
index 0000000000..66bfca8541
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cassandra/keyspace_tags/index.md
@@ -0,0 +1,73 @@
+---
+title: keyspace_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - keyspace_tags
+ - cassandra
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for keyspaces
in a region
+
+## Overview
+
+Name keyspace_tags
+Type Resource
+Description Resource schema for AWS::Cassandra::Keyspace
+Id
+
+
+## Fields
+Name Datatype Description string
Name for Cassandra keyspace
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all keyspaces
in a region.
+```sql
+SELECT
+region,
+keyspace_name,
+replication_specification,
+tag_key,
+tag_value
+FROM aws.cassandra.keyspace_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the keyspace_tags
resource, see keyspaces
+
+
diff --git a/docs/aws-docs/providers/aws/cassandra/keyspaces/index.md b/docs/aws-docs/providers/aws/cassandra/keyspaces/index.md
index 59cf9889d6..fbd30e32f8 100644
--- a/docs/aws-docs/providers/aws/cassandra/keyspaces/index.md
+++ b/docs/aws-docs/providers/aws/cassandra/keyspaces/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a keyspace
resource or lists
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a keyspace
resource or lists
## `SELECT` examples
-List all keyspaces
in a region.
+Gets all keyspaces
in a region.
```sql
SELECT
region,
-keyspace_name
+keyspace_name,
+tags,
+replication_specification
FROM aws.cassandra.keyspaces
WHERE region = 'us-east-1';
```
-Gets all properties from a keyspace
.
+Gets all properties from an individual keyspace
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cassandra.keyspaces
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new keyspace
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cassandra/keyspaces_list_only/index.md b/docs/aws-docs/providers/aws/cassandra/keyspaces_list_only/index.md
new file mode 100644
index 0000000000..81b6c71256
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cassandra/keyspaces_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: keyspaces_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - keyspaces_list_only
+ - cassandra
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists keyspaces
in a region or regions, for all properties use keyspaces
+
+## Overview
+
+Name keyspaces_list_only
+Type Resource
+Description Resource schema for AWS::Cassandra::Keyspace
+Id
+
+
+## Fields
+Name Datatype Description string
Name for Cassandra keyspace
+array
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all keyspaces
in a region.
+```sql
+SELECT
+region,
+keyspace_name
+FROM aws.cassandra.keyspaces_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the keyspaces_list_only
resource, see keyspaces
+
+
diff --git a/docs/aws-docs/providers/aws/cassandra/table_tags/index.md b/docs/aws-docs/providers/aws/cassandra/table_tags/index.md
new file mode 100644
index 0000000000..b5cf54bfee
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cassandra/table_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: table_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - table_tags
+ - cassandra
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for tables
in a region
+
+## Overview
+
+Name table_tags
+Type Resource
+Description Resource schema for AWS::Cassandra::Table
+Id
+
+
+## Fields
+Name Datatype Description string
Name for Cassandra keyspace
+string
Name for Cassandra table
+array
Non-key columns of the table
+array
Partition key columns of the table
+array
Clustering key columns of the table
+object
+boolean
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table
+boolean
Indicates whether client side timestamps are enabled (true) or disabled (false) on the table. False by default, once it is enabled it cannot be disabled again.
+integer
Default TTL (Time To Live) in seconds, where zero is disabled. If the value is greater than zero, TTL is enabled for the entire table and an expiration timestamp is added to each column.
+object
Represents the settings used to enable server-side encryption
+object
Represents the read and write settings used for AutoScaling.
+array
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all tables
in a region.
+```sql
+SELECT
+region,
+keyspace_name,
+table_name,
+regular_columns,
+partition_key_columns,
+clustering_key_columns,
+billing_mode,
+point_in_time_recovery_enabled,
+client_side_timestamps_enabled,
+default_time_to_live,
+encryption_specification,
+auto_scaling_specifications,
+replica_specifications,
+tag_key,
+tag_value
+FROM aws.cassandra.table_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the table_tags
resource, see tables
+
+
diff --git a/docs/aws-docs/providers/aws/cassandra/tables/index.md b/docs/aws-docs/providers/aws/cassandra/tables/index.md
index d0f771bf54..a4976ff9ac 100644
--- a/docs/aws-docs/providers/aws/cassandra/tables/index.md
+++ b/docs/aws-docs/providers/aws/cassandra/tables/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a table
resource or lists t
-
+
SELECT
@@ -82,16 +82,27 @@ Creates, updates, deletes or gets a table
resource or lists t
## `SELECT` examples
-List all tables
in a region.
+Gets all tables
in a region.
```sql
SELECT
region,
keyspace_name,
-table_name
+table_name,
+regular_columns,
+partition_key_columns,
+clustering_key_columns,
+billing_mode,
+point_in_time_recovery_enabled,
+client_side_timestamps_enabled,
+tags,
+default_time_to_live,
+encryption_specification,
+auto_scaling_specifications,
+replica_specifications
FROM aws.cassandra.tables
WHERE region = 'us-east-1';
```
-Gets all properties from a table
.
+Gets all properties from an individual table
.
```sql
SELECT
region,
@@ -112,7 +123,6 @@ FROM aws.cassandra.tables
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new table
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cassandra/tables_list_only/index.md b/docs/aws-docs/providers/aws/cassandra/tables_list_only/index.md
new file mode 100644
index 0000000000..df7a9ccc11
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cassandra/tables_list_only/index.md
@@ -0,0 +1,80 @@
+---
+title: tables_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - tables_list_only
+ - cassandra
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists tables
in a region or regions, for all properties use tables
+
+## Overview
+
+Name tables_list_only
+Type Resource
+Description Resource schema for AWS::Cassandra::Table
+Id
+
+
+## Fields
+Name Datatype Description string
Name for Cassandra keyspace
+string
Name for Cassandra table
+array
Non-key columns of the table
+array
Partition key columns of the table
+array
Clustering key columns of the table
+object
+boolean
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table
+boolean
Indicates whether client side timestamps are enabled (true) or disabled (false) on the table. False by default, once it is enabled it cannot be disabled again.
+array
An array of key-value pairs to apply to this resource
+integer
Default TTL (Time To Live) in seconds, where zero is disabled. If the value is greater than zero, TTL is enabled for the entire table and an expiration timestamp is added to each column.
+object
Represents the settings used to enable server-side encryption
+object
Represents the read and write settings used for AutoScaling.
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all tables
in a region.
+```sql
+SELECT
+region,
+keyspace_name,
+table_name
+FROM aws.cassandra.tables_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the tables_list_only
resource, see tables
+
+
diff --git a/docs/aws-docs/providers/aws/ce/anomaly_monitors/index.md b/docs/aws-docs/providers/aws/ce/anomaly_monitors/index.md
index ac9c711a41..f050819fbc 100644
--- a/docs/aws-docs/providers/aws/ce/anomaly_monitors/index.md
+++ b/docs/aws-docs/providers/aws/ce/anomaly_monitors/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets an anomaly_monitor
resource or li
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets an anomaly_monitor
resource or li
## `SELECT` examples
-List all anomaly_monitors
in a region.
+Gets all anomaly_monitors
in a region.
```sql
SELECT
region,
-monitor_arn
+monitor_arn,
+monitor_type,
+monitor_name,
+creation_date,
+last_evaluated_date,
+last_updated_date,
+monitor_dimension,
+monitor_specification,
+dimensional_value_count,
+resource_tags
FROM aws.ce.anomaly_monitors
WHERE region = 'us-east-1';
```
-Gets all properties from an anomaly_monitor
.
+Gets all properties from an individual anomaly_monitor
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.ce.anomaly_monitors
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new anomaly_monitor
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/ce/anomaly_monitors_list_only/index.md b/docs/aws-docs/providers/aws/ce/anomaly_monitors_list_only/index.md
new file mode 100644
index 0000000000..b627cd8685
--- /dev/null
+++ b/docs/aws-docs/providers/aws/ce/anomaly_monitors_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: anomaly_monitors_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - anomaly_monitors_list_only
+ - ce
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists anomaly_monitors
in a region or regions, for all properties use anomaly_monitors
+
+## Overview
+
+Name anomaly_monitors_list_only
+Type Resource
+Description AWS Cost Anomaly Detection leverages advanced Machine Learning technologies to identify anomalous spend and root causes, so you can quickly take action. You can use Cost Anomaly Detection by creating monitor.
+Id
+
+
+## Fields
+Name Datatype Description string
Subscription ARN
+string
+string
The name of the monitor.
+string
The date when the monitor was created.
+string
The date when the monitor last evaluated for anomalies.
+string
The date when the monitor was last updated.
+string
The dimensions to evaluate
+string
+integer
The value for evaluated dimensions.
+array
Tags to assign to monitor.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all anomaly_monitors
in a region.
+```sql
+SELECT
+region,
+monitor_arn
+FROM aws.ce.anomaly_monitors_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the anomaly_monitors_list_only
resource, see anomaly_monitors
+
+
diff --git a/docs/aws-docs/providers/aws/ce/anomaly_subscriptions/index.md b/docs/aws-docs/providers/aws/ce/anomaly_subscriptions/index.md
index 156ba1bacc..3d77b2bb6c 100644
--- a/docs/aws-docs/providers/aws/ce/anomaly_subscriptions/index.md
+++ b/docs/aws-docs/providers/aws/ce/anomaly_subscriptions/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets an anomaly_subscription
resource
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets an anomaly_subscription
resource
## `SELECT` examples
-List all anomaly_subscriptions
in a region.
+Gets all anomaly_subscriptions
in a region.
```sql
SELECT
region,
-subscription_arn
+subscription_arn,
+subscription_name,
+account_id,
+monitor_arn_list,
+subscribers,
+threshold,
+threshold_expression,
+frequency,
+resource_tags
FROM aws.ce.anomaly_subscriptions
WHERE region = 'us-east-1';
```
-Gets all properties from an anomaly_subscription
.
+Gets all properties from an individual anomaly_subscription
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.ce.anomaly_subscriptions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new anomaly_subscription
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/ce/anomaly_subscriptions_list_only/index.md b/docs/aws-docs/providers/aws/ce/anomaly_subscriptions_list_only/index.md
new file mode 100644
index 0000000000..b4182f4166
--- /dev/null
+++ b/docs/aws-docs/providers/aws/ce/anomaly_subscriptions_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: anomaly_subscriptions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - anomaly_subscriptions_list_only
+ - ce
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists anomaly_subscriptions
in a region or regions, for all properties use anomaly_subscriptions
+
+## Overview
+
+Name anomaly_subscriptions_list_only
+Type Resource
+Description AWS Cost Anomaly Detection leverages advanced Machine Learning technologies to identify anomalous spend and root causes, so you can quickly take action. Create subscription to be notified
+Id
+
+
+## Fields
+Name Datatype Description string
Subscription ARN
+string
The name of the subscription.
+string
The accountId
+array
A list of cost anomaly monitors.
+array
A list of subscriber
+number
The dollar value that triggers a notification if the threshold is exceeded.
+string
An Expression object in JSON String format used to specify the anomalies that you want to generate alerts for.
+string
The frequency at which anomaly reports are sent over email.
+array
Tags to assign to subscription.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all anomaly_subscriptions
in a region.
+```sql
+SELECT
+region,
+subscription_arn
+FROM aws.ce.anomaly_subscriptions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the anomaly_subscriptions_list_only
resource, see anomaly_subscriptions
+
+
diff --git a/docs/aws-docs/providers/aws/ce/cost_categories/index.md b/docs/aws-docs/providers/aws/ce/cost_categories/index.md
index 7cf717223d..c9c7f21d94 100644
--- a/docs/aws-docs/providers/aws/ce/cost_categories/index.md
+++ b/docs/aws-docs/providers/aws/ce/cost_categories/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a cost_category
resource or lists
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a cost_category
resource or lists
## `SELECT` examples
-List all cost_categories
in a region.
+Gets all cost_categories
in a region.
```sql
SELECT
region,
-arn
+arn,
+effective_start,
+name,
+rule_version,
+rules,
+split_charge_rules,
+default_value
FROM aws.ce.cost_categories
WHERE region = 'us-east-1';
```
-Gets all properties from a cost_category
.
+Gets all properties from an individual cost_category
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.ce.cost_categories
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new cost_category
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/ce/cost_categories_list_only/index.md b/docs/aws-docs/providers/aws/ce/cost_categories_list_only/index.md
new file mode 100644
index 0000000000..93266f1384
--- /dev/null
+++ b/docs/aws-docs/providers/aws/ce/cost_categories_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: cost_categories_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - cost_categories_list_only
+ - ce
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists cost_categories
in a region or regions, for all properties use cost_categories
+
+## Overview
+
+Name cost_categories_list_only
+Type Resource
+Description Cost Category enables you to map your cost and usage into meaningful categories. You can use Cost Category to organize your costs using a rule-based engine.
+Id
+
+
+## Fields
+Name Datatype Description string
Cost category ARN
+string
ISO 8601 date time with offset format
+string
+string
+string
JSON array format of Expression in Billing and Cost Management API
+string
Json array format of CostCategorySplitChargeRule in Billing and Cost Management API
+string
The default value for the cost category
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all cost_categories
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.ce.cost_categories_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the cost_categories_list_only
resource, see cost_categories
+
+
diff --git a/docs/aws-docs/providers/aws/ce/index.md b/docs/aws-docs/providers/aws/ce/index.md
index e13ee9fc49..5141c57c9a 100644
--- a/docs/aws-docs/providers/aws/ce/index.md
+++ b/docs/aws-docs/providers/aws/ce/index.md
@@ -20,7 +20,7 @@ The ce service documentation.
-total resources: 3
+total resources: 6
@@ -30,9 +30,12 @@ The ce service documentation.
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/certificatemanager/accounts/index.md b/docs/aws-docs/providers/aws/certificatemanager/accounts/index.md
index 1d6da64923..639c8733eb 100644
--- a/docs/aws-docs/providers/aws/certificatemanager/accounts/index.md
+++ b/docs/aws-docs/providers/aws/certificatemanager/accounts/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets an account
resource or lists account
.
+Gets all properties from an individual account
.
```sql
SELECT
region,
@@ -77,7 +77,6 @@ FROM aws.certificatemanager.accounts
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new account
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/chatbot/index.md b/docs/aws-docs/providers/aws/chatbot/index.md
index 99a535e306..d23421bf62 100644
--- a/docs/aws-docs/providers/aws/chatbot/index.md
+++ b/docs/aws-docs/providers/aws/chatbot/index.md
@@ -20,7 +20,7 @@ The chatbot service documentation.
-total resources: 2
+total resources: 6
@@ -29,9 +29,13 @@ The chatbot service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configuration_tags/index.md b/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configuration_tags/index.md
new file mode 100644
index 0000000000..f4983cd363
--- /dev/null
+++ b/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configuration_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: microsoft_teams_channel_configuration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - microsoft_teams_channel_configuration_tags
+ - chatbot
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for microsoft_teams_channel_configurations
in a region
+
+## Overview
+
+Name microsoft_teams_channel_configuration_tags
+Type Resource
+Description Resource schema for AWS::Chatbot::MicrosoftTeamsChannelConfiguration.
+Id
+
+
+## Fields
+Name Datatype Description string
The id of the Microsoft Teams team
+string
The id of the Microsoft Teams channel
+string
The id of the Microsoft Teams tenant
+string
The name of the configuration
+string
The ARN of the IAM role that defines the permissions for AWS Chatbot
+array
ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
+string
Specifies the logging level for this configuration:ERROR,INFO or NONE. This property affects the log entries pushed to Amazon CloudWatch logs
+string
Amazon Resource Name (ARN) of the configuration
+array
The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
+boolean
Enables use of a user role requirement in your chat configuration
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all microsoft_teams_channel_configurations
in a region.
+```sql
+SELECT
+region,
+team_id,
+teams_channel_id,
+teams_tenant_id,
+configuration_name,
+iam_role_arn,
+sns_topic_arns,
+logging_level,
+arn,
+guardrail_policies,
+user_role_required,
+tag_key,
+tag_value
+FROM aws.chatbot.microsoft_teams_channel_configuration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the microsoft_teams_channel_configuration_tags
resource, see microsoft_teams_channel_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configurations/index.md b/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configurations/index.md
index 3a3a266c44..f0a34f34ab 100644
--- a/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configurations/index.md
+++ b/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configurations/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a microsoft_teams_channel_configuration<
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a microsoft_teams_channel_configuration<
## `SELECT` examples
-List all microsoft_teams_channel_configurations
in a region.
+Gets all microsoft_teams_channel_configurations
in a region.
```sql
SELECT
region,
-arn
+team_id,
+teams_channel_id,
+teams_tenant_id,
+configuration_name,
+iam_role_arn,
+sns_topic_arns,
+logging_level,
+arn,
+guardrail_policies,
+user_role_required,
+tags
FROM aws.chatbot.microsoft_teams_channel_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from a microsoft_teams_channel_configuration
.
+Gets all properties from an individual microsoft_teams_channel_configuration
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.chatbot.microsoft_teams_channel_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new microsoft_teams_channel_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configurations_list_only/index.md b/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configurations_list_only/index.md
new file mode 100644
index 0000000000..bf08ac2ae3
--- /dev/null
+++ b/docs/aws-docs/providers/aws/chatbot/microsoft_teams_channel_configurations_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: microsoft_teams_channel_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - microsoft_teams_channel_configurations_list_only
+ - chatbot
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists microsoft_teams_channel_configurations
in a region or regions, for all properties use microsoft_teams_channel_configurations
+
+## Overview
+
+Name microsoft_teams_channel_configurations_list_only
+Type Resource
+Description Resource schema for AWS::Chatbot::MicrosoftTeamsChannelConfiguration.
+Id
+
+
+## Fields
+Name Datatype Description string
The id of the Microsoft Teams team
+string
The id of the Microsoft Teams channel
+string
The id of the Microsoft Teams tenant
+string
The name of the configuration
+string
The ARN of the IAM role that defines the permissions for AWS Chatbot
+array
ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
+string
Specifies the logging level for this configuration:ERROR,INFO or NONE. This property affects the log entries pushed to Amazon CloudWatch logs
+string
Amazon Resource Name (ARN) of the configuration
+array
The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
+boolean
Enables use of a user role requirement in your chat configuration
+array
The tags to add to the configuration
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all microsoft_teams_channel_configurations
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.chatbot.microsoft_teams_channel_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the microsoft_teams_channel_configurations_list_only
resource, see microsoft_teams_channel_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/chatbot/slack_channel_configuration_tags/index.md b/docs/aws-docs/providers/aws/chatbot/slack_channel_configuration_tags/index.md
new file mode 100644
index 0000000000..cad441d9ae
--- /dev/null
+++ b/docs/aws-docs/providers/aws/chatbot/slack_channel_configuration_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: slack_channel_configuration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - slack_channel_configuration_tags
+ - chatbot
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for slack_channel_configurations
in a region
+
+## Overview
+
+Name slack_channel_configuration_tags
+Type Resource
+Description Resource schema for AWS::Chatbot::SlackChannelConfiguration.
+Id
+
+
+## Fields
+Name Datatype Description string
The id of the Slack workspace
+string
The id of the Slack channel
+string
The name of the configuration
+string
The ARN of the IAM role that defines the permissions for AWS Chatbot
+array
ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
+string
Specifies the logging level for this configuration:ERROR,INFO or NONE. This property affects the log entries pushed to Amazon CloudWatch logs
+string
Amazon Resource Name (ARN) of the configuration
+array
The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
+boolean
Enables use of a user role requirement in your chat configuration
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all slack_channel_configurations
in a region.
+```sql
+SELECT
+region,
+slack_workspace_id,
+slack_channel_id,
+configuration_name,
+iam_role_arn,
+sns_topic_arns,
+logging_level,
+arn,
+guardrail_policies,
+user_role_required,
+tag_key,
+tag_value
+FROM aws.chatbot.slack_channel_configuration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the slack_channel_configuration_tags
resource, see slack_channel_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/chatbot/slack_channel_configurations/index.md b/docs/aws-docs/providers/aws/chatbot/slack_channel_configurations/index.md
index babac8cefc..404bd74740 100644
--- a/docs/aws-docs/providers/aws/chatbot/slack_channel_configurations/index.md
+++ b/docs/aws-docs/providers/aws/chatbot/slack_channel_configurations/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a slack_channel_configuration
res
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a slack_channel_configuration
res
## `SELECT` examples
-List all slack_channel_configurations
in a region.
+Gets all slack_channel_configurations
in a region.
```sql
SELECT
region,
-arn
+slack_workspace_id,
+slack_channel_id,
+configuration_name,
+iam_role_arn,
+sns_topic_arns,
+logging_level,
+arn,
+guardrail_policies,
+tags,
+user_role_required
FROM aws.chatbot.slack_channel_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from a slack_channel_configuration
.
+Gets all properties from an individual slack_channel_configuration
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.chatbot.slack_channel_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new slack_channel_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/chatbot/slack_channel_configurations_list_only/index.md b/docs/aws-docs/providers/aws/chatbot/slack_channel_configurations_list_only/index.md
new file mode 100644
index 0000000000..d3a428889f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/chatbot/slack_channel_configurations_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: slack_channel_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - slack_channel_configurations_list_only
+ - chatbot
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists slack_channel_configurations
in a region or regions, for all properties use slack_channel_configurations
+
+## Overview
+
+Name slack_channel_configurations_list_only
+Type Resource
+Description Resource schema for AWS::Chatbot::SlackChannelConfiguration.
+Id
+
+
+## Fields
+Name Datatype Description string
The id of the Slack workspace
+string
The id of the Slack channel
+string
The name of the configuration
+string
The ARN of the IAM role that defines the permissions for AWS Chatbot
+array
ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
+string
Specifies the logging level for this configuration:ERROR,INFO or NONE. This property affects the log entries pushed to Amazon CloudWatch logs
+string
Amazon Resource Name (ARN) of the configuration
+array
The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
+array
The tags to add to the configuration
+boolean
Enables use of a user role requirement in your chat configuration
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all slack_channel_configurations
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.chatbot.slack_channel_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the slack_channel_configurations_list_only
resource, see slack_channel_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/analysis_template_tags/index.md b/docs/aws-docs/providers/aws/cleanrooms/analysis_template_tags/index.md
new file mode 100644
index 0000000000..2bc8137c21
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/analysis_template_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: analysis_template_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - analysis_template_tags
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for analysis_templates
in a region
+
+## Overview
+
+Name analysis_template_tags
+Type Resource
+Description Represents a stored analysis within a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+array
The member who can query can provide this placeholder for a literal data value in an analysis template
+string
+string
+string
+string
+string
+object
+object
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all analysis_templates
in a region.
+```sql
+SELECT
+region,
+arn,
+collaboration_arn,
+collaboration_identifier,
+analysis_parameters,
+analysis_template_identifier,
+description,
+membership_arn,
+membership_identifier,
+name,
+schema,
+source,
+format,
+tag_key,
+tag_value
+FROM aws.cleanrooms.analysis_template_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the analysis_template_tags
resource, see analysis_templates
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/analysis_templates/index.md b/docs/aws-docs/providers/aws/cleanrooms/analysis_templates/index.md
index 5d054aa48d..9e212c7145 100644
--- a/docs/aws-docs/providers/aws/cleanrooms/analysis_templates/index.md
+++ b/docs/aws-docs/providers/aws/cleanrooms/analysis_templates/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets an analysis_template
resource or
-
+
SELECT
@@ -82,16 +82,27 @@ Creates, updates, deletes or gets an analysis_template
resource or
## `SELECT` examples
-List all analysis_templates
in a region.
+Gets all analysis_templates
in a region.
```sql
SELECT
region,
+arn,
+collaboration_arn,
+collaboration_identifier,
+tags,
+analysis_parameters,
analysis_template_identifier,
-membership_identifier
+description,
+membership_arn,
+membership_identifier,
+name,
+schema,
+source,
+format
FROM aws.cleanrooms.analysis_templates
WHERE region = 'us-east-1';
```
-Gets all properties from an analysis_template
.
+Gets all properties from an individual analysis_template
.
```sql
SELECT
region,
@@ -112,7 +123,6 @@ FROM aws.cleanrooms.analysis_templates
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new analysis_template
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cleanrooms/analysis_templates_list_only/index.md b/docs/aws-docs/providers/aws/cleanrooms/analysis_templates_list_only/index.md
new file mode 100644
index 0000000000..e621ce2a15
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/analysis_templates_list_only/index.md
@@ -0,0 +1,80 @@
+---
+title: analysis_templates_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - analysis_templates_list_only
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists analysis_templates
in a region or regions, for all properties use analysis_templates
+
+## Overview
+
+Name analysis_templates_list_only
+Type Resource
+Description Represents a stored analysis within a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+array
An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
+array
The member who can query can provide this placeholder for a literal data value in an analysis template
+string
+string
+string
+string
+string
+object
+object
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all analysis_templates
in a region.
+```sql
+SELECT
+region,
+analysis_template_identifier,
+membership_identifier
+FROM aws.cleanrooms.analysis_templates_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the analysis_templates_list_only
resource, see analysis_templates
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/collaboration_tags/index.md b/docs/aws-docs/providers/aws/cleanrooms/collaboration_tags/index.md
new file mode 100644
index 0000000000..0deb93877f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/collaboration_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: collaboration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - collaboration_tags
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for collaborations
in a region
+
+## Overview
+
+Name collaboration_tags
+Type Resource
+Description Represents a collaboration between AWS accounts that allows for secure data collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+array
+object
+string
+array
+string
+string
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all collaborations
in a region.
+```sql
+SELECT
+region,
+arn,
+collaboration_identifier,
+creator_display_name,
+creator_member_abilities,
+data_encryption_metadata,
+description,
+members,
+name,
+query_log_status,
+creator_payment_configuration,
+tag_key,
+tag_value
+FROM aws.cleanrooms.collaboration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the collaboration_tags
resource, see collaborations
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/collaborations/index.md b/docs/aws-docs/providers/aws/cleanrooms/collaborations/index.md
index 8e2387e435..fcd3603d71 100644
--- a/docs/aws-docs/providers/aws/cleanrooms/collaborations/index.md
+++ b/docs/aws-docs/providers/aws/cleanrooms/collaborations/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a collaboration
resource or lists
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a collaboration
resource or lists
## `SELECT` examples
-List all collaborations
in a region.
+Gets all collaborations
in a region.
```sql
SELECT
region,
-collaboration_identifier
+arn,
+tags,
+collaboration_identifier,
+creator_display_name,
+creator_member_abilities,
+data_encryption_metadata,
+description,
+members,
+name,
+query_log_status,
+creator_payment_configuration
FROM aws.cleanrooms.collaborations
WHERE region = 'us-east-1';
```
-Gets all properties from a collaboration
.
+Gets all properties from an individual collaboration
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.cleanrooms.collaborations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new collaboration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cleanrooms/collaborations_list_only/index.md b/docs/aws-docs/providers/aws/cleanrooms/collaborations_list_only/index.md
new file mode 100644
index 0000000000..f995fc7c93
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/collaborations_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: collaborations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - collaborations_list_only
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists collaborations
in a region or regions, for all properties use collaborations
+
+## Overview
+
+Name collaborations_list_only
+Type Resource
+Description Represents a collaboration between AWS accounts that allows for secure data collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+array
An arbitrary set of tags (key-value pairs) for this cleanrooms collaboration.
+string
+string
+array
+object
+string
+array
+string
+string
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all collaborations
in a region.
+```sql
+SELECT
+region,
+collaboration_identifier
+FROM aws.cleanrooms.collaborations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the collaborations_list_only
resource, see collaborations
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/configured_table_association_tags/index.md b/docs/aws-docs/providers/aws/cleanrooms/configured_table_association_tags/index.md
new file mode 100644
index 0000000000..df0e2b1436
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/configured_table_association_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: configured_table_association_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configured_table_association_tags
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for configured_table_associations
in a region
+
+## Overview
+
+Name configured_table_association_tags
+Type Resource
+Description Represents a table that can be queried within a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all configured_table_associations
in a region.
+```sql
+SELECT
+region,
+arn,
+configured_table_association_identifier,
+configured_table_identifier,
+description,
+membership_identifier,
+name,
+role_arn,
+tag_key,
+tag_value
+FROM aws.cleanrooms.configured_table_association_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configured_table_association_tags
resource, see configured_table_associations
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/configured_table_associations/index.md b/docs/aws-docs/providers/aws/cleanrooms/configured_table_associations/index.md
index 33da4fba0f..353ade0a29 100644
--- a/docs/aws-docs/providers/aws/cleanrooms/configured_table_associations/index.md
+++ b/docs/aws-docs/providers/aws/cleanrooms/configured_table_associations/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a configured_table_association
re
-
+
SELECT
@@ -77,16 +77,22 @@ Creates, updates, deletes or gets a configured_table_association
re
## `SELECT` examples
-List all configured_table_associations
in a region.
+Gets all configured_table_associations
in a region.
```sql
SELECT
region,
+arn,
+tags,
configured_table_association_identifier,
-membership_identifier
+configured_table_identifier,
+description,
+membership_identifier,
+name,
+role_arn
FROM aws.cleanrooms.configured_table_associations
WHERE region = 'us-east-1';
```
-Gets all properties from a configured_table_association
.
+Gets all properties from an individual configured_table_association
.
```sql
SELECT
region,
@@ -102,7 +108,6 @@ FROM aws.cleanrooms.configured_table_associations
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new configured_table_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cleanrooms/configured_table_associations_list_only/index.md b/docs/aws-docs/providers/aws/cleanrooms/configured_table_associations_list_only/index.md
new file mode 100644
index 0000000000..bcbe0292e1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/configured_table_associations_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: configured_table_associations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configured_table_associations_list_only
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists configured_table_associations
in a region or regions, for all properties use configured_table_associations
+
+## Overview
+
+Name configured_table_associations_list_only
+Type Resource
+Description Represents a table that can be queried within a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+array
An arbitrary set of tags (key-value pairs) for this cleanrooms collaboration.
+string
+string
+string
+string
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all configured_table_associations
in a region.
+```sql
+SELECT
+region,
+configured_table_association_identifier,
+membership_identifier
+FROM aws.cleanrooms.configured_table_associations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configured_table_associations_list_only
resource, see configured_table_associations
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/configured_table_tags/index.md b/docs/aws-docs/providers/aws/cleanrooms/configured_table_tags/index.md
new file mode 100644
index 0000000000..43249a4b04
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/configured_table_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: configured_table_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configured_table_tags
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for configured_tables
in a region
+
+## Overview
+
+Name configured_table_tags
+Type Resource
+Description Represents a table that can be associated with collaborations
+Id
+
+
+## Fields
+Name Datatype Description string
+array
+string
+string
+string
+string
+array
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all configured_tables
in a region.
+```sql
+SELECT
+region,
+arn,
+allowed_columns,
+analysis_method,
+configured_table_identifier,
+description,
+name,
+analysis_rules,
+table_reference,
+tag_key,
+tag_value
+FROM aws.cleanrooms.configured_table_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configured_table_tags
resource, see configured_tables
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/configured_tables/index.md b/docs/aws-docs/providers/aws/cleanrooms/configured_tables/index.md
index 47c1e9a1bb..6680c5250e 100644
--- a/docs/aws-docs/providers/aws/cleanrooms/configured_tables/index.md
+++ b/docs/aws-docs/providers/aws/cleanrooms/configured_tables/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a configured_table
resource or li
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a configured_table
resource or li
## `SELECT` examples
-List all configured_tables
in a region.
+Gets all configured_tables
in a region.
```sql
SELECT
region,
-configured_table_identifier
+arn,
+tags,
+allowed_columns,
+analysis_method,
+configured_table_identifier,
+description,
+name,
+analysis_rules,
+table_reference
FROM aws.cleanrooms.configured_tables
WHERE region = 'us-east-1';
```
-Gets all properties from a configured_table
.
+Gets all properties from an individual configured_table
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.cleanrooms.configured_tables
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new configured_table
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cleanrooms/configured_tables_list_only/index.md b/docs/aws-docs/providers/aws/cleanrooms/configured_tables_list_only/index.md
new file mode 100644
index 0000000000..94f4cfdcae
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/configured_tables_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: configured_tables_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configured_tables_list_only
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists configured_tables
in a region or regions, for all properties use configured_tables
+
+## Overview
+
+Name configured_tables_list_only
+Type Resource
+Description Represents a table that can be associated with collaborations
+Id
+
+
+## Fields
+Name Datatype Description string
+array
An arbitrary set of tags (key-value pairs) for this cleanrooms collaboration.
+array
+string
+string
+string
+string
+array
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all configured_tables
in a region.
+```sql
+SELECT
+region,
+configured_table_identifier
+FROM aws.cleanrooms.configured_tables_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configured_tables_list_only
resource, see configured_tables
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/index.md b/docs/aws-docs/providers/aws/cleanrooms/index.md
index 91d466e06c..d7fc9d9771 100644
--- a/docs/aws-docs/providers/aws/cleanrooms/index.md
+++ b/docs/aws-docs/providers/aws/cleanrooms/index.md
@@ -20,7 +20,7 @@ The cleanrooms service documentation.
-total resources: 6
+total resources: 18
@@ -29,13 +29,25 @@ The cleanrooms service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cleanrooms/membership_tags/index.md b/docs/aws-docs/providers/aws/cleanrooms/membership_tags/index.md
new file mode 100644
index 0000000000..5dde4cfec0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/membership_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: membership_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - membership_tags
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for memberships
in a region
+
+## Overview
+
+Name membership_tags
+Type Resource
+Description Represents an AWS account that is a part of a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+object
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all memberships
in a region.
+```sql
+SELECT
+region,
+arn,
+collaboration_arn,
+collaboration_creator_account_id,
+collaboration_identifier,
+membership_identifier,
+query_log_status,
+default_result_configuration,
+payment_configuration,
+tag_key,
+tag_value
+FROM aws.cleanrooms.membership_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the membership_tags
resource, see memberships
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/memberships/index.md b/docs/aws-docs/providers/aws/cleanrooms/memberships/index.md
index 14a9634e9d..4be7b73dfd 100644
--- a/docs/aws-docs/providers/aws/cleanrooms/memberships/index.md
+++ b/docs/aws-docs/providers/aws/cleanrooms/memberships/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a membership
resource or lists
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a membership
resource or lists
## `SELECT` examples
-List all memberships
in a region.
+Gets all memberships
in a region.
```sql
SELECT
region,
-membership_identifier
+arn,
+tags,
+collaboration_arn,
+collaboration_creator_account_id,
+collaboration_identifier,
+membership_identifier,
+query_log_status,
+default_result_configuration,
+payment_configuration
FROM aws.cleanrooms.memberships
WHERE region = 'us-east-1';
```
-Gets all properties from a membership
.
+Gets all properties from an individual membership
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.cleanrooms.memberships
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new membership
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cleanrooms/memberships_list_only/index.md b/docs/aws-docs/providers/aws/cleanrooms/memberships_list_only/index.md
new file mode 100644
index 0000000000..f073bef9b3
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/memberships_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: memberships_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - memberships_list_only
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists memberships
in a region or regions, for all properties use memberships
+
+## Overview
+
+Name memberships_list_only
+Type Resource
+Description Represents an AWS account that is a part of a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+array
An arbitrary set of tags (key-value pairs) for this cleanrooms membership.
+string
+string
+string
+string
+string
+object
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all memberships
in a region.
+```sql
+SELECT
+region,
+membership_identifier
+FROM aws.cleanrooms.memberships_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the memberships_list_only
resource, see memberships
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_template_tags/index.md b/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_template_tags/index.md
new file mode 100644
index 0000000000..e8f6ba6b47
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_template_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: privacy_budget_template_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - privacy_budget_template_tags
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for privacy_budget_templates
in a region
+
+## Overview
+
+Name privacy_budget_template_tags
+Type Resource
+Description Represents a privacy budget within a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
+object
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all privacy_budget_templates
in a region.
+```sql
+SELECT
+region,
+arn,
+collaboration_arn,
+collaboration_identifier,
+privacy_budget_template_identifier,
+auto_refresh,
+privacy_budget_type,
+parameters,
+membership_arn,
+membership_identifier,
+tag_key,
+tag_value
+FROM aws.cleanrooms.privacy_budget_template_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the privacy_budget_template_tags
resource, see privacy_budget_templates
+
+
diff --git a/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_templates/index.md b/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_templates/index.md
index d882ae5843..0e1ec5df80 100644
--- a/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_templates/index.md
+++ b/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_templates/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a privacy_budget_template
resourc
-
+
SELECT
@@ -79,16 +79,24 @@ Creates, updates, deletes or gets a privacy_budget_template
resourc
## `SELECT` examples
-List all privacy_budget_templates
in a region.
+Gets all privacy_budget_templates
in a region.
```sql
SELECT
region,
+arn,
+collaboration_arn,
+collaboration_identifier,
privacy_budget_template_identifier,
+tags,
+auto_refresh,
+privacy_budget_type,
+parameters,
+membership_arn,
membership_identifier
FROM aws.cleanrooms.privacy_budget_templates
WHERE region = 'us-east-1';
```
-Gets all properties from a privacy_budget_template
.
+Gets all properties from an individual privacy_budget_template
.
```sql
SELECT
region,
@@ -106,7 +114,6 @@ FROM aws.cleanrooms.privacy_budget_templates
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new privacy_budget_template
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_templates_list_only/index.md b/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_templates_list_only/index.md
new file mode 100644
index 0000000000..c41bdb5e44
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanrooms/privacy_budget_templates_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: privacy_budget_templates_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - privacy_budget_templates_list_only
+ - cleanrooms
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists privacy_budget_templates
in a region or regions, for all properties use privacy_budget_templates
+
+## Overview
+
+Name privacy_budget_templates_list_only
+Type Resource
+Description Represents a privacy budget within a collaboration
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+array
An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template.
+string
+string
+object
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all privacy_budget_templates
in a region.
+```sql
+SELECT
+region,
+privacy_budget_template_identifier,
+membership_identifier
+FROM aws.cleanrooms.privacy_budget_templates_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the privacy_budget_templates_list_only
resource, see privacy_budget_templates
+
+
diff --git a/docs/aws-docs/providers/aws/cleanroomsml/index.md b/docs/aws-docs/providers/aws/cleanroomsml/index.md
index 5c110b5b3a..82eb09a10a 100644
--- a/docs/aws-docs/providers/aws/cleanroomsml/index.md
+++ b/docs/aws-docs/providers/aws/cleanroomsml/index.md
@@ -20,7 +20,7 @@ The cleanroomsml service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The cleanroomsml service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cleanroomsml/training_dataset_tags/index.md b/docs/aws-docs/providers/aws/cleanroomsml/training_dataset_tags/index.md
new file mode 100644
index 0000000000..e92cda6b6e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanroomsml/training_dataset_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: training_dataset_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - training_dataset_tags
+ - cleanroomsml
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for training_datasets
in a region
+
+## Overview
+
+Name training_dataset_tags
+Type Resource
+Description Definition of AWS::CleanRoomsML::TrainingDataset Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+array
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all training_datasets
in a region.
+```sql
+SELECT
+region,
+description,
+name,
+role_arn,
+training_data,
+training_dataset_arn,
+status,
+tag_key,
+tag_value
+FROM aws.cleanroomsml.training_dataset_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the training_dataset_tags
resource, see training_datasets
+
+
diff --git a/docs/aws-docs/providers/aws/cleanroomsml/training_datasets/index.md b/docs/aws-docs/providers/aws/cleanroomsml/training_datasets/index.md
index a9fd410c94..7adddf6357 100644
--- a/docs/aws-docs/providers/aws/cleanroomsml/training_datasets/index.md
+++ b/docs/aws-docs/providers/aws/cleanroomsml/training_datasets/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a training_dataset
resource or li
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a training_dataset
resource or li
## `SELECT` examples
-List all training_datasets
in a region.
+Gets all training_datasets
in a region.
```sql
SELECT
region,
-training_dataset_arn
+description,
+name,
+role_arn,
+tags,
+training_data,
+training_dataset_arn,
+status
FROM aws.cleanroomsml.training_datasets
WHERE region = 'us-east-1';
```
-Gets all properties from a training_dataset
.
+Gets all properties from an individual training_dataset
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.cleanroomsml.training_datasets
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new training_dataset
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cleanroomsml/training_datasets_list_only/index.md b/docs/aws-docs/providers/aws/cleanroomsml/training_datasets_list_only/index.md
new file mode 100644
index 0000000000..bdb7ab4620
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cleanroomsml/training_datasets_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: training_datasets_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - training_datasets_list_only
+ - cleanroomsml
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists training_datasets
in a region or regions, for all properties use training_datasets
+
+## Overview
+
+Name training_datasets_list_only
+Type Resource
+Description Definition of AWS::CleanRoomsML::TrainingDataset Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+array
An arbitrary set of tags (key-value pairs) for this cleanrooms-ml training dataset.
+array
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all training_datasets
in a region.
+```sql
+SELECT
+region,
+training_dataset_arn
+FROM aws.cleanroomsml.training_datasets_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the training_datasets_list_only
resource, see training_datasets
+
+
diff --git a/docs/aws-docs/providers/aws/cloud_control/resource/index.md b/docs/aws-docs/providers/aws/cloud_control/resource/index.md
index a2b610444a..cf93b2a89f 100644
--- a/docs/aws-docs/providers/aws/cloud_control/resource/index.md
+++ b/docs/aws-docs/providers/aws/cloud_control/resource/index.md
@@ -56,4 +56,3 @@ Represents information about a provisioned resource.
-
diff --git a/docs/aws-docs/providers/aws/cloud_control/resource_request/index.md b/docs/aws-docs/providers/aws/cloud_control/resource_request/index.md
index 54582da168..76bd7da776 100644
--- a/docs/aws-docs/providers/aws/cloud_control/resource_request/index.md
+++ b/docs/aws-docs/providers/aws/cloud_control/resource_request/index.md
@@ -64,4 +64,3 @@ For more information about Amazon Web Services Cloud Control API, see the hook_default_version
resource o
-
+
SELECT
@@ -68,15 +68,18 @@ Creates, updates, deletes or gets a hook_default_version
resource o
## `SELECT` examples
-List all hook_default_versions
in a region.
+Gets all hook_default_versions
in a region.
```sql
SELECT
region,
-arn
+type_version_arn,
+type_name,
+arn,
+version_id
FROM aws.cloudformation.hook_default_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a hook_default_version
.
+Gets all properties from an individual hook_default_version
.
```sql
SELECT
region,
@@ -88,7 +91,6 @@ FROM aws.cloudformation.hook_default_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new hook_default_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/hook_default_versions_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/hook_default_versions_list_only/index.md
new file mode 100644
index 0000000000..542a551b5c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/hook_default_versions_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: hook_default_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hook_default_versions_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists hook_default_versions
in a region or regions, for all properties use hook_default_versions
+
+## Overview
+
+Name hook_default_versions_list_only
+Type Resource
+Description Set a version as default version for a hook in CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the type version.
+string
The name of the type being registered.
We recommend that type names adhere to the following pattern: company_or_organization::service::type.
+string
The Amazon Resource Name (ARN) of the type. This is used to uniquely identify a HookDefaultVersion
+string
The ID of an existing version of the hook to set as the default.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all hook_default_versions
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.cloudformation.hook_default_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hook_default_versions_list_only
resource, see hook_default_versions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/hook_type_configs/index.md b/docs/aws-docs/providers/aws/cloudformation/hook_type_configs/index.md
index b2059e01a5..23bf279f9e 100644
--- a/docs/aws-docs/providers/aws/cloudformation/hook_type_configs/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/hook_type_configs/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a hook_type_config
resource or li
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a hook_type_config
resource or li
## `SELECT` examples
-List all hook_type_configs
in a region.
+Gets all hook_type_configs
in a region.
```sql
SELECT
region,
-configuration_arn
+type_arn,
+type_name,
+configuration_arn,
+configuration,
+configuration_alias
FROM aws.cloudformation.hook_type_configs
WHERE region = 'us-east-1';
```
-Gets all properties from a hook_type_config
.
+Gets all properties from an individual hook_type_config
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.cloudformation.hook_type_configs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new hook_type_config
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/hook_type_configs_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/hook_type_configs_list_only/index.md
new file mode 100644
index 0000000000..d4de3eaad4
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/hook_type_configs_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: hook_type_configs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hook_type_configs_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists hook_type_configs
in a region or regions, for all properties use hook_type_configs
+
+## Overview
+
+Name hook_type_configs_list_only
+Type Resource
+Description Specifies the configuration data for a registered hook in CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the type without version number.
+string
The name of the type being registered.
We recommend that type names adhere to the following pattern: company_or_organization::service::type.
+string
The Amazon Resource Name (ARN) for the configuration data, in this account and region.
+string
The configuration data for the extension, in this account and region.
+string
An alias by which to refer to this extension configuration data.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all hook_type_configs
in a region.
+```sql
+SELECT
+region,
+configuration_arn
+FROM aws.cloudformation.hook_type_configs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hook_type_configs_list_only
resource, see hook_type_configs
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/hook_versions/index.md b/docs/aws-docs/providers/aws/cloudformation/hook_versions/index.md
index 11d778b3a2..89a4543859 100644
--- a/docs/aws-docs/providers/aws/cloudformation/hook_versions/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/hook_versions/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a hook_version
resource or lists
-
+
SELECT
@@ -73,15 +73,23 @@ Creates, updates, deletes or gets a hook_version
resource or lists
## `SELECT` examples
-List all hook_versions
in a region.
+Gets all hook_versions
in a region.
```sql
SELECT
region,
-arn
+arn,
+type_arn,
+execution_role_arn,
+is_default_version,
+logging_config,
+schema_handler_package,
+type_name,
+version_id,
+visibility
FROM aws.cloudformation.hook_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a hook_version
.
+Gets all properties from an individual hook_version
.
```sql
SELECT
region,
@@ -98,7 +106,6 @@ FROM aws.cloudformation.hook_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new hook_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/hook_versions_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/hook_versions_list_only/index.md
new file mode 100644
index 0000000000..4957efea3f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/hook_versions_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: hook_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hook_versions_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists hook_versions
in a region or regions, for all properties use hook_versions
+
+## Overview
+
+Name hook_versions_list_only
+Type Resource
+Description Publishes new or first hook version to AWS CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the type, here the HookVersion. This is used to uniquely identify a HookVersion resource
+string
The Amazon Resource Name (ARN) of the type without the versionID.
+string
The Amazon Resource Name (ARN) of the IAM execution role to use to register the type. If your resource type calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. CloudFormation then assumes that execution role to provide your resource type with the appropriate credentials.
+boolean
Indicates if this type version is the current default version
+object
Specifies logging configuration information for a type.
+string
A url to the S3 bucket containing the schema handler package that contains the schema, event handlers, and associated files for the type you want to register.
For information on generating a schema handler package for the type you want to register, see submit in the CloudFormation CLI User Guide.
+string
The name of the type being registered.
We recommend that type names adhere to the following pattern: company_or_organization::service::type.
+string
The ID of the version of the type represented by this hook instance.
+string
The scope at which the type is visible and usable in CloudFormation operations.
Valid values include:
PRIVATE: The type is only visible and usable within the account in which it is registered. Currently, AWS CloudFormation marks any types you register as PRIVATE.
PUBLIC: The type is publically visible and usable within any Amazon account.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all hook_versions
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.cloudformation.hook_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hook_versions_list_only
resource, see hook_versions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/index.md b/docs/aws-docs/providers/aws/cloudformation/index.md
index 44dd6996fb..1f7771be90 100644
--- a/docs/aws-docs/providers/aws/cloudformation/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/index.md
@@ -20,7 +20,7 @@ The cloudformation service documentation.
-total resources: 12
+total resources: 25
@@ -30,18 +30,31 @@ The cloudformation service documentation.
hook_default_versions
+hook_default_versions_list_only
hook_type_configs
+hook_type_configs_list_only
hook_versions
+hook_versions_list_only
module_default_versions
+module_default_versions_list_only
module_versions
-public_type_versions
+public_type_versions
+public_type_versions_list_only
+publishers
+publishers_list_only
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cloudformation/module_default_versions/index.md b/docs/aws-docs/providers/aws/cloudformation/module_default_versions/index.md
index 9b1aa7dfa7..7664f754af 100644
--- a/docs/aws-docs/providers/aws/cloudformation/module_default_versions/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/module_default_versions/index.md
@@ -50,7 +50,7 @@ Creates, updates, deletes or gets a module_default_version
resource
-
+
SELECT
@@ -62,15 +62,17 @@ Creates, updates, deletes or gets a module_default_version
resource
## `SELECT` examples
-List all module_default_versions
in a region.
+Gets all module_default_versions
in a region.
```sql
SELECT
region,
-arn
+arn,
+module_name,
+version_id
FROM aws.cloudformation.module_default_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a module_default_version
.
+Gets all properties from an individual module_default_version
.
```sql
SELECT
region,
@@ -81,7 +83,6 @@ FROM aws.cloudformation.module_default_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new module_default_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/module_default_versions_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/module_default_versions_list_only/index.md
new file mode 100644
index 0000000000..18da0fa894
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/module_default_versions_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: module_default_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - module_default_versions_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists module_default_versions
in a region or regions, for all properties use module_default_versions
+
+## Overview
+
+Name module_default_versions_list_only
+Type Resource
+Description A module that has been registered in the CloudFormation registry as the default version
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the module version to set as the default version.
+string
The name of a module existing in the registry.
+string
The ID of an existing version of the named module to set as the default.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all module_default_versions
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.cloudformation.module_default_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the module_default_versions_list_only
resource, see module_default_versions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/module_versions/index.md b/docs/aws-docs/providers/aws/cloudformation/module_versions/index.md
index 1e12913077..1d4fcb2402 100644
--- a/docs/aws-docs/providers/aws/cloudformation/module_versions/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/module_versions/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a module_version
resource or list
## `SELECT` examples
-Gets all properties from a module_version
.
+Gets all properties from an individual module_version
.
```sql
SELECT
region,
@@ -88,7 +88,6 @@ FROM aws.cloudformation.module_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new module_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/public_type_versions/index.md b/docs/aws-docs/providers/aws/cloudformation/public_type_versions/index.md
index d90359b7eb..b13892e689 100644
--- a/docs/aws-docs/providers/aws/cloudformation/public_type_versions/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/public_type_versions/index.md
@@ -55,7 +55,7 @@ Creates, updates, deletes or gets a public_type_version
resource or
-
+
SELECT
@@ -67,15 +67,22 @@ Creates, updates, deletes or gets a public_type_version
resource or
## `SELECT` examples
-List all public_type_versions
in a region.
+Gets all public_type_versions
in a region.
```sql
SELECT
region,
-public_type_arn
+arn,
+type_version_arn,
+public_version_number,
+publisher_id,
+public_type_arn,
+type_name,
+log_delivery_bucket,
+type
FROM aws.cloudformation.public_type_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a public_type_version
.
+Gets all properties from an individual public_type_version
.
```sql
SELECT
region,
@@ -91,7 +98,6 @@ FROM aws.cloudformation.public_type_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new public_type_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/public_type_versions_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/public_type_versions_list_only/index.md
new file mode 100644
index 0000000000..e1e5daf0b9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/public_type_versions_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: public_type_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - public_type_versions_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists public_type_versions
in a region or regions, for all properties use public_type_versions
+
+## Overview
+
+Name public_type_versions_list_only
+Type Resource
+Description Test and Publish a resource that has been registered in the CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Number (ARN) of the extension.
+string
The Amazon Resource Number (ARN) of the extension with the versionId.
+string
The version number of a public third-party extension
+string
The publisher id assigned by CloudFormation for publishing in this region.
+string
The Amazon Resource Number (ARN) assigned to the public extension upon publication
+string
The name of the type being registered.
We recommend that type names adhere to the following pattern: company_or_organization::service::type.
+string
A url to the S3 bucket where logs for the testType run will be available
+string
The kind of extension
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all public_type_versions
in a region.
+```sql
+SELECT
+region,
+public_type_arn
+FROM aws.cloudformation.public_type_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the public_type_versions_list_only
resource, see public_type_versions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/publishers/index.md b/docs/aws-docs/providers/aws/cloudformation/publishers/index.md
index 525b93b5a6..c210574e10 100644
--- a/docs/aws-docs/providers/aws/cloudformation/publishers/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/publishers/index.md
@@ -53,7 +53,7 @@ Creates, updates, deletes or gets a publisher
resource or lists
-
+
SELECT
@@ -65,15 +65,20 @@ Creates, updates, deletes or gets a publisher
resource or lists
## `SELECT` examples
-List all publishers
in a region.
+Gets all publishers
in a region.
```sql
SELECT
region,
-publisher_id
+accept_terms_and_conditions,
+publisher_id,
+connection_arn,
+publisher_status,
+publisher_profile,
+identity_provider
FROM aws.cloudformation.publishers
WHERE region = 'us-east-1';
```
-Gets all properties from a publisher
.
+Gets all properties from an individual publisher
.
```sql
SELECT
region,
@@ -87,7 +92,6 @@ FROM aws.cloudformation.publishers
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new publisher
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/publishers_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/publishers_list_only/index.md
new file mode 100644
index 0000000000..8e941004b5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/publishers_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: publishers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - publishers_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists publishers
in a region or regions, for all properties use publishers
+
+## Overview
+
+Name publishers_list_only
+Type Resource
+Description Register as a publisher in the CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description boolean
Whether you accept the terms and conditions for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to publish public extensions to the CloudFormation registry. The terms and conditions can be found at https://cloudformation-registry-documents.s3.amazonaws.com/Terms_and_Conditions_for_AWS_CloudFormation_Registry_Publishers.pdf
+string
The publisher id assigned by CloudFormation for publishing in this region.
+string
If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account.
+string
Whether the publisher is verified.
+string
The URL to the publisher's profile with the identity provider.
+string
The type of account used as the identity provider when registering this publisher with CloudFormation.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all publishers
in a region.
+```sql
+SELECT
+region,
+publisher_id
+FROM aws.cloudformation.publishers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the publishers_list_only
resource, see publishers
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/resource_default_versions/index.md b/docs/aws-docs/providers/aws/cloudformation/resource_default_versions/index.md
index afd54e437d..bf498b9756 100644
--- a/docs/aws-docs/providers/aws/cloudformation/resource_default_versions/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/resource_default_versions/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a resource_default_version
resour
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets a resource_default_version
resour
## `SELECT` examples
-List all resource_default_versions
in a region.
+Gets all resource_default_versions
in a region.
```sql
SELECT
region,
-arn
+version_id,
+type_name,
+arn,
+type_version_arn
FROM aws.cloudformation.resource_default_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a resource_default_version
.
+Gets all properties from an individual resource_default_version
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.cloudformation.resource_default_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new resource_default_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/resource_default_versions_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/resource_default_versions_list_only/index.md
new file mode 100644
index 0000000000..e9d84893c5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/resource_default_versions_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: resource_default_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - resource_default_versions_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists resource_default_versions
in a region or regions, for all properties use resource_default_versions
+
+## Overview
+
+Name resource_default_versions_list_only
+Type Resource
+Description The default version of a resource that has been registered in the CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description string
The ID of an existing version of the resource to set as the default.
+string
The name of the type being registered.
We recommend that type names adhere to the following pattern: company_or_organization::service::type.
+string
The Amazon Resource Name (ARN) of the type. This is used to uniquely identify a ResourceDefaultVersion
+string
The Amazon Resource Name (ARN) of the type version.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all resource_default_versions
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.cloudformation.resource_default_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the resource_default_versions_list_only
resource, see resource_default_versions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/resource_versions/index.md b/docs/aws-docs/providers/aws/cloudformation/resource_versions/index.md
index 38ab422a7e..490e05fafb 100644
--- a/docs/aws-docs/providers/aws/cloudformation/resource_versions/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/resource_versions/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a resource_version
resource or li
-
+
SELECT
@@ -74,15 +74,24 @@ Creates, updates, deletes or gets a resource_version
resource or li
## `SELECT` examples
-List all resource_versions
in a region.
+Gets all resource_versions
in a region.
```sql
SELECT
region,
-arn
+arn,
+type_arn,
+execution_role_arn,
+is_default_version,
+logging_config,
+provisioning_type,
+schema_handler_package,
+type_name,
+version_id,
+visibility
FROM aws.cloudformation.resource_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a resource_version
.
+Gets all properties from an individual resource_version
.
```sql
SELECT
region,
@@ -100,7 +109,6 @@ FROM aws.cloudformation.resource_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new resource_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/resource_versions_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/resource_versions_list_only/index.md
new file mode 100644
index 0000000000..9f233e0931
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/resource_versions_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: resource_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - resource_versions_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists resource_versions
in a region or regions, for all properties use resource_versions
+
+## Overview
+
+Name resource_versions_list_only
+Type Resource
+Description A resource that has been registered in the CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the type, here the ResourceVersion. This is used to uniquely identify a ResourceVersion resource
+string
The Amazon Resource Name (ARN) of the type without the versionID.
+string
The Amazon Resource Name (ARN) of the IAM execution role to use to register the type. If your resource type calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. CloudFormation then assumes that execution role to provide your resource type with the appropriate credentials.
+boolean
Indicates if this type version is the current default version
+object
Specifies logging configuration information for a type.
+string
The provisioning behavior of the type. AWS CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.
+string
A url to the S3 bucket containing the schema handler package that contains the schema, event handlers, and associated files for the type you want to register.
For information on generating a schema handler package for the type you want to register, see submit in the CloudFormation CLI User Guide.
+string
The name of the type being registered.
We recommend that type names adhere to the following pattern: company_or_organization::service::type.
+string
The ID of the version of the type represented by this resource instance.
+string
The scope at which the type is visible and usable in CloudFormation operations.
Valid values include:
PRIVATE: The type is only visible and usable within the account in which it is registered. Currently, AWS CloudFormation marks any types you register as PRIVATE.
PUBLIC: The type is publically visible and usable within any Amazon account.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all resource_versions
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.cloudformation.resource_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the resource_versions_list_only
resource, see resource_versions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/stack_set_tags/index.md b/docs/aws-docs/providers/aws/cloudformation/stack_set_tags/index.md
new file mode 100644
index 0000000000..afc0d6b03d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/stack_set_tags/index.md
@@ -0,0 +1,99 @@
+---
+title: stack_set_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stack_set_tags
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for stack_sets
in a region
+
+## Overview
+
+Name stack_set_tags
+Type Resource
+Description StackSet as a resource provides one-click experience for provisioning a StackSet and StackInstances
+Id
+
+
+## Fields
+Name Datatype Description string
The name to associate with the stack set. The name must be unique in the Region where you create your stack set.
+string
The ID of the stack set that you're creating.
+string
The Amazon Resource Number (ARN) of the IAM role to use to create this stack set. Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account.
+object
Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to the target organization or organizational unit (OU). Specify only if PermissionModel is SERVICE_MANAGED.
+array
In some cases, you must explicitly acknowledge that your stack set template contains certain capabilities in order for AWS CloudFormation to create the stack set and related stack instances.
+string
A description of the stack set. You can use the description to identify the stack set's purpose or other important information.
+string
The name of the IAM execution role to use to create the stack set. If you do not specify an execution role, AWS CloudFormation uses the AWSCloudFormationStackSetExecutionRole role for the stack set operation.
+object
The user-specified preferences for how AWS CloudFormation performs a stack set operation.
+array
A group of stack instances with parameters in some specific accounts and regions.
+array
The input parameters for the stack set template.
+string
Describes how the IAM roles required for stack set operations are created. By default, SELF-MANAGED is specified.
+string
The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes.
+string
Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that is located in an Amazon S3 bucket.
+string
Specifies the AWS account that you are acting from. By default, SELF is specified. For self-managed permissions, specify SELF; for service-managed permissions, if you are signed in to the organization's management account, specify SELF. If you are signed in to a delegated administrator account, specify DELEGATED_ADMIN.
+object
Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all stack_sets
in a region.
+```sql
+SELECT
+region,
+stack_set_name,
+stack_set_id,
+administration_role_arn,
+auto_deployment,
+capabilities,
+description,
+execution_role_name,
+operation_preferences,
+stack_instances_group,
+parameters,
+permission_model,
+template_body,
+template_url,
+call_as,
+managed_execution,
+tag_key,
+tag_value
+FROM aws.cloudformation.stack_set_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stack_set_tags
resource, see stack_sets
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/stack_sets/index.md b/docs/aws-docs/providers/aws/cloudformation/stack_sets/index.md
index a05ae06407..eda122b311 100644
--- a/docs/aws-docs/providers/aws/cloudformation/stack_sets/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/stack_sets/index.md
@@ -73,7 +73,7 @@ Creates, updates, deletes or gets a stack_set
resource or lists
-
+
SELECT
@@ -85,15 +85,30 @@ Creates, updates, deletes or gets a stack_set
resource or lists
## `SELECT` examples
-List all stack_sets
in a region.
+Gets all stack_sets
in a region.
```sql
SELECT
region,
-stack_set_id
+stack_set_name,
+stack_set_id,
+administration_role_arn,
+auto_deployment,
+capabilities,
+description,
+execution_role_name,
+operation_preferences,
+stack_instances_group,
+parameters,
+permission_model,
+tags,
+template_body,
+template_url,
+call_as,
+managed_execution
FROM aws.cloudformation.stack_sets
WHERE region = 'us-east-1';
```
-Gets all properties from a stack_set
.
+Gets all properties from an individual stack_set
.
```sql
SELECT
region,
@@ -117,7 +132,6 @@ FROM aws.cloudformation.stack_sets
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new stack_set
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/stack_sets_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/stack_sets_list_only/index.md
new file mode 100644
index 0000000000..a1ad9641e9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/stack_sets_list_only/index.md
@@ -0,0 +1,82 @@
+---
+title: stack_sets_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stack_sets_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists stack_sets
in a region or regions, for all properties use stack_sets
+
+## Overview
+
+Name stack_sets_list_only
+Type Resource
+Description StackSet as a resource provides one-click experience for provisioning a StackSet and StackInstances
+Id
+
+
+## Fields
+Name Datatype Description string
The name to associate with the stack set. The name must be unique in the Region where you create your stack set.
+string
The ID of the stack set that you're creating.
+string
The Amazon Resource Number (ARN) of the IAM role to use to create this stack set. Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific stack sets within the same administrator account.
+object
Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to the target organization or organizational unit (OU). Specify only if PermissionModel is SERVICE_MANAGED.
+array
In some cases, you must explicitly acknowledge that your stack set template contains certain capabilities in order for AWS CloudFormation to create the stack set and related stack instances.
+string
A description of the stack set. You can use the description to identify the stack set's purpose or other important information.
+string
The name of the IAM execution role to use to create the stack set. If you do not specify an execution role, AWS CloudFormation uses the AWSCloudFormationStackSetExecutionRole role for the stack set operation.
+object
The user-specified preferences for how AWS CloudFormation performs a stack set operation.
+array
A group of stack instances with parameters in some specific accounts and regions.
+array
The input parameters for the stack set template.
+string
Describes how the IAM roles required for stack set operations are created. By default, SELF-MANAGED is specified.
+array
The key-value pairs to associate with this stack set and the stacks created from it. AWS CloudFormation also propagates these tags to supported resources that are created in the stacks. A maximum number of 50 tags can be specified.
+string
The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes.
+string
Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that is located in an Amazon S3 bucket.
+string
Specifies the AWS account that you are acting from. By default, SELF is specified. For self-managed permissions, specify SELF; for service-managed permissions, if you are signed in to the organization's management account, specify SELF. If you are signed in to a delegated administrator account, specify DELEGATED_ADMIN.
+object
Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all stack_sets
in a region.
+```sql
+SELECT
+region,
+stack_set_id
+FROM aws.cloudformation.stack_sets_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stack_sets_list_only
resource, see stack_sets
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/stack_tags/index.md b/docs/aws-docs/providers/aws/cloudformation/stack_tags/index.md
new file mode 100644
index 0000000000..6facbc2810
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/stack_tags/index.md
@@ -0,0 +1,113 @@
+---
+title: stack_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stack_tags
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for stacks
in a region
+
+## Overview
+
+Name stack_tags
+Type Resource
+Description The AWS::CloudFormation::Stack resource nests a stack as a resource in a top-level template.
+Id
+
+
+## Fields
+Name Datatype Description array
+string
+array
+string
+boolean
+boolean
+array
+object
+string
+string
+string
+string
+string
+object
+string
+string
+string
+object
+string
+integer
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all stacks
in a region.
+```sql
+SELECT
+region,
+capabilities,
+role_arn,
+outputs,
+description,
+disable_rollback,
+enable_termination_protection,
+notification_arns,
+parameters,
+parent_id,
+root_id,
+change_set_id,
+stack_name,
+stack_id,
+stack_policy_body,
+stack_policy_url,
+stack_status,
+stack_status_reason,
+template_body,
+template_url,
+timeout_in_minutes,
+last_update_time,
+creation_time,
+tag_key,
+tag_value
+FROM aws.cloudformation.stack_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stack_tags
resource, see stacks
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/stacks/index.md b/docs/aws-docs/providers/aws/cloudformation/stacks/index.md
index 257cb470a1..6bd3fb912d 100644
--- a/docs/aws-docs/providers/aws/cloudformation/stacks/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/stacks/index.md
@@ -80,7 +80,7 @@ Creates, updates, deletes or gets a stack
resource or lists s
-
+
SELECT
@@ -92,15 +92,37 @@ Creates, updates, deletes or gets a stack
resource or lists s
## `SELECT` examples
-List all stacks
in a region.
+Gets all stacks
in a region.
```sql
SELECT
region,
-stack_id
+capabilities,
+role_arn,
+outputs,
+description,
+disable_rollback,
+enable_termination_protection,
+notification_arns,
+parameters,
+parent_id,
+root_id,
+change_set_id,
+stack_name,
+stack_id,
+stack_policy_body,
+stack_policy_url,
+stack_status,
+stack_status_reason,
+tags,
+template_body,
+template_url,
+timeout_in_minutes,
+last_update_time,
+creation_time
FROM aws.cloudformation.stacks
WHERE region = 'us-east-1';
```
-Gets all properties from a stack
.
+Gets all properties from an individual stack
.
```sql
SELECT
region,
@@ -131,7 +153,6 @@ FROM aws.cloudformation.stacks
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new stack
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/stacks_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/stacks_list_only/index.md
new file mode 100644
index 0000000000..e3a62f6687
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/stacks_list_only/index.md
@@ -0,0 +1,89 @@
+---
+title: stacks_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stacks_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists stacks
in a region or regions, for all properties use stacks
+
+## Overview
+
+Name stacks_list_only
+Type Resource
+Description The AWS::CloudFormation::Stack resource nests a stack as a resource in a top-level template.
+Id
+
+
+## Fields
+Name Datatype Description array
+string
+array
+string
+boolean
+boolean
+array
+object
+string
+string
+string
+string
+string
+object
+string
+string
+string
+array
+object
+string
+integer
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all stacks
in a region.
+```sql
+SELECT
+region,
+stack_id
+FROM aws.cloudformation.stacks_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stacks_list_only
resource, see stacks
+
+
diff --git a/docs/aws-docs/providers/aws/cloudformation/type_activations/index.md b/docs/aws-docs/providers/aws/cloudformation/type_activations/index.md
index 40fe1822f8..55e41d9163 100644
--- a/docs/aws-docs/providers/aws/cloudformation/type_activations/index.md
+++ b/docs/aws-docs/providers/aws/cloudformation/type_activations/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a type_activation
resource or lis
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a type_activation
resource or lis
## `SELECT` examples
-List all type_activations
in a region.
+Gets all type_activations
in a region.
```sql
SELECT
region,
-arn
+arn,
+execution_role_arn,
+publisher_id,
+logging_config,
+public_type_arn,
+auto_update,
+type_name_alias,
+version_bump,
+major_version,
+type_name,
+type
FROM aws.cloudformation.type_activations
WHERE region = 'us-east-1';
```
-Gets all properties from a type_activation
.
+Gets all properties from an individual type_activation
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.cloudformation.type_activations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new type_activation
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudformation/type_activations_list_only/index.md b/docs/aws-docs/providers/aws/cloudformation/type_activations_list_only/index.md
new file mode 100644
index 0000000000..9a9566b7cd
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudformation/type_activations_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: type_activations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - type_activations_list_only
+ - cloudformation
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists type_activations
in a region or regions, for all properties use type_activations
+
+## Overview
+
+Name type_activations_list_only
+Type Resource
+Description Enable a resource that has been published in the CloudFormation Registry.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the extension.
+string
The Amazon Resource Name (ARN) of the IAM execution role to use to register the type. If your resource type calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. CloudFormation then assumes that execution role to provide your resource type with the appropriate credentials.
+string
The publisher id assigned by CloudFormation for publishing in this region.
+object
Specifies logging configuration information for a type.
+string
The Amazon Resource Number (ARN) assigned to the public extension upon publication
+boolean
Whether to automatically update the extension in this account and region when a new minor version is published by the extension publisher. Major versions released by the publisher must be manually updated.
+string
An alias to assign to the public extension in this account and region. If you specify an alias for the extension, you must then use the alias to refer to the extension in your templates.
+string
Manually updates a previously-enabled type to a new major or minor version, if available. You can also use this parameter to update the value of AutoUpdateEnabled
+string
The Major Version of the type you want to enable
+string
The name of the type being registered.
We recommend that type names adhere to the following pattern: company_or_organization::service::type.
+string
The kind of extension
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all type_activations
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.cloudformation.type_activations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the type_activations_list_only
resource, see type_activations
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/cache_policies/index.md b/docs/aws-docs/providers/aws/cloudfront/cache_policies/index.md
index 23f6062425..560dc1ced3 100644
--- a/docs/aws-docs/providers/aws/cloudfront/cache_policies/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/cache_policies/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a cache_policy
resource or lists
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a cache_policy
resource or lists
## `SELECT` examples
-List all cache_policies
in a region.
+Gets all cache_policies
in a region.
```sql
SELECT
region,
-id
+cache_policy_config,
+id,
+last_modified_time
FROM aws.cloudfront.cache_policies
;
```
-Gets all properties from a cache_policy
.
+Gets all properties from an individual cache_policy
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cloudfront.cache_policies
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new cache_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/cache_policies_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/cache_policies_list_only/index.md
new file mode 100644
index 0000000000..3ba1b0a963
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/cache_policies_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: cache_policies_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - cache_policies_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists cache_policies
in a region or regions, for all properties use cache_policies
+
+## Overview
+
+Name cache_policies_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::CachePolicy
+Id
+
+
+## Fields
+Name Datatype Description object
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all cache_policies
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.cache_policies_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the cache_policies_list_only
resource, see cache_policies
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/cloud_front_origin_access_identities/index.md b/docs/aws-docs/providers/aws/cloudfront/cloud_front_origin_access_identities/index.md
index 2f313318e2..307341a7e1 100644
--- a/docs/aws-docs/providers/aws/cloudfront/cloud_front_origin_access_identities/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/cloud_front_origin_access_identities/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a cloud_front_origin_access_identity
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a cloud_front_origin_access_identity
## `SELECT` examples
-List all cloud_front_origin_access_identities
in a region.
+Gets all cloud_front_origin_access_identities
in a region.
```sql
SELECT
region,
-id
+cloud_front_origin_access_identity_config,
+id,
+s3_canonical_user_id
FROM aws.cloudfront.cloud_front_origin_access_identities
;
```
-Gets all properties from a cloud_front_origin_access_identity
.
+Gets all properties from an individual cloud_front_origin_access_identity
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cloudfront.cloud_front_origin_access_identities
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new cloud_front_origin_access_identity
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/cloud_front_origin_access_identities_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/cloud_front_origin_access_identities_list_only/index.md
new file mode 100644
index 0000000000..03ea62fc0a
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/cloud_front_origin_access_identities_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: cloud_front_origin_access_identities_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - cloud_front_origin_access_identities_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists cloud_front_origin_access_identities
in a region or regions, for all properties use cloud_front_origin_access_identities
+
+## Overview
+
+Name cloud_front_origin_access_identities_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::CloudFrontOriginAccessIdentity
+Id
+
+
+## Fields
+Name Datatype Description object
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all cloud_front_origin_access_identities
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.cloud_front_origin_access_identities_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the cloud_front_origin_access_identities_list_only
resource, see cloud_front_origin_access_identities
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/continuous_deployment_policies/index.md b/docs/aws-docs/providers/aws/cloudfront/continuous_deployment_policies/index.md
index c6a54e3a2c..8b30acf13b 100644
--- a/docs/aws-docs/providers/aws/cloudfront/continuous_deployment_policies/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/continuous_deployment_policies/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a continuous_deployment_policy
re
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a continuous_deployment_policy
re
## `SELECT` examples
-List all continuous_deployment_policies
in a region.
+Gets all continuous_deployment_policies
in a region.
```sql
SELECT
region,
-id
+continuous_deployment_policy_config,
+id,
+last_modified_time
FROM aws.cloudfront.continuous_deployment_policies
;
```
-Gets all properties from a continuous_deployment_policy
.
+Gets all properties from an individual continuous_deployment_policy
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cloudfront.continuous_deployment_policies
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new continuous_deployment_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/continuous_deployment_policies_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/continuous_deployment_policies_list_only/index.md
new file mode 100644
index 0000000000..e1e59895fa
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/continuous_deployment_policies_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: continuous_deployment_policies_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - continuous_deployment_policies_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists continuous_deployment_policies
in a region or regions, for all properties use continuous_deployment_policies
+
+## Overview
+
+Name continuous_deployment_policies_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::ContinuousDeploymentPolicy
+Id
+
+
+## Fields
+Name Datatype Description object
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all continuous_deployment_policies
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.continuous_deployment_policies_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the continuous_deployment_policies_list_only
resource, see continuous_deployment_policies
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/distribution_tags/index.md b/docs/aws-docs/providers/aws/cloudfront/distribution_tags/index.md
new file mode 100644
index 0000000000..5bc4e83f00
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/distribution_tags/index.md
@@ -0,0 +1,75 @@
+---
+title: distribution_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - distribution_tags
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for distributions
in a region
+
+## Overview
+
+Name distribution_tags
+Type Resource
+Description A distribution tells CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery.
+Id
+
+
+## Fields
+Name Datatype Description object
The distribution's configuration.
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all distributions
in a region.
+```sql
+SELECT
+region,
+distribution_config,
+domain_name,
+id,
+tag_key,
+tag_value
+FROM aws.cloudfront.distribution_tags
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the distribution_tags
resource, see distributions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/distributions/index.md b/docs/aws-docs/providers/aws/cloudfront/distributions/index.md
index c315a8cc1b..a9e649f736 100644
--- a/docs/aws-docs/providers/aws/cloudfront/distributions/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/distributions/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a distribution
resource or lists
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets a distribution
resource or lists
## `SELECT` examples
-List all distributions
in a region.
+Gets all distributions
in a region.
```sql
SELECT
region,
-id
+distribution_config,
+domain_name,
+id,
+tags
FROM aws.cloudfront.distributions
;
```
-Gets all properties from a distribution
.
+Gets all properties from an individual distribution
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.cloudfront.distributions
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new distribution
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/distributions_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/distributions_list_only/index.md
new file mode 100644
index 0000000000..ee39ee1d36
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/distributions_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: distributions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - distributions_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists distributions
in a region or regions, for all properties use distributions
+
+## Overview
+
+Name distributions_list_only
+Type Resource
+Description A distribution tells CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery.
+Id
+
+
+## Fields
+Name Datatype Description object
The distribution's configuration.
+string
+string
+array
A complex type that contains zero or more Tag
elements.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all distributions
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.distributions_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the distributions_list_only
resource, see distributions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/functions/index.md b/docs/aws-docs/providers/aws/cloudfront/functions/index.md
index 5a3de8471d..7028cc42be 100644
--- a/docs/aws-docs/providers/aws/cloudfront/functions/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/functions/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a function
resource or lists
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a function
resource or lists
## `SELECT` examples
-List all functions
in a region.
+Gets all functions
in a region.
```sql
SELECT
region,
-function_arn
+auto_publish,
+function_arn,
+function_code,
+function_config,
+function_metadata,
+name,
+stage
FROM aws.cloudfront.functions
;
```
-Gets all properties from a function
.
+Gets all properties from an individual function
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.cloudfront.functions
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new function
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/functions_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/functions_list_only/index.md
new file mode 100644
index 0000000000..abf91d7f4e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/functions_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: functions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - functions_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists functions
in a region or regions, for all properties use functions
+
+## Overview
+
+Name functions_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::Function
+Id
+
+
+## Fields
+Name Datatype Description boolean
+string
+string
+object
+object
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all functions
in a region.
+```sql
+SELECT
+region,
+function_arn
+FROM aws.cloudfront.functions_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the functions_list_only
resource, see functions
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/index.md b/docs/aws-docs/providers/aws/cloudfront/index.md
index 08937cb3dc..834d33a606 100644
--- a/docs/aws-docs/providers/aws/cloudfront/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/index.md
@@ -20,7 +20,7 @@ The cloudfront service documentation.
-total resources: 13
+total resources: 26
@@ -30,19 +30,32 @@ The cloudfront service documentation.
cache_policies
+cache_policies_list_only
cloud_front_origin_access_identities
+cloud_front_origin_access_identities_list_only
continuous_deployment_policies
+continuous_deployment_policies_list_only
+distribution_tags
distributions
+distributions_list_only
functions
+functions_list_only
key_groups
-key_value_stores
+key_groups_list_only
+key_value_stores
+key_value_stores_list_only
monitoring_subscriptions
origin_access_controls
+origin_access_controls_list_only
origin_request_policies
+origin_request_policies_list_only
public_keys
+public_keys_list_only
realtime_log_configs
-response_headers_policies
+realtime_log_configs_list_only
+response_headers_policies
+response_headers_policies_list_only
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cloudfront/key_groups/index.md b/docs/aws-docs/providers/aws/cloudfront/key_groups/index.md
index e02c356e43..18641ad5a4 100644
--- a/docs/aws-docs/providers/aws/cloudfront/key_groups/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/key_groups/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a key_group
resource or lists
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a key_group
resource or lists
## `SELECT` examples
-List all key_groups
in a region.
+Gets all key_groups
in a region.
```sql
SELECT
region,
-id
+id,
+key_group_config,
+last_modified_time
FROM aws.cloudfront.key_groups
;
```
-Gets all properties from a key_group
.
+Gets all properties from an individual key_group
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cloudfront.key_groups
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new key_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/key_groups_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/key_groups_list_only/index.md
new file mode 100644
index 0000000000..1d0d370b95
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/key_groups_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: key_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - key_groups_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists key_groups
in a region or regions, for all properties use key_groups
+
+## Overview
+
+Name key_groups_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::KeyGroup
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all key_groups
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.key_groups_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the key_groups_list_only
resource, see key_groups
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/key_value_stores/index.md b/docs/aws-docs/providers/aws/cloudfront/key_value_stores/index.md
index dcab160cbb..024b8c0764 100644
--- a/docs/aws-docs/providers/aws/cloudfront/key_value_stores/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/key_value_stores/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a key_value_store
resource or lis
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a key_value_store
resource or lis
## `SELECT` examples
-List all key_value_stores
in a region.
+Gets all key_value_stores
in a region.
```sql
SELECT
region,
-name
+arn,
+id,
+status,
+name,
+comment,
+import_source
FROM aws.cloudfront.key_value_stores
;
```
-Gets all properties from a key_value_store
.
+Gets all properties from an individual key_value_store
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.cloudfront.key_value_stores
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new key_value_store
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/key_value_stores_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/key_value_stores_list_only/index.md
new file mode 100644
index 0000000000..b7efd17a69
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/key_value_stores_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: key_value_stores_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - key_value_stores_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists key_value_stores
in a region or regions, for all properties use key_value_stores
+
+## Overview
+
+Name key_value_stores_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::KeyValueStore
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all key_value_stores
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.cloudfront.key_value_stores_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the key_value_stores_list_only
resource, see key_value_stores
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/monitoring_subscriptions/index.md b/docs/aws-docs/providers/aws/cloudfront/monitoring_subscriptions/index.md
index 25eae144f0..d829feffd6 100644
--- a/docs/aws-docs/providers/aws/cloudfront/monitoring_subscriptions/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/monitoring_subscriptions/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a monitoring_subscription
resourc
## `SELECT` examples
-Gets all properties from a monitoring_subscription
.
+Gets all properties from an individual monitoring_subscription
.
```sql
SELECT
region,
@@ -72,7 +72,6 @@ FROM aws.cloudfront.monitoring_subscriptions
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new monitoring_subscription
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/origin_access_controls/index.md b/docs/aws-docs/providers/aws/cloudfront/origin_access_controls/index.md
index c0759a2554..fb71012641 100644
--- a/docs/aws-docs/providers/aws/cloudfront/origin_access_controls/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/origin_access_controls/index.md
@@ -59,7 +59,7 @@ Creates, updates, deletes or gets an origin_access_control
resource
-
+
SELECT
@@ -71,15 +71,16 @@ Creates, updates, deletes or gets an origin_access_control
resource
## `SELECT` examples
-List all origin_access_controls
in a region.
+Gets all origin_access_controls
in a region.
```sql
SELECT
region,
-id
+id,
+origin_access_control_config
FROM aws.cloudfront.origin_access_controls
;
```
-Gets all properties from an origin_access_control
.
+Gets all properties from an individual origin_access_control
.
```sql
SELECT
region,
@@ -89,7 +90,6 @@ FROM aws.cloudfront.origin_access_controls
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new origin_access_control
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/origin_access_controls_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/origin_access_controls_list_only/index.md
new file mode 100644
index 0000000000..0028faecc8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/origin_access_controls_list_only/index.md
@@ -0,0 +1,68 @@
+---
+title: origin_access_controls_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - origin_access_controls_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists origin_access_controls
in a region or regions, for all properties use origin_access_controls
+
+## Overview
+
+Name origin_access_controls_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::OriginAccessControl
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all origin_access_controls
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.origin_access_controls_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the origin_access_controls_list_only
resource, see origin_access_controls
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/origin_request_policies/index.md b/docs/aws-docs/providers/aws/cloudfront/origin_request_policies/index.md
index adcd23135f..eba5b23e37 100644
--- a/docs/aws-docs/providers/aws/cloudfront/origin_request_policies/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/origin_request_policies/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets an origin_request_policy
resource
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets an origin_request_policy
resource
## `SELECT` examples
-List all origin_request_policies
in a region.
+Gets all origin_request_policies
in a region.
```sql
SELECT
region,
-id
+id,
+last_modified_time,
+origin_request_policy_config
FROM aws.cloudfront.origin_request_policies
;
```
-Gets all properties from an origin_request_policy
.
+Gets all properties from an individual origin_request_policy
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cloudfront.origin_request_policies
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new origin_request_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/origin_request_policies_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/origin_request_policies_list_only/index.md
new file mode 100644
index 0000000000..c9b0bbe8c7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/origin_request_policies_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: origin_request_policies_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - origin_request_policies_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists origin_request_policies
in a region or regions, for all properties use origin_request_policies
+
+## Overview
+
+Name origin_request_policies_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::OriginRequestPolicy
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all origin_request_policies
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.origin_request_policies_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the origin_request_policies_list_only
resource, see origin_request_policies
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/public_keys/index.md b/docs/aws-docs/providers/aws/cloudfront/public_keys/index.md
index 8c918dfb8a..e1e3628791 100644
--- a/docs/aws-docs/providers/aws/cloudfront/public_keys/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/public_keys/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a public_key
resource or lists
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a public_key
resource or lists
## `SELECT` examples
-List all public_keys
in a region.
+Gets all public_keys
in a region.
```sql
SELECT
region,
-id
+created_time,
+id,
+public_key_config
FROM aws.cloudfront.public_keys
;
```
-Gets all properties from a public_key
.
+Gets all properties from an individual public_key
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cloudfront.public_keys
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new public_key
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/public_keys_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/public_keys_list_only/index.md
new file mode 100644
index 0000000000..5596c4389a
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/public_keys_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: public_keys_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - public_keys_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists public_keys
in a region or regions, for all properties use public_keys
+
+## Overview
+
+Name public_keys_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::PublicKey
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all public_keys
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.public_keys_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the public_keys_list_only
resource, see public_keys
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/realtime_log_configs/index.md b/docs/aws-docs/providers/aws/cloudfront/realtime_log_configs/index.md
index e62090f86e..72e5cb7792 100644
--- a/docs/aws-docs/providers/aws/cloudfront/realtime_log_configs/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/realtime_log_configs/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a realtime_log_config
resource or
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a realtime_log_config
resource or
## `SELECT` examples
-List all realtime_log_configs
in a region.
+Gets all realtime_log_configs
in a region.
```sql
SELECT
region,
-arn
+arn,
+end_points,
+fields,
+name,
+sampling_rate
FROM aws.cloudfront.realtime_log_configs
;
```
-Gets all properties from a realtime_log_config
.
+Gets all properties from an individual realtime_log_config
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.cloudfront.realtime_log_configs
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new realtime_log_config
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/realtime_log_configs_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/realtime_log_configs_list_only/index.md
new file mode 100644
index 0000000000..70f97d4434
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/realtime_log_configs_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: realtime_log_configs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - realtime_log_configs_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists realtime_log_configs
in a region or regions, for all properties use realtime_log_configs
+
+## Overview
+
+Name realtime_log_configs_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::RealtimeLogConfig
+Id
+
+
+## Fields
+Name Datatype Description string
+array
+array
+string
+number
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all realtime_log_configs
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.cloudfront.realtime_log_configs_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the realtime_log_configs_list_only
resource, see realtime_log_configs
+
+
diff --git a/docs/aws-docs/providers/aws/cloudfront/response_headers_policies/index.md b/docs/aws-docs/providers/aws/cloudfront/response_headers_policies/index.md
index 151a6acd3b..dceb5d3013 100644
--- a/docs/aws-docs/providers/aws/cloudfront/response_headers_policies/index.md
+++ b/docs/aws-docs/providers/aws/cloudfront/response_headers_policies/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets a response_headers_policy
resourc
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets a response_headers_policy
resourc
## `SELECT` examples
-List all response_headers_policies
in a region.
+Gets all response_headers_policies
in a region.
```sql
SELECT
region,
-id
+id,
+last_modified_time,
+response_headers_policy_config
FROM aws.cloudfront.response_headers_policies
;
```
-Gets all properties from a response_headers_policy
.
+Gets all properties from an individual response_headers_policy
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.cloudfront.response_headers_policies
WHERE data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new response_headers_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudfront/response_headers_policies_list_only/index.md b/docs/aws-docs/providers/aws/cloudfront/response_headers_policies_list_only/index.md
new file mode 100644
index 0000000000..d08f1fe245
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudfront/response_headers_policies_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: response_headers_policies_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - response_headers_policies_list_only
+ - cloudfront
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists response_headers_policies
in a region or regions, for all properties use response_headers_policies
+
+## Overview
+
+Name response_headers_policies_list_only
+Type Resource
+Description Resource Type definition for AWS::CloudFront::ResponseHeadersPolicy
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all response_headers_policies
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cloudfront.response_headers_policies_list_only
+;
+```
+
+
+## Permissions
+
+For permissions required to operate on the response_headers_policies_list_only
resource, see response_headers_policies
+
+
diff --git a/docs/aws-docs/providers/aws/cloudhsm/backups/index.md b/docs/aws-docs/providers/aws/cloudhsm/backups/index.md
index 313fe8467e..fbb407484a 100644
--- a/docs/aws-docs/providers/aws/cloudhsm/backups/index.md
+++ b/docs/aws-docs/providers/aws/cloudhsm/backups/index.md
@@ -85,4 +85,3 @@ Contains information about a backup of an AWS CloudHSM cluster. All backup objec
-
diff --git a/docs/aws-docs/providers/aws/cloudhsm/clusters/index.md b/docs/aws-docs/providers/aws/cloudhsm/clusters/index.md
index a1994d5a9b..659ecb7b96 100644
--- a/docs/aws-docs/providers/aws/cloudhsm/clusters/index.md
+++ b/docs/aws-docs/providers/aws/cloudhsm/clusters/index.md
@@ -89,4 +89,3 @@ Contains information about an AWS CloudHSM cluster.
-
diff --git a/docs/aws-docs/providers/aws/cloudhsm/hsm/index.md b/docs/aws-docs/providers/aws/cloudhsm/hsm/index.md
index 50cab92c22..610f4b4000 100644
--- a/docs/aws-docs/providers/aws/cloudhsm/hsm/index.md
+++ b/docs/aws-docs/providers/aws/cloudhsm/hsm/index.md
@@ -58,4 +58,3 @@ Contains information about a hardware security module (HSM) in an AWS CloudHSM c
-
diff --git a/docs/aws-docs/providers/aws/cloudhsm/tags/index.md b/docs/aws-docs/providers/aws/cloudhsm/tags/index.md
index 3f04c9db9d..58052312f7 100644
--- a/docs/aws-docs/providers/aws/cloudhsm/tags/index.md
+++ b/docs/aws-docs/providers/aws/cloudhsm/tags/index.md
@@ -66,4 +66,3 @@ Contains a tag. A tag is a key-value pair.
-
diff --git a/docs/aws-docs/providers/aws/cloudtrail/channel_tags/index.md b/docs/aws-docs/providers/aws/cloudtrail/channel_tags/index.md
new file mode 100644
index 0000000000..7567dedb17
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudtrail/channel_tags/index.md
@@ -0,0 +1,77 @@
+---
+title: channel_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - channel_tags
+ - cloudtrail
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for channels
in a region
+
+## Overview
+
+Name channel_tags
+Type Resource
+Description A channel receives events from a specific source (such as an on-premises storage solution or application, or a partner event data source), and delivers the events to one or more event data stores. You use channels to ingest events into CloudTrail from sources outside AWS.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the channel.
+string
The ARN of an on-premises storage solution or application, or a partner event source.
+array
One or more resources to which events arriving through a channel are logged and stored.
+string
The Amazon Resource Name (ARN) of a channel.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all channels
in a region.
+```sql
+SELECT
+region,
+name,
+source,
+destinations,
+channel_arn,
+tag_key,
+tag_value
+FROM aws.cloudtrail.channel_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the channel_tags
resource, see channels
+
+
diff --git a/docs/aws-docs/providers/aws/cloudtrail/channels/index.md b/docs/aws-docs/providers/aws/cloudtrail/channels/index.md
index f374ceef7d..d31c3a16b8 100644
--- a/docs/aws-docs/providers/aws/cloudtrail/channels/index.md
+++ b/docs/aws-docs/providers/aws/cloudtrail/channels/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a channel
resource or lists
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a channel
resource or lists
## `SELECT` examples
-List all channels
in a region.
+Gets all channels
in a region.
```sql
SELECT
region,
-channel_arn
+name,
+source,
+destinations,
+channel_arn,
+tags
FROM aws.cloudtrail.channels
WHERE region = 'us-east-1';
```
-Gets all properties from a channel
.
+Gets all properties from an individual channel
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.cloudtrail.channels
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new channel
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudtrail/channels_list_only/index.md b/docs/aws-docs/providers/aws/cloudtrail/channels_list_only/index.md
new file mode 100644
index 0000000000..dc7654c28c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudtrail/channels_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: channels_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - channels_list_only
+ - cloudtrail
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists channels
in a region or regions, for all properties use channels
+
+## Overview
+
+Name channels_list_only
+Type Resource
+Description A channel receives events from a specific source (such as an on-premises storage solution or application, or a partner event data source), and delivers the events to one or more event data stores. You use channels to ingest events into CloudTrail from sources outside AWS.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the channel.
+string
The ARN of an on-premises storage solution or application, or a partner event source.
+array
One or more resources to which events arriving through a channel are logged and stored.
+string
The Amazon Resource Name (ARN) of a channel.
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all channels
in a region.
+```sql
+SELECT
+region,
+channel_arn
+FROM aws.cloudtrail.channels_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the channels_list_only
resource, see channels
+
+
diff --git a/docs/aws-docs/providers/aws/cloudtrail/event_data_store_tags/index.md b/docs/aws-docs/providers/aws/cloudtrail/event_data_store_tags/index.md
new file mode 100644
index 0000000000..847cdf5b8e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudtrail/event_data_store_tags/index.md
@@ -0,0 +1,103 @@
+---
+title: event_data_store_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - event_data_store_tags
+ - cloudtrail
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for event_data_stores
in a region
+
+## Overview
+
+Name event_data_store_tags
+Type Resource
+Description A storage lake of event data against which you can run complex SQL-based queries. An event data store can include events that you have logged on your account from the last 7 to 2557 or 3653 days (about seven or ten years) depending on the selected BillingMode.
+Id
+
+
+## Fields
+Name Datatype Description array
The advanced event selectors that were used to select events for the data store.
+string
The timestamp of the event data store's creation.
+string
The ARN of the event data store.
+boolean
Indicates whether federation is enabled on an event data store.
+string
The ARN of the role used for event data store federation.
+boolean
Indicates whether the event data store includes events from all regions, or only from the region in which it was created.
+string
The name of the event data store.
+boolean
Indicates that an event data store is collecting logged events for an organization.
+string
The mode that the event data store will use to charge for event storage.
+integer
The retention period, in days.
+string
The status of an event data store. Values are STARTING_INGESTION, ENABLED, STOPPING_INGESTION, STOPPED_INGESTION and PENDING_DELETION.
+boolean
Indicates whether the event data store is protected from termination.
+string
The timestamp showing when an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
+string
Specifies the KMS key ID to use to encrypt the events delivered by CloudTrail. The value can be an alias name prefixed by 'alias/', a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
+array
Lets you enable Insights event logging by specifying the Insights selectors that you want to enable on an existing event data store. Both InsightSelectors and InsightsDestination need to have a value in order to enable Insights events on an event data store.
+string
Specifies the ARN of the event data store that will collect Insights events. Both InsightSelectors and InsightsDestination need to have a value in order to enable Insights events on an event data store
+boolean
Indicates whether the event data store is ingesting events.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all event_data_stores
in a region.
+```sql
+SELECT
+region,
+advanced_event_selectors,
+created_timestamp,
+event_data_store_arn,
+federation_enabled,
+federation_role_arn,
+multi_region_enabled,
+name,
+organization_enabled,
+billing_mode,
+retention_period,
+status,
+termination_protection_enabled,
+updated_timestamp,
+kms_key_id,
+insight_selectors,
+insights_destination,
+ingestion_enabled,
+tag_key,
+tag_value
+FROM aws.cloudtrail.event_data_store_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the event_data_store_tags
resource, see event_data_stores
+
+
diff --git a/docs/aws-docs/providers/aws/cloudtrail/event_data_stores/index.md b/docs/aws-docs/providers/aws/cloudtrail/event_data_stores/index.md
index b7cfcc456d..d9412a8bc2 100644
--- a/docs/aws-docs/providers/aws/cloudtrail/event_data_stores/index.md
+++ b/docs/aws-docs/providers/aws/cloudtrail/event_data_stores/index.md
@@ -75,7 +75,7 @@ Creates, updates, deletes or gets an event_data_store
resource or l
-
+
SELECT
@@ -87,15 +87,32 @@ Creates, updates, deletes or gets an event_data_store
resource or l
## `SELECT` examples
-List all event_data_stores
in a region.
+Gets all event_data_stores
in a region.
```sql
SELECT
region,
-event_data_store_arn
+advanced_event_selectors,
+created_timestamp,
+event_data_store_arn,
+federation_enabled,
+federation_role_arn,
+multi_region_enabled,
+name,
+organization_enabled,
+billing_mode,
+retention_period,
+status,
+termination_protection_enabled,
+updated_timestamp,
+kms_key_id,
+tags,
+insight_selectors,
+insights_destination,
+ingestion_enabled
FROM aws.cloudtrail.event_data_stores
WHERE region = 'us-east-1';
```
-Gets all properties from an event_data_store
.
+Gets all properties from an individual event_data_store
.
```sql
SELECT
region,
@@ -121,7 +138,6 @@ FROM aws.cloudtrail.event_data_stores
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new event_data_store
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudtrail/event_data_stores_list_only/index.md b/docs/aws-docs/providers/aws/cloudtrail/event_data_stores_list_only/index.md
new file mode 100644
index 0000000000..ccef4327fe
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudtrail/event_data_stores_list_only/index.md
@@ -0,0 +1,84 @@
+---
+title: event_data_stores_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - event_data_stores_list_only
+ - cloudtrail
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists event_data_stores
in a region or regions, for all properties use event_data_stores
+
+## Overview
+
+Name event_data_stores_list_only
+Type Resource
+Description A storage lake of event data against which you can run complex SQL-based queries. An event data store can include events that you have logged on your account from the last 7 to 2557 or 3653 days (about seven or ten years) depending on the selected BillingMode.
+Id
+
+
+## Fields
+Name Datatype Description array
The advanced event selectors that were used to select events for the data store.
+string
The timestamp of the event data store's creation.
+string
The ARN of the event data store.
+boolean
Indicates whether federation is enabled on an event data store.
+string
The ARN of the role used for event data store federation.
+boolean
Indicates whether the event data store includes events from all regions, or only from the region in which it was created.
+string
The name of the event data store.
+boolean
Indicates that an event data store is collecting logged events for an organization.
+string
The mode that the event data store will use to charge for event storage.
+integer
The retention period, in days.
+string
The status of an event data store. Values are STARTING_INGESTION, ENABLED, STOPPING_INGESTION, STOPPED_INGESTION and PENDING_DELETION.
+boolean
Indicates whether the event data store is protected from termination.
+string
The timestamp showing when an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
+string
Specifies the KMS key ID to use to encrypt the events delivered by CloudTrail. The value can be an alias name prefixed by 'alias/', a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
+array
+array
Lets you enable Insights event logging by specifying the Insights selectors that you want to enable on an existing event data store. Both InsightSelectors and InsightsDestination need to have a value in order to enable Insights events on an event data store.
+string
Specifies the ARN of the event data store that will collect Insights events. Both InsightSelectors and InsightsDestination need to have a value in order to enable Insights events on an event data store
+boolean
Indicates whether the event data store is ingesting events.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all event_data_stores
in a region.
+```sql
+SELECT
+region,
+event_data_store_arn
+FROM aws.cloudtrail.event_data_stores_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the event_data_stores_list_only
resource, see event_data_stores
+
+
diff --git a/docs/aws-docs/providers/aws/cloudtrail/index.md b/docs/aws-docs/providers/aws/cloudtrail/index.md
index 0604f8408e..c449d77ffb 100644
--- a/docs/aws-docs/providers/aws/cloudtrail/index.md
+++ b/docs/aws-docs/providers/aws/cloudtrail/index.md
@@ -20,7 +20,7 @@ The cloudtrail service documentation.
-total resources: 4
+total resources: 10
@@ -29,11 +29,17 @@ The cloudtrail service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cloudtrail/resource_policies/index.md b/docs/aws-docs/providers/aws/cloudtrail/resource_policies/index.md
index 67a5b2f689..b19c1602a8 100644
--- a/docs/aws-docs/providers/aws/cloudtrail/resource_policies/index.md
+++ b/docs/aws-docs/providers/aws/cloudtrail/resource_policies/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a resource_policy
resource or lis
## `SELECT` examples
-Gets all properties from a resource_policy
.
+Gets all properties from an individual resource_policy
.
```sql
SELECT
region,
@@ -77,7 +77,6 @@ FROM aws.cloudtrail.resource_policies
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new resource_policy
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudtrail/trail_tags/index.md b/docs/aws-docs/providers/aws/cloudtrail/trail_tags/index.md
new file mode 100644
index 0000000000..bcf73fa12f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudtrail/trail_tags/index.md
@@ -0,0 +1,103 @@
+---
+title: trail_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - trail_tags
+ - cloudtrail
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for trails
in a region
+
+## Overview
+
+Name trail_tags
+Type Resource
+Description Creates a trail that specifies the settings for delivery of log data to an Amazon S3 bucket. A maximum of five trails can exist in a region, irrespective of the region in which they were created.
+Id
+
+
+## Fields
+Name Datatype Description string
Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered. Not required unless you specify CloudWatchLogsRoleArn.
+string
Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.
+boolean
Specifies whether log file validation is enabled. The default is false.
+array
The advanced event selectors that were used to select events for the data store.
+array
Use event selectors to further specify the management and data event settings for your trail. By default, trails created without specific event selectors will be configured to log all read and write management events, and no data events. When an event occurs in your account, CloudTrail evaluates the event selector for all trails. For each trail, if the event matches any event selector, the trail processes and logs the event. If the event doesn't match any event selector, the trail doesn't log the event. You can configure up to five event selectors for a trail.
+boolean
Specifies whether the trail is publishing events from global services such as IAM to the log files.
+boolean
Whether the CloudTrail is currently logging AWS API calls.
+boolean
Specifies whether the trail applies only to the current region or to all regions. The default is false. If the trail exists only in the current region and this value is set to true, shadow trails (replications of the trail) will be created in the other regions. If the trail exists in all regions and this value is set to false, the trail will remain in the region where it was created, and its shadow trails in other regions will be deleted. As a best practice, consider using trails that log events in all regions.
+boolean
Specifies whether the trail is created for all accounts in an organization in AWS Organizations, or only for the current AWS account. The default is false, and cannot be true unless the call is made on behalf of an AWS account that is the master account for an organization in AWS Organizations.
+string
Specifies the KMS key ID to use to encrypt the logs delivered by CloudTrail. The value can be an alias name prefixed by 'alias/', a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
+string
Specifies the name of the Amazon S3 bucket designated for publishing log files. See Amazon S3 Bucket Naming Requirements.
+string
Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see Finding Your CloudTrail Log Files. The maximum length is 200 characters.
+string
Specifies the name of the Amazon SNS topic defined for notification of log file delivery. The maximum length is 256 characters.
+string
+string
+string
+array
Lets you enable Insights event logging by specifying the Insights selectors that you want to enable on an existing trail.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all trails
in a region.
+```sql
+SELECT
+region,
+cloud_watch_logs_log_group_arn,
+cloud_watch_logs_role_arn,
+enable_log_file_validation,
+advanced_event_selectors,
+event_selectors,
+include_global_service_events,
+is_logging,
+is_multi_region_trail,
+is_organization_trail,
+kms_key_id,
+s3_bucket_name,
+s3_key_prefix,
+sns_topic_name,
+trail_name,
+arn,
+sns_topic_arn,
+insight_selectors,
+tag_key,
+tag_value
+FROM aws.cloudtrail.trail_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the trail_tags
resource, see trails
+
+
diff --git a/docs/aws-docs/providers/aws/cloudtrail/trails/index.md b/docs/aws-docs/providers/aws/cloudtrail/trails/index.md
index f8be51ed11..cce46ebf93 100644
--- a/docs/aws-docs/providers/aws/cloudtrail/trails/index.md
+++ b/docs/aws-docs/providers/aws/cloudtrail/trails/index.md
@@ -75,7 +75,7 @@ Creates, updates, deletes or gets a trail
resource or lists t
-
+
SELECT
@@ -87,15 +87,32 @@ Creates, updates, deletes or gets a trail
resource or lists t
## `SELECT` examples
-List all trails
in a region.
+Gets all trails
in a region.
```sql
SELECT
region,
-trail_name
+cloud_watch_logs_log_group_arn,
+cloud_watch_logs_role_arn,
+enable_log_file_validation,
+advanced_event_selectors,
+event_selectors,
+include_global_service_events,
+is_logging,
+is_multi_region_trail,
+is_organization_trail,
+kms_key_id,
+s3_bucket_name,
+s3_key_prefix,
+sns_topic_name,
+tags,
+trail_name,
+arn,
+sns_topic_arn,
+insight_selectors
FROM aws.cloudtrail.trails
WHERE region = 'us-east-1';
```
-Gets all properties from a trail
.
+Gets all properties from an individual trail
.
```sql
SELECT
region,
@@ -121,7 +138,6 @@ FROM aws.cloudtrail.trails
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new trail
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudtrail/trails_list_only/index.md b/docs/aws-docs/providers/aws/cloudtrail/trails_list_only/index.md
new file mode 100644
index 0000000000..eadddf562b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudtrail/trails_list_only/index.md
@@ -0,0 +1,84 @@
+---
+title: trails_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - trails_list_only
+ - cloudtrail
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists trails
in a region or regions, for all properties use trails
+
+## Overview
+
+Name trails_list_only
+Type Resource
+Description Creates a trail that specifies the settings for delivery of log data to an Amazon S3 bucket. A maximum of five trails can exist in a region, irrespective of the region in which they were created.
+Id
+
+
+## Fields
+Name Datatype Description string
Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered. Not required unless you specify CloudWatchLogsRoleArn.
+string
Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.
+boolean
Specifies whether log file validation is enabled. The default is false.
+array
The advanced event selectors that were used to select events for the data store.
+array
Use event selectors to further specify the management and data event settings for your trail. By default, trails created without specific event selectors will be configured to log all read and write management events, and no data events. When an event occurs in your account, CloudTrail evaluates the event selector for all trails. For each trail, if the event matches any event selector, the trail processes and logs the event. If the event doesn't match any event selector, the trail doesn't log the event. You can configure up to five event selectors for a trail.
+boolean
Specifies whether the trail is publishing events from global services such as IAM to the log files.
+boolean
Whether the CloudTrail is currently logging AWS API calls.
+boolean
Specifies whether the trail applies only to the current region or to all regions. The default is false. If the trail exists only in the current region and this value is set to true, shadow trails (replications of the trail) will be created in the other regions. If the trail exists in all regions and this value is set to false, the trail will remain in the region where it was created, and its shadow trails in other regions will be deleted. As a best practice, consider using trails that log events in all regions.
+boolean
Specifies whether the trail is created for all accounts in an organization in AWS Organizations, or only for the current AWS account. The default is false, and cannot be true unless the call is made on behalf of an AWS account that is the master account for an organization in AWS Organizations.
+string
Specifies the KMS key ID to use to encrypt the logs delivered by CloudTrail. The value can be an alias name prefixed by 'alias/', a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
+string
Specifies the name of the Amazon S3 bucket designated for publishing log files. See Amazon S3 Bucket Naming Requirements.
+string
Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see Finding Your CloudTrail Log Files. The maximum length is 200 characters.
+string
Specifies the name of the Amazon SNS topic defined for notification of log file delivery. The maximum length is 256 characters.
+array
+string
+string
+string
+array
Lets you enable Insights event logging by specifying the Insights selectors that you want to enable on an existing trail.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all trails
in a region.
+```sql
+SELECT
+region,
+trail_name
+FROM aws.cloudtrail.trails_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the trails_list_only
resource, see trails
+
+
diff --git a/docs/aws-docs/providers/aws/cloudwatch/alarm_tags/index.md b/docs/aws-docs/providers/aws/cloudwatch/alarm_tags/index.md
new file mode 100644
index 0000000000..2ace1c7ad6
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudwatch/alarm_tags/index.md
@@ -0,0 +1,113 @@
+---
+title: alarm_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - alarm_tags
+ - cloudwatch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for alarms
in a region
+
+## Overview
+
+Name alarm_tags
+Type Resource
+Description The AWS::CloudWatch::Alarm
type specifies an alarm and associates it with the specified metric or metric math expression.
When this operation creates an alarm, the alarm state is immediately set to INSUFFICIENT_DATA
. The alarm is then evaluated and its state is set appropriately. Any actions associated with the new state are then executed.
When you update an existing alarm, its state is left unchanged, but the update completely overwrites the previous configuration of the alarm.
+Id
+
+
+## Fields
+Name Datatype Description string
In an alarm based on an anomaly detection model, this is the ID of the ANOMALY_DETECTION_BAND
function used as the threshold for the alarm.
+string
Used only for alarms based on percentiles. If ignore
, the alarm state does not change during periods with too few data points to be statistically significant. If evaluate
or this parameter is not used, the alarm is always evaluated and possibly changes state no matter how many data points are available.
+string
The percentile statistic for the metric associated with the alarm. Specify a value between p0.0 and p100.
For an alarm based on a metric, you must specify either Statistic
or ExtendedStatistic
but not both.
For an alarm based on a math expression, you can't specify ExtendedStatistic
. Instead, you use Metrics
.
+string
The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand.
+string
Sets how this alarm is to handle missing data points. Valid values are breaching
, notBreaching
, ignore
, and missing
. For more information, see [Configuring How Alarms Treat Missing Data](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data) in the *Amazon User Guide*.
If you omit this parameter, the default behavior of missing
is used.
+array
The dimensions for the metric associated with the alarm. For an alarm based on a math expression, you can't specify Dimensions
. Instead, you use Metrics
.
+integer
The period, in seconds, over which the statistic is applied. This is required for an alarm based on a metric. Valid values are 10, 30, 60, and any multiple of 60.
For an alarm based on a math expression, you can't specify Period
, and instead you use the Metrics
parameter.
*Minimum:* 10
+integer
The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an "M out of N" alarm, this value is the N, and DatapointsToAlarm
is the M.
For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
+string
The unit of the metric associated with the alarm. Specify this only if you are creating an alarm based on a single metric. Do not specify this if you are specifying a Metrics
array.
You can specify the following values: Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, or None.
+string
The namespace of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you can't specify Namespace
and you use Metrics
instead.
For a list of namespaces for metrics from AWS services, see [Services That Publish Metrics.](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/aws-services-cloudwatch-metrics.html)
+array
The actions to execute when this alarm transitions to the OK
state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+array
The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN). For more information about creating alarms and the actions that you can specify, see [PutMetricAlarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html) in the *API Reference*.
+string
The name of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you use Metrics
instead and you can't specify MetricName
.
+boolean
Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE.
+array
An array that enables you to create an alarm based on the result of a metric math expression. Each item in the array either retrieves a metric or performs a math expression.
If you specify the Metrics
parameter, you cannot specify MetricName
, Dimensions
, Period
, Namespace
, Statistic
, ExtendedStatistic
, or Unit
.
+string
The description of the alarm.
+string
The name of the alarm. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the alarm name.
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
+string
The statistic for the metric associated with the alarm, other than percentile. For percentile statistics, use ExtendedStatistic
.
For an alarm based on a metric, you must specify either Statistic
or ExtendedStatistic
but not both.
For an alarm based on a math expression, you can't specify Statistic
. Instead, you use Metrics
.
+array
The actions to execute when this alarm transitions to the INSUFFICIENT_DATA
state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+string
+integer
The number of datapoints that must be breaching to trigger the alarm. This is used only if you are setting an "M out of N" alarm. In that case, this value is the M, and the value that you set for EvaluationPeriods
is the N value. For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
If you omit this parameter, CW uses the same value here that you set for EvaluationPeriods
, and the alarm goes to alarm state if that many consecutive periods are breaching.
+number
The value to compare with the specified statistic.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all alarms
in a region.
+```sql
+SELECT
+region,
+threshold_metric_id,
+evaluate_low_sample_count_percentile,
+extended_statistic,
+comparison_operator,
+treat_missing_data,
+dimensions,
+period,
+evaluation_periods,
+unit,
+namespace,
+ok_actions,
+alarm_actions,
+metric_name,
+actions_enabled,
+metrics,
+alarm_description,
+alarm_name,
+statistic,
+insufficient_data_actions,
+arn,
+datapoints_to_alarm,
+threshold,
+tag_key,
+tag_value
+FROM aws.cloudwatch.alarm_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the alarm_tags
resource, see alarms
+
+
diff --git a/docs/aws-docs/providers/aws/cloudwatch/alarms/index.md b/docs/aws-docs/providers/aws/cloudwatch/alarms/index.md
index 1e34d9b5fe..ce080e1b8f 100644
--- a/docs/aws-docs/providers/aws/cloudwatch/alarms/index.md
+++ b/docs/aws-docs/providers/aws/cloudwatch/alarms/index.md
@@ -80,7 +80,7 @@ Creates, updates, deletes or gets an alarm
resource or lists
-
+
SELECT
@@ -92,15 +92,37 @@ Creates, updates, deletes or gets an alarm
resource or lists
## `SELECT` examples
-List all alarms
in a region.
+Gets all alarms
in a region.
```sql
SELECT
region,
-alarm_name
+threshold_metric_id,
+evaluate_low_sample_count_percentile,
+extended_statistic,
+comparison_operator,
+treat_missing_data,
+dimensions,
+period,
+evaluation_periods,
+unit,
+namespace,
+ok_actions,
+alarm_actions,
+metric_name,
+actions_enabled,
+metrics,
+alarm_description,
+alarm_name,
+statistic,
+insufficient_data_actions,
+arn,
+datapoints_to_alarm,
+threshold,
+tags
FROM aws.cloudwatch.alarms
WHERE region = 'us-east-1';
```
-Gets all properties from an alarm
.
+Gets all properties from an individual alarm
.
```sql
SELECT
region,
@@ -131,7 +153,6 @@ FROM aws.cloudwatch.alarms
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new alarm
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudwatch/alarms_list_only/index.md b/docs/aws-docs/providers/aws/cloudwatch/alarms_list_only/index.md
new file mode 100644
index 0000000000..335e5dae31
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudwatch/alarms_list_only/index.md
@@ -0,0 +1,89 @@
+---
+title: alarms_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - alarms_list_only
+ - cloudwatch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists alarms
in a region or regions, for all properties use alarms
+
+## Overview
+
+Name alarms_list_only
+Type Resource
+Description The AWS::CloudWatch::Alarm
type specifies an alarm and associates it with the specified metric or metric math expression.
When this operation creates an alarm, the alarm state is immediately set to INSUFFICIENT_DATA
. The alarm is then evaluated and its state is set appropriately. Any actions associated with the new state are then executed.
When you update an existing alarm, its state is left unchanged, but the update completely overwrites the previous configuration of the alarm.
+Id
+
+
+## Fields
+Name Datatype Description string
In an alarm based on an anomaly detection model, this is the ID of the ANOMALY_DETECTION_BAND
function used as the threshold for the alarm.
+string
Used only for alarms based on percentiles. If ignore
, the alarm state does not change during periods with too few data points to be statistically significant. If evaluate
or this parameter is not used, the alarm is always evaluated and possibly changes state no matter how many data points are available.
+string
The percentile statistic for the metric associated with the alarm. Specify a value between p0.0 and p100.
For an alarm based on a metric, you must specify either Statistic
or ExtendedStatistic
but not both.
For an alarm based on a math expression, you can't specify ExtendedStatistic
. Instead, you use Metrics
.
+string
The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand.
+string
Sets how this alarm is to handle missing data points. Valid values are breaching
, notBreaching
, ignore
, and missing
. For more information, see [Configuring How Alarms Treat Missing Data](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data) in the *Amazon User Guide*.
If you omit this parameter, the default behavior of missing
is used.
+array
The dimensions for the metric associated with the alarm. For an alarm based on a math expression, you can't specify Dimensions
. Instead, you use Metrics
.
+integer
The period, in seconds, over which the statistic is applied. This is required for an alarm based on a metric. Valid values are 10, 30, 60, and any multiple of 60.
For an alarm based on a math expression, you can't specify Period
, and instead you use the Metrics
parameter.
*Minimum:* 10
+integer
The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an "M out of N" alarm, this value is the N, and DatapointsToAlarm
is the M.
For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
+string
The unit of the metric associated with the alarm. Specify this only if you are creating an alarm based on a single metric. Do not specify this if you are specifying a Metrics
array.
You can specify the following values: Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, or None.
+string
The namespace of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you can't specify Namespace
and you use Metrics
instead.
For a list of namespaces for metrics from AWS services, see [Services That Publish Metrics.](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/aws-services-cloudwatch-metrics.html)
+array
The actions to execute when this alarm transitions to the OK
state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+array
The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN). For more information about creating alarms and the actions that you can specify, see [PutMetricAlarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html) in the *API Reference*.
+string
The name of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you use Metrics
instead and you can't specify MetricName
.
+boolean
Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE.
+array
An array that enables you to create an alarm based on the result of a metric math expression. Each item in the array either retrieves a metric or performs a math expression.
If you specify the Metrics
parameter, you cannot specify MetricName
, Dimensions
, Period
, Namespace
, Statistic
, ExtendedStatistic
, or Unit
.
+string
The description of the alarm.
+string
The name of the alarm. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the alarm name.
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
+string
The statistic for the metric associated with the alarm, other than percentile. For percentile statistics, use ExtendedStatistic
.
For an alarm based on a metric, you must specify either Statistic
or ExtendedStatistic
but not both.
For an alarm based on a math expression, you can't specify Statistic
. Instead, you use Metrics
.
+array
The actions to execute when this alarm transitions to the INSUFFICIENT_DATA
state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+string
+integer
The number of datapoints that must be breaching to trigger the alarm. This is used only if you are setting an "M out of N" alarm. In that case, this value is the M, and the value that you set for EvaluationPeriods
is the N value. For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
If you omit this parameter, CW uses the same value here that you set for EvaluationPeriods
, and the alarm goes to alarm state if that many consecutive periods are breaching.
+number
The value to compare with the specified statistic.
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all alarms
in a region.
+```sql
+SELECT
+region,
+alarm_name
+FROM aws.cloudwatch.alarms_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the alarms_list_only
resource, see alarms
+
+
diff --git a/docs/aws-docs/providers/aws/cloudwatch/composite_alarm_tags/index.md b/docs/aws-docs/providers/aws/cloudwatch/composite_alarm_tags/index.md
new file mode 100644
index 0000000000..0641b42832
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudwatch/composite_alarm_tags/index.md
@@ -0,0 +1,91 @@
+---
+title: composite_alarm_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - composite_alarm_tags
+ - cloudwatch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for composite_alarms
in a region
+
+## Overview
+
+Name composite_alarm_tags
+Type Resource
+Description The AWS::CloudWatch::CompositeAlarm type specifies an alarm which aggregates the states of other Alarms (Metric or Composite Alarms) as defined by the AlarmRule expression
+Id
+
+
+## Fields
+Name Datatype Description string
Amazon Resource Name (ARN) of the alarm
+string
The name of the Composite Alarm
+string
Expression which aggregates the state of other Alarms (Metric or Composite Alarms)
+string
The description of the alarm
+boolean
Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE.
+array
The actions to execute when this alarm transitions to the OK state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+array
The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN).
+array
The actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+string
Actions will be suppressed if the suppressor alarm is in the ALARM state. ActionsSuppressor can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
+integer
Actions will be suppressed if ExtensionPeriod is active. The length of time that actions are suppressed is in seconds.
+integer
Actions will be suppressed if WaitPeriod is active. The length of time that actions are suppressed is in seconds.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all composite_alarms
in a region.
+```sql
+SELECT
+region,
+arn,
+alarm_name,
+alarm_rule,
+alarm_description,
+actions_enabled,
+ok_actions,
+alarm_actions,
+insufficient_data_actions,
+actions_suppressor,
+actions_suppressor_wait_period,
+actions_suppressor_extension_period,
+tag_key,
+tag_value
+FROM aws.cloudwatch.composite_alarm_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the composite_alarm_tags
resource, see composite_alarms
+
+
diff --git a/docs/aws-docs/providers/aws/cloudwatch/composite_alarms/index.md b/docs/aws-docs/providers/aws/cloudwatch/composite_alarms/index.md
index c2a2172148..fb81778cf7 100644
--- a/docs/aws-docs/providers/aws/cloudwatch/composite_alarms/index.md
+++ b/docs/aws-docs/providers/aws/cloudwatch/composite_alarms/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a composite_alarm
resource or lis
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets a composite_alarm
resource or lis
## `SELECT` examples
-List all composite_alarms
in a region.
+Gets all composite_alarms
in a region.
```sql
SELECT
region,
-alarm_name
+arn,
+alarm_name,
+alarm_rule,
+alarm_description,
+actions_enabled,
+ok_actions,
+alarm_actions,
+insufficient_data_actions,
+actions_suppressor,
+actions_suppressor_wait_period,
+actions_suppressor_extension_period,
+tags
FROM aws.cloudwatch.composite_alarms
WHERE region = 'us-east-1';
```
-Gets all properties from a composite_alarm
.
+Gets all properties from an individual composite_alarm
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.cloudwatch.composite_alarms
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new composite_alarm
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudwatch/composite_alarms_list_only/index.md b/docs/aws-docs/providers/aws/cloudwatch/composite_alarms_list_only/index.md
new file mode 100644
index 0000000000..caf5781d3c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudwatch/composite_alarms_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: composite_alarms_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - composite_alarms_list_only
+ - cloudwatch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists composite_alarms
in a region or regions, for all properties use composite_alarms
+
+## Overview
+
+Name composite_alarms_list_only
+Type Resource
+Description The AWS::CloudWatch::CompositeAlarm type specifies an alarm which aggregates the states of other Alarms (Metric or Composite Alarms) as defined by the AlarmRule expression
+Id
+
+
+## Fields
+Name Datatype Description string
Amazon Resource Name (ARN) of the alarm
+string
The name of the Composite Alarm
+string
Expression which aggregates the state of other Alarms (Metric or Composite Alarms)
+string
The description of the alarm
+boolean
Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE.
+array
The actions to execute when this alarm transitions to the OK state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+array
The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN).
+array
The actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an Amazon Resource Name (ARN).
+string
Actions will be suppressed if the suppressor alarm is in the ALARM state. ActionsSuppressor can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
+integer
Actions will be suppressed if ExtensionPeriod is active. The length of time that actions are suppressed is in seconds.
+integer
Actions will be suppressed if WaitPeriod is active. The length of time that actions are suppressed is in seconds.
+array
A list of key-value pairs to associate with the composite alarm. You can associate as many as 50 tags with an alarm.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all composite_alarms
in a region.
+```sql
+SELECT
+region,
+alarm_name
+FROM aws.cloudwatch.composite_alarms_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the composite_alarms_list_only
resource, see composite_alarms
+
+
diff --git a/docs/aws-docs/providers/aws/cloudwatch/index.md b/docs/aws-docs/providers/aws/cloudwatch/index.md
index cbf4458c23..4fefda44e8 100644
--- a/docs/aws-docs/providers/aws/cloudwatch/index.md
+++ b/docs/aws-docs/providers/aws/cloudwatch/index.md
@@ -20,7 +20,7 @@ The cloudwatch service documentation.
-total resources: 6
+total resources: 12
@@ -29,13 +29,19 @@ The cloudwatch service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cloudwatch/log_events/index.md b/docs/aws-docs/providers/aws/cloudwatch/log_events/index.md
index c270559956..06967d7d2f 100644
--- a/docs/aws-docs/providers/aws/cloudwatch/log_events/index.md
+++ b/docs/aws-docs/providers/aws/cloudwatch/log_events/index.md
@@ -57,4 +57,3 @@ Represents a log event.
-
diff --git a/docs/aws-docs/providers/aws/cloudwatch/log_groups/index.md b/docs/aws-docs/providers/aws/cloudwatch/log_groups/index.md
index 76cb7c0011..b1ded40b75 100644
--- a/docs/aws-docs/providers/aws/cloudwatch/log_groups/index.md
+++ b/docs/aws-docs/providers/aws/cloudwatch/log_groups/index.md
@@ -73,4 +73,3 @@ Represents a log group.
-
diff --git a/docs/aws-docs/providers/aws/cloudwatch/log_streams/index.md b/docs/aws-docs/providers/aws/cloudwatch/log_streams/index.md
index 65879f60ab..132df01092 100644
--- a/docs/aws-docs/providers/aws/cloudwatch/log_streams/index.md
+++ b/docs/aws-docs/providers/aws/cloudwatch/log_streams/index.md
@@ -72,4 +72,3 @@ Represents a log stream, which is a sequence of log events from a single emitter
-
diff --git a/docs/aws-docs/providers/aws/cloudwatch/metric_stream_tags/index.md b/docs/aws-docs/providers/aws/cloudwatch/metric_stream_tags/index.md
new file mode 100644
index 0000000000..28d15aff1c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudwatch/metric_stream_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: metric_stream_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - metric_stream_tags
+ - cloudwatch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for metric_streams
in a region
+
+## Overview
+
+Name metric_stream_tags
+Type Resource
+Description Resource Type definition for Metric Stream
+Id
+
+
+## Fields
+Name Datatype Description string
Amazon Resource Name of the metric stream.
+string
The date of creation of the metric stream.
+array
Define which metrics will be not streamed. Metrics matched by multiple instances of MetricStreamFilter are joined with an OR operation by default. If both IncludeFilters and ExcludeFilters are omitted, all metrics in the account will be streamed. IncludeFilters and ExcludeFilters are mutually exclusive. Default to null.
+string
The ARN of the Kinesis Firehose where to stream the data.
+array
Define which metrics will be streamed. Metrics matched by multiple instances of MetricStreamFilter are joined with an OR operation by default. If both IncludeFilters and ExcludeFilters are omitted, all metrics in the account will be streamed. IncludeFilters and ExcludeFilters are mutually exclusive. Default to null.
+string
The date of the last update of the metric stream.
+string
Name of the metric stream.
+string
The ARN of the role that provides access to the Kinesis Firehose.
+string
Displays the state of the Metric Stream.
+string
The output format of the data streamed to the Kinesis Firehose.
+array
By default, a metric stream always sends the MAX, MIN, SUM, and SAMPLECOUNT statistics for each metric that is streamed. You can use this parameter to have the metric stream also send additional statistics in the stream. This array can have up to 100 members.
+boolean
If you are creating a metric stream in a monitoring account, specify true to include metrics from source accounts that are linked to this monitoring account, in the metric stream. The default is false.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all metric_streams
in a region.
+```sql
+SELECT
+region,
+arn,
+creation_date,
+exclude_filters,
+firehose_arn,
+include_filters,
+last_update_date,
+name,
+role_arn,
+state,
+output_format,
+statistics_configurations,
+include_linked_accounts_metrics,
+tag_key,
+tag_value
+FROM aws.cloudwatch.metric_stream_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the metric_stream_tags
resource, see metric_streams
+
+
diff --git a/docs/aws-docs/providers/aws/cloudwatch/metric_streams/index.md b/docs/aws-docs/providers/aws/cloudwatch/metric_streams/index.md
index 8fa3699a49..fe1087c2b5 100644
--- a/docs/aws-docs/providers/aws/cloudwatch/metric_streams/index.md
+++ b/docs/aws-docs/providers/aws/cloudwatch/metric_streams/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a metric_stream
resource or lists
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a metric_stream
resource or lists
## `SELECT` examples
-List all metric_streams
in a region.
+Gets all metric_streams
in a region.
```sql
SELECT
region,
-name
+arn,
+creation_date,
+exclude_filters,
+firehose_arn,
+include_filters,
+last_update_date,
+name,
+role_arn,
+state,
+output_format,
+statistics_configurations,
+tags,
+include_linked_accounts_metrics
FROM aws.cloudwatch.metric_streams
WHERE region = 'us-east-1';
```
-Gets all properties from a metric_stream
.
+Gets all properties from an individual metric_stream
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.cloudwatch.metric_streams
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new metric_stream
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cloudwatch/metric_streams_list_only/index.md b/docs/aws-docs/providers/aws/cloudwatch/metric_streams_list_only/index.md
new file mode 100644
index 0000000000..ea27cd7a10
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cloudwatch/metric_streams_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: metric_streams_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - metric_streams_list_only
+ - cloudwatch
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists metric_streams
in a region or regions, for all properties use metric_streams
+
+## Overview
+
+Name metric_streams_list_only
+Type Resource
+Description Resource Type definition for Metric Stream
+Id
+
+
+## Fields
+Name Datatype Description string
Amazon Resource Name of the metric stream.
+string
The date of creation of the metric stream.
+array
Define which metrics will be not streamed. Metrics matched by multiple instances of MetricStreamFilter are joined with an OR operation by default. If both IncludeFilters and ExcludeFilters are omitted, all metrics in the account will be streamed. IncludeFilters and ExcludeFilters are mutually exclusive. Default to null.
+string
The ARN of the Kinesis Firehose where to stream the data.
+array
Define which metrics will be streamed. Metrics matched by multiple instances of MetricStreamFilter are joined with an OR operation by default. If both IncludeFilters and ExcludeFilters are omitted, all metrics in the account will be streamed. IncludeFilters and ExcludeFilters are mutually exclusive. Default to null.
+string
The date of the last update of the metric stream.
+string
Name of the metric stream.
+string
The ARN of the role that provides access to the Kinesis Firehose.
+string
Displays the state of the Metric Stream.
+string
The output format of the data streamed to the Kinesis Firehose.
+array
By default, a metric stream always sends the MAX, MIN, SUM, and SAMPLECOUNT statistics for each metric that is streamed. You can use this parameter to have the metric stream also send additional statistics in the stream. This array can have up to 100 members.
+array
A set of tags to assign to the delivery stream.
+boolean
If you are creating a metric stream in a monitoring account, specify true to include metrics from source accounts that are linked to this monitoring account, in the metric stream. The default is false.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all metric_streams
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.cloudwatch.metric_streams_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the metric_streams_list_only
resource, see metric_streams
+
+
diff --git a/docs/aws-docs/providers/aws/codeartifact/domain_tags/index.md b/docs/aws-docs/providers/aws/codeartifact/domain_tags/index.md
new file mode 100644
index 0000000000..a2c700ed6c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeartifact/domain_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: domain_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_tags
+ - codeartifact
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for domains
in a region
+
+## Overview
+
+Name domain_tags
+Type Resource
+Description The resource schema to create a CodeArtifact domain.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the domain.
+string
The name of the domain. This field is used for GetAtt
+string
The 12-digit account ID of the AWS account that owns the domain. This field is used for GetAtt
+string
The ARN of an AWS Key Management Service (AWS KMS) key associated with a domain.
+object
The access control resource policy on the provided domain.
+string
The ARN of the domain.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all domains
in a region.
+```sql
+SELECT
+region,
+domain_name,
+name,
+owner,
+encryption_key,
+permissions_policy_document,
+arn,
+tag_key,
+tag_value
+FROM aws.codeartifact.domain_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_tags
resource, see domains
+
+
diff --git a/docs/aws-docs/providers/aws/codeartifact/domains/index.md b/docs/aws-docs/providers/aws/codeartifact/domains/index.md
index 4fe90fba8d..94a62c81c8 100644
--- a/docs/aws-docs/providers/aws/codeartifact/domains/index.md
+++ b/docs/aws-docs/providers/aws/codeartifact/domains/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a domain
resource or lists
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a domain
resource or lists
## `SELECT` examples
-List all domains
in a region.
+Gets all domains
in a region.
```sql
SELECT
region,
+domain_name,
+name,
+owner,
+encryption_key,
+permissions_policy_document,
+tags,
arn
FROM aws.codeartifact.domains
WHERE region = 'us-east-1';
```
-Gets all properties from a domain
.
+Gets all properties from an individual domain
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.codeartifact.domains
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codeartifact/domains_list_only/index.md b/docs/aws-docs/providers/aws/codeartifact/domains_list_only/index.md
new file mode 100644
index 0000000000..d334ce8487
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeartifact/domains_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: domains_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domains_list_only
+ - codeartifact
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists domains
in a region or regions, for all properties use domains
+
+## Overview
+
+Name domains_list_only
+Type Resource
+Description The resource schema to create a CodeArtifact domain.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the domain.
+string
The name of the domain. This field is used for GetAtt
+string
The 12-digit account ID of the AWS account that owns the domain. This field is used for GetAtt
+string
The ARN of an AWS Key Management Service (AWS KMS) key associated with a domain.
+object
The access control resource policy on the provided domain.
+array
An array of key-value pairs to apply to this resource.
+string
The ARN of the domain.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all domains
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.codeartifact.domains_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domains_list_only
resource, see domains
+
+
diff --git a/docs/aws-docs/providers/aws/codeartifact/index.md b/docs/aws-docs/providers/aws/codeartifact/index.md
index 13ac709882..9368433e34 100644
--- a/docs/aws-docs/providers/aws/codeartifact/index.md
+++ b/docs/aws-docs/providers/aws/codeartifact/index.md
@@ -20,7 +20,7 @@ The codeartifact service documentation.
-total resources: 3
+total resources: 9
@@ -29,10 +29,16 @@ The codeartifact service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codeartifact/package_group_tags/index.md b/docs/aws-docs/providers/aws/codeartifact/package_group_tags/index.md
new file mode 100644
index 0000000000..a6a8a14481
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeartifact/package_group_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: package_group_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - package_group_tags
+ - codeartifact
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for package_groups
in a region
+
+## Overview
+
+Name package_group_tags
+Type Resource
+Description The resource schema to create a CodeArtifact package group.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the domain that contains the package group.
+string
The 12-digit account ID of the AWS account that owns the domain.
+string
The package group pattern that is used to gather packages.
+string
The contact info of the package group.
+string
The text description of the package group.
+object
The package origin configuration of the package group.
+string
The ARN of the package group.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all package_groups
in a region.
+```sql
+SELECT
+region,
+domain_name,
+domain_owner,
+pattern,
+contact_info,
+description,
+origin_configuration,
+arn,
+tag_key,
+tag_value
+FROM aws.codeartifact.package_group_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the package_group_tags
resource, see package_groups
+
+
diff --git a/docs/aws-docs/providers/aws/codeartifact/package_groups/index.md b/docs/aws-docs/providers/aws/codeartifact/package_groups/index.md
index 45d1b55b67..5cfbe2df9b 100644
--- a/docs/aws-docs/providers/aws/codeartifact/package_groups/index.md
+++ b/docs/aws-docs/providers/aws/codeartifact/package_groups/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a package_group
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a package_group
resource or lists
## `SELECT` examples
-List all package_groups
in a region.
+Gets all package_groups
in a region.
```sql
SELECT
region,
+domain_name,
+domain_owner,
+pattern,
+contact_info,
+description,
+origin_configuration,
+tags,
arn
FROM aws.codeartifact.package_groups
WHERE region = 'us-east-1';
```
-Gets all properties from a package_group
.
+Gets all properties from an individual package_group
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.codeartifact.package_groups
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new package_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codeartifact/package_groups_list_only/index.md b/docs/aws-docs/providers/aws/codeartifact/package_groups_list_only/index.md
new file mode 100644
index 0000000000..54a856315b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeartifact/package_groups_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: package_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - package_groups_list_only
+ - codeartifact
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists package_groups
in a region or regions, for all properties use package_groups
+
+## Overview
+
+Name package_groups_list_only
+Type Resource
+Description The resource schema to create a CodeArtifact package group.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the domain that contains the package group.
+string
The 12-digit account ID of the AWS account that owns the domain.
+string
The package group pattern that is used to gather packages.
+string
The contact info of the package group.
+string
The text description of the package group.
+object
The package origin configuration of the package group.
+array
An array of key-value pairs to apply to the package group.
+string
The ARN of the package group.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all package_groups
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.codeartifact.package_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the package_groups_list_only
resource, see package_groups
+
+
diff --git a/docs/aws-docs/providers/aws/codeartifact/repositories/index.md b/docs/aws-docs/providers/aws/codeartifact/repositories/index.md
index 701c4406b1..dc4c723036 100644
--- a/docs/aws-docs/providers/aws/codeartifact/repositories/index.md
+++ b/docs/aws-docs/providers/aws/codeartifact/repositories/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a repository
resource or lists
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a repository
resource or lists
## `SELECT` examples
-List all repositories
in a region.
+Gets all repositories
in a region.
```sql
SELECT
region,
-arn
+repository_name,
+name,
+domain_name,
+domain_owner,
+description,
+arn,
+external_connections,
+upstreams,
+permissions_policy_document,
+tags
FROM aws.codeartifact.repositories
WHERE region = 'us-east-1';
```
-Gets all properties from a repository
.
+Gets all properties from an individual repository
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.codeartifact.repositories
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new repository
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codeartifact/repositories_list_only/index.md b/docs/aws-docs/providers/aws/codeartifact/repositories_list_only/index.md
new file mode 100644
index 0000000000..6e0772ed55
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeartifact/repositories_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: repositories_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - repositories_list_only
+ - codeartifact
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists repositories
in a region or regions, for all properties use repositories
+
+## Overview
+
+Name repositories_list_only
+Type Resource
+Description The resource schema to create a CodeArtifact repository.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the repository.
+string
The name of the repository. This is used for GetAtt
+string
The name of the domain that contains the repository.
+string
The 12-digit account ID of the AWS account that owns the domain.
+string
A text description of the repository.
+string
The ARN of the repository.
+array
A list of external connections associated with the repository.
+array
A list of upstream repositories associated with the repository.
+object
The access control resource policy on the provided repository.
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all repositories
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.codeartifact.repositories_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the repositories_list_only
resource, see repositories
+
+
diff --git a/docs/aws-docs/providers/aws/codeartifact/repository_tags/index.md b/docs/aws-docs/providers/aws/codeartifact/repository_tags/index.md
new file mode 100644
index 0000000000..a305202251
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeartifact/repository_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: repository_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - repository_tags
+ - codeartifact
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for repositories
in a region
+
+## Overview
+
+Name repository_tags
+Type Resource
+Description The resource schema to create a CodeArtifact repository.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the repository.
+string
The name of the repository. This is used for GetAtt
+string
The name of the domain that contains the repository.
+string
The 12-digit account ID of the AWS account that owns the domain.
+string
A text description of the repository.
+string
The ARN of the repository.
+array
A list of external connections associated with the repository.
+array
A list of upstream repositories associated with the repository.
+object
The access control resource policy on the provided repository.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all repositories
in a region.
+```sql
+SELECT
+region,
+repository_name,
+name,
+domain_name,
+domain_owner,
+description,
+arn,
+external_connections,
+upstreams,
+permissions_policy_document,
+tag_key,
+tag_value
+FROM aws.codeartifact.repository_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the repository_tags
resource, see repositories
+
+
diff --git a/docs/aws-docs/providers/aws/codebuild/fleet_tags/index.md b/docs/aws-docs/providers/aws/codebuild/fleet_tags/index.md
new file mode 100644
index 0000000000..0b6a96956b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codebuild/fleet_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: fleet_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - fleet_tags
+ - codebuild
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for fleets
in a region
+
+## Overview
+
+Name fleet_tags
+Type Resource
+Description Resource Type definition for AWS::CodeBuild::Fleet
+Id
+
+
+## Fields
+Name Datatype Description string
+integer
+string
+string
+string
+string
+object
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all fleets
in a region.
+```sql
+SELECT
+region,
+name,
+base_capacity,
+environment_type,
+compute_type,
+overflow_behavior,
+fleet_service_role,
+fleet_vpc_config,
+arn,
+tag_key,
+tag_value
+FROM aws.codebuild.fleet_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the fleet_tags
resource, see fleets
+
+
diff --git a/docs/aws-docs/providers/aws/codebuild/fleets/index.md b/docs/aws-docs/providers/aws/codebuild/fleets/index.md
index 60d00402cd..ff923fd140 100644
--- a/docs/aws-docs/providers/aws/codebuild/fleets/index.md
+++ b/docs/aws-docs/providers/aws/codebuild/fleets/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a fleet
resource or lists f
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a fleet
resource or lists f
## `SELECT` examples
-List all fleets
in a region.
+Gets all fleets
in a region.
```sql
SELECT
region,
+name,
+base_capacity,
+environment_type,
+compute_type,
+overflow_behavior,
+fleet_service_role,
+fleet_vpc_config,
+tags,
arn
FROM aws.codebuild.fleets
WHERE region = 'us-east-1';
```
-Gets all properties from a fleet
.
+Gets all properties from an individual fleet
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.codebuild.fleets
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new fleet
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codebuild/fleets_list_only/index.md b/docs/aws-docs/providers/aws/codebuild/fleets_list_only/index.md
new file mode 100644
index 0000000000..f8d5776c23
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codebuild/fleets_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: fleets_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - fleets_list_only
+ - codebuild
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists fleets
in a region or regions, for all properties use fleets
+
+## Overview
+
+Name fleets_list_only
+Type Resource
+Description Resource Type definition for AWS::CodeBuild::Fleet
+Id
+
+
+## Fields
+Name Datatype Description string
+integer
+string
+string
+string
+string
+object
+array
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all fleets
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.codebuild.fleets_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the fleets_list_only
resource, see fleets
+
+
diff --git a/docs/aws-docs/providers/aws/codebuild/index.md b/docs/aws-docs/providers/aws/codebuild/index.md
index 4b63fc5638..9687f87737 100644
--- a/docs/aws-docs/providers/aws/codebuild/index.md
+++ b/docs/aws-docs/providers/aws/codebuild/index.md
@@ -20,7 +20,7 @@ The codebuild service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The codebuild service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codeconnections/connection_tags/index.md b/docs/aws-docs/providers/aws/codeconnections/connection_tags/index.md
new file mode 100644
index 0000000000..3db7ebbf91
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeconnections/connection_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: connection_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - connection_tags
+ - codeconnections
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for connections
in a region
+
+## Overview
+
+Name connection_tags
+Type Resource
+Description Schema for AWS::CodeConnections::Connection resource which can be used to connect external source providers with other AWS services (i.e. AWS CodePipeline)
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.
+string
The name of the connection. Connection names must be unique in an AWS user account.
+string
The current status of the connection.
+string
The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
+string
The name of the external provider where your third-party code repository is configured. You must specify either a ProviderType or a HostArn.
+string
The host arn configured to represent the infrastructure where your third-party provider is installed. You must specify either a ProviderType or a HostArn.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all connections
in a region.
+```sql
+SELECT
+region,
+connection_arn,
+connection_name,
+connection_status,
+owner_account_id,
+provider_type,
+host_arn,
+tag_key,
+tag_value
+FROM aws.codeconnections.connection_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the connection_tags
resource, see connections
+
+
diff --git a/docs/aws-docs/providers/aws/codeconnections/connections/index.md b/docs/aws-docs/providers/aws/codeconnections/connections/index.md
index a3c201ed3b..fa1e68f173 100644
--- a/docs/aws-docs/providers/aws/codeconnections/connections/index.md
+++ b/docs/aws-docs/providers/aws/codeconnections/connections/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a connection
resource or lists
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a connection
resource or lists
## `SELECT` examples
-List all connections
in a region.
+Gets all connections
in a region.
```sql
SELECT
region,
-connection_arn
+connection_arn,
+connection_name,
+connection_status,
+owner_account_id,
+provider_type,
+host_arn,
+tags
FROM aws.codeconnections.connections
WHERE region = 'us-east-1';
```
-Gets all properties from a connection
.
+Gets all properties from an individual connection
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.codeconnections.connections
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new connection
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codeconnections/connections_list_only/index.md b/docs/aws-docs/providers/aws/codeconnections/connections_list_only/index.md
new file mode 100644
index 0000000000..5af347001c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeconnections/connections_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: connections_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - connections_list_only
+ - codeconnections
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists connections
in a region or regions, for all properties use connections
+
+## Overview
+
+Name connections_list_only
+Type Resource
+Description Schema for AWS::CodeConnections::Connection resource which can be used to connect external source providers with other AWS services (i.e. AWS CodePipeline)
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.
+string
The name of the connection. Connection names must be unique in an AWS user account.
+string
The current status of the connection.
+string
The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
+string
The name of the external provider where your third-party code repository is configured. You must specify either a ProviderType or a HostArn.
+string
The host arn configured to represent the infrastructure where your third-party provider is installed. You must specify either a ProviderType or a HostArn.
+array
Specifies the tags applied to a connection.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all connections
in a region.
+```sql
+SELECT
+region,
+connection_arn
+FROM aws.codeconnections.connections_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the connections_list_only
resource, see connections
+
+
diff --git a/docs/aws-docs/providers/aws/codeconnections/index.md b/docs/aws-docs/providers/aws/codeconnections/index.md
index 6948eb8190..78807af6e7 100644
--- a/docs/aws-docs/providers/aws/codeconnections/index.md
+++ b/docs/aws-docs/providers/aws/codeconnections/index.md
@@ -20,7 +20,7 @@ The codeconnections service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The codeconnections service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codedeploy/application_tags/index.md b/docs/aws-docs/providers/aws/codedeploy/application_tags/index.md
new file mode 100644
index 0000000000..4f835d4b9e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codedeploy/application_tags/index.md
@@ -0,0 +1,73 @@
+---
+title: application_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - application_tags
+ - codedeploy
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for applications
in a region
+
+## Overview
+
+Name application_tags
+Type Resource
+Description The AWS::CodeDeploy::Application resource creates an AWS CodeDeploy application
+Id
+
+
+## Fields
+Name Datatype Description string
A name for the application. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the application name.
+string
The compute platform that CodeDeploy deploys the application to.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all applications
in a region.
+```sql
+SELECT
+region,
+application_name,
+compute_platform,
+tag_key,
+tag_value
+FROM aws.codedeploy.application_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the application_tags
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/codedeploy/applications/index.md b/docs/aws-docs/providers/aws/codedeploy/applications/index.md
index 812e976a8b..cd5c99f254 100644
--- a/docs/aws-docs/providers/aws/codedeploy/applications/index.md
+++ b/docs/aws-docs/providers/aws/codedeploy/applications/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets an application
resource or lists
-
+
SELECT
@@ -72,15 +72,17 @@ Creates, updates, deletes or gets an application
resource or lists
## `SELECT` examples
-List all applications
in a region.
+Gets all applications
in a region.
```sql
SELECT
region,
-application_name
+application_name,
+compute_platform,
+tags
FROM aws.codedeploy.applications
WHERE region = 'us-east-1';
```
-Gets all properties from an application
.
+Gets all properties from an individual application
.
```sql
SELECT
region,
@@ -91,7 +93,6 @@ FROM aws.codedeploy.applications
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new application
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codedeploy/applications_list_only/index.md b/docs/aws-docs/providers/aws/codedeploy/applications_list_only/index.md
new file mode 100644
index 0000000000..ce140ce22e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codedeploy/applications_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: applications_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - applications_list_only
+ - codedeploy
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists applications
in a region or regions, for all properties use applications
+
+## Overview
+
+Name applications_list_only
+Type Resource
+Description The AWS::CodeDeploy::Application resource creates an AWS CodeDeploy application
+Id
+
+
+## Fields
+Name Datatype Description string
A name for the application. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the application name.
+string
The compute platform that CodeDeploy deploys the application to.
+array
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all applications
in a region.
+```sql
+SELECT
+region,
+application_name
+FROM aws.codedeploy.applications_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the applications_list_only
resource, see applications
+
+
diff --git a/docs/aws-docs/providers/aws/codedeploy/deployment_configs/index.md b/docs/aws-docs/providers/aws/codedeploy/deployment_configs/index.md
index 10b12fc199..9ef2909ac7 100644
--- a/docs/aws-docs/providers/aws/codedeploy/deployment_configs/index.md
+++ b/docs/aws-docs/providers/aws/codedeploy/deployment_configs/index.md
@@ -57,7 +57,7 @@ Creates, updates, deletes or gets a deployment_config
resource or l
-
+
SELECT
@@ -69,15 +69,19 @@ Creates, updates, deletes or gets a deployment_config
resource or l
## `SELECT` examples
-List all deployment_configs
in a region.
+Gets all deployment_configs
in a region.
```sql
SELECT
region,
-deployment_config_name
+compute_platform,
+deployment_config_name,
+minimum_healthy_hosts,
+zonal_config,
+traffic_routing_config
FROM aws.codedeploy.deployment_configs
WHERE region = 'us-east-1';
```
-Gets all properties from a deployment_config
.
+Gets all properties from an individual deployment_config
.
```sql
SELECT
region,
@@ -90,7 +94,6 @@ FROM aws.codedeploy.deployment_configs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new deployment_config
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codedeploy/deployment_configs_list_only/index.md b/docs/aws-docs/providers/aws/codedeploy/deployment_configs_list_only/index.md
new file mode 100644
index 0000000000..289c79b0a5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codedeploy/deployment_configs_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: deployment_configs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - deployment_configs_list_only
+ - codedeploy
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists deployment_configs
in a region or regions, for all properties use deployment_configs
+
+## Overview
+
+Name deployment_configs_list_only
+Type Resource
+Description Resource Type definition for AWS::CodeDeploy::DeploymentConfig
+Id
+
+
+## Fields
+Name Datatype Description string
The destination platform type for the deployment (Lambda, Server, or ECS).
+string
A name for the deployment configuration. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the deployment configuration name. For more information, see Name Type.
+object
The minimum number of healthy instances that should be available at any time during the deployment. There are two parameters expected in the input: type and value.
+object
The zonal deployment config that specifies how the zonal deployment behaves
+object
The configuration that specifies how the deployment traffic is routed.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all deployment_configs
in a region.
+```sql
+SELECT
+region,
+deployment_config_name
+FROM aws.codedeploy.deployment_configs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the deployment_configs_list_only
resource, see deployment_configs
+
+
diff --git a/docs/aws-docs/providers/aws/codedeploy/index.md b/docs/aws-docs/providers/aws/codedeploy/index.md
index a608cbf548..b44c361fb8 100644
--- a/docs/aws-docs/providers/aws/codedeploy/index.md
+++ b/docs/aws-docs/providers/aws/codedeploy/index.md
@@ -20,7 +20,7 @@ The codedeploy service documentation.
-total resources: 2
+total resources: 5
@@ -29,9 +29,12 @@ The codedeploy service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codeguruprofiler/index.md b/docs/aws-docs/providers/aws/codeguruprofiler/index.md
index f06e86ce6e..7c49d6eb9e 100644
--- a/docs/aws-docs/providers/aws/codeguruprofiler/index.md
+++ b/docs/aws-docs/providers/aws/codeguruprofiler/index.md
@@ -20,7 +20,7 @@ The codeguruprofiler service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The codeguruprofiler service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codeguruprofiler/profiling_group_tags/index.md b/docs/aws-docs/providers/aws/codeguruprofiler/profiling_group_tags/index.md
new file mode 100644
index 0000000000..4e31e67fd8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeguruprofiler/profiling_group_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: profiling_group_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - profiling_group_tags
+ - codeguruprofiler
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for profiling_groups
in a region
+
+## Overview
+
+Name profiling_group_tags
+Type Resource
+Description This resource schema represents the Profiling Group resource in the Amazon CodeGuru Profiler service.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the profiling group.
+string
The compute platform of the profiling group.
+object
The agent permissions attached to this profiling group.
+array
Configuration for Notification Channels for Anomaly Detection feature in CodeGuru Profiler which enables customers to detect anomalies in the application profile for those methods that represent the highest proportion of CPU time or latency
+string
The Amazon Resource Name (ARN) of the specified profiling group.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all profiling_groups
in a region.
+```sql
+SELECT
+region,
+profiling_group_name,
+compute_platform,
+agent_permissions,
+anomaly_detection_notification_configuration,
+arn,
+tag_key,
+tag_value
+FROM aws.codeguruprofiler.profiling_group_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the profiling_group_tags
resource, see profiling_groups
+
+
diff --git a/docs/aws-docs/providers/aws/codeguruprofiler/profiling_groups/index.md b/docs/aws-docs/providers/aws/codeguruprofiler/profiling_groups/index.md
index bd082b19b6..eec72daa38 100644
--- a/docs/aws-docs/providers/aws/codeguruprofiler/profiling_groups/index.md
+++ b/docs/aws-docs/providers/aws/codeguruprofiler/profiling_groups/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a profiling_group
resource or lis
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a profiling_group
resource or lis
## `SELECT` examples
-List all profiling_groups
in a region.
+Gets all profiling_groups
in a region.
```sql
SELECT
region,
-profiling_group_name
+profiling_group_name,
+compute_platform,
+agent_permissions,
+anomaly_detection_notification_configuration,
+arn,
+tags
FROM aws.codeguruprofiler.profiling_groups
WHERE region = 'us-east-1';
```
-Gets all properties from a profiling_group
.
+Gets all properties from an individual profiling_group
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.codeguruprofiler.profiling_groups
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new profiling_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codeguruprofiler/profiling_groups_list_only/index.md b/docs/aws-docs/providers/aws/codeguruprofiler/profiling_groups_list_only/index.md
new file mode 100644
index 0000000000..8431d46a56
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codeguruprofiler/profiling_groups_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: profiling_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - profiling_groups_list_only
+ - codeguruprofiler
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists profiling_groups
in a region or regions, for all properties use profiling_groups
+
+## Overview
+
+Name profiling_groups_list_only
+Type Resource
+Description This resource schema represents the Profiling Group resource in the Amazon CodeGuru Profiler service.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the profiling group.
+string
The compute platform of the profiling group.
+object
The agent permissions attached to this profiling group.
+array
Configuration for Notification Channels for Anomaly Detection feature in CodeGuru Profiler which enables customers to detect anomalies in the application profile for those methods that represent the highest proportion of CPU time or latency
+string
The Amazon Resource Name (ARN) of the specified profiling group.
+array
The tags associated with a profiling group.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all profiling_groups
in a region.
+```sql
+SELECT
+region,
+profiling_group_name
+FROM aws.codeguruprofiler.profiling_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the profiling_groups_list_only
resource, see profiling_groups
+
+
diff --git a/docs/aws-docs/providers/aws/codegurureviewer/index.md b/docs/aws-docs/providers/aws/codegurureviewer/index.md
index 43f4a64cf0..5429f17ab8 100644
--- a/docs/aws-docs/providers/aws/codegurureviewer/index.md
+++ b/docs/aws-docs/providers/aws/codegurureviewer/index.md
@@ -20,7 +20,7 @@ The codegurureviewer service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The codegurureviewer service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codegurureviewer/repository_association_tags/index.md b/docs/aws-docs/providers/aws/codegurureviewer/repository_association_tags/index.md
new file mode 100644
index 0000000000..a93ccc5901
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codegurureviewer/repository_association_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: repository_association_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - repository_association_tags
+ - codegurureviewer
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for repository_associations
in a region
+
+## Overview
+
+Name repository_association_tags
+Type Resource
+Description This resource schema represents the RepositoryAssociation resource in the Amazon CodeGuru Reviewer service.
+Id
+
+
+## Fields
+Name Datatype Description string
Name of the repository to be associated.
+string
The type of repository to be associated.
+string
The owner of the repository. For a Bitbucket repository, this is the username for the account that owns the repository.
+string
The name of the S3 bucket associated with an associated S3 repository. It must start with `codeguru-reviewer-`.
+string
The Amazon Resource Name (ARN) of an AWS CodeStar Connections connection.
+string
The Amazon Resource Name (ARN) of the repository association.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all repository_associations
in a region.
+```sql
+SELECT
+region,
+name,
+type,
+owner,
+bucket_name,
+connection_arn,
+association_arn,
+tag_key,
+tag_value
+FROM aws.codegurureviewer.repository_association_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the repository_association_tags
resource, see repository_associations
+
+
diff --git a/docs/aws-docs/providers/aws/codegurureviewer/repository_associations/index.md b/docs/aws-docs/providers/aws/codegurureviewer/repository_associations/index.md
index a6a9b9782f..086b7677ea 100644
--- a/docs/aws-docs/providers/aws/codegurureviewer/repository_associations/index.md
+++ b/docs/aws-docs/providers/aws/codegurureviewer/repository_associations/index.md
@@ -59,7 +59,7 @@ Creates, updates, deletes or gets a repository_association
resource
-
+
SELECT
@@ -71,15 +71,21 @@ Creates, updates, deletes or gets a repository_association
resource
## `SELECT` examples
-List all repository_associations
in a region.
+Gets all repository_associations
in a region.
```sql
SELECT
region,
-association_arn
+name,
+type,
+owner,
+bucket_name,
+connection_arn,
+association_arn,
+tags
FROM aws.codegurureviewer.repository_associations
WHERE region = 'us-east-1';
```
-Gets all properties from a repository_association
.
+Gets all properties from an individual repository_association
.
```sql
SELECT
region,
@@ -94,7 +100,6 @@ FROM aws.codegurureviewer.repository_associations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new repository_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codegurureviewer/repository_associations_list_only/index.md b/docs/aws-docs/providers/aws/codegurureviewer/repository_associations_list_only/index.md
new file mode 100644
index 0000000000..b208054461
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codegurureviewer/repository_associations_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: repository_associations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - repository_associations_list_only
+ - codegurureviewer
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists repository_associations
in a region or regions, for all properties use repository_associations
+
+## Overview
+
+Name repository_associations_list_only
+Type Resource
+Description This resource schema represents the RepositoryAssociation resource in the Amazon CodeGuru Reviewer service.
+Id
+
+
+## Fields
+Name Datatype Description string
Name of the repository to be associated.
+string
The type of repository to be associated.
+string
The owner of the repository. For a Bitbucket repository, this is the username for the account that owns the repository.
+string
The name of the S3 bucket associated with an associated S3 repository. It must start with `codeguru-reviewer-`.
+string
The Amazon Resource Name (ARN) of an AWS CodeStar Connections connection.
+string
The Amazon Resource Name (ARN) of the repository association.
+array
The tags associated with a repository association.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all repository_associations
in a region.
+```sql
+SELECT
+region,
+association_arn
+FROM aws.codegurureviewer.repository_associations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the repository_associations_list_only
resource, see repository_associations
+
+
diff --git a/docs/aws-docs/providers/aws/codepipeline/custom_action_type_tags/index.md b/docs/aws-docs/providers/aws/codepipeline/custom_action_type_tags/index.md
new file mode 100644
index 0000000000..a816a6121f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codepipeline/custom_action_type_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: custom_action_type_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - custom_action_type_tags
+ - codepipeline
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for custom_action_types
in a region
+
+## Overview
+
+Name custom_action_type_tags
+Type Resource
+Description The AWS::CodePipeline::CustomActionType resource creates a custom action for activities that aren't included in the CodePipeline default actions, such as running an internally developed build process or a test suite. You can use these custom actions in the stage of a pipeline.
+Id
+
+
+## Fields
+Name Datatype Description string
The category of the custom action, such as a build action or a test action.
+array
The configuration properties for the custom action.
+object
The details of the input artifact for the action, such as its commit ID.
+object
The details of the output artifact of the action, such as its commit ID.
+string
The provider of the service used in the custom action, such as AWS CodeDeploy.
+object
URLs that provide users information about this custom action.
+string
The version identifier of the custom action.
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all custom_action_types
in a region.
+```sql
+SELECT
+region,
+category,
+configuration_properties,
+input_artifact_details,
+output_artifact_details,
+provider,
+settings,
+version,
+id,
+tag_key,
+tag_value
+FROM aws.codepipeline.custom_action_type_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the custom_action_type_tags
resource, see custom_action_types
+
+
diff --git a/docs/aws-docs/providers/aws/codepipeline/custom_action_types/index.md b/docs/aws-docs/providers/aws/codepipeline/custom_action_types/index.md
index 86628e1aa6..a294c1a4c2 100644
--- a/docs/aws-docs/providers/aws/codepipeline/custom_action_types/index.md
+++ b/docs/aws-docs/providers/aws/codepipeline/custom_action_types/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a custom_action_type
resource or
-
+
SELECT
@@ -78,17 +78,23 @@ Creates, updates, deletes or gets a custom_action_type
resource or
## `SELECT` examples
-List all custom_action_types
in a region.
+Gets all custom_action_types
in a region.
```sql
SELECT
region,
category,
+configuration_properties,
+input_artifact_details,
+output_artifact_details,
provider,
-version
+settings,
+tags,
+version,
+id
FROM aws.codepipeline.custom_action_types
WHERE region = 'us-east-1';
```
-Gets all properties from a custom_action_type
.
+Gets all properties from an individual custom_action_type
.
```sql
SELECT
region,
@@ -105,7 +111,6 @@ FROM aws.codepipeline.custom_action_types
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new custom_action_type
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codepipeline/custom_action_types_list_only/index.md b/docs/aws-docs/providers/aws/codepipeline/custom_action_types_list_only/index.md
new file mode 100644
index 0000000000..41effc59cb
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codepipeline/custom_action_types_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: custom_action_types_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - custom_action_types_list_only
+ - codepipeline
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists custom_action_types
in a region or regions, for all properties use custom_action_types
+
+## Overview
+
+Name custom_action_types_list_only
+Type Resource
+Description The AWS::CodePipeline::CustomActionType resource creates a custom action for activities that aren't included in the CodePipeline default actions, such as running an internally developed build process or a test suite. You can use these custom actions in the stage of a pipeline.
+Id
+
+
+## Fields
+Name Datatype Description string
The category of the custom action, such as a build action or a test action.
+array
The configuration properties for the custom action.
+object
The details of the input artifact for the action, such as its commit ID.
+object
The details of the output artifact of the action, such as its commit ID.
+string
The provider of the service used in the custom action, such as AWS CodeDeploy.
+object
URLs that provide users information about this custom action.
+array
Any tags assigned to the custom action.
+string
The version identifier of the custom action.
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all custom_action_types
in a region.
+```sql
+SELECT
+region,
+category,
+provider,
+version
+FROM aws.codepipeline.custom_action_types_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the custom_action_types_list_only
resource, see custom_action_types
+
+
diff --git a/docs/aws-docs/providers/aws/codepipeline/index.md b/docs/aws-docs/providers/aws/codepipeline/index.md
index 73dcee2c32..8ed44dcf3a 100644
--- a/docs/aws-docs/providers/aws/codepipeline/index.md
+++ b/docs/aws-docs/providers/aws/codepipeline/index.md
@@ -20,7 +20,7 @@ The codepipeline service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The codepipeline service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codestarconnections/connection_tags/index.md b/docs/aws-docs/providers/aws/codestarconnections/connection_tags/index.md
new file mode 100644
index 0000000000..0ad1a6864e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codestarconnections/connection_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: connection_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - connection_tags
+ - codestarconnections
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for connections
in a region
+
+## Overview
+
+Name connection_tags
+Type Resource
+Description Schema for AWS::CodeStarConnections::Connection resource which can be used to connect external source providers with AWS CodePipeline
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.
+string
The name of the connection. Connection names must be unique in an AWS user account.
+string
The current status of the connection.
+string
The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
+string
The name of the external provider where your third-party code repository is configured. You must specify either a ProviderType or a HostArn.
+string
The host arn configured to represent the infrastructure where your third-party provider is installed. You must specify either a ProviderType or a HostArn.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all connections
in a region.
+```sql
+SELECT
+region,
+connection_arn,
+connection_name,
+connection_status,
+owner_account_id,
+provider_type,
+host_arn,
+tag_key,
+tag_value
+FROM aws.codestarconnections.connection_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the connection_tags
resource, see connections
+
+
diff --git a/docs/aws-docs/providers/aws/codestarconnections/connections/index.md b/docs/aws-docs/providers/aws/codestarconnections/connections/index.md
index 67ebfa3c85..42b716f726 100644
--- a/docs/aws-docs/providers/aws/codestarconnections/connections/index.md
+++ b/docs/aws-docs/providers/aws/codestarconnections/connections/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a connection
resource or lists
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a connection
resource or lists
## `SELECT` examples
-List all connections
in a region.
+Gets all connections
in a region.
```sql
SELECT
region,
-connection_arn
+connection_arn,
+connection_name,
+connection_status,
+owner_account_id,
+provider_type,
+host_arn,
+tags
FROM aws.codestarconnections.connections
WHERE region = 'us-east-1';
```
-Gets all properties from a connection
.
+Gets all properties from an individual connection
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.codestarconnections.connections
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new connection
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codestarconnections/connections_list_only/index.md b/docs/aws-docs/providers/aws/codestarconnections/connections_list_only/index.md
new file mode 100644
index 0000000000..bfdc08e3e0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codestarconnections/connections_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: connections_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - connections_list_only
+ - codestarconnections
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists connections
in a region or regions, for all properties use connections
+
+## Overview
+
+Name connections_list_only
+Type Resource
+Description Schema for AWS::CodeStarConnections::Connection resource which can be used to connect external source providers with AWS CodePipeline
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.
+string
The name of the connection. Connection names must be unique in an AWS user account.
+string
The current status of the connection.
+string
The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
+string
The name of the external provider where your third-party code repository is configured. You must specify either a ProviderType or a HostArn.
+string
The host arn configured to represent the infrastructure where your third-party provider is installed. You must specify either a ProviderType or a HostArn.
+array
Specifies the tags applied to a connection.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all connections
in a region.
+```sql
+SELECT
+region,
+connection_arn
+FROM aws.codestarconnections.connections_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the connections_list_only
resource, see connections
+
+
diff --git a/docs/aws-docs/providers/aws/codestarconnections/index.md b/docs/aws-docs/providers/aws/codestarconnections/index.md
index a3beb3247e..64e1da22e8 100644
--- a/docs/aws-docs/providers/aws/codestarconnections/index.md
+++ b/docs/aws-docs/providers/aws/codestarconnections/index.md
@@ -20,7 +20,7 @@ The codestarconnections service documentation.
-total resources: 3
+total resources: 8
@@ -29,10 +29,15 @@ The codestarconnections service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codestarconnections/repository_link_tags/index.md b/docs/aws-docs/providers/aws/codestarconnections/repository_link_tags/index.md
new file mode 100644
index 0000000000..9a5e7b6d57
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codestarconnections/repository_link_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: repository_link_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - repository_link_tags
+ - codestarconnections
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for repository_links
in a region
+
+## Overview
+
+Name repository_link_tags
+Type Resource
+Description Schema for AWS::CodeStarConnections::RepositoryLink resource which is used to aggregate repository metadata relevant to synchronizing source provider content to AWS Resources.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the CodeStarConnection. The ARN is used as the connection reference when the connection is shared between AWS services.
+string
The name of the external provider where your third-party code repository is configured.
+string
the ID of the entity that owns the repository.
+string
The repository for which the link is being created.
+string
The ARN of the KMS key that the customer can optionally specify to use to encrypt RepositoryLink properties. If not specified, a default key will be used.
+string
A UUID that uniquely identifies the RepositoryLink.
+string
A unique Amazon Resource Name (ARN) to designate the repository link.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all repository_links
in a region.
+```sql
+SELECT
+region,
+connection_arn,
+provider_type,
+owner_id,
+repository_name,
+encryption_key_arn,
+repository_link_id,
+repository_link_arn,
+tag_key,
+tag_value
+FROM aws.codestarconnections.repository_link_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the repository_link_tags
resource, see repository_links
+
+
diff --git a/docs/aws-docs/providers/aws/codestarconnections/repository_links/index.md b/docs/aws-docs/providers/aws/codestarconnections/repository_links/index.md
index 6c2f506906..e09178b833 100644
--- a/docs/aws-docs/providers/aws/codestarconnections/repository_links/index.md
+++ b/docs/aws-docs/providers/aws/codestarconnections/repository_links/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a repository_link
resource or lis
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a repository_link
resource or lis
## `SELECT` examples
-List all repository_links
in a region.
+Gets all repository_links
in a region.
```sql
SELECT
region,
-repository_link_arn
+connection_arn,
+provider_type,
+owner_id,
+repository_name,
+encryption_key_arn,
+repository_link_id,
+repository_link_arn,
+tags
FROM aws.codestarconnections.repository_links
WHERE region = 'us-east-1';
```
-Gets all properties from a repository_link
.
+Gets all properties from an individual repository_link
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.codestarconnections.repository_links
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new repository_link
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codestarconnections/repository_links_list_only/index.md b/docs/aws-docs/providers/aws/codestarconnections/repository_links_list_only/index.md
new file mode 100644
index 0000000000..5a5aaef5df
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codestarconnections/repository_links_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: repository_links_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - repository_links_list_only
+ - codestarconnections
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists repository_links
in a region or regions, for all properties use repository_links
+
+## Overview
+
+Name repository_links_list_only
+Type Resource
+Description Schema for AWS::CodeStarConnections::RepositoryLink resource which is used to aggregate repository metadata relevant to synchronizing source provider content to AWS Resources.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the CodeStarConnection. The ARN is used as the connection reference when the connection is shared between AWS services.
+string
The name of the external provider where your third-party code repository is configured.
+string
the ID of the entity that owns the repository.
+string
The repository for which the link is being created.
+string
The ARN of the KMS key that the customer can optionally specify to use to encrypt RepositoryLink properties. If not specified, a default key will be used.
+string
A UUID that uniquely identifies the RepositoryLink.
+string
A unique Amazon Resource Name (ARN) to designate the repository link.
+array
Specifies the tags applied to a RepositoryLink.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all repository_links
in a region.
+```sql
+SELECT
+region,
+repository_link_arn
+FROM aws.codestarconnections.repository_links_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the repository_links_list_only
resource, see repository_links
+
+
diff --git a/docs/aws-docs/providers/aws/codestarconnections/sync_configurations/index.md b/docs/aws-docs/providers/aws/codestarconnections/sync_configurations/index.md
index 003aa7c466..9a1b1d90bf 100644
--- a/docs/aws-docs/providers/aws/codestarconnections/sync_configurations/index.md
+++ b/docs/aws-docs/providers/aws/codestarconnections/sync_configurations/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a sync_configuration
resource or
-
+
SELECT
@@ -80,16 +80,25 @@ Creates, updates, deletes or gets a sync_configuration
resource or
## `SELECT` examples
-List all sync_configurations
in a region.
+Gets all sync_configurations
in a region.
```sql
SELECT
region,
+owner_id,
resource_name,
-sync_type
+repository_name,
+provider_type,
+branch,
+config_file,
+sync_type,
+role_arn,
+publish_deployment_status,
+trigger_resource_update_on,
+repository_link_id
FROM aws.codestarconnections.sync_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from a sync_configuration
.
+Gets all properties from an individual sync_configuration
.
```sql
SELECT
region,
@@ -108,7 +117,6 @@ FROM aws.codestarconnections.sync_configurations
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new sync_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codestarconnections/sync_configurations_list_only/index.md b/docs/aws-docs/providers/aws/codestarconnections/sync_configurations_list_only/index.md
new file mode 100644
index 0000000000..6533d672ff
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codestarconnections/sync_configurations_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: sync_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - sync_configurations_list_only
+ - codestarconnections
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists sync_configurations
in a region or regions, for all properties use sync_configurations
+
+## Overview
+
+Name sync_configurations_list_only
+Type Resource
+Description Schema for AWS::CodeStarConnections::SyncConfiguration resource which is used to enables an AWS resource to be synchronized from a source-provider.
+Id
+
+
+## Fields
+Name Datatype Description string
the ID of the entity that owns the repository.
+string
The name of the resource that is being synchronized to the repository.
+string
The name of the repository that is being synced to.
+string
The name of the external provider where your third-party code repository is configured.
+string
The name of the branch of the repository from which resources are to be synchronized,
+string
The source provider repository path of the sync configuration file of the respective SyncType.
+string
The type of resource synchronization service that is to be configured, for example, CFN_STACK_SYNC.
+string
The IAM Role that allows AWS to update CloudFormation stacks based on content in the specified repository.
+string
Whether to enable or disable publishing of deployment status to source providers.
+string
When to trigger Git sync to begin the stack update.
+string
A UUID that uniquely identifies the RepositoryLink that the SyncConfig is associated with.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all sync_configurations
in a region.
+```sql
+SELECT
+region,
+resource_name,
+sync_type
+FROM aws.codestarconnections.sync_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the sync_configurations_list_only
resource, see sync_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/codestarnotifications/index.md b/docs/aws-docs/providers/aws/codestarnotifications/index.md
index 02be4621de..d7ef301ada 100644
--- a/docs/aws-docs/providers/aws/codestarnotifications/index.md
+++ b/docs/aws-docs/providers/aws/codestarnotifications/index.md
@@ -20,7 +20,7 @@ The codestarnotifications service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The codestarnotifications service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/codestarnotifications/notification_rule_tags/index.md b/docs/aws-docs/providers/aws/codestarnotifications/notification_rule_tags/index.md
new file mode 100644
index 0000000000..15bec16d4e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codestarnotifications/notification_rule_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: notification_rule_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - notification_rule_tags
+ - codestarnotifications
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for notification_rules
in a region
+
+## Overview
+
+Name notification_rule_tags
+Type Resource
+Description Resource Type definition for AWS::CodeStarNotifications::NotificationRule
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+array
+string
+string
+string
+array
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all notification_rules
in a region.
+```sql
+SELECT
+region,
+event_type_id,
+created_by,
+target_address,
+event_type_ids,
+status,
+detail_type,
+resource,
+targets,
+name,
+arn,
+tag_key,
+tag_value
+FROM aws.codestarnotifications.notification_rule_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the notification_rule_tags
resource, see notification_rules
+
+
diff --git a/docs/aws-docs/providers/aws/codestarnotifications/notification_rules/index.md b/docs/aws-docs/providers/aws/codestarnotifications/notification_rules/index.md
index 4fe0cf654d..fe75ae2bba 100644
--- a/docs/aws-docs/providers/aws/codestarnotifications/notification_rules/index.md
+++ b/docs/aws-docs/providers/aws/codestarnotifications/notification_rules/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a notification_rule
resource or l
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a notification_rule
resource or l
## `SELECT` examples
-List all notification_rules
in a region.
+Gets all notification_rules
in a region.
```sql
SELECT
region,
+event_type_id,
+created_by,
+target_address,
+event_type_ids,
+status,
+detail_type,
+resource,
+targets,
+tags,
+name,
arn
FROM aws.codestarnotifications.notification_rules
WHERE region = 'us-east-1';
```
-Gets all properties from a notification_rule
.
+Gets all properties from an individual notification_rule
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.codestarnotifications.notification_rules
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new notification_rule
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/codestarnotifications/notification_rules_list_only/index.md b/docs/aws-docs/providers/aws/codestarnotifications/notification_rules_list_only/index.md
new file mode 100644
index 0000000000..2b9c58474e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/codestarnotifications/notification_rules_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: notification_rules_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - notification_rules_list_only
+ - codestarnotifications
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists notification_rules
in a region or regions, for all properties use notification_rules
+
+## Overview
+
+Name notification_rules_list_only
+Type Resource
+Description Resource Type definition for AWS::CodeStarNotifications::NotificationRule
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+array
+string
+string
+string
+array
+object
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all notification_rules
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.codestarnotifications.notification_rules_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the notification_rules_list_only
resource, see notification_rules
+
+
diff --git a/docs/aws-docs/providers/aws/cognito/identity_pool_principal_tags/index.md b/docs/aws-docs/providers/aws/cognito/identity_pool_principal_tags/index.md
index 4ff07bbfd4..cc05cce4f3 100644
--- a/docs/aws-docs/providers/aws/cognito/identity_pool_principal_tags/index.md
+++ b/docs/aws-docs/providers/aws/cognito/identity_pool_principal_tags/index.md
@@ -19,7 +19,7 @@ import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
-Creates, updates, deletes or gets an identity_pool_principal_tag
resource or lists identity_pool_principal_tags
in a region
+Expands all tag keys and values for identity_pool_principals
in a region
## Overview
@@ -34,6 +34,8 @@ Creates, updates, deletes or gets an identity_pool_principal_tag
re
string
boolean
object
+string
Tag key.
+string
Tag value.
string
AWS region.
@@ -61,7 +63,7 @@ Creates, updates, deletes or gets an identity_pool_principal_tag
re
-
+
SELECT
@@ -73,16 +75,20 @@ Creates, updates, deletes or gets an identity_pool_principal_tag
re
## `SELECT` examples
-List all identity_pool_principal_tags
in a region.
+Expands tags for all identity_pool_principals
in a region.
```sql
SELECT
region,
identity_pool_id,
-identity_provider_name
+identity_provider_name,
+use_defaults,
+principal_tags,
+tag_key,
+tag_value
FROM aws.cognito.identity_pool_principal_tags
WHERE region = 'us-east-1';
```
-Gets all properties from an identity_pool_principal_tag
.
+Gets all properties from an individual identity_pool_principal_tag
.
```sql
SELECT
region,
@@ -94,7 +100,6 @@ FROM aws.cognito.identity_pool_principal_tags
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new identity_pool_principal_tag
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/identity_pool_principal_tags_list_only/index.md b/docs/aws-docs/providers/aws/cognito/identity_pool_principal_tags_list_only/index.md
new file mode 100644
index 0000000000..361918df2d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cognito/identity_pool_principal_tags_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: identity_pool_principal_tags_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - identity_pool_principal_tags_list_only
+ - cognito
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists identity_pool_principal_tags
in a region or regions, for all properties use identity_pool_principal_tags
+
+## Overview
+
+Name identity_pool_principal_tags_list_only
+Type Resource
+Description Resource Type definition for AWS::Cognito::IdentityPoolPrincipalTag
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+boolean
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all identity_pool_principal_tags
in a region.
+```sql
+SELECT
+region,
+identity_pool_id,
+identity_provider_name
+FROM aws.cognito.identity_pool_principal_tags_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the identity_pool_principal_tags_list_only
resource, see identity_pool_principal_tags
+
+
diff --git a/docs/aws-docs/providers/aws/cognito/identity_pool_role_attachments/index.md b/docs/aws-docs/providers/aws/cognito/identity_pool_role_attachments/index.md
index d0c379be63..46e80378a3 100644
--- a/docs/aws-docs/providers/aws/cognito/identity_pool_role_attachments/index.md
+++ b/docs/aws-docs/providers/aws/cognito/identity_pool_role_attachments/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets an identity_pool_role_attachment
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets an identity_pool_role_attachment
## `SELECT` examples
-List all identity_pool_role_attachments
in a region.
+Gets all identity_pool_role_attachments
in a region.
```sql
SELECT
region,
-id
+identity_pool_id,
+roles,
+id,
+role_mappings
FROM aws.cognito.identity_pool_role_attachments
WHERE region = 'us-east-1';
```
-Gets all properties from an identity_pool_role_attachment
.
+Gets all properties from an individual identity_pool_role_attachment
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.cognito.identity_pool_role_attachments
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new identity_pool_role_attachment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/identity_pool_role_attachments_list_only/index.md b/docs/aws-docs/providers/aws/cognito/identity_pool_role_attachments_list_only/index.md
new file mode 100644
index 0000000000..b0676d2769
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cognito/identity_pool_role_attachments_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: identity_pool_role_attachments_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - identity_pool_role_attachments_list_only
+ - cognito
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists identity_pool_role_attachments
in a region or regions, for all properties use identity_pool_role_attachments
+
+## Overview
+
+Name identity_pool_role_attachments_list_only
+Type Resource
+Description Resource Type definition for AWS::Cognito::IdentityPoolRoleAttachment
+Id
+
+
+## Fields
+Name Datatype Description string
+
+string
+
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all identity_pool_role_attachments
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cognito.identity_pool_role_attachments_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the identity_pool_role_attachments_list_only
resource, see identity_pool_role_attachments
+
+
diff --git a/docs/aws-docs/providers/aws/cognito/identity_pools/index.md b/docs/aws-docs/providers/aws/cognito/identity_pools/index.md
index 85ca6f703a..db3f549760 100644
--- a/docs/aws-docs/providers/aws/cognito/identity_pools/index.md
+++ b/docs/aws-docs/providers/aws/cognito/identity_pools/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets an identity_pool
resource or list
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets an identity_pool
resource or list
## `SELECT` examples
-List all identity_pools
in a region.
+Gets all identity_pools
in a region.
```sql
SELECT
region,
-id
+push_sync,
+cognito_identity_providers,
+developer_provider_name,
+cognito_streams,
+supported_login_providers,
+name,
+cognito_events,
+id,
+identity_pool_name,
+allow_unauthenticated_identities,
+saml_provider_arns,
+open_id_connect_provider_arns,
+allow_classic_flow
FROM aws.cognito.identity_pools
WHERE region = 'us-east-1';
```
-Gets all properties from an identity_pool
.
+Gets all properties from an individual identity_pool
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.cognito.identity_pools
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new identity_pool
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/identity_pools_list_only/index.md b/docs/aws-docs/providers/aws/cognito/identity_pools_list_only/index.md
new file mode 100644
index 0000000000..110d53d8a0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cognito/identity_pools_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: identity_pools_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - identity_pools_list_only
+ - cognito
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists identity_pools
in a region or regions, for all properties use identity_pools
+
+## Overview
+
+Name identity_pools_list_only
+Type Resource
+Description Resource Type definition for AWS::Cognito::IdentityPool
+Id
+
+
+## Fields
+Name Datatype Description object
+array
+string
+object
+object
+string
+object
+string
+string
+boolean
+array
+array
+boolean
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all identity_pools
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.cognito.identity_pools_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the identity_pools_list_only
resource, see identity_pools
+
+
diff --git a/docs/aws-docs/providers/aws/cognito/index.md b/docs/aws-docs/providers/aws/cognito/index.md
index dd0183c88e..4d4a5cbb55 100644
--- a/docs/aws-docs/providers/aws/cognito/index.md
+++ b/docs/aws-docs/providers/aws/cognito/index.md
@@ -20,7 +20,7 @@ The cognito service documentation.
-total resources: 10
+total resources: 17
@@ -30,16 +30,23 @@ The cognito service documentation.
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cognito/log_delivery_configurations/index.md b/docs/aws-docs/providers/aws/cognito/log_delivery_configurations/index.md
index 6500af1429..bca9333fe8 100644
--- a/docs/aws-docs/providers/aws/cognito/log_delivery_configurations/index.md
+++ b/docs/aws-docs/providers/aws/cognito/log_delivery_configurations/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a log_delivery_configuration
reso
## `SELECT` examples
-Gets all properties from a log_delivery_configuration
.
+Gets all properties from an individual log_delivery_configuration
.
```sql
SELECT
region,
@@ -79,7 +79,6 @@ FROM aws.cognito.log_delivery_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new log_delivery_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_clients/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_clients/index.md
index c667c1868c..9828dfbcf1 100644
--- a/docs/aws-docs/providers/aws/cognito/user_pool_clients/index.md
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_clients/index.md
@@ -82,7 +82,7 @@ Creates, updates, deletes or gets an user_pool_client
resource or l
-
+
SELECT
@@ -94,16 +94,39 @@ Creates, updates, deletes or gets an user_pool_client
resource or l
## `SELECT` examples
-List all user_pool_clients
in a region.
+Gets all user_pool_clients
in a region.
```sql
SELECT
region,
+client_name,
+explicit_auth_flows,
+generate_secret,
+read_attributes,
+auth_session_validity,
+refresh_token_validity,
+access_token_validity,
+id_token_validity,
+token_validity_units,
user_pool_id,
+write_attributes,
+allowed_oauth_flows,
+allowed_oauth_flows_user_pool_client,
+allowed_oauth_scopes,
+callback_urls,
+default_redirect_uri,
+logout_urls,
+supported_identity_providers,
+analytics_configuration,
+prevent_user_existence_errors,
+enable_token_revocation,
+enable_propagate_additional_user_context_data,
+name,
+client_secret,
client_id
FROM aws.cognito.user_pool_clients
WHERE region = 'us-east-1';
```
-Gets all properties from an user_pool_client
.
+Gets all properties from an individual user_pool_client
.
```sql
SELECT
region,
@@ -136,7 +159,6 @@ FROM aws.cognito.user_pool_clients
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user_pool_client
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_clients_list_only/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_clients_list_only/index.md
new file mode 100644
index 0000000000..0308d53f0f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_clients_list_only/index.md
@@ -0,0 +1,92 @@
+---
+title: user_pool_clients_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - user_pool_clients_list_only
+ - cognito
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists user_pool_clients
in a region or regions, for all properties use user_pool_clients
+
+## Overview
+
+Name user_pool_clients_list_only
+Type Resource
+Description Resource Type definition for AWS::Cognito::UserPoolClient
+Id
+
+
+## Fields
+Name Datatype Description string
+array
+boolean
+array
+integer
+integer
+integer
+integer
+object
+string
+array
+array
+boolean
+array
+array
+string
+array
+array
+object
+string
+boolean
+boolean
+string
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all user_pool_clients
in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+client_id
+FROM aws.cognito.user_pool_clients_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the user_pool_clients_list_only
resource, see user_pool_clients
+
+
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_groups/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_groups/index.md
index 409c8b98a3..570bdba4da 100644
--- a/docs/aws-docs/providers/aws/cognito/user_pool_groups/index.md
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_groups/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets an user_pool_group
resource or li
-
+
SELECT
@@ -74,16 +74,19 @@ Creates, updates, deletes or gets an user_pool_group
resource or li
## `SELECT` examples
-List all user_pool_groups
in a region.
+Gets all user_pool_groups
in a region.
```sql
SELECT
region,
-user_pool_id,
-group_name
+description,
+group_name,
+precedence,
+role_arn,
+user_pool_id
FROM aws.cognito.user_pool_groups
WHERE region = 'us-east-1';
```
-Gets all properties from an user_pool_group
.
+Gets all properties from an individual user_pool_group
.
```sql
SELECT
region,
@@ -96,7 +99,6 @@ FROM aws.cognito.user_pool_groups
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user_pool_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_groups_list_only/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_groups_list_only/index.md
new file mode 100644
index 0000000000..9d9ebdd2da
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_groups_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: user_pool_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - user_pool_groups_list_only
+ - cognito
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists user_pool_groups
in a region or regions, for all properties use user_pool_groups
+
+## Overview
+
+Name user_pool_groups_list_only
+Type Resource
+Description Resource Type definition for AWS::Cognito::UserPoolGroup
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+integer
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all user_pool_groups
in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+group_name
+FROM aws.cognito.user_pool_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the user_pool_groups_list_only
resource, see user_pool_groups
+
+
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_risk_configuration_attachments/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_risk_configuration_attachments/index.md
index 419d269980..01281d79c8 100644
--- a/docs/aws-docs/providers/aws/cognito/user_pool_risk_configuration_attachments/index.md
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_risk_configuration_attachments/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets an user_pool_risk_configuration_attachme
## `SELECT` examples
-Gets all properties from an user_pool_risk_configuration_attachment
.
+Gets all properties from an individual user_pool_risk_configuration_attachment
.
```sql
SELECT
region,
@@ -83,7 +83,6 @@ FROM aws.cognito.user_pool_risk_configuration_attachments
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user_pool_risk_configuration_attachment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_user_to_group_attachments/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_user_to_group_attachments/index.md
index fb6dc59698..5585a32616 100644
--- a/docs/aws-docs/providers/aws/cognito/user_pool_user_to_group_attachments/index.md
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_user_to_group_attachments/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets an user_pool_user_to_group_attachment
user_pool_user_to_group_attachment
.
+Gets all properties from an individual user_pool_user_to_group_attachment
.
```sql
SELECT
region,
@@ -74,7 +74,6 @@ FROM aws.cognito.user_pool_user_to_group_attachments
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user_pool_user_to_group_attachment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_users/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_users/index.md
index 12e681d5cf..9da73b897d 100644
--- a/docs/aws-docs/providers/aws/cognito/user_pool_users/index.md
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_users/index.md
@@ -60,7 +60,7 @@ Creates, updates, deletes or gets an user_pool_user
resource or lis
-
+
SELECT
@@ -72,16 +72,22 @@ Creates, updates, deletes or gets an user_pool_user
resource or lis
## `SELECT` examples
-List all user_pool_users
in a region.
+Gets all user_pool_users
in a region.
```sql
SELECT
region,
+desired_delivery_mediums,
+force_alias_creation,
+user_attributes,
+message_action,
+username,
user_pool_id,
-username
+validation_data,
+client_metadata
FROM aws.cognito.user_pool_users
WHERE region = 'us-east-1';
```
-Gets all properties from an user_pool_user
.
+Gets all properties from an individual user_pool_user
.
```sql
SELECT
region,
@@ -97,7 +103,6 @@ FROM aws.cognito.user_pool_users
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user_pool_user
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/user_pool_users_list_only/index.md b/docs/aws-docs/providers/aws/cognito/user_pool_users_list_only/index.md
new file mode 100644
index 0000000000..c23df3f230
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cognito/user_pool_users_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: user_pool_users_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - user_pool_users_list_only
+ - cognito
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists user_pool_users
in a region or regions, for all properties use user_pool_users
+
+## Overview
+
+Name user_pool_users_list_only
+Type Resource
+Description Resource Type definition for AWS::Cognito::UserPoolUser
+Id
+
+
+## Fields
+Name Datatype Description array
+boolean
+array
+string
+string
+string
+array
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all user_pool_users
in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+username
+FROM aws.cognito.user_pool_users_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the user_pool_users_list_only
resource, see user_pool_users
+
+
diff --git a/docs/aws-docs/providers/aws/cognito/user_pools/index.md b/docs/aws-docs/providers/aws/cognito/user_pools/index.md
index c7c50fe460..c5a4db9995 100644
--- a/docs/aws-docs/providers/aws/cognito/user_pools/index.md
+++ b/docs/aws-docs/providers/aws/cognito/user_pools/index.md
@@ -85,7 +85,7 @@ Creates, updates, deletes or gets an user_pool
resource or lists
-
+
SELECT
@@ -97,15 +97,42 @@ Creates, updates, deletes or gets an user_pool
resource or lists
## `SELECT` examples
-List all user_pools
in a region.
+Gets all user_pools
in a region.
```sql
SELECT
region,
+user_pool_name,
+policies,
+account_recovery_setting,
+admin_create_user_config,
+alias_attributes,
+username_attributes,
+auto_verified_attributes,
+device_configuration,
+email_configuration,
+email_verification_message,
+email_verification_subject,
+deletion_protection,
+lambda_config,
+mfa_configuration,
+enabled_mfas,
+sms_authentication_message,
+sms_configuration,
+sms_verification_message,
+schema,
+username_configuration,
+user_attribute_update_settings,
+user_pool_tags,
+verification_message_template,
+user_pool_add_ons,
+provider_name,
+provider_url,
+arn,
user_pool_id
FROM aws.cognito.user_pools
WHERE region = 'us-east-1';
```
-Gets all properties from an user_pool
.
+Gets all properties from an individual user_pool
.
```sql
SELECT
region,
@@ -141,7 +168,6 @@ FROM aws.cognito.user_pools
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user_pool
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cognito/user_pools_list_only/index.md b/docs/aws-docs/providers/aws/cognito/user_pools_list_only/index.md
new file mode 100644
index 0000000000..a3e38af6ac
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cognito/user_pools_list_only/index.md
@@ -0,0 +1,94 @@
+---
+title: user_pools_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - user_pools_list_only
+ - cognito
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists user_pools
in a region or regions, for all properties use user_pools
+
+## Overview
+
+Name user_pools_list_only
+Type Resource
+Description Resource Type definition for AWS::Cognito::UserPool
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+object
+object
+array
+array
+array
+object
+object
+string
+string
+string
+object
+string
+array
+string
+object
+string
+array
+object
+object
+object
+object
+object
+string
+string
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all user_pools
in a region.
+```sql
+SELECT
+region,
+user_pool_id
+FROM aws.cognito.user_pools_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the user_pools_list_only
resource, see user_pools
+
+
diff --git a/docs/aws-docs/providers/aws/comprehend/document_classifier_tags/index.md b/docs/aws-docs/providers/aws/comprehend/document_classifier_tags/index.md
new file mode 100644
index 0000000000..d8f9db053c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/comprehend/document_classifier_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: document_classifier_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - document_classifier_tags
+ - comprehend
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for document_classifiers
in a region
+
+## Overview
+
+Name document_classifier_tags
+Type Resource
+Description Document Classifier enables training document classifier models.
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+object
+string
+string
+string
+string
+string
+string
+string
+object
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all document_classifiers
in a region.
+```sql
+SELECT
+region,
+data_access_role_arn,
+input_data_config,
+output_data_config,
+language_code,
+model_kms_key_id,
+model_policy,
+document_classifier_name,
+mode,
+version_name,
+volume_kms_key_id,
+vpc_config,
+arn,
+tag_key,
+tag_value
+FROM aws.comprehend.document_classifier_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the document_classifier_tags
resource, see document_classifiers
+
+
diff --git a/docs/aws-docs/providers/aws/comprehend/document_classifiers/index.md b/docs/aws-docs/providers/aws/comprehend/document_classifiers/index.md
index 95b2fad863..150a9a9dd8 100644
--- a/docs/aws-docs/providers/aws/comprehend/document_classifiers/index.md
+++ b/docs/aws-docs/providers/aws/comprehend/document_classifiers/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a document_classifier
resource or
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a document_classifier
resource or
## `SELECT` examples
-List all document_classifiers
in a region.
+Gets all document_classifiers
in a region.
```sql
SELECT
region,
+data_access_role_arn,
+input_data_config,
+output_data_config,
+language_code,
+model_kms_key_id,
+model_policy,
+document_classifier_name,
+mode,
+tags,
+version_name,
+volume_kms_key_id,
+vpc_config,
arn
FROM aws.comprehend.document_classifiers
WHERE region = 'us-east-1';
```
-Gets all properties from a document_classifier
.
+Gets all properties from an individual document_classifier
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.comprehend.document_classifiers
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new document_classifier
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/comprehend/document_classifiers_list_only/index.md b/docs/aws-docs/providers/aws/comprehend/document_classifiers_list_only/index.md
new file mode 100644
index 0000000000..b23932dc4c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/comprehend/document_classifiers_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: document_classifiers_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - document_classifiers_list_only
+ - comprehend
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists document_classifiers
in a region or regions, for all properties use document_classifiers
+
+## Overview
+
+Name document_classifiers_list_only
+Type Resource
+Description Document Classifier enables training document classifier models.
+Id
+
+
+## Fields
+Name Datatype Description string
+object
+object
+string
+string
+string
+string
+string
+array
+string
+string
+object
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all document_classifiers
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.comprehend.document_classifiers_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the document_classifiers_list_only
resource, see document_classifiers
+
+
diff --git a/docs/aws-docs/providers/aws/comprehend/flywheel_tags/index.md b/docs/aws-docs/providers/aws/comprehend/flywheel_tags/index.md
new file mode 100644
index 0000000000..3fecfdb84c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/comprehend/flywheel_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: flywheel_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - flywheel_tags
+ - comprehend
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for flywheels
in a region
+
+## Overview
+
+Name flywheel_tags
+Type Resource
+Description The AWS::Comprehend::Flywheel resource creates an Amazon Comprehend Flywheel that enables customer to train their model.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+object
+string
+string
+object
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all flywheels
in a region.
+```sql
+SELECT
+region,
+active_model_arn,
+data_access_role_arn,
+data_lake_s3_uri,
+data_security_config,
+flywheel_name,
+model_type,
+task_config,
+arn,
+tag_key,
+tag_value
+FROM aws.comprehend.flywheel_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the flywheel_tags
resource, see flywheels
+
+
diff --git a/docs/aws-docs/providers/aws/comprehend/flywheels/index.md b/docs/aws-docs/providers/aws/comprehend/flywheels/index.md
index 910f790bb5..3c7fac2e1a 100644
--- a/docs/aws-docs/providers/aws/comprehend/flywheels/index.md
+++ b/docs/aws-docs/providers/aws/comprehend/flywheels/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a flywheel
resource or lists
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a flywheel
resource or lists
## `SELECT` examples
-List all flywheels
in a region.
+Gets all flywheels
in a region.
```sql
SELECT
region,
+active_model_arn,
+data_access_role_arn,
+data_lake_s3_uri,
+data_security_config,
+flywheel_name,
+model_type,
+tags,
+task_config,
arn
FROM aws.comprehend.flywheels
WHERE region = 'us-east-1';
```
-Gets all properties from a flywheel
.
+Gets all properties from an individual flywheel
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.comprehend.flywheels
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new flywheel
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/comprehend/flywheels_list_only/index.md b/docs/aws-docs/providers/aws/comprehend/flywheels_list_only/index.md
new file mode 100644
index 0000000000..74647905c1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/comprehend/flywheels_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: flywheels_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - flywheels_list_only
+ - comprehend
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists flywheels
in a region or regions, for all properties use flywheels
+
+## Overview
+
+Name flywheels_list_only
+Type Resource
+Description The AWS::Comprehend::Flywheel resource creates an Amazon Comprehend Flywheel that enables customer to train their model.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+object
+string
+string
+array
+object
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all flywheels
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.comprehend.flywheels_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the flywheels_list_only
resource, see flywheels
+
+
diff --git a/docs/aws-docs/providers/aws/comprehend/index.md b/docs/aws-docs/providers/aws/comprehend/index.md
index d07bf0832f..69efa00871 100644
--- a/docs/aws-docs/providers/aws/comprehend/index.md
+++ b/docs/aws-docs/providers/aws/comprehend/index.md
@@ -20,7 +20,7 @@ The comprehend service documentation.
-total resources: 2
+total resources: 6
@@ -29,9 +29,13 @@ The comprehend service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/config/aggregation_authorization_tags/index.md b/docs/aws-docs/providers/aws/config/aggregation_authorization_tags/index.md
new file mode 100644
index 0000000000..dbbcd4f90e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/aggregation_authorization_tags/index.md
@@ -0,0 +1,75 @@
+---
+title: aggregation_authorization_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - aggregation_authorization_tags
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for aggregation_authorizations
in a region
+
+## Overview
+
+Name aggregation_authorization_tags
+Type Resource
+Description Resource Type definition for AWS::Config::AggregationAuthorization
+Id
+
+
+## Fields
+Name Datatype Description string
The 12-digit account ID of the account authorized to aggregate data.
+string
The region authorized to collect aggregated data.
+string
The ARN of the AggregationAuthorization.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all aggregation_authorizations
in a region.
+```sql
+SELECT
+region,
+authorized_account_id,
+authorized_aws_region,
+aggregation_authorization_arn,
+tag_key,
+tag_value
+FROM aws.config.aggregation_authorization_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the aggregation_authorization_tags
resource, see aggregation_authorizations
+
+
diff --git a/docs/aws-docs/providers/aws/config/aggregation_authorizations/index.md b/docs/aws-docs/providers/aws/config/aggregation_authorizations/index.md
index e05b6dbcc9..8e692e8afc 100644
--- a/docs/aws-docs/providers/aws/config/aggregation_authorizations/index.md
+++ b/docs/aws-docs/providers/aws/config/aggregation_authorizations/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets an aggregation_authorization
reso
-
+
SELECT
@@ -73,16 +73,18 @@ Creates, updates, deletes or gets an aggregation_authorization
reso
## `SELECT` examples
-List all aggregation_authorizations
in a region.
+Gets all aggregation_authorizations
in a region.
```sql
SELECT
region,
authorized_account_id,
-authorized_aws_region
+authorized_aws_region,
+aggregation_authorization_arn,
+tags
FROM aws.config.aggregation_authorizations
WHERE region = 'us-east-1';
```
-Gets all properties from an aggregation_authorization
.
+Gets all properties from an individual aggregation_authorization
.
```sql
SELECT
region,
@@ -94,7 +96,6 @@ FROM aws.config.aggregation_authorizations
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new aggregation_authorization
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/config/aggregation_authorizations_list_only/index.md b/docs/aws-docs/providers/aws/config/aggregation_authorizations_list_only/index.md
new file mode 100644
index 0000000000..22bc4dc7d5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/aggregation_authorizations_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: aggregation_authorizations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - aggregation_authorizations_list_only
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists aggregation_authorizations
in a region or regions, for all properties use aggregation_authorizations
+
+## Overview
+
+Name aggregation_authorizations_list_only
+Type Resource
+Description Resource Type definition for AWS::Config::AggregationAuthorization
+Id
+
+
+## Fields
+Name Datatype Description string
The 12-digit account ID of the account authorized to aggregate data.
+string
The region authorized to collect aggregated data.
+string
The ARN of the AggregationAuthorization.
+array
The tags for the AggregationAuthorization.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all aggregation_authorizations
in a region.
+```sql
+SELECT
+region,
+authorized_account_id,
+authorized_aws_region
+FROM aws.config.aggregation_authorizations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the aggregation_authorizations_list_only
resource, see aggregation_authorizations
+
+
diff --git a/docs/aws-docs/providers/aws/config/config_rules/index.md b/docs/aws-docs/providers/aws/config/config_rules/index.md
index d5dcc28e2e..f605cc14fb 100644
--- a/docs/aws-docs/providers/aws/config/config_rules/index.md
+++ b/docs/aws-docs/providers/aws/config/config_rules/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a config_rule
resource or lists <
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a config_rule
resource or lists <
## `SELECT` examples
-List all config_rules
in a region.
+Gets all config_rules
in a region.
```sql
SELECT
region,
-config_rule_name
+config_rule_id,
+description,
+scope,
+config_rule_name,
+arn,
+compliance,
+maximum_execution_frequency,
+source,
+input_parameters,
+evaluation_modes
FROM aws.config.config_rules
WHERE region = 'us-east-1';
```
-Gets all properties from a config_rule
.
+Gets all properties from an individual config_rule
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.config.config_rules
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new config_rule
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/config/config_rules_list_only/index.md b/docs/aws-docs/providers/aws/config/config_rules_list_only/index.md
new file mode 100644
index 0000000000..cebeba66bd
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/config_rules_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: config_rules_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - config_rules_list_only
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists config_rules
in a region or regions, for all properties use config_rules
+
+## Overview
+
+Name config_rules_list_only
+Type Resource
+Description You must first create and start the CC configuration recorder in order to create CC managed rules with CFNlong. For more information, see [Managing the Configuration Recorder](https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html).
Adds or updates an CC rule to evaluate if your AWS resources comply with your desired configurations. For information on how many CC rules you can have per account, see [Service Limits](https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the *Developer Guide*.
There are two types of rules: *Managed Rules* and *Custom Rules*. You can use the ConfigRule
resource to create both CC Managed Rules and CC Custom Rules.
CC Managed Rules are predefined, customizable rules created by CC. For a list of managed rules, see [List of Managed Rules](https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an CC managed rule, you must specify the rule's identifier for the SourceIdentifier
key.
CC Custom Rules are rules that you create from scratch. There are two ways to create CC custom rules: with Lambda functions ([Developer Guide](https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with CFNGUARDshort ([Guard GitHub Repository](https://docs.aws.amazon.com/https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. CC custom rules created with LAMlong are called *Custom Lambda Rules* and CC custom rules created with CFNGUARDshort are called *Custom Policy Rules*.
If you are adding a new CC Custom LAM rule, you first need to create an LAMlong function that the rule invokes to evaluate your resources. When you use the ConfigRule
resource to add a Custom LAM rule to CC, you must specify the Amazon Resource Name (ARN) that LAMlong assigns to the function. You specify the ARN in the SourceIdentifier
key. This key is part of the Source
object, which is part of the ConfigRule
object.
For any new CC rule that you add, specify the ConfigRuleName
in the ConfigRule
object. Do not specify the ConfigRuleArn
or the ConfigRuleId
. These values are generated by CC for new rules.
If you are updating a rule that you added previously, you can specify the rule by ConfigRuleName
, ConfigRuleId
, or ConfigRuleArn
in the ConfigRule
data type that you use in this request.
For more information about developing and using CC rules, see [Evaluating Resources with Rules](https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html) in the *Developer Guide*.
+Id
+
+
+## Fields
+Name Datatype Description string
+string
The description that you provide for the CC rule.
+object
Defines which resources can trigger an evaluation for the rule. The scope can include one or more resource types, a combination of one resource type and one resource ID, or a combination of a tag key and value. Specify a scope to constrain the resources that can trigger an evaluation for the rule. If you do not specify a scope, evaluations are triggered when any resource in the recording group changes.
The scope can be empty.
+string
A name for the CC rule. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the rule name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
+string
+object
Indicates whether an AWS resource or CC rule is compliant and provides the number of contributors that affect the compliance.
+string
The maximum frequency with which CC runs evaluations for a rule. You can specify a value for MaximumExecutionFrequency
when:
+ You are using an AWS managed rule that is triggered at a periodic frequency.
+ Your custom rule is triggered when CC delivers the configuration snapshot. For more information, see [ConfigSnapshotDeliveryProperties](https://docs.aws.amazon.com/config/latest/APIReference/API_ConfigSnapshotDeliveryProperties.html).
By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the MaximumExecutionFrequency
parameter.
+object
Provides the rule owner (
for managed rules, CUSTOM_POLICY
for Custom Policy rules, and CUSTOM_LAMBDA
for Custom Lambda rules), the rule identifier, and the notifications that cause the function to evaluate your AWS resources.
+object
A string, in JSON format, that is passed to the CC rule Lambda function.
+array
The modes the CC rule can be evaluated in. The valid values are distinct objects. By default, the value is Detective evaluation mode only.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all config_rules
in a region.
+```sql
+SELECT
+region,
+config_rule_name
+FROM aws.config.config_rules_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the config_rules_list_only
resource, see config_rules
+
+
diff --git a/docs/aws-docs/providers/aws/config/configuration_aggregator_tags/index.md b/docs/aws-docs/providers/aws/config/configuration_aggregator_tags/index.md
new file mode 100644
index 0000000000..c8a2101ccb
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/configuration_aggregator_tags/index.md
@@ -0,0 +1,77 @@
+---
+title: configuration_aggregator_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configuration_aggregator_tags
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for configuration_aggregators
in a region
+
+## Overview
+
+Name configuration_aggregator_tags
+Type Resource
+Description Resource Type definition for AWS::Config::ConfigurationAggregator
+Id
+
+
+## Fields
+Name Datatype Description array
+string
The name of the aggregator.
+string
The Amazon Resource Name (ARN) of the aggregator.
+object
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all configuration_aggregators
in a region.
+```sql
+SELECT
+region,
+account_aggregation_sources,
+configuration_aggregator_name,
+configuration_aggregator_arn,
+organization_aggregation_source,
+tag_key,
+tag_value
+FROM aws.config.configuration_aggregator_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configuration_aggregator_tags
resource, see configuration_aggregators
+
+
diff --git a/docs/aws-docs/providers/aws/config/configuration_aggregators/index.md b/docs/aws-docs/providers/aws/config/configuration_aggregators/index.md
index 8eb07c9108..567ede395a 100644
--- a/docs/aws-docs/providers/aws/config/configuration_aggregators/index.md
+++ b/docs/aws-docs/providers/aws/config/configuration_aggregators/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a configuration_aggregator
resour
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a configuration_aggregator
resour
## `SELECT` examples
-List all configuration_aggregators
in a region.
+Gets all configuration_aggregators
in a region.
```sql
SELECT
region,
-configuration_aggregator_name
+account_aggregation_sources,
+configuration_aggregator_name,
+configuration_aggregator_arn,
+organization_aggregation_source,
+tags
FROM aws.config.configuration_aggregators
WHERE region = 'us-east-1';
```
-Gets all properties from a configuration_aggregator
.
+Gets all properties from an individual configuration_aggregator
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.config.configuration_aggregators
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new configuration_aggregator
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/config/configuration_aggregators_list_only/index.md b/docs/aws-docs/providers/aws/config/configuration_aggregators_list_only/index.md
new file mode 100644
index 0000000000..fb37f551f5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/configuration_aggregators_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: configuration_aggregators_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - configuration_aggregators_list_only
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists configuration_aggregators
in a region or regions, for all properties use configuration_aggregators
+
+## Overview
+
+Name configuration_aggregators_list_only
+Type Resource
+Description Resource Type definition for AWS::Config::ConfigurationAggregator
+Id
+
+
+## Fields
+Name Datatype Description array
+string
The name of the aggregator.
+string
The Amazon Resource Name (ARN) of the aggregator.
+object
+array
The tags for the configuration aggregator.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all configuration_aggregators
in a region.
+```sql
+SELECT
+region,
+configuration_aggregator_name
+FROM aws.config.configuration_aggregators_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the configuration_aggregators_list_only
resource, see configuration_aggregators
+
+
diff --git a/docs/aws-docs/providers/aws/config/conformance_packs/index.md b/docs/aws-docs/providers/aws/config/conformance_packs/index.md
index cd4d93e087..3741dea47d 100644
--- a/docs/aws-docs/providers/aws/config/conformance_packs/index.md
+++ b/docs/aws-docs/providers/aws/config/conformance_packs/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a conformance_pack
resource or li
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a conformance_pack
resource or li
## `SELECT` examples
-List all conformance_packs
in a region.
+Gets all conformance_packs
in a region.
```sql
SELECT
region,
-conformance_pack_name
+conformance_pack_name,
+delivery_s3_bucket,
+delivery_s3_key_prefix,
+template_body,
+template_s3_uri,
+template_ssm_document_details,
+conformance_pack_input_parameters
FROM aws.config.conformance_packs
WHERE region = 'us-east-1';
```
-Gets all properties from a conformance_pack
.
+Gets all properties from an individual conformance_pack
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.config.conformance_packs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new conformance_pack
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/config/conformance_packs_list_only/index.md b/docs/aws-docs/providers/aws/config/conformance_packs_list_only/index.md
new file mode 100644
index 0000000000..c58c39c678
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/conformance_packs_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: conformance_packs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - conformance_packs_list_only
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists conformance_packs
in a region or regions, for all properties use conformance_packs
+
+## Overview
+
+Name conformance_packs_list_only
+Type Resource
+Description A conformance pack is a collection of AWS Config rules and remediation actions that can be easily deployed as a single entity in an account and a region or across an entire AWS Organization.
+Id
+
+
+## Fields
+Name Datatype Description string
Name of the conformance pack which will be assigned as the unique identifier.
+string
AWS Config stores intermediate files while processing conformance pack template.
+string
The prefix for delivery S3 bucket.
+string
A string containing full conformance pack template body. You can only specify one of the template body or template S3Uri fields.
+string
Location of file containing the template body which points to the conformance pack template that is located in an Amazon S3 bucket. You can only specify one of the template body or template S3Uri fields.
+object
The TemplateSSMDocumentDetails object contains the name of the SSM document and the version of the SSM document.
+array
A list of ConformancePackInputParameter objects.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all conformance_packs
in a region.
+```sql
+SELECT
+region,
+conformance_pack_name
+FROM aws.config.conformance_packs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the conformance_packs_list_only
resource, see conformance_packs
+
+
diff --git a/docs/aws-docs/providers/aws/config/index.md b/docs/aws-docs/providers/aws/config/index.md
index 885db66755..ce5803e699 100644
--- a/docs/aws-docs/providers/aws/config/index.md
+++ b/docs/aws-docs/providers/aws/config/index.md
@@ -20,7 +20,7 @@ The config service documentation.
-total resources: 6
+total resources: 15
@@ -29,13 +29,22 @@ The config service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/config/organization_conformance_packs/index.md b/docs/aws-docs/providers/aws/config/organization_conformance_packs/index.md
index 88e2e5d7a6..1dca68318c 100644
--- a/docs/aws-docs/providers/aws/config/organization_conformance_packs/index.md
+++ b/docs/aws-docs/providers/aws/config/organization_conformance_packs/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets an organization_conformance_pack
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets an organization_conformance_pack
## `SELECT` examples
-List all organization_conformance_packs
in a region.
+Gets all organization_conformance_packs
in a region.
```sql
SELECT
region,
-organization_conformance_pack_name
+organization_conformance_pack_name,
+template_s3_uri,
+template_body,
+delivery_s3_bucket,
+delivery_s3_key_prefix,
+conformance_pack_input_parameters,
+excluded_accounts
FROM aws.config.organization_conformance_packs
WHERE region = 'us-east-1';
```
-Gets all properties from an organization_conformance_pack
.
+Gets all properties from an individual organization_conformance_pack
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.config.organization_conformance_packs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new organization_conformance_pack
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/config/organization_conformance_packs_list_only/index.md b/docs/aws-docs/providers/aws/config/organization_conformance_packs_list_only/index.md
new file mode 100644
index 0000000000..daf056af8c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/organization_conformance_packs_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: organization_conformance_packs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - organization_conformance_packs_list_only
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists organization_conformance_packs
in a region or regions, for all properties use organization_conformance_packs
+
+## Overview
+
+Name organization_conformance_packs_list_only
+Type Resource
+Description Resource schema for AWS::Config::OrganizationConformancePack.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the organization conformance pack.
+string
Location of file containing the template body.
+string
A string containing full conformance pack template body.
+string
AWS Config stores intermediate files while processing conformance pack template.
+string
The prefix for the delivery S3 bucket.
+array
A list of ConformancePackInputParameter objects.
+array
A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all organization_conformance_packs
in a region.
+```sql
+SELECT
+region,
+organization_conformance_pack_name
+FROM aws.config.organization_conformance_packs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the organization_conformance_packs_list_only
resource, see organization_conformance_packs
+
+
diff --git a/docs/aws-docs/providers/aws/config/stored_queries/index.md b/docs/aws-docs/providers/aws/config/stored_queries/index.md
index d5a7dfaf2b..e3501a49ec 100644
--- a/docs/aws-docs/providers/aws/config/stored_queries/index.md
+++ b/docs/aws-docs/providers/aws/config/stored_queries/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a stored_query
resource or lists
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a stored_query
resource or lists
## `SELECT` examples
-List all stored_queries
in a region.
+Gets all stored_queries
in a region.
```sql
SELECT
region,
-query_name
+query_arn,
+query_id,
+query_name,
+query_description,
+query_expression,
+tags
FROM aws.config.stored_queries
WHERE region = 'us-east-1';
```
-Gets all properties from a stored_query
.
+Gets all properties from an individual stored_query
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.config.stored_queries
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new stored_query
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/config/stored_queries_list_only/index.md b/docs/aws-docs/providers/aws/config/stored_queries_list_only/index.md
new file mode 100644
index 0000000000..af1856f9b8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/stored_queries_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: stored_queries_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stored_queries_list_only
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists stored_queries
in a region or regions, for all properties use stored_queries
+
+## Overview
+
+Name stored_queries_list_only
+Type Resource
+Description Resource Type definition for AWS::Config::StoredQuery
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+array
The tags for the stored query.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all stored_queries
in a region.
+```sql
+SELECT
+region,
+query_name
+FROM aws.config.stored_queries_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stored_queries_list_only
resource, see stored_queries
+
+
diff --git a/docs/aws-docs/providers/aws/config/stored_query_tags/index.md b/docs/aws-docs/providers/aws/config/stored_query_tags/index.md
new file mode 100644
index 0000000000..3c3f7a91dd
--- /dev/null
+++ b/docs/aws-docs/providers/aws/config/stored_query_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: stored_query_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - stored_query_tags
+ - config
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for stored_queries
in a region
+
+## Overview
+
+Name stored_query_tags
+Type Resource
+Description Resource Type definition for AWS::Config::StoredQuery
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all stored_queries
in a region.
+```sql
+SELECT
+region,
+query_arn,
+query_id,
+query_name,
+query_description,
+query_expression,
+tag_key,
+tag_value
+FROM aws.config.stored_query_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the stored_query_tags
resource, see stored_queries
+
+
diff --git a/docs/aws-docs/providers/aws/connect/approved_origins/index.md b/docs/aws-docs/providers/aws/connect/approved_origins/index.md
index 11886ff69d..85efd0d512 100644
--- a/docs/aws-docs/providers/aws/connect/approved_origins/index.md
+++ b/docs/aws-docs/providers/aws/connect/approved_origins/index.md
@@ -54,7 +54,7 @@ Creates, updates, deletes or gets an approved_origin
resource or li
-
+
SELECT
@@ -66,16 +66,16 @@ Creates, updates, deletes or gets an approved_origin
resource or li
## `SELECT` examples
-List all approved_origins
in a region.
+Gets all approved_origins
in a region.
```sql
SELECT
region,
-instance_id,
-origin
+origin,
+instance_id
FROM aws.connect.approved_origins
WHERE region = 'us-east-1';
```
-Gets all properties from an approved_origin
.
+Gets all properties from an individual approved_origin
.
```sql
SELECT
region,
@@ -85,7 +85,6 @@ FROM aws.connect.approved_origins
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new approved_origin
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/approved_origins_list_only/index.md b/docs/aws-docs/providers/aws/connect/approved_origins_list_only/index.md
new file mode 100644
index 0000000000..7c4079beff
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/approved_origins_list_only/index.md
@@ -0,0 +1,69 @@
+---
+title: approved_origins_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - approved_origins_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists approved_origins
in a region or regions, for all properties use approved_origins
+
+## Overview
+
+Name approved_origins_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::ApprovedOrigin
+Id
+
+
+## Fields
+Name Datatype Description string
Domain name to be added to the allowlist of instance
+string
Amazon Connect instance identifier
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all approved_origins
in a region.
+```sql
+SELECT
+region,
+instance_id,
+origin
+FROM aws.connect.approved_origins_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the approved_origins_list_only
resource, see approved_origins
+
+
diff --git a/docs/aws-docs/providers/aws/connect/contact_flow_module_tags/index.md b/docs/aws-docs/providers/aws/connect/contact_flow_module_tags/index.md
new file mode 100644
index 0000000000..8f09729218
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/contact_flow_module_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: contact_flow_module_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - contact_flow_module_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for contact_flow_modules
in a region
+
+## Overview
+
+Name contact_flow_module_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::ContactFlowModule.
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance (ARN).
+string
The identifier of the contact flow module (ARN).
+string
The name of the contact flow module.
+string
The content of the contact flow module in JSON format.
+string
The description of the contact flow module.
+string
The state of the contact flow module.
+string
The status of the contact flow module.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all contact_flow_modules
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+contact_flow_module_arn,
+name,
+content,
+description,
+state,
+status,
+tag_key,
+tag_value
+FROM aws.connect.contact_flow_module_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the contact_flow_module_tags
resource, see contact_flow_modules
+
+
diff --git a/docs/aws-docs/providers/aws/connect/contact_flow_modules/index.md b/docs/aws-docs/providers/aws/connect/contact_flow_modules/index.md
index 54ec0f420e..111db03d0c 100644
--- a/docs/aws-docs/providers/aws/connect/contact_flow_modules/index.md
+++ b/docs/aws-docs/providers/aws/connect/contact_flow_modules/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a contact_flow_module
resource or
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a contact_flow_module
resource or
## `SELECT` examples
-List all contact_flow_modules
in a region.
+Gets all contact_flow_modules
in a region.
```sql
SELECT
region,
-contact_flow_module_arn
+instance_arn,
+contact_flow_module_arn,
+name,
+content,
+description,
+state,
+status,
+tags
FROM aws.connect.contact_flow_modules
WHERE region = 'us-east-1';
```
-Gets all properties from a contact_flow_module
.
+Gets all properties from an individual contact_flow_module
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.connect.contact_flow_modules
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new contact_flow_module
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/contact_flow_modules_list_only/index.md b/docs/aws-docs/providers/aws/connect/contact_flow_modules_list_only/index.md
new file mode 100644
index 0000000000..0e7e022847
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/contact_flow_modules_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: contact_flow_modules_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - contact_flow_modules_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists contact_flow_modules
in a region or regions, for all properties use contact_flow_modules
+
+## Overview
+
+Name contact_flow_modules_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::ContactFlowModule.
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance (ARN).
+string
The identifier of the contact flow module (ARN).
+string
The name of the contact flow module.
+string
The content of the contact flow module in JSON format.
+string
The description of the contact flow module.
+string
The state of the contact flow module.
+string
The status of the contact flow module.
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all contact_flow_modules
in a region.
+```sql
+SELECT
+region,
+contact_flow_module_arn
+FROM aws.connect.contact_flow_modules_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the contact_flow_modules_list_only
resource, see contact_flow_modules
+
+
diff --git a/docs/aws-docs/providers/aws/connect/contact_flow_tags/index.md b/docs/aws-docs/providers/aws/connect/contact_flow_tags/index.md
new file mode 100644
index 0000000000..887c6261e1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/contact_flow_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: contact_flow_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - contact_flow_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for contact_flows
in a region
+
+## Overview
+
+Name contact_flow_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::ContactFlow
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance (ARN).
+string
The identifier of the contact flow (ARN).
+string
The name of the contact flow.
+string
The content of the contact flow in JSON format.
+string
The description of the contact flow.
+string
The state of the contact flow.
+string
The type of the contact flow.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all contact_flows
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+contact_flow_arn,
+name,
+content,
+description,
+state,
+type,
+tag_key,
+tag_value
+FROM aws.connect.contact_flow_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the contact_flow_tags
resource, see contact_flows
+
+
diff --git a/docs/aws-docs/providers/aws/connect/contact_flows/index.md b/docs/aws-docs/providers/aws/connect/contact_flows/index.md
index e6d723fb4a..5a3afb7b48 100644
--- a/docs/aws-docs/providers/aws/connect/contact_flows/index.md
+++ b/docs/aws-docs/providers/aws/connect/contact_flows/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a contact_flow
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a contact_flow
resource or lists
## `SELECT` examples
-List all contact_flows
in a region.
+Gets all contact_flows
in a region.
```sql
SELECT
region,
-contact_flow_arn
+instance_arn,
+contact_flow_arn,
+name,
+content,
+description,
+state,
+type,
+tags
FROM aws.connect.contact_flows
WHERE region = 'us-east-1';
```
-Gets all properties from a contact_flow
.
+Gets all properties from an individual contact_flow
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.connect.contact_flows
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new contact_flow
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/contact_flows_list_only/index.md b/docs/aws-docs/providers/aws/connect/contact_flows_list_only/index.md
new file mode 100644
index 0000000000..51e995c71c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/contact_flows_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: contact_flows_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - contact_flows_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists contact_flows
in a region or regions, for all properties use contact_flows
+
+## Overview
+
+Name contact_flows_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::ContactFlow
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance (ARN).
+string
The identifier of the contact flow (ARN).
+string
The name of the contact flow.
+string
The content of the contact flow in JSON format.
+string
The description of the contact flow.
+string
The state of the contact flow.
+string
The type of the contact flow.
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all contact_flows
in a region.
+```sql
+SELECT
+region,
+contact_flow_arn
+FROM aws.connect.contact_flows_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the contact_flows_list_only
resource, see contact_flows
+
+
diff --git a/docs/aws-docs/providers/aws/connect/evaluation_form_tags/index.md b/docs/aws-docs/providers/aws/connect/evaluation_form_tags/index.md
new file mode 100644
index 0000000000..54f7cc7fb5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/evaluation_form_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: evaluation_form_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - evaluation_form_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for evaluation_forms
in a region
+
+## Overview
+
+Name evaluation_form_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::EvaluationForm
+Id
+
+
+## Fields
+Name Datatype Description string
The title of the evaluation form.
+string
The description of the evaluation form.
+string
The Amazon Resource Name (ARN) for the evaluation form.
+string
The Amazon Resource Name (ARN) of the instance.
+array
The list of evaluation form items.
+object
The scoring strategy.
+string
The status of the evaluation form.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all evaluation_forms
in a region.
+```sql
+SELECT
+region,
+title,
+description,
+evaluation_form_arn,
+instance_arn,
+items,
+scoring_strategy,
+status,
+tag_key,
+tag_value
+FROM aws.connect.evaluation_form_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the evaluation_form_tags
resource, see evaluation_forms
+
+
diff --git a/docs/aws-docs/providers/aws/connect/evaluation_forms/index.md b/docs/aws-docs/providers/aws/connect/evaluation_forms/index.md
index 87bc5fedea..fc257078a1 100644
--- a/docs/aws-docs/providers/aws/connect/evaluation_forms/index.md
+++ b/docs/aws-docs/providers/aws/connect/evaluation_forms/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets an evaluation_form
resource or li
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets an evaluation_form
resource or li
## `SELECT` examples
-List all evaluation_forms
in a region.
+Gets all evaluation_forms
in a region.
```sql
SELECT
region,
-evaluation_form_arn
+title,
+description,
+evaluation_form_arn,
+instance_arn,
+items,
+scoring_strategy,
+status,
+tags
FROM aws.connect.evaluation_forms
WHERE region = 'us-east-1';
```
-Gets all properties from an evaluation_form
.
+Gets all properties from an individual evaluation_form
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.connect.evaluation_forms
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new evaluation_form
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/evaluation_forms_list_only/index.md b/docs/aws-docs/providers/aws/connect/evaluation_forms_list_only/index.md
new file mode 100644
index 0000000000..029acae2a9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/evaluation_forms_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: evaluation_forms_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - evaluation_forms_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists evaluation_forms
in a region or regions, for all properties use evaluation_forms
+
+## Overview
+
+Name evaluation_forms_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::EvaluationForm
+Id
+
+
+## Fields
+Name Datatype Description string
The title of the evaluation form.
+string
The description of the evaluation form.
+string
The Amazon Resource Name (ARN) for the evaluation form.
+string
The Amazon Resource Name (ARN) of the instance.
+array
The list of evaluation form items.
+object
The scoring strategy.
+string
The status of the evaluation form.
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all evaluation_forms
in a region.
+```sql
+SELECT
+region,
+evaluation_form_arn
+FROM aws.connect.evaluation_forms_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the evaluation_forms_list_only
resource, see evaluation_forms
+
+
diff --git a/docs/aws-docs/providers/aws/connect/hours_of_operation_tags/index.md b/docs/aws-docs/providers/aws/connect/hours_of_operation_tags/index.md
new file mode 100644
index 0000000000..be728acdac
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/hours_of_operation_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: hours_of_operation_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hours_of_operation_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for hours_of_operations
in a region
+
+## Overview
+
+Name hours_of_operation_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::HoursOfOperation
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the hours of operation.
+string
The description of the hours of operation.
+string
The time zone of the hours of operation.
+array
Configuration information for the hours of operation: day, start time, and end time.
+string
The Amazon Resource Name (ARN) for the hours of operation.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all hours_of_operations
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+name,
+description,
+time_zone,
+config,
+hours_of_operation_arn,
+tag_key,
+tag_value
+FROM aws.connect.hours_of_operation_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hours_of_operation_tags
resource, see hours_of_operations
+
+
diff --git a/docs/aws-docs/providers/aws/connect/hours_of_operations/index.md b/docs/aws-docs/providers/aws/connect/hours_of_operations/index.md
index fc50b8069a..18a0b37b9b 100644
--- a/docs/aws-docs/providers/aws/connect/hours_of_operations/index.md
+++ b/docs/aws-docs/providers/aws/connect/hours_of_operations/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a hours_of_operation
resource or
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a hours_of_operation
resource or
## `SELECT` examples
-List all hours_of_operations
in a region.
+Gets all hours_of_operations
in a region.
```sql
SELECT
region,
-hours_of_operation_arn
+instance_arn,
+name,
+description,
+time_zone,
+config,
+hours_of_operation_arn,
+tags
FROM aws.connect.hours_of_operations
WHERE region = 'us-east-1';
```
-Gets all properties from a hours_of_operation
.
+Gets all properties from an individual hours_of_operation
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.connect.hours_of_operations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new hours_of_operation
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/hours_of_operations_list_only/index.md b/docs/aws-docs/providers/aws/connect/hours_of_operations_list_only/index.md
new file mode 100644
index 0000000000..962fb1b21c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/hours_of_operations_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: hours_of_operations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - hours_of_operations_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists hours_of_operations
in a region or regions, for all properties use hours_of_operations
+
+## Overview
+
+Name hours_of_operations_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::HoursOfOperation
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the hours of operation.
+string
The description of the hours of operation.
+string
The time zone of the hours of operation.
+array
Configuration information for the hours of operation: day, start time, and end time.
+string
The Amazon Resource Name (ARN) for the hours of operation.
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all hours_of_operations
in a region.
+```sql
+SELECT
+region,
+hours_of_operation_arn
+FROM aws.connect.hours_of_operations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the hours_of_operations_list_only
resource, see hours_of_operations
+
+
diff --git a/docs/aws-docs/providers/aws/connect/index.md b/docs/aws-docs/providers/aws/connect/index.md
index e7036e2f57..bfc4e02c7d 100644
--- a/docs/aws-docs/providers/aws/connect/index.md
+++ b/docs/aws-docs/providers/aws/connect/index.md
@@ -20,7 +20,7 @@ The connect service documentation.
-total resources: 22
+total resources: 58
@@ -30,28 +30,64 @@ The connect service documentation.
approved_origins
+approved_origins_list_only
+contact_flow_module_tags
contact_flow_modules
+contact_flow_modules_list_only
+contact_flow_tags
contact_flows
+contact_flows_list_only
+evaluation_form_tags
evaluation_forms
+evaluation_forms_list_only
+hours_of_operation_tags
hours_of_operations
+hours_of_operations_list_only
instance_storage_configs
+instance_storage_configs_list_only
+instance_tags
instances
+instances_list_only
integration_associations
+integration_associations_list_only
predefined_attributes
+predefined_attributes_list_only
+prompt_tags
prompts
-queues
+prompts_list_only
+queue_tags
+queues
+queues_list_only
+quick_connect_tags
quick_connects
+quick_connects_list_only
+routing_profile_tags
routing_profiles
+routing_profiles_list_only
rules
security_keys
+security_keys_list_only
+security_profile_tags
security_profiles
+security_profiles_list_only
+task_template_tags
task_templates
+task_templates_list_only
+traffic_distribution_group_tags
traffic_distribution_groups
+traffic_distribution_groups_list_only
+user_hierarchy_group_tags
user_hierarchy_groups
+user_hierarchy_groups_list_only
+user_tags
users
+users_list_only
+view_tags
view_versions
-views
+view_versions_list_only
+views
+views_list_only
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/connect/instance_storage_configs/index.md b/docs/aws-docs/providers/aws/connect/instance_storage_configs/index.md
index 19b5726553..deb36bb632 100644
--- a/docs/aws-docs/providers/aws/connect/instance_storage_configs/index.md
+++ b/docs/aws-docs/providers/aws/connect/instance_storage_configs/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets an instance_storage_config
resour
-
+
SELECT
@@ -77,17 +77,22 @@ Creates, updates, deletes or gets an instance_storage_config
resour
## `SELECT` examples
-List all instance_storage_configs
in a region.
+Gets all instance_storage_configs
in a region.
```sql
SELECT
region,
instance_arn,
+resource_type,
association_id,
-resource_type
+storage_type,
+s3_config,
+kinesis_video_stream_config,
+kinesis_stream_config,
+kinesis_firehose_config
FROM aws.connect.instance_storage_configs
WHERE region = 'us-east-1';
```
-Gets all properties from an instance_storage_config
.
+Gets all properties from an individual instance_storage_config
.
```sql
SELECT
region,
@@ -103,7 +108,6 @@ FROM aws.connect.instance_storage_configs
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new instance_storage_config
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/instance_storage_configs_list_only/index.md b/docs/aws-docs/providers/aws/connect/instance_storage_configs_list_only/index.md
new file mode 100644
index 0000000000..50a7dfd752
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/instance_storage_configs_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: instance_storage_configs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - instance_storage_configs_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists instance_storage_configs
in a region or regions, for all properties use instance_storage_configs
+
+## Overview
+
+Name instance_storage_configs_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::InstanceStorageConfig
+Id
+
+
+## Fields
+Name Datatype Description string
Connect Instance ID with which the storage config will be associated
+string
Specifies the type of storage resource available for the instance
+string
An associationID is automatically generated when a storage config is associated with an instance
+string
Specifies the storage type to be associated with the instance
+object
+object
+object
+object
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all instance_storage_configs
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+association_id,
+resource_type
+FROM aws.connect.instance_storage_configs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the instance_storage_configs_list_only
resource, see instance_storage_configs
+
+
diff --git a/docs/aws-docs/providers/aws/connect/instance_tags/index.md b/docs/aws-docs/providers/aws/connect/instance_tags/index.md
new file mode 100644
index 0000000000..16eb07b4c2
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/instance_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: instance_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - instance_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for instances
in a region
+
+## Overview
+
+Name instance_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::Instance
+Id
+
+
+## Fields
+Name Datatype Description string
An instanceId is automatically generated on creation and assigned as the unique identifier.
+string
An instanceArn is automatically generated on creation based on instanceId.
+string
Specifies the type of directory integration for new instance.
+string
Alias of the new directory created as part of new instance creation.
+string
Timestamp of instance creation logged as part of instance creation.
+string
Service linked role created as part of instance creation.
+string
Specifies the creation status of new instance.
+string
Existing directoryId user wants to map to the new Connect instance.
+object
The attributes for the instance.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all instances
in a region.
+```sql
+SELECT
+region,
+id,
+arn,
+identity_management_type,
+instance_alias,
+created_time,
+service_role,
+instance_status,
+directory_id,
+attributes,
+tag_key,
+tag_value
+FROM aws.connect.instance_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the instance_tags
resource, see instances
+
+
diff --git a/docs/aws-docs/providers/aws/connect/instances/index.md b/docs/aws-docs/providers/aws/connect/instances/index.md
index 2e100c93de..2deb9b22f6 100644
--- a/docs/aws-docs/providers/aws/connect/instances/index.md
+++ b/docs/aws-docs/providers/aws/connect/instances/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets an instance
resource or lists
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets an instance
resource or lists
## `SELECT` examples
-List all instances
in a region.
+Gets all instances
in a region.
```sql
SELECT
region,
-arn
+id,
+arn,
+identity_management_type,
+instance_alias,
+created_time,
+service_role,
+instance_status,
+directory_id,
+attributes,
+tags
FROM aws.connect.instances
WHERE region = 'us-east-1';
```
-Gets all properties from an instance
.
+Gets all properties from an individual instance
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.connect.instances
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new instance
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/instances_list_only/index.md b/docs/aws-docs/providers/aws/connect/instances_list_only/index.md
new file mode 100644
index 0000000000..19541e6077
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/instances_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: instances_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - instances_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists instances
in a region or regions, for all properties use instances
+
+## Overview
+
+Name instances_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::Instance
+Id
+
+
+## Fields
+Name Datatype Description string
An instanceId is automatically generated on creation and assigned as the unique identifier.
+string
An instanceArn is automatically generated on creation based on instanceId.
+string
Specifies the type of directory integration for new instance.
+string
Alias of the new directory created as part of new instance creation.
+string
Timestamp of instance creation logged as part of instance creation.
+string
Service linked role created as part of instance creation.
+string
Specifies the creation status of new instance.
+string
Existing directoryId user wants to map to the new Connect instance.
+object
The attributes for the instance.
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all instances
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.connect.instances_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the instances_list_only
resource, see instances
+
+
diff --git a/docs/aws-docs/providers/aws/connect/integration_associations/index.md b/docs/aws-docs/providers/aws/connect/integration_associations/index.md
index 17da7377cc..fa90c78c5b 100644
--- a/docs/aws-docs/providers/aws/connect/integration_associations/index.md
+++ b/docs/aws-docs/providers/aws/connect/integration_associations/index.md
@@ -56,7 +56,7 @@ Creates, updates, deletes or gets an integration_association
resour
-
+
SELECT
@@ -68,17 +68,18 @@ Creates, updates, deletes or gets an integration_association
resour
## `SELECT` examples
-List all integration_associations
in a region.
+Gets all integration_associations
in a region.
```sql
SELECT
region,
+integration_association_id,
instance_id,
-integration_type,
-integration_arn
+integration_arn,
+integration_type
FROM aws.connect.integration_associations
WHERE region = 'us-east-1';
```
-Gets all properties from an integration_association
.
+Gets all properties from an individual integration_association
.
```sql
SELECT
region,
@@ -90,7 +91,6 @@ FROM aws.connect.integration_associations
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new integration_association
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/integration_associations_list_only/index.md b/docs/aws-docs/providers/aws/connect/integration_associations_list_only/index.md
new file mode 100644
index 0000000000..76729d9c9c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/integration_associations_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: integration_associations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - integration_associations_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists integration_associations
in a region or regions, for all properties use integration_associations
+
+## Overview
+
+Name integration_associations_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::IntegrationAssociation
+Id
+
+
+## Fields
+Name Datatype Description string
Identifier of the association with Connect Instance
+string
Amazon Connect instance identifier
+string
ARN of Integration being associated with the instance
+string
Specifies the integration type to be associated with the instance
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all integration_associations
in a region.
+```sql
+SELECT
+region,
+instance_id,
+integration_type,
+integration_arn
+FROM aws.connect.integration_associations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the integration_associations_list_only
resource, see integration_associations
+
+
diff --git a/docs/aws-docs/providers/aws/connect/predefined_attributes/index.md b/docs/aws-docs/providers/aws/connect/predefined_attributes/index.md
index bb877e93e3..98850b30e2 100644
--- a/docs/aws-docs/providers/aws/connect/predefined_attributes/index.md
+++ b/docs/aws-docs/providers/aws/connect/predefined_attributes/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a predefined_attribute
resource o
-
+
SELECT
@@ -74,16 +74,19 @@ Creates, updates, deletes or gets a predefined_attribute
resource o
## `SELECT` examples
-List all predefined_attributes
in a region.
+Gets all predefined_attributes
in a region.
```sql
SELECT
region,
instance_arn,
-name
+name,
+values,
+last_modified_region,
+last_modified_time
FROM aws.connect.predefined_attributes
WHERE region = 'us-east-1';
```
-Gets all properties from a predefined_attribute
.
+Gets all properties from an individual predefined_attribute
.
```sql
SELECT
region,
@@ -96,7 +99,6 @@ FROM aws.connect.predefined_attributes
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new predefined_attribute
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/predefined_attributes_list_only/index.md b/docs/aws-docs/providers/aws/connect/predefined_attributes_list_only/index.md
new file mode 100644
index 0000000000..3b3e7a3f01
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/predefined_attributes_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: predefined_attributes_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - predefined_attributes_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists predefined_attributes
in a region or regions, for all properties use predefined_attributes
+
+## Overview
+
+Name predefined_attributes_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::PredefinedAttribute
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the predefined attribute.
+object
The values of a predefined attribute.
+string
Last modified region.
+number
Last modified time.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all predefined_attributes
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+name
+FROM aws.connect.predefined_attributes_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the predefined_attributes_list_only
resource, see predefined_attributes
+
+
diff --git a/docs/aws-docs/providers/aws/connect/prompt_tags/index.md b/docs/aws-docs/providers/aws/connect/prompt_tags/index.md
new file mode 100644
index 0000000000..2b5aff3c2f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/prompt_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: prompt_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - prompt_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for prompts
in a region
+
+## Overview
+
+Name prompt_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::Prompt
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the prompt.
+string
The description of the prompt.
+string
S3 URI of the customer's audio file for creating prompts resource..
+string
The Amazon Resource Name (ARN) for the prompt.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all prompts
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+name,
+description,
+s3_uri,
+prompt_arn,
+tag_key,
+tag_value
+FROM aws.connect.prompt_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the prompt_tags
resource, see prompts
+
+
diff --git a/docs/aws-docs/providers/aws/connect/prompts/index.md b/docs/aws-docs/providers/aws/connect/prompts/index.md
index 870c403baf..0a1094ab7d 100644
--- a/docs/aws-docs/providers/aws/connect/prompts/index.md
+++ b/docs/aws-docs/providers/aws/connect/prompts/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a prompt
resource or lists
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a prompt
resource or lists
## `SELECT` examples
-List all prompts
in a region.
+Gets all prompts
in a region.
```sql
SELECT
region,
-prompt_arn
+instance_arn,
+name,
+description,
+s3_uri,
+prompt_arn,
+tags
FROM aws.connect.prompts
WHERE region = 'us-east-1';
```
-Gets all properties from a prompt
.
+Gets all properties from an individual prompt
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.connect.prompts
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new prompt
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/prompts_list_only/index.md b/docs/aws-docs/providers/aws/connect/prompts_list_only/index.md
new file mode 100644
index 0000000000..5ce261d3b4
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/prompts_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: prompts_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - prompts_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists prompts
in a region or regions, for all properties use prompts
+
+## Overview
+
+Name prompts_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::Prompt
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the prompt.
+string
The description of the prompt.
+string
S3 URI of the customer's audio file for creating prompts resource..
+string
The Amazon Resource Name (ARN) for the prompt.
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all prompts
in a region.
+```sql
+SELECT
+region,
+prompt_arn
+FROM aws.connect.prompts_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the prompts_list_only
resource, see prompts
+
+
diff --git a/docs/aws-docs/providers/aws/connect/queue_tags/index.md b/docs/aws-docs/providers/aws/connect/queue_tags/index.md
new file mode 100644
index 0000000000..77d18876b7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/queue_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: queue_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - queue_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for queues
in a region
+
+## Overview
+
+Name queue_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::Queue
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The description of the queue.
+string
The identifier for the hours of operation.
+integer
The maximum number of contacts that can be in the queue before it is considered full.
+string
The name of the queue.
+object
The outbound caller ID name, number, and outbound whisper flow.
+string
The Amazon Resource Name (ARN) for the queue.
+string
The status of the queue.
+array
The quick connects available to agents who are working the queue.
+string
The type of queue.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all queues
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+description,
+hours_of_operation_arn,
+max_contacts,
+name,
+outbound_caller_config,
+queue_arn,
+status,
+quick_connect_arns,
+type,
+tag_key,
+tag_value
+FROM aws.connect.queue_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the queue_tags
resource, see queues
+
+
diff --git a/docs/aws-docs/providers/aws/connect/queues/index.md b/docs/aws-docs/providers/aws/connect/queues/index.md
index 06b0ab170b..d3b81ae195 100644
--- a/docs/aws-docs/providers/aws/connect/queues/index.md
+++ b/docs/aws-docs/providers/aws/connect/queues/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a queue
resource or lists q
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a queue
resource or lists q
## `SELECT` examples
-List all queues
in a region.
+Gets all queues
in a region.
```sql
SELECT
region,
-queue_arn
+instance_arn,
+description,
+hours_of_operation_arn,
+max_contacts,
+name,
+outbound_caller_config,
+queue_arn,
+status,
+quick_connect_arns,
+tags,
+type
FROM aws.connect.queues
WHERE region = 'us-east-1';
```
-Gets all properties from a queue
.
+Gets all properties from an individual queue
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.connect.queues
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new queue
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/queues_list_only/index.md b/docs/aws-docs/providers/aws/connect/queues_list_only/index.md
new file mode 100644
index 0000000000..784737b263
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/queues_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: queues_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - queues_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists queues
in a region or regions, for all properties use queues
+
+## Overview
+
+Name queues_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::Queue
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The description of the queue.
+string
The identifier for the hours of operation.
+integer
The maximum number of contacts that can be in the queue before it is considered full.
+string
The name of the queue.
+object
The outbound caller ID name, number, and outbound whisper flow.
+string
The Amazon Resource Name (ARN) for the queue.
+string
The status of the queue.
+array
The quick connects available to agents who are working the queue.
+array
An array of key-value pairs to apply to this resource.
+string
The type of queue.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all queues
in a region.
+```sql
+SELECT
+region,
+queue_arn
+FROM aws.connect.queues_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the queues_list_only
resource, see queues
+
+
diff --git a/docs/aws-docs/providers/aws/connect/quick_connect_tags/index.md b/docs/aws-docs/providers/aws/connect/quick_connect_tags/index.md
new file mode 100644
index 0000000000..c00f24f612
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/quick_connect_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: quick_connect_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - quick_connect_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for quick_connects
in a region
+
+## Overview
+
+Name quick_connect_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::QuickConnect
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the quick connect.
+string
The description of the quick connect.
+object
Configuration settings for the quick connect.
+string
The Amazon Resource Name (ARN) for the quick connect.
+string
The type of quick connect. In the Amazon Connect console, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all quick_connects
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+name,
+description,
+quick_connect_config,
+quick_connect_arn,
+quick_connect_type,
+tag_key,
+tag_value
+FROM aws.connect.quick_connect_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the quick_connect_tags
resource, see quick_connects
+
+
diff --git a/docs/aws-docs/providers/aws/connect/quick_connects/index.md b/docs/aws-docs/providers/aws/connect/quick_connects/index.md
index c4fd5977e6..052bcdeb4a 100644
--- a/docs/aws-docs/providers/aws/connect/quick_connects/index.md
+++ b/docs/aws-docs/providers/aws/connect/quick_connects/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a quick_connect
resource or lists
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a quick_connect
resource or lists
## `SELECT` examples
-List all quick_connects
in a region.
+Gets all quick_connects
in a region.
```sql
SELECT
region,
-quick_connect_arn
+instance_arn,
+name,
+description,
+quick_connect_config,
+quick_connect_arn,
+tags,
+quick_connect_type
FROM aws.connect.quick_connects
WHERE region = 'us-east-1';
```
-Gets all properties from a quick_connect
.
+Gets all properties from an individual quick_connect
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.connect.quick_connects
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new quick_connect
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/quick_connects_list_only/index.md b/docs/aws-docs/providers/aws/connect/quick_connects_list_only/index.md
new file mode 100644
index 0000000000..2110049987
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/quick_connects_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: quick_connects_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - quick_connects_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists quick_connects
in a region or regions, for all properties use quick_connects
+
+## Overview
+
+Name quick_connects_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::QuickConnect
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the quick connect.
+string
The description of the quick connect.
+object
Configuration settings for the quick connect.
+string
The Amazon Resource Name (ARN) for the quick connect.
+array
One or more tags.
+string
The type of quick connect. In the Amazon Connect console, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all quick_connects
in a region.
+```sql
+SELECT
+region,
+quick_connect_arn
+FROM aws.connect.quick_connects_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the quick_connects_list_only
resource, see quick_connects
+
+
diff --git a/docs/aws-docs/providers/aws/connect/routing_profile_tags/index.md b/docs/aws-docs/providers/aws/connect/routing_profile_tags/index.md
new file mode 100644
index 0000000000..b5868574fc
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/routing_profile_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: routing_profile_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - routing_profile_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for routing_profiles
in a region
+
+## Overview
+
+Name routing_profile_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::RoutingProfile
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the routing profile.
+string
The description of the routing profile.
+array
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
+string
The identifier of the default outbound queue for this routing profile.
+string
The Amazon Resource Name (ARN) of the routing profile.
+array
The queues to associate with this routing profile.
+string
Whether agents with this routing profile will have their routing order calculated based on longest idle time or time since their last inbound contact.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all routing_profiles
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+name,
+description,
+media_concurrencies,
+default_outbound_queue_arn,
+routing_profile_arn,
+queue_configs,
+agent_availability_timer,
+tag_key,
+tag_value
+FROM aws.connect.routing_profile_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the routing_profile_tags
resource, see routing_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/connect/routing_profiles/index.md b/docs/aws-docs/providers/aws/connect/routing_profiles/index.md
index 42ce98c3f0..65319ea24a 100644
--- a/docs/aws-docs/providers/aws/connect/routing_profiles/index.md
+++ b/docs/aws-docs/providers/aws/connect/routing_profiles/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a routing_profile
resource or lis
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a routing_profile
resource or lis
## `SELECT` examples
-List all routing_profiles
in a region.
+Gets all routing_profiles
in a region.
```sql
SELECT
region,
-routing_profile_arn
+instance_arn,
+name,
+description,
+media_concurrencies,
+default_outbound_queue_arn,
+routing_profile_arn,
+queue_configs,
+tags,
+agent_availability_timer
FROM aws.connect.routing_profiles
WHERE region = 'us-east-1';
```
-Gets all properties from a routing_profile
.
+Gets all properties from an individual routing_profile
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.connect.routing_profiles
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new routing_profile
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/routing_profiles_list_only/index.md b/docs/aws-docs/providers/aws/connect/routing_profiles_list_only/index.md
new file mode 100644
index 0000000000..03acb2b3a7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/routing_profiles_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: routing_profiles_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - routing_profiles_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists routing_profiles
in a region or regions, for all properties use routing_profiles
+
+## Overview
+
+Name routing_profiles_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::RoutingProfile
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The name of the routing profile.
+string
The description of the routing profile.
+array
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
+string
The identifier of the default outbound queue for this routing profile.
+string
The Amazon Resource Name (ARN) of the routing profile.
+array
The queues to associate with this routing profile.
+array
An array of key-value pairs to apply to this resource.
+string
Whether agents with this routing profile will have their routing order calculated based on longest idle time or time since their last inbound contact.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all routing_profiles
in a region.
+```sql
+SELECT
+region,
+routing_profile_arn
+FROM aws.connect.routing_profiles_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the routing_profiles_list_only
resource, see routing_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/connect/rules/index.md b/docs/aws-docs/providers/aws/connect/rules/index.md
index dc6dfd46c2..d8cd210584 100644
--- a/docs/aws-docs/providers/aws/connect/rules/index.md
+++ b/docs/aws-docs/providers/aws/connect/rules/index.md
@@ -73,7 +73,7 @@ Creates, updates, deletes or gets a rule
resource or lists ru
## `SELECT` examples
-Gets all properties from a rule
.
+Gets all properties from an individual rule
.
```sql
SELECT
region,
@@ -89,7 +89,6 @@ FROM aws.connect.rules
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new rule
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/security_keys/index.md b/docs/aws-docs/providers/aws/connect/security_keys/index.md
index 383aa0ae74..f3588d24d9 100644
--- a/docs/aws-docs/providers/aws/connect/security_keys/index.md
+++ b/docs/aws-docs/providers/aws/connect/security_keys/index.md
@@ -55,7 +55,7 @@ Creates, updates, deletes or gets a security_key
resource or lists
-
+
SELECT
@@ -67,16 +67,17 @@ Creates, updates, deletes or gets a security_key
resource or lists
## `SELECT` examples
-List all security_keys
in a region.
+Gets all security_keys
in a region.
```sql
SELECT
region,
+key,
instance_id,
association_id
FROM aws.connect.security_keys
WHERE region = 'us-east-1';
```
-Gets all properties from a security_key
.
+Gets all properties from an individual security_key
.
```sql
SELECT
region,
@@ -87,7 +88,6 @@ FROM aws.connect.security_keys
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new security_key
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/security_keys_list_only/index.md b/docs/aws-docs/providers/aws/connect/security_keys_list_only/index.md
new file mode 100644
index 0000000000..0f81916f76
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/security_keys_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: security_keys_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - security_keys_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists security_keys
in a region or regions, for all properties use security_keys
+
+## Overview
+
+Name security_keys_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::SecurityKey
+Id
+
+
+## Fields
+Name Datatype Description string
A valid security key in PEM format.
+string
Amazon Connect instance identifier
+string
An associationID is automatically generated when a storage config is associated with an instance
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all security_keys
in a region.
+```sql
+SELECT
+region,
+instance_id,
+association_id
+FROM aws.connect.security_keys_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the security_keys_list_only
resource, see security_keys
+
+
diff --git a/docs/aws-docs/providers/aws/connect/security_profile_tags/index.md b/docs/aws-docs/providers/aws/connect/security_profile_tags/index.md
new file mode 100644
index 0000000000..441b1e77d2
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/security_profile_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: security_profile_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - security_profile_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for security_profiles
in a region
+
+## Overview
+
+Name security_profile_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::SecurityProfile
+Id
+
+
+## Fields
+Name Datatype Description array
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
+string
The description of the security profile.
+string
The identifier of the Amazon Connect instance.
+array
Permissions assigned to the security profile.
+string
The Amazon Resource Name (ARN) for the security profile.
+string
The name of the security profile.
+array
The list of resources that a security profile applies tag restrictions to in Amazon Connect.
+array
The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect.
+string
The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect.
+array
A list of third-party applications that the security profile will give access to.
+string
The AWS Region where this resource was last modified.
+number
The timestamp when this resource was last modified.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all security_profiles
in a region.
+```sql
+SELECT
+region,
+allowed_access_control_tags,
+description,
+instance_arn,
+permissions,
+security_profile_arn,
+security_profile_name,
+tag_restricted_resources,
+hierarchy_restricted_resources,
+allowed_access_control_hierarchy_group_id,
+applications,
+last_modified_region,
+last_modified_time,
+tag_key,
+tag_value
+FROM aws.connect.security_profile_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the security_profile_tags
resource, see security_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/connect/security_profiles/index.md b/docs/aws-docs/providers/aws/connect/security_profiles/index.md
index 2c14a9e5ca..278120e300 100644
--- a/docs/aws-docs/providers/aws/connect/security_profiles/index.md
+++ b/docs/aws-docs/providers/aws/connect/security_profiles/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a security_profile
resource or li
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a security_profile
resource or li
## `SELECT` examples
-List all security_profiles
in a region.
+Gets all security_profiles
in a region.
```sql
SELECT
region,
-security_profile_arn
+allowed_access_control_tags,
+description,
+instance_arn,
+permissions,
+security_profile_arn,
+security_profile_name,
+tag_restricted_resources,
+hierarchy_restricted_resources,
+allowed_access_control_hierarchy_group_id,
+applications,
+tags,
+last_modified_region,
+last_modified_time
FROM aws.connect.security_profiles
WHERE region = 'us-east-1';
```
-Gets all properties from a security_profile
.
+Gets all properties from an individual security_profile
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.connect.security_profiles
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new security_profile
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/security_profiles_list_only/index.md b/docs/aws-docs/providers/aws/connect/security_profiles_list_only/index.md
new file mode 100644
index 0000000000..22bb26bfe7
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/security_profiles_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: security_profiles_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - security_profiles_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists security_profiles
in a region or regions, for all properties use security_profiles
+
+## Overview
+
+Name security_profiles_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::SecurityProfile
+Id
+
+
+## Fields
+Name Datatype Description array
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
+string
The description of the security profile.
+string
The identifier of the Amazon Connect instance.
+array
Permissions assigned to the security profile.
+string
The Amazon Resource Name (ARN) for the security profile.
+string
The name of the security profile.
+array
The list of resources that a security profile applies tag restrictions to in Amazon Connect.
+array
The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect.
+string
The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect.
+array
A list of third-party applications that the security profile will give access to.
+array
The tags used to organize, track, or control access for this resource.
+string
The AWS Region where this resource was last modified.
+number
The timestamp when this resource was last modified.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all security_profiles
in a region.
+```sql
+SELECT
+region,
+security_profile_arn
+FROM aws.connect.security_profiles_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the security_profiles_list_only
resource, see security_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/connect/task_template_tags/index.md b/docs/aws-docs/providers/aws/connect/task_template_tags/index.md
new file mode 100644
index 0000000000..9a7e9be749
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/task_template_tags/index.md
@@ -0,0 +1,89 @@
+---
+title: task_template_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - task_template_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for task_templates
in a region
+
+## Overview
+
+Name task_template_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::TaskTemplate.
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier (arn) of the task template.
+string
The identifier (arn) of the instance.
+string
The name of the task template.
+string
The description of the task template.
+string
The identifier of the contact flow.
+object
The constraints for the task template
+array
+array
The list of task template's fields
+string
The status of the task template
+string
the client token string in uuid format
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all task_templates
in a region.
+```sql
+SELECT
+region,
+arn,
+instance_arn,
+name,
+description,
+contact_flow_arn,
+constraints,
+defaults,
+fields,
+status,
+client_token,
+tag_key,
+tag_value
+FROM aws.connect.task_template_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the task_template_tags
resource, see task_templates
+
+
diff --git a/docs/aws-docs/providers/aws/connect/task_templates/index.md b/docs/aws-docs/providers/aws/connect/task_templates/index.md
index f769856257..002f46f42e 100644
--- a/docs/aws-docs/providers/aws/connect/task_templates/index.md
+++ b/docs/aws-docs/providers/aws/connect/task_templates/index.md
@@ -68,7 +68,7 @@ Creates, updates, deletes or gets a task_template
resource or lists
-
+
SELECT
@@ -80,15 +80,25 @@ Creates, updates, deletes or gets a task_template
resource or lists
## `SELECT` examples
-List all task_templates
in a region.
+Gets all task_templates
in a region.
```sql
SELECT
region,
-arn
+arn,
+instance_arn,
+name,
+description,
+contact_flow_arn,
+constraints,
+defaults,
+fields,
+status,
+client_token,
+tags
FROM aws.connect.task_templates
WHERE region = 'us-east-1';
```
-Gets all properties from a task_template
.
+Gets all properties from an individual task_template
.
```sql
SELECT
region,
@@ -107,7 +117,6 @@ FROM aws.connect.task_templates
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new task_template
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/task_templates_list_only/index.md b/docs/aws-docs/providers/aws/connect/task_templates_list_only/index.md
new file mode 100644
index 0000000000..87f1047178
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/task_templates_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: task_templates_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - task_templates_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists task_templates
in a region or regions, for all properties use task_templates
+
+## Overview
+
+Name task_templates_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::TaskTemplate.
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier (arn) of the task template.
+string
The identifier (arn) of the instance.
+string
The name of the task template.
+string
The description of the task template.
+string
The identifier of the contact flow.
+object
The constraints for the task template
+array
+array
The list of task template's fields
+string
The status of the task template
+string
the client token string in uuid format
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all task_templates
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.connect.task_templates_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the task_templates_list_only
resource, see task_templates
+
+
diff --git a/docs/aws-docs/providers/aws/connect/traffic_distribution_group_tags/index.md b/docs/aws-docs/providers/aws/connect/traffic_distribution_group_tags/index.md
new file mode 100644
index 0000000000..d5ff74d41e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/traffic_distribution_group_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: traffic_distribution_group_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - traffic_distribution_group_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for traffic_distribution_groups
in a region
+
+## Overview
+
+Name traffic_distribution_group_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::TrafficDistributionGroup
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance that has been replicated.
+string
The identifier of the traffic distribution group.
+string
A description for the traffic distribution group.
+string
The name for the traffic distribution group.
+string
The status of the traffic distribution group.
+boolean
If this is the default traffic distribution group.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all traffic_distribution_groups
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+traffic_distribution_group_arn,
+description,
+name,
+status,
+is_default,
+tag_key,
+tag_value
+FROM aws.connect.traffic_distribution_group_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the traffic_distribution_group_tags
resource, see traffic_distribution_groups
+
+
diff --git a/docs/aws-docs/providers/aws/connect/traffic_distribution_groups/index.md b/docs/aws-docs/providers/aws/connect/traffic_distribution_groups/index.md
index 73a0294922..68366eda48 100644
--- a/docs/aws-docs/providers/aws/connect/traffic_distribution_groups/index.md
+++ b/docs/aws-docs/providers/aws/connect/traffic_distribution_groups/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a traffic_distribution_group
reso
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a traffic_distribution_group
reso
## `SELECT` examples
-List all traffic_distribution_groups
in a region.
+Gets all traffic_distribution_groups
in a region.
```sql
SELECT
region,
-traffic_distribution_group_arn
+instance_arn,
+traffic_distribution_group_arn,
+description,
+name,
+status,
+tags,
+is_default
FROM aws.connect.traffic_distribution_groups
WHERE region = 'us-east-1';
```
-Gets all properties from a traffic_distribution_group
.
+Gets all properties from an individual traffic_distribution_group
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.connect.traffic_distribution_groups
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new traffic_distribution_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/traffic_distribution_groups_list_only/index.md b/docs/aws-docs/providers/aws/connect/traffic_distribution_groups_list_only/index.md
new file mode 100644
index 0000000000..e70aa32230
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/traffic_distribution_groups_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: traffic_distribution_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - traffic_distribution_groups_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists traffic_distribution_groups
in a region or regions, for all properties use traffic_distribution_groups
+
+## Overview
+
+Name traffic_distribution_groups_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::TrafficDistributionGroup
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance that has been replicated.
+string
The identifier of the traffic distribution group.
+string
A description for the traffic distribution group.
+string
The name for the traffic distribution group.
+string
The status of the traffic distribution group.
+array
One or more tags.
+boolean
If this is the default traffic distribution group.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all traffic_distribution_groups
in a region.
+```sql
+SELECT
+region,
+traffic_distribution_group_arn
+FROM aws.connect.traffic_distribution_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the traffic_distribution_groups_list_only
resource, see traffic_distribution_groups
+
+
diff --git a/docs/aws-docs/providers/aws/connect/user_hierarchy_group_tags/index.md b/docs/aws-docs/providers/aws/connect/user_hierarchy_group_tags/index.md
new file mode 100644
index 0000000000..7d2b3cd557
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/user_hierarchy_group_tags/index.md
@@ -0,0 +1,77 @@
+---
+title: user_hierarchy_group_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - user_hierarchy_group_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for user_hierarchy_groups
in a region
+
+## Overview
+
+Name user_hierarchy_group_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::UserHierarchyGroup
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The Amazon Resource Name (ARN) for the user hierarchy group.
+string
The Amazon Resource Name (ARN) for the parent user hierarchy group.
+string
The name of the user hierarchy group.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all user_hierarchy_groups
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+user_hierarchy_group_arn,
+parent_group_arn,
+name,
+tag_key,
+tag_value
+FROM aws.connect.user_hierarchy_group_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the user_hierarchy_group_tags
resource, see user_hierarchy_groups
+
+
diff --git a/docs/aws-docs/providers/aws/connect/user_hierarchy_groups/index.md b/docs/aws-docs/providers/aws/connect/user_hierarchy_groups/index.md
index d12cf5c7bf..5c4fdb6aa9 100644
--- a/docs/aws-docs/providers/aws/connect/user_hierarchy_groups/index.md
+++ b/docs/aws-docs/providers/aws/connect/user_hierarchy_groups/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets an user_hierarchy_group
resource
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets an user_hierarchy_group
resource
## `SELECT` examples
-List all user_hierarchy_groups
in a region.
+Gets all user_hierarchy_groups
in a region.
```sql
SELECT
region,
-user_hierarchy_group_arn
+instance_arn,
+user_hierarchy_group_arn,
+parent_group_arn,
+name,
+tags
FROM aws.connect.user_hierarchy_groups
WHERE region = 'us-east-1';
```
-Gets all properties from an user_hierarchy_group
.
+Gets all properties from an individual user_hierarchy_group
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.connect.user_hierarchy_groups
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user_hierarchy_group
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/user_hierarchy_groups_list_only/index.md b/docs/aws-docs/providers/aws/connect/user_hierarchy_groups_list_only/index.md
new file mode 100644
index 0000000000..b5e697d16c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/user_hierarchy_groups_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: user_hierarchy_groups_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - user_hierarchy_groups_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists user_hierarchy_groups
in a region or regions, for all properties use user_hierarchy_groups
+
+## Overview
+
+Name user_hierarchy_groups_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::UserHierarchyGroup
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The Amazon Resource Name (ARN) for the user hierarchy group.
+string
The Amazon Resource Name (ARN) for the parent user hierarchy group.
+string
The name of the user hierarchy group.
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all user_hierarchy_groups
in a region.
+```sql
+SELECT
+region,
+user_hierarchy_group_arn
+FROM aws.connect.user_hierarchy_groups_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the user_hierarchy_groups_list_only
resource, see user_hierarchy_groups
+
+
diff --git a/docs/aws-docs/providers/aws/connect/user_tags/index.md b/docs/aws-docs/providers/aws/connect/user_tags/index.md
new file mode 100644
index 0000000000..ec8427e516
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/user_tags/index.md
@@ -0,0 +1,91 @@
+---
+title: user_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - user_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for users
in a region
+
+## Overview
+
+Name user_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::User
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The identifier of the user account in the directory used for identity management.
+string
The identifier of the hierarchy group for the user.
+string
The user name for the account.
+string
The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password.
+string
The identifier of the routing profile for the user.
+object
The information about the identity of the user.
+object
The phone settings for the user.
+array
One or more security profile arns for the user
+string
The Amazon Resource Name (ARN) for the user.
+array
One or more predefined attributes assigned to a user, with a level that indicates how skilled they are.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all users
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+directory_user_id,
+hierarchy_group_arn,
+username,
+password,
+routing_profile_arn,
+identity_info,
+phone_config,
+security_profile_arns,
+user_arn,
+user_proficiencies,
+tag_key,
+tag_value
+FROM aws.connect.user_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the user_tags
resource, see users
+
+
diff --git a/docs/aws-docs/providers/aws/connect/users/index.md b/docs/aws-docs/providers/aws/connect/users/index.md
index 52b42446c4..bfb52634bc 100644
--- a/docs/aws-docs/providers/aws/connect/users/index.md
+++ b/docs/aws-docs/providers/aws/connect/users/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a user
resource or lists us
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets a user
resource or lists us
## `SELECT` examples
-List all users
in a region.
+Gets all users
in a region.
```sql
SELECT
region,
-user_arn
+instance_arn,
+directory_user_id,
+hierarchy_group_arn,
+username,
+password,
+routing_profile_arn,
+identity_info,
+phone_config,
+security_profile_arns,
+user_arn,
+tags,
+user_proficiencies
FROM aws.connect.users
WHERE region = 'us-east-1';
```
-Gets all properties from a user
.
+Gets all properties from an individual user
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.connect.users
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new user
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/users_list_only/index.md b/docs/aws-docs/providers/aws/connect/users_list_only/index.md
new file mode 100644
index 0000000000..c5404c4dd9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/users_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: users_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - users_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists users
in a region or regions, for all properties use users
+
+## Overview
+
+Name users_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::User
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon Connect instance.
+string
The identifier of the user account in the directory used for identity management.
+string
The identifier of the hierarchy group for the user.
+string
The user name for the account.
+string
The password for the user account. A password is required if you are using Amazon Connect for identity management. Otherwise, it is an error to include a password.
+string
The identifier of the routing profile for the user.
+object
The information about the identity of the user.
+object
The phone settings for the user.
+array
One or more security profile arns for the user
+string
The Amazon Resource Name (ARN) for the user.
+array
One or more tags.
+array
One or more predefined attributes assigned to a user, with a level that indicates how skilled they are.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all users
in a region.
+```sql
+SELECT
+region,
+user_arn
+FROM aws.connect.users_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the users_list_only
resource, see users
+
+
diff --git a/docs/aws-docs/providers/aws/connect/view_tags/index.md b/docs/aws-docs/providers/aws/connect/view_tags/index.md
new file mode 100644
index 0000000000..3028bba079
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/view_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: view_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - view_tags
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for views
in a region
+
+## Overview
+
+Name view_tags
+Type Resource
+Description Resource Type definition for AWS::Connect::View
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the instance.
+string
The Amazon Resource Name (ARN) of the view.
+string
The view id of the view.
+string
The name of the view.
+string
The description of the view.
+object
The template of the view as JSON.
+array
The actions of the view in an array.
+string
The view content hash.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all views
in a region.
+```sql
+SELECT
+region,
+instance_arn,
+view_arn,
+view_id,
+name,
+description,
+template,
+actions,
+view_content_sha256,
+tag_key,
+tag_value
+FROM aws.connect.view_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the view_tags
resource, see views
+
+
diff --git a/docs/aws-docs/providers/aws/connect/view_versions/index.md b/docs/aws-docs/providers/aws/connect/view_versions/index.md
index 1318939ef8..0affe87c96 100644
--- a/docs/aws-docs/providers/aws/connect/view_versions/index.md
+++ b/docs/aws-docs/providers/aws/connect/view_versions/index.md
@@ -57,7 +57,7 @@ Creates, updates, deletes or gets a view_version
resource or lists
-
+
SELECT
@@ -69,15 +69,19 @@ Creates, updates, deletes or gets a view_version
resource or lists
## `SELECT` examples
-List all view_versions
in a region.
+Gets all view_versions
in a region.
```sql
SELECT
region,
-view_version_arn
+view_arn,
+view_version_arn,
+version_description,
+view_content_sha256,
+version
FROM aws.connect.view_versions
WHERE region = 'us-east-1';
```
-Gets all properties from a view_version
.
+Gets all properties from an individual view_version
.
```sql
SELECT
region,
@@ -90,7 +94,6 @@ FROM aws.connect.view_versions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new view_version
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/view_versions_list_only/index.md b/docs/aws-docs/providers/aws/connect/view_versions_list_only/index.md
new file mode 100644
index 0000000000..f2271045b1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/view_versions_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: view_versions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - view_versions_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists view_versions
in a region or regions, for all properties use view_versions
+
+## Overview
+
+Name view_versions_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::ViewVersion
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the view for which a version is being created.
+string
The Amazon Resource Name (ARN) of the created view version.
+string
The description for the view version.
+string
The view content hash to be checked.
+integer
The version of the view.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all view_versions
in a region.
+```sql
+SELECT
+region,
+view_version_arn
+FROM aws.connect.view_versions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the view_versions_list_only
resource, see view_versions
+
+
diff --git a/docs/aws-docs/providers/aws/connect/views/index.md b/docs/aws-docs/providers/aws/connect/views/index.md
index 1b59ff3dc2..d7c4b2ac99 100644
--- a/docs/aws-docs/providers/aws/connect/views/index.md
+++ b/docs/aws-docs/providers/aws/connect/views/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a view
resource or lists vi
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a view
resource or lists vi
## `SELECT` examples
-List all views
in a region.
+Gets all views
in a region.
```sql
SELECT
region,
-view_arn
+instance_arn,
+view_arn,
+view_id,
+name,
+description,
+template,
+actions,
+view_content_sha256,
+tags
FROM aws.connect.views
WHERE region = 'us-east-1';
```
-Gets all properties from a view
.
+Gets all properties from an individual view
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.connect.views
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new view
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connect/views_list_only/index.md b/docs/aws-docs/providers/aws/connect/views_list_only/index.md
new file mode 100644
index 0000000000..7f035e69a1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connect/views_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: views_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - views_list_only
+ - connect
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists views
in a region or regions, for all properties use views
+
+## Overview
+
+Name views_list_only
+Type Resource
+Description Resource Type definition for AWS::Connect::View
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) of the instance.
+string
The Amazon Resource Name (ARN) of the view.
+string
The view id of the view.
+string
The name of the view.
+string
The description of the view.
+object
The template of the view as JSON.
+array
The actions of the view in an array.
+string
The view content hash.
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all views
in a region.
+```sql
+SELECT
+region,
+view_arn
+FROM aws.connect.views_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the views_list_only
resource, see views
+
+
diff --git a/docs/aws-docs/providers/aws/connectcampaigns/campaign_tags/index.md b/docs/aws-docs/providers/aws/connectcampaigns/campaign_tags/index.md
new file mode 100644
index 0000000000..4744bc9678
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connectcampaigns/campaign_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: campaign_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - campaign_tags
+ - connectcampaigns
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for campaigns
in a region
+
+## Overview
+
+Name campaign_tags
+Type Resource
+Description Definition of AWS::ConnectCampaigns::Campaign Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Amazon Connect Instance Arn
+object
The possible types of dialer config parameters
+string
Amazon Connect Campaign Arn
+string
Amazon Connect Campaign Name
+object
The configuration used for outbound calls.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all campaigns
in a region.
+```sql
+SELECT
+region,
+connect_instance_arn,
+dialer_config,
+arn,
+name,
+outbound_call_config,
+tag_key,
+tag_value
+FROM aws.connectcampaigns.campaign_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the campaign_tags
resource, see campaigns
+
+
diff --git a/docs/aws-docs/providers/aws/connectcampaigns/campaigns/index.md b/docs/aws-docs/providers/aws/connectcampaigns/campaigns/index.md
index c26b809af6..cb9874f49f 100644
--- a/docs/aws-docs/providers/aws/connectcampaigns/campaigns/index.md
+++ b/docs/aws-docs/providers/aws/connectcampaigns/campaigns/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a campaign
resource or lists
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a campaign
resource or lists
## `SELECT` examples
-List all campaigns
in a region.
+Gets all campaigns
in a region.
```sql
SELECT
region,
-arn
+connect_instance_arn,
+dialer_config,
+arn,
+name,
+outbound_call_config,
+tags
FROM aws.connectcampaigns.campaigns
WHERE region = 'us-east-1';
```
-Gets all properties from a campaign
.
+Gets all properties from an individual campaign
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.connectcampaigns.campaigns
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new campaign
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/connectcampaigns/campaigns_list_only/index.md b/docs/aws-docs/providers/aws/connectcampaigns/campaigns_list_only/index.md
new file mode 100644
index 0000000000..6799392066
--- /dev/null
+++ b/docs/aws-docs/providers/aws/connectcampaigns/campaigns_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: campaigns_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - campaigns_list_only
+ - connectcampaigns
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists campaigns
in a region or regions, for all properties use campaigns
+
+## Overview
+
+Name campaigns_list_only
+Type Resource
+Description Definition of AWS::ConnectCampaigns::Campaign Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
Amazon Connect Instance Arn
+object
The possible types of dialer config parameters
+string
Amazon Connect Campaign Arn
+string
Amazon Connect Campaign Name
+object
The configuration used for outbound calls.
+array
One or more tags.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all campaigns
in a region.
+```sql
+SELECT
+region,
+arn
+FROM aws.connectcampaigns.campaigns_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the campaigns_list_only
resource, see campaigns
+
+
diff --git a/docs/aws-docs/providers/aws/connectcampaigns/index.md b/docs/aws-docs/providers/aws/connectcampaigns/index.md
index 1f49cf6274..51068eaafc 100644
--- a/docs/aws-docs/providers/aws/connectcampaigns/index.md
+++ b/docs/aws-docs/providers/aws/connectcampaigns/index.md
@@ -20,7 +20,7 @@ The connectcampaigns service documentation.
-total resources: 1
+total resources: 3
@@ -29,9 +29,10 @@ The connectcampaigns service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/controltower/enabled_baseline_tags/index.md b/docs/aws-docs/providers/aws/controltower/enabled_baseline_tags/index.md
new file mode 100644
index 0000000000..4fcc7d2df6
--- /dev/null
+++ b/docs/aws-docs/providers/aws/controltower/enabled_baseline_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: enabled_baseline_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - enabled_baseline_tags
+ - controltower
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for enabled_baselines
in a region
+
+## Overview
+
+Name enabled_baseline_tags
+Type Resource
+Description Definition of AWS::ControlTower::EnabledBaseline Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+array
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all enabled_baselines
in a region.
+```sql
+SELECT
+region,
+baseline_identifier,
+baseline_version,
+enabled_baseline_identifier,
+target_identifier,
+parameters,
+tag_key,
+tag_value
+FROM aws.controltower.enabled_baseline_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the enabled_baseline_tags
resource, see enabled_baselines
+
+
diff --git a/docs/aws-docs/providers/aws/controltower/enabled_baselines/index.md b/docs/aws-docs/providers/aws/controltower/enabled_baselines/index.md
index 64dc7047b4..9d13c0e00f 100644
--- a/docs/aws-docs/providers/aws/controltower/enabled_baselines/index.md
+++ b/docs/aws-docs/providers/aws/controltower/enabled_baselines/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets an enabled_baseline
resource or l
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets an enabled_baseline
resource or l
## `SELECT` examples
-List all enabled_baselines
in a region.
+Gets all enabled_baselines
in a region.
```sql
SELECT
region,
-enabled_baseline_identifier
+baseline_identifier,
+baseline_version,
+enabled_baseline_identifier,
+target_identifier,
+parameters,
+tags
FROM aws.controltower.enabled_baselines
WHERE region = 'us-east-1';
```
-Gets all properties from an enabled_baseline
.
+Gets all properties from an individual enabled_baseline
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.controltower.enabled_baselines
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new enabled_baseline
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/controltower/enabled_baselines_list_only/index.md b/docs/aws-docs/providers/aws/controltower/enabled_baselines_list_only/index.md
new file mode 100644
index 0000000000..1f562b999d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/controltower/enabled_baselines_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: enabled_baselines_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - enabled_baselines_list_only
+ - controltower
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists enabled_baselines
in a region or regions, for all properties use enabled_baselines
+
+## Overview
+
+Name enabled_baselines_list_only
+Type Resource
+Description Definition of AWS::ControlTower::EnabledBaseline Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+array
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all enabled_baselines
in a region.
+```sql
+SELECT
+region,
+enabled_baseline_identifier
+FROM aws.controltower.enabled_baselines_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the enabled_baselines_list_only
resource, see enabled_baselines
+
+
diff --git a/docs/aws-docs/providers/aws/controltower/enabled_control_tags/index.md b/docs/aws-docs/providers/aws/controltower/enabled_control_tags/index.md
new file mode 100644
index 0000000000..3cf062246f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/controltower/enabled_control_tags/index.md
@@ -0,0 +1,75 @@
+---
+title: enabled_control_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - enabled_control_tags
+ - controltower
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for enabled_controls
in a region
+
+## Overview
+
+Name enabled_control_tags
+Type Resource
+Description Enables a control on a specified target.
+Id
+
+
+## Fields
+Name Datatype Description string
Arn of the control.
+string
Arn for Organizational unit to which the control needs to be applied
+array
Parameters to configure the enabled control behavior.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all enabled_controls
in a region.
+```sql
+SELECT
+region,
+control_identifier,
+target_identifier,
+parameters,
+tag_key,
+tag_value
+FROM aws.controltower.enabled_control_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the enabled_control_tags
resource, see enabled_controls
+
+
diff --git a/docs/aws-docs/providers/aws/controltower/enabled_controls/index.md b/docs/aws-docs/providers/aws/controltower/enabled_controls/index.md
index 993ab41ea9..e36a1810f5 100644
--- a/docs/aws-docs/providers/aws/controltower/enabled_controls/index.md
+++ b/docs/aws-docs/providers/aws/controltower/enabled_controls/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets an enabled_control
resource or li
-
+
SELECT
@@ -73,16 +73,18 @@ Creates, updates, deletes or gets an enabled_control
resource or li
## `SELECT` examples
-List all enabled_controls
in a region.
+Gets all enabled_controls
in a region.
```sql
SELECT
region,
+control_identifier,
target_identifier,
-control_identifier
+parameters,
+tags
FROM aws.controltower.enabled_controls
WHERE region = 'us-east-1';
```
-Gets all properties from an enabled_control
.
+Gets all properties from an individual enabled_control
.
```sql
SELECT
region,
@@ -94,7 +96,6 @@ FROM aws.controltower.enabled_controls
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new enabled_control
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/controltower/enabled_controls_list_only/index.md b/docs/aws-docs/providers/aws/controltower/enabled_controls_list_only/index.md
new file mode 100644
index 0000000000..847ba39e81
--- /dev/null
+++ b/docs/aws-docs/providers/aws/controltower/enabled_controls_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: enabled_controls_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - enabled_controls_list_only
+ - controltower
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists enabled_controls
in a region or regions, for all properties use enabled_controls
+
+## Overview
+
+Name enabled_controls_list_only
+Type Resource
+Description Enables a control on a specified target.
+Id
+
+
+## Fields
+Name Datatype Description string
Arn of the control.
+string
Arn for Organizational unit to which the control needs to be applied
+array
Parameters to configure the enabled control behavior.
+array
A set of tags to assign to the enabled control.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all enabled_controls
in a region.
+```sql
+SELECT
+region,
+target_identifier,
+control_identifier
+FROM aws.controltower.enabled_controls_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the enabled_controls_list_only
resource, see enabled_controls
+
+
diff --git a/docs/aws-docs/providers/aws/controltower/index.md b/docs/aws-docs/providers/aws/controltower/index.md
index dddce263c4..5697853d81 100644
--- a/docs/aws-docs/providers/aws/controltower/index.md
+++ b/docs/aws-docs/providers/aws/controltower/index.md
@@ -20,7 +20,7 @@ The controltower service documentation.
-total resources: 3
+total resources: 9
@@ -29,10 +29,16 @@ The controltower service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/controltower/landing_zone_tags/index.md b/docs/aws-docs/providers/aws/controltower/landing_zone_tags/index.md
new file mode 100644
index 0000000000..2b0a1bd19e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/controltower/landing_zone_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: landing_zone_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - landing_zone_tags
+ - controltower
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for landing_zones
in a region
+
+## Overview
+
+Name landing_zone_tags
+Type Resource
+Description Definition of AWS::ControlTower::LandingZone Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+
+string
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all landing_zones
in a region.
+```sql
+SELECT
+region,
+landing_zone_identifier,
+arn,
+status,
+latest_available_version,
+drift_status,
+manifest,
+version,
+tag_key,
+tag_value
+FROM aws.controltower.landing_zone_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the landing_zone_tags
resource, see landing_zones
+
+
diff --git a/docs/aws-docs/providers/aws/controltower/landing_zones/index.md b/docs/aws-docs/providers/aws/controltower/landing_zones/index.md
index d4a4155261..b9576f9079 100644
--- a/docs/aws-docs/providers/aws/controltower/landing_zones/index.md
+++ b/docs/aws-docs/providers/aws/controltower/landing_zones/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a landing_zone
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a landing_zone
resource or lists
## `SELECT` examples
-List all landing_zones
in a region.
+Gets all landing_zones
in a region.
```sql
SELECT
region,
-landing_zone_identifier
+landing_zone_identifier,
+arn,
+status,
+latest_available_version,
+drift_status,
+manifest,
+version,
+tags
FROM aws.controltower.landing_zones
WHERE region = 'us-east-1';
```
-Gets all properties from a landing_zone
.
+Gets all properties from an individual landing_zone
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.controltower.landing_zones
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new landing_zone
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/controltower/landing_zones_list_only/index.md b/docs/aws-docs/providers/aws/controltower/landing_zones_list_only/index.md
new file mode 100644
index 0000000000..69881ca0bf
--- /dev/null
+++ b/docs/aws-docs/providers/aws/controltower/landing_zones_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: landing_zones_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - landing_zones_list_only
+ - controltower
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists landing_zones
in a region or regions, for all properties use landing_zones
+
+## Overview
+
+Name landing_zones_list_only
+Type Resource
+Description Definition of AWS::ControlTower::LandingZone Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
+string
+string
+string
+string
+
+string
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all landing_zones
in a region.
+```sql
+SELECT
+region,
+landing_zone_identifier
+FROM aws.controltower.landing_zones_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the landing_zones_list_only
resource, see landing_zones
+
+
diff --git a/docs/aws-docs/providers/aws/cur/index.md b/docs/aws-docs/providers/aws/cur/index.md
index a144579e77..0b3fd04aed 100644
--- a/docs/aws-docs/providers/aws/cur/index.md
+++ b/docs/aws-docs/providers/aws/cur/index.md
@@ -20,7 +20,7 @@ The cur service documentation.
-total resources: 1
+total resources: 2
@@ -32,6 +32,6 @@ The cur service documentation.
report_definitions
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/cur/report_definitions/index.md b/docs/aws-docs/providers/aws/cur/report_definitions/index.md
index 39c495890a..bd8787de7b 100644
--- a/docs/aws-docs/providers/aws/cur/report_definitions/index.md
+++ b/docs/aws-docs/providers/aws/cur/report_definitions/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a report_definition
resource or l
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets a report_definition
resource or l
## `SELECT` examples
-List all report_definitions
in a region.
+Gets all report_definitions
in a region.
```sql
SELECT
region,
-report_name
+report_name,
+time_unit,
+format,
+compression,
+additional_schema_elements,
+s3_bucket,
+s3_prefix,
+s3_region,
+additional_artifacts,
+refresh_closed_reports,
+report_versioning,
+billing_view_arn
FROM aws.cur.report_definitions
WHERE region = 'us-east-1';
```
-Gets all properties from a report_definition
.
+Gets all properties from an individual report_definition
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.cur.report_definitions
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new report_definition
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/cur/report_definitions_list_only/index.md b/docs/aws-docs/providers/aws/cur/report_definitions_list_only/index.md
new file mode 100644
index 0000000000..f6803e195f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/cur/report_definitions_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: report_definitions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - report_definitions_list_only
+ - cur
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists report_definitions
in a region or regions, for all properties use report_definitions
+
+## Overview
+
+Name report_definitions_list_only
+Type Resource
+Description The AWS::CUR::ReportDefinition resource creates a Cost & Usage Report with user-defined settings. You can use this resource to define settings like time granularity (hourly, daily, monthly), file format (Parquet, CSV), and S3 bucket for delivery of these reports.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the report that you want to create. The name must be unique, is case sensitive, and can't include spaces.
+string
The granularity of the line items in the report.
+string
The format that AWS saves the report in.
+string
The compression format that AWS uses for the report.
+array
A list of strings that indicate additional content that Amazon Web Services includes in the report, such as individual resource IDs.
+string
The S3 bucket where AWS delivers the report.
+string
The prefix that AWS adds to the report name when AWS delivers the report. Your prefix can't include spaces.
+string
The region of the S3 bucket that AWS delivers the report into.
+array
A list of manifests that you want Amazon Web Services to create for this report.
+boolean
Whether you want Amazon Web Services to update your reports after they have been finalized if Amazon Web Services detects charges related to previous months. These charges can include refunds, credits, or support fees.
+string
Whether you want Amazon Web Services to overwrite the previous version of each report or to deliver the report in addition to the previous versions.
+string
The Amazon resource name of the billing view. You can get this value by using the billing view service public APIs.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all report_definitions
in a region.
+```sql
+SELECT
+region,
+report_name
+FROM aws.cur.report_definitions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the report_definitions_list_only
resource, see report_definitions
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definition_tags/index.md b/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definition_tags/index.md
new file mode 100644
index 0000000000..8dfd076987
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definition_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: calculated_attribute_definition_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - calculated_attribute_definition_tags
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for calculated_attribute_definitions
in a region
+
+## Overview
+
+Name calculated_attribute_definition_tags
+Type Resource
+Description A calculated attribute definition for Customer Profiles
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The unique name of the calculated attribute.
+string
The display name of the calculated attribute.
+string
The description of the calculated attribute.
+object
Mathematical expression and a list of attribute items specified in that expression.
+object
The conditions including range, object count, and threshold for the calculated attribute.
+string
The aggregation operation to perform for the calculated attribute.
+string
The timestamp of when the calculated attribute definition was created.
+string
The timestamp of when the calculated attribute definition was most recently edited.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all calculated_attribute_definitions
in a region.
+```sql
+SELECT
+region,
+domain_name,
+calculated_attribute_name,
+display_name,
+description,
+attribute_details,
+conditions,
+statistic,
+created_at,
+last_updated_at,
+tag_key,
+tag_value
+FROM aws.customerprofiles.calculated_attribute_definition_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the calculated_attribute_definition_tags
resource, see calculated_attribute_definitions
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definitions/index.md b/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definitions/index.md
index 37addb9aa4..04a26f99a7 100644
--- a/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definitions/index.md
+++ b/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definitions/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a calculated_attribute_definition
-
+
SELECT
@@ -79,16 +79,24 @@ Creates, updates, deletes or gets a calculated_attribute_definition
## `SELECT` examples
-List all calculated_attribute_definitions
in a region.
+Gets all calculated_attribute_definitions
in a region.
```sql
SELECT
region,
domain_name,
-calculated_attribute_name
+calculated_attribute_name,
+display_name,
+description,
+attribute_details,
+conditions,
+statistic,
+created_at,
+last_updated_at,
+tags
FROM aws.customerprofiles.calculated_attribute_definitions
WHERE region = 'us-east-1';
```
-Gets all properties from a calculated_attribute_definition
.
+Gets all properties from an individual calculated_attribute_definition
.
```sql
SELECT
region,
@@ -106,7 +114,6 @@ FROM aws.customerprofiles.calculated_attribute_definitions
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new calculated_attribute_definition
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definitions_list_only/index.md b/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definitions_list_only/index.md
new file mode 100644
index 0000000000..5a0372d9b2
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/calculated_attribute_definitions_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: calculated_attribute_definitions_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - calculated_attribute_definitions_list_only
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists calculated_attribute_definitions
in a region or regions, for all properties use calculated_attribute_definitions
+
+## Overview
+
+Name calculated_attribute_definitions_list_only
+Type Resource
+Description A calculated attribute definition for Customer Profiles
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The unique name of the calculated attribute.
+string
The display name of the calculated attribute.
+string
The description of the calculated attribute.
+object
Mathematical expression and a list of attribute items specified in that expression.
+object
The conditions including range, object count, and threshold for the calculated attribute.
+string
The aggregation operation to perform for the calculated attribute.
+string
The timestamp of when the calculated attribute definition was created.
+string
The timestamp of when the calculated attribute definition was most recently edited.
+array
An array of key-value pairs to apply to this resource.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all calculated_attribute_definitions
in a region.
+```sql
+SELECT
+region,
+domain_name,
+calculated_attribute_name
+FROM aws.customerprofiles.calculated_attribute_definitions_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the calculated_attribute_definitions_list_only
resource, see calculated_attribute_definitions
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/domain_tags/index.md b/docs/aws-docs/providers/aws/customerprofiles/domain_tags/index.md
new file mode 100644
index 0000000000..dba476d182
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/domain_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: domain_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_tags
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for domains
in a region
+
+## Overview
+
+Name domain_tags
+Type Resource
+Description A domain defined for 3rd party data source in Profile Service
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The URL of the SQS dead letter queue
+string
The default encryption key
+integer
The default number of days until the data within the domain expires.
+object
The process of matching duplicate profiles. If Matching = true, Amazon Connect Customer Profiles starts a weekly batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every Saturday at 12AM UTC to detect duplicate profiles in your domains. After the Identity Resolution Job completes, use the GetMatches API to return and review the results. Or, if you have configured ExportingConfig in the MatchingRequest, you can download the results from S3.
+object
The process of matching duplicate profiles using the Rule-Based matching. If RuleBasedMatching = true, Amazon Connect Customer Profiles will start to match and merge your profiles according to your configuration in the RuleBasedMatchingRequest. You can use the ListRuleBasedMatches and GetSimilarProfiles API to return and review the results. Also, if you have configured ExportingConfig in the RuleBasedMatchingRequest, you can download the results from S3.
+object
Usage-specific statistics about the domain.
+string
The time of this integration got created
+string
The time of this integration got last updated at
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all domains
in a region.
+```sql
+SELECT
+region,
+domain_name,
+dead_letter_queue_url,
+default_encryption_key,
+default_expiration_days,
+matching,
+rule_based_matching,
+stats,
+created_at,
+last_updated_at,
+tag_key,
+tag_value
+FROM aws.customerprofiles.domain_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_tags
resource, see domains
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/domains/index.md b/docs/aws-docs/providers/aws/customerprofiles/domains/index.md
index e457830765..15cab32e2b 100644
--- a/docs/aws-docs/providers/aws/customerprofiles/domains/index.md
+++ b/docs/aws-docs/providers/aws/customerprofiles/domains/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a domain
resource or lists
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a domain
resource or lists
## `SELECT` examples
-List all domains
in a region.
+Gets all domains
in a region.
```sql
SELECT
region,
-domain_name
+domain_name,
+dead_letter_queue_url,
+default_encryption_key,
+default_expiration_days,
+matching,
+rule_based_matching,
+stats,
+tags,
+created_at,
+last_updated_at
FROM aws.customerprofiles.domains
WHERE region = 'us-east-1';
```
-Gets all properties from a domain
.
+Gets all properties from an individual domain
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.customerprofiles.domains
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/customerprofiles/domains_list_only/index.md b/docs/aws-docs/providers/aws/customerprofiles/domains_list_only/index.md
new file mode 100644
index 0000000000..092c6f93c5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/domains_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: domains_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domains_list_only
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists domains
in a region or regions, for all properties use domains
+
+## Overview
+
+Name domains_list_only
+Type Resource
+Description A domain defined for 3rd party data source in Profile Service
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The URL of the SQS dead letter queue
+string
The default encryption key
+integer
The default number of days until the data within the domain expires.
+object
The process of matching duplicate profiles. If Matching = true, Amazon Connect Customer Profiles starts a weekly batch process called Identity Resolution Job. If you do not specify a date and time for Identity Resolution Job to run, by default it runs every Saturday at 12AM UTC to detect duplicate profiles in your domains. After the Identity Resolution Job completes, use the GetMatches API to return and review the results. Or, if you have configured ExportingConfig in the MatchingRequest, you can download the results from S3.
+object
The process of matching duplicate profiles using the Rule-Based matching. If RuleBasedMatching = true, Amazon Connect Customer Profiles will start to match and merge your profiles according to your configuration in the RuleBasedMatchingRequest. You can use the ListRuleBasedMatches and GetSimilarProfiles API to return and review the results. Also, if you have configured ExportingConfig in the RuleBasedMatchingRequest, you can download the results from S3.
+object
Usage-specific statistics about the domain.
+array
The tags (keys and values) associated with the domain
+string
The time of this integration got created
+string
The time of this integration got last updated at
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all domains
in a region.
+```sql
+SELECT
+region,
+domain_name
+FROM aws.customerprofiles.domains_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domains_list_only
resource, see domains
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/event_stream_tags/index.md b/docs/aws-docs/providers/aws/customerprofiles/event_stream_tags/index.md
new file mode 100644
index 0000000000..6cbe698423
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/event_stream_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: event_stream_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - event_stream_tags
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for event_streams
in a region
+
+## Overview
+
+Name event_stream_tags
+Type Resource
+Description An Event Stream resource of Amazon Connect Customer Profiles
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The name of the event stream.
+string
The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name
+string
A unique identifier for the event stream.
+string
The timestamp of when the export was created.
+string
The operational state of destination stream for export.
+object
Details regarding the Kinesis stream.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all event_streams
in a region.
+```sql
+SELECT
+region,
+domain_name,
+event_stream_name,
+uri,
+event_stream_arn,
+created_at,
+state,
+destination_details,
+tag_key,
+tag_value
+FROM aws.customerprofiles.event_stream_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the event_stream_tags
resource, see event_streams
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/event_streams/index.md b/docs/aws-docs/providers/aws/customerprofiles/event_streams/index.md
index 4849dad1df..dc0dea48d2 100644
--- a/docs/aws-docs/providers/aws/customerprofiles/event_streams/index.md
+++ b/docs/aws-docs/providers/aws/customerprofiles/event_streams/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets an event_stream
resource or lists
-
+
SELECT
@@ -77,16 +77,22 @@ Creates, updates, deletes or gets an event_stream
resource or lists
## `SELECT` examples
-List all event_streams
in a region.
+Gets all event_streams
in a region.
```sql
SELECT
region,
domain_name,
-event_stream_name
+event_stream_name,
+uri,
+event_stream_arn,
+tags,
+created_at,
+state,
+destination_details
FROM aws.customerprofiles.event_streams
WHERE region = 'us-east-1';
```
-Gets all properties from an event_stream
.
+Gets all properties from an individual event_stream
.
```sql
SELECT
region,
@@ -102,7 +108,6 @@ FROM aws.customerprofiles.event_streams
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new event_stream
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/customerprofiles/event_streams_list_only/index.md b/docs/aws-docs/providers/aws/customerprofiles/event_streams_list_only/index.md
new file mode 100644
index 0000000000..7a5f815bfa
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/event_streams_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: event_streams_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - event_streams_list_only
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists event_streams
in a region or regions, for all properties use event_streams
+
+## Overview
+
+Name event_streams_list_only
+Type Resource
+Description An Event Stream resource of Amazon Connect Customer Profiles
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The name of the event stream.
+string
The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name
+string
A unique identifier for the event stream.
+array
The tags used to organize, track, or control access for this resource.
+string
The timestamp of when the export was created.
+string
The operational state of destination stream for export.
+object
Details regarding the Kinesis stream.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all event_streams
in a region.
+```sql
+SELECT
+region,
+domain_name,
+event_stream_name
+FROM aws.customerprofiles.event_streams_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the event_streams_list_only
resource, see event_streams
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/index.md b/docs/aws-docs/providers/aws/customerprofiles/index.md
index 414c884102..9c4c47772f 100644
--- a/docs/aws-docs/providers/aws/customerprofiles/index.md
+++ b/docs/aws-docs/providers/aws/customerprofiles/index.md
@@ -20,7 +20,7 @@ The customerprofiles service documentation.
-total resources: 5
+total resources: 15
@@ -29,12 +29,22 @@ The customerprofiles service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/customerprofiles/integration_tags/index.md b/docs/aws-docs/providers/aws/customerprofiles/integration_tags/index.md
new file mode 100644
index 0000000000..54b5144291
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/integration_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: integration_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - integration_tags
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for integrations
in a region
+
+## Overview
+
+Name integration_tags
+Type Resource
+Description The resource schema for creating an Amazon Connect Customer Profiles Integration.
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The URI of the S3 bucket or any other type of data source.
+object
+string
The name of the ObjectType defined for the 3rd party data in Profile Service
+string
The time of this integration got created
+string
The time of this integration got last updated at
+array
The mapping between 3rd party event types and ObjectType names
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all integrations
in a region.
+```sql
+SELECT
+region,
+domain_name,
+uri,
+flow_definition,
+object_type_name,
+created_at,
+last_updated_at,
+object_type_names,
+tag_key,
+tag_value
+FROM aws.customerprofiles.integration_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the integration_tags
resource, see integrations
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/integrations/index.md b/docs/aws-docs/providers/aws/customerprofiles/integrations/index.md
index 29bed84b95..cbdf8a05f3 100644
--- a/docs/aws-docs/providers/aws/customerprofiles/integrations/index.md
+++ b/docs/aws-docs/providers/aws/customerprofiles/integrations/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets an integration
resource or lists
-
+
SELECT
@@ -77,16 +77,22 @@ Creates, updates, deletes or gets an integration
resource or lists
## `SELECT` examples
-List all integrations
in a region.
+Gets all integrations
in a region.
```sql
SELECT
region,
domain_name,
-uri
+uri,
+flow_definition,
+object_type_name,
+created_at,
+last_updated_at,
+tags,
+object_type_names
FROM aws.customerprofiles.integrations
WHERE region = 'us-east-1';
```
-Gets all properties from an integration
.
+Gets all properties from an individual integration
.
```sql
SELECT
region,
@@ -102,7 +108,6 @@ FROM aws.customerprofiles.integrations
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new integration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/customerprofiles/integrations_list_only/index.md b/docs/aws-docs/providers/aws/customerprofiles/integrations_list_only/index.md
new file mode 100644
index 0000000000..f531f76640
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/integrations_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: integrations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - integrations_list_only
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists integrations
in a region or regions, for all properties use integrations
+
+## Overview
+
+Name integrations_list_only
+Type Resource
+Description The resource schema for creating an Amazon Connect Customer Profiles Integration.
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The URI of the S3 bucket or any other type of data source.
+object
+string
The name of the ObjectType defined for the 3rd party data in Profile Service
+string
The time of this integration got created
+string
The time of this integration got last updated at
+array
The tags (keys and values) associated with the integration
+array
The mapping between 3rd party event types and ObjectType names
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all integrations
in a region.
+```sql
+SELECT
+region,
+domain_name,
+uri
+FROM aws.customerprofiles.integrations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the integrations_list_only
resource, see integrations
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/object_type_tags/index.md b/docs/aws-docs/providers/aws/customerprofiles/object_type_tags/index.md
new file mode 100644
index 0000000000..c3c65f88d8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/object_type_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: object_type_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - object_type_tags
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for object_types
in a region
+
+## Overview
+
+Name object_type_tags
+Type Resource
+Description An ObjectType resource of Amazon Connect Customer Profiles
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The name of the profile object type.
+boolean
Indicates whether a profile should be created when data is received.
+string
Description of the profile object type.
+string
The default encryption key
+integer
The default number of days until the data within the domain expires.
+array
A list of the name and ObjectType field.
+array
A list of unique keys that can be used to map data to the profile.
+string
The time of this integration got created.
+string
The time of this integration got last updated at.
+string
The format of your sourceLastUpdatedTimestamp that was previously set up.
+string
A unique identifier for the object template.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all object_types
in a region.
+```sql
+SELECT
+region,
+domain_name,
+object_type_name,
+allow_profile_creation,
+description,
+encryption_key,
+expiration_days,
+fields,
+keys,
+created_at,
+last_updated_at,
+source_last_updated_timestamp_format,
+template_id,
+tag_key,
+tag_value
+FROM aws.customerprofiles.object_type_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the object_type_tags
resource, see object_types
+
+
diff --git a/docs/aws-docs/providers/aws/customerprofiles/object_types/index.md b/docs/aws-docs/providers/aws/customerprofiles/object_types/index.md
index 986ed0ff51..d034c3fec8 100644
--- a/docs/aws-docs/providers/aws/customerprofiles/object_types/index.md
+++ b/docs/aws-docs/providers/aws/customerprofiles/object_types/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets an object_type
resource or lists
-
+
SELECT
@@ -82,16 +82,27 @@ Creates, updates, deletes or gets an object_type
resource or lists
## `SELECT` examples
-List all object_types
in a region.
+Gets all object_types
in a region.
```sql
SELECT
region,
domain_name,
-object_type_name
+object_type_name,
+allow_profile_creation,
+description,
+encryption_key,
+expiration_days,
+fields,
+keys,
+created_at,
+last_updated_at,
+source_last_updated_timestamp_format,
+tags,
+template_id
FROM aws.customerprofiles.object_types
WHERE region = 'us-east-1';
```
-Gets all properties from an object_type
.
+Gets all properties from an individual object_type
.
```sql
SELECT
region,
@@ -112,7 +123,6 @@ FROM aws.customerprofiles.object_types
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new object_type
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/customerprofiles/object_types_list_only/index.md b/docs/aws-docs/providers/aws/customerprofiles/object_types_list_only/index.md
new file mode 100644
index 0000000000..32d75f7564
--- /dev/null
+++ b/docs/aws-docs/providers/aws/customerprofiles/object_types_list_only/index.md
@@ -0,0 +1,80 @@
+---
+title: object_types_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - object_types_list_only
+ - customerprofiles
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists object_types
in a region or regions, for all properties use object_types
+
+## Overview
+
+Name object_types_list_only
+Type Resource
+Description An ObjectType resource of Amazon Connect Customer Profiles
+Id
+
+
+## Fields
+Name Datatype Description string
The unique name of the domain.
+string
The name of the profile object type.
+boolean
Indicates whether a profile should be created when data is received.
+string
Description of the profile object type.
+string
The default encryption key
+integer
The default number of days until the data within the domain expires.
+array
A list of the name and ObjectType field.
+array
A list of unique keys that can be used to map data to the profile.
+string
The time of this integration got created.
+string
The time of this integration got last updated at.
+string
The format of your sourceLastUpdatedTimestamp that was previously set up.
+array
The tags (keys and values) associated with the integration.
+string
A unique identifier for the object template.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all object_types
in a region.
+```sql
+SELECT
+region,
+domain_name,
+object_type_name
+FROM aws.customerprofiles.object_types_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the object_types_list_only
resource, see object_types
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/dataset_tags/index.md b/docs/aws-docs/providers/aws/databrew/dataset_tags/index.md
new file mode 100644
index 0000000000..619c8d79f0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/dataset_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: dataset_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - dataset_tags
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for datasets
in a region
+
+## Overview
+
+Name dataset_tags
+Type Resource
+Description Resource schema for AWS::DataBrew::Dataset.
+Id
+
+
+## Fields
+Name Datatype Description string
Dataset name
+string
Dataset format
+object
Format options for dataset
+object
Input
+object
PathOptions
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all datasets
in a region.
+```sql
+SELECT
+region,
+name,
+format,
+format_options,
+input,
+path_options,
+tag_key,
+tag_value
+FROM aws.databrew.dataset_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the dataset_tags
resource, see datasets
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/datasets/index.md b/docs/aws-docs/providers/aws/databrew/datasets/index.md
index e4d9101a8a..e4c4374e87 100644
--- a/docs/aws-docs/providers/aws/databrew/datasets/index.md
+++ b/docs/aws-docs/providers/aws/databrew/datasets/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a dataset
resource or lists
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a dataset
resource or lists
## `SELECT` examples
-List all datasets
in a region.
+Gets all datasets
in a region.
```sql
SELECT
region,
-name
+name,
+format,
+format_options,
+input,
+path_options,
+tags
FROM aws.databrew.datasets
WHERE region = 'us-east-1';
```
-Gets all properties from a dataset
.
+Gets all properties from an individual dataset
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.databrew.datasets
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new dataset
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/databrew/datasets_list_only/index.md b/docs/aws-docs/providers/aws/databrew/datasets_list_only/index.md
new file mode 100644
index 0000000000..865baf4cce
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/datasets_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: datasets_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - datasets_list_only
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists datasets
in a region or regions, for all properties use datasets
+
+## Overview
+
+Name datasets_list_only
+Type Resource
+Description Resource schema for AWS::DataBrew::Dataset.
+Id
+
+
+## Fields
+Name Datatype Description string
Dataset name
+string
Dataset format
+object
Format options for dataset
+object
Input
+object
PathOptions
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all datasets
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.databrew.datasets_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the datasets_list_only
resource, see datasets
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/index.md b/docs/aws-docs/providers/aws/databrew/index.md
index 7288574a4a..6217ac35a0 100644
--- a/docs/aws-docs/providers/aws/databrew/index.md
+++ b/docs/aws-docs/providers/aws/databrew/index.md
@@ -20,7 +20,7 @@ The databrew service documentation.
-total resources: 6
+total resources: 18
@@ -29,13 +29,25 @@ The databrew service documentation.
## Resources
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/databrew/job_tags/index.md b/docs/aws-docs/providers/aws/databrew/job_tags/index.md
new file mode 100644
index 0000000000..a534b5a307
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/job_tags/index.md
@@ -0,0 +1,107 @@
+---
+title: job_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - job_tags
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for jobs
in a region
+
+## Overview
+
+Name job_tags
+Type Resource
+Description Resource schema for AWS::DataBrew::Job.
+Id
+
+
+## Fields
+Name Datatype Description string
Dataset name
+string
Encryption Key Arn
+string
Encryption mode
+string
Job name
+string
Job type
+string
Log subscription
+integer
Max capacity
+integer
Max retries
+array
+array
+array
+object
Output location
+string
Project name
+object
Resource schema for AWS::DataBrew::Recipe.
+string
Role arn
+integer
Timeout
+object
Job Sample
+object
Profile Job configuration
+array
Data quality rules configuration
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all jobs
in a region.
+```sql
+SELECT
+region,
+dataset_name,
+encryption_key_arn,
+encryption_mode,
+name,
+type,
+log_subscription,
+max_capacity,
+max_retries,
+outputs,
+data_catalog_outputs,
+database_outputs,
+output_location,
+project_name,
+recipe,
+role_arn,
+timeout,
+job_sample,
+profile_configuration,
+validation_configurations,
+tag_key,
+tag_value
+FROM aws.databrew.job_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the job_tags
resource, see jobs
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/jobs/index.md b/docs/aws-docs/providers/aws/databrew/jobs/index.md
index f060ee9879..d7b23f30cf 100644
--- a/docs/aws-docs/providers/aws/databrew/jobs/index.md
+++ b/docs/aws-docs/providers/aws/databrew/jobs/index.md
@@ -77,7 +77,7 @@ Creates, updates, deletes or gets a job
resource or lists job
-
+
SELECT
@@ -89,15 +89,34 @@ Creates, updates, deletes or gets a job
resource or lists job
## `SELECT` examples
-List all jobs
in a region.
+Gets all jobs
in a region.
```sql
SELECT
region,
-name
+dataset_name,
+encryption_key_arn,
+encryption_mode,
+name,
+type,
+log_subscription,
+max_capacity,
+max_retries,
+outputs,
+data_catalog_outputs,
+database_outputs,
+output_location,
+project_name,
+recipe,
+role_arn,
+tags,
+timeout,
+job_sample,
+profile_configuration,
+validation_configurations
FROM aws.databrew.jobs
WHERE region = 'us-east-1';
```
-Gets all properties from a job
.
+Gets all properties from an individual job
.
```sql
SELECT
region,
@@ -125,7 +144,6 @@ FROM aws.databrew.jobs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new job
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/databrew/jobs_list_only/index.md b/docs/aws-docs/providers/aws/databrew/jobs_list_only/index.md
new file mode 100644
index 0000000000..fb32ccf269
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/jobs_list_only/index.md
@@ -0,0 +1,86 @@
+---
+title: jobs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - jobs_list_only
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists jobs
in a region or regions, for all properties use jobs
+
+## Overview
+
+Name jobs_list_only
+Type Resource
+Description Resource schema for AWS::DataBrew::Job.
+Id
+
+
+## Fields
+Name Datatype Description string
Dataset name
+string
Encryption Key Arn
+string
Encryption mode
+string
Job name
+string
Job type
+string
Log subscription
+integer
Max capacity
+integer
Max retries
+array
+array
+array
+object
Output location
+string
Project name
+object
Resource schema for AWS::DataBrew::Recipe.
+string
Role arn
+array
+integer
Timeout
+object
Job Sample
+object
Profile Job configuration
+array
Data quality rules configuration
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all jobs
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.databrew.jobs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the jobs_list_only
resource, see jobs
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/project_tags/index.md b/docs/aws-docs/providers/aws/databrew/project_tags/index.md
new file mode 100644
index 0000000000..dc357316eb
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/project_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: project_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - project_tags
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for projects
in a region
+
+## Overview
+
+Name project_tags
+Type Resource
+Description Resource schema for AWS::DataBrew::Project.
+Id
+
+
+## Fields
+Name Datatype Description string
Dataset name
+string
Project name
+string
Recipe name
+string
Role arn
+object
Sample
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all projects
in a region.
+```sql
+SELECT
+region,
+dataset_name,
+name,
+recipe_name,
+role_arn,
+sample,
+tag_key,
+tag_value
+FROM aws.databrew.project_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the project_tags
resource, see projects
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/projects/index.md b/docs/aws-docs/providers/aws/databrew/projects/index.md
index d2063857d2..2e405cb50a 100644
--- a/docs/aws-docs/providers/aws/databrew/projects/index.md
+++ b/docs/aws-docs/providers/aws/databrew/projects/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a project
resource or lists
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a project
resource or lists
## `SELECT` examples
-List all projects
in a region.
+Gets all projects
in a region.
```sql
SELECT
region,
-name
+dataset_name,
+name,
+recipe_name,
+role_arn,
+sample,
+tags
FROM aws.databrew.projects
WHERE region = 'us-east-1';
```
-Gets all properties from a project
.
+Gets all properties from an individual project
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.databrew.projects
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new project
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/databrew/projects_list_only/index.md b/docs/aws-docs/providers/aws/databrew/projects_list_only/index.md
new file mode 100644
index 0000000000..e7afef8632
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/projects_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: projects_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - projects_list_only
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists projects
in a region or regions, for all properties use projects
+
+## Overview
+
+Name projects_list_only
+Type Resource
+Description Resource schema for AWS::DataBrew::Project.
+Id
+
+
+## Fields
+Name Datatype Description string
Dataset name
+string
Project name
+string
Recipe name
+string
Role arn
+object
Sample
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all projects
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.databrew.projects_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the projects_list_only
resource, see projects
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/recipe_tags/index.md b/docs/aws-docs/providers/aws/databrew/recipe_tags/index.md
new file mode 100644
index 0000000000..b1a218d8e6
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/recipe_tags/index.md
@@ -0,0 +1,75 @@
+---
+title: recipe_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - recipe_tags
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for recipes
in a region
+
+## Overview
+
+Name recipe_tags
+Type Resource
+Description Resource schema for AWS::DataBrew::Recipe.
+Id
+
+
+## Fields
+Name Datatype Description string
Description of the recipe
+string
Recipe name
+array
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all recipes
in a region.
+```sql
+SELECT
+region,
+description,
+name,
+steps,
+tag_key,
+tag_value
+FROM aws.databrew.recipe_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the recipe_tags
resource, see recipes
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/recipes/index.md b/docs/aws-docs/providers/aws/databrew/recipes/index.md
index 20d8daf674..fc6fc1f3d1 100644
--- a/docs/aws-docs/providers/aws/databrew/recipes/index.md
+++ b/docs/aws-docs/providers/aws/databrew/recipes/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a recipe
resource or lists
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets a recipe
resource or lists
## `SELECT` examples
-List all recipes
in a region.
+Gets all recipes
in a region.
```sql
SELECT
region,
-name
+description,
+name,
+steps,
+tags
FROM aws.databrew.recipes
WHERE region = 'us-east-1';
```
-Gets all properties from a recipe
.
+Gets all properties from an individual recipe
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.databrew.recipes
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new recipe
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/databrew/recipes_list_only/index.md b/docs/aws-docs/providers/aws/databrew/recipes_list_only/index.md
new file mode 100644
index 0000000000..8e9ac54279
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/recipes_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: recipes_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - recipes_list_only
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists recipes
in a region or regions, for all properties use recipes
+
+## Overview
+
+Name recipes_list_only
+Type Resource
+Description Resource schema for AWS::DataBrew::Recipe.
+Id
+
+
+## Fields
+Name Datatype Description string
Description of the recipe
+string
Recipe name
+array
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all recipes
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.databrew.recipes_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the recipes_list_only
resource, see recipes
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/ruleset_tags/index.md b/docs/aws-docs/providers/aws/databrew/ruleset_tags/index.md
new file mode 100644
index 0000000000..9db4cd3cfa
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/ruleset_tags/index.md
@@ -0,0 +1,77 @@
+---
+title: ruleset_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - ruleset_tags
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for rulesets
in a region
+
+## Overview
+
+Name ruleset_tags
+Type Resource
+Description Resource schema for AWS::DataBrew::Ruleset.
+Id
+
+
+## Fields
+Name Datatype Description string
Name of the Ruleset
+string
Description of the Ruleset
+string
Arn of the target resource (dataset) to apply the ruleset to
+array
List of the data quality rules in the ruleset
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all rulesets
in a region.
+```sql
+SELECT
+region,
+name,
+description,
+target_arn,
+rules,
+tag_key,
+tag_value
+FROM aws.databrew.ruleset_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the ruleset_tags
resource, see rulesets
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/rulesets/index.md b/docs/aws-docs/providers/aws/databrew/rulesets/index.md
index 612e7b6d6d..0899de1ecb 100644
--- a/docs/aws-docs/providers/aws/databrew/rulesets/index.md
+++ b/docs/aws-docs/providers/aws/databrew/rulesets/index.md
@@ -62,7 +62,7 @@ Creates, updates, deletes or gets a ruleset
resource or lists
-
+
SELECT
@@ -74,15 +74,19 @@ Creates, updates, deletes or gets a ruleset
resource or lists
## `SELECT` examples
-List all rulesets
in a region.
+Gets all rulesets
in a region.
```sql
SELECT
region,
-name
+name,
+description,
+target_arn,
+rules,
+tags
FROM aws.databrew.rulesets
WHERE region = 'us-east-1';
```
-Gets all properties from a ruleset
.
+Gets all properties from an individual ruleset
.
```sql
SELECT
region,
@@ -95,7 +99,6 @@ FROM aws.databrew.rulesets
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new ruleset
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/databrew/rulesets_list_only/index.md b/docs/aws-docs/providers/aws/databrew/rulesets_list_only/index.md
new file mode 100644
index 0000000000..1fcf6344c0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/rulesets_list_only/index.md
@@ -0,0 +1,71 @@
+---
+title: rulesets_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - rulesets_list_only
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists rulesets
in a region or regions, for all properties use rulesets
+
+## Overview
+
+Name rulesets_list_only
+Type Resource
+Description Resource schema for AWS::DataBrew::Ruleset.
+Id
+
+
+## Fields
+Name Datatype Description string
Name of the Ruleset
+string
Description of the Ruleset
+string
Arn of the target resource (dataset) to apply the ruleset to
+array
List of the data quality rules in the ruleset
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all rulesets
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.databrew.rulesets_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the rulesets_list_only
resource, see rulesets
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/schedule_tags/index.md b/docs/aws-docs/providers/aws/databrew/schedule_tags/index.md
new file mode 100644
index 0000000000..6e7a737900
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/schedule_tags/index.md
@@ -0,0 +1,75 @@
+---
+title: schedule_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - schedule_tags
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for schedules
in a region
+
+## Overview
+
+Name schedule_tags
+Type Resource
+Description Resource schema for AWS::DataBrew::Schedule.
+Id
+
+
+## Fields
+Name Datatype Description array
+string
Schedule cron
+string
Schedule Name
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all schedules
in a region.
+```sql
+SELECT
+region,
+job_names,
+cron_expression,
+name,
+tag_key,
+tag_value
+FROM aws.databrew.schedule_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the schedule_tags
resource, see schedules
+
+
diff --git a/docs/aws-docs/providers/aws/databrew/schedules/index.md b/docs/aws-docs/providers/aws/databrew/schedules/index.md
index 60feb82fc4..e45d66919b 100644
--- a/docs/aws-docs/providers/aws/databrew/schedules/index.md
+++ b/docs/aws-docs/providers/aws/databrew/schedules/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a schedule
resource or lists
-
+
SELECT
@@ -73,15 +73,18 @@ Creates, updates, deletes or gets a schedule
resource or lists
## `SELECT` examples
-List all schedules
in a region.
+Gets all schedules
in a region.
```sql
SELECT
region,
-name
+job_names,
+cron_expression,
+name,
+tags
FROM aws.databrew.schedules
WHERE region = 'us-east-1';
```
-Gets all properties from a schedule
.
+Gets all properties from an individual schedule
.
```sql
SELECT
region,
@@ -93,7 +96,6 @@ FROM aws.databrew.schedules
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new schedule
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/databrew/schedules_list_only/index.md b/docs/aws-docs/providers/aws/databrew/schedules_list_only/index.md
new file mode 100644
index 0000000000..0d1f19c30d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/databrew/schedules_list_only/index.md
@@ -0,0 +1,70 @@
+---
+title: schedules_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - schedules_list_only
+ - databrew
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists schedules
in a region or regions, for all properties use schedules
+
+## Overview
+
+Name schedules_list_only
+Type Resource
+Description Resource schema for AWS::DataBrew::Schedule.
+Id
+
+
+## Fields
+Name Datatype Description array
+string
Schedule cron
+string
Schedule Name
+array
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all schedules
in a region.
+```sql
+SELECT
+region,
+name
+FROM aws.databrew.schedules_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the schedules_list_only
resource, see schedules
+
+
diff --git a/docs/aws-docs/providers/aws/datapipeline/index.md b/docs/aws-docs/providers/aws/datapipeline/index.md
index 6a5aafdc1c..fc25a652be 100644
--- a/docs/aws-docs/providers/aws/datapipeline/index.md
+++ b/docs/aws-docs/providers/aws/datapipeline/index.md
@@ -20,7 +20,7 @@ The datapipeline service documentation.
-total resources: 1
+total resources: 2
@@ -32,6 +32,6 @@ The datapipeline service documentation.
pipelines
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/datapipeline/pipelines/index.md b/docs/aws-docs/providers/aws/datapipeline/pipelines/index.md
index 166438cc9b..5913714c45 100644
--- a/docs/aws-docs/providers/aws/datapipeline/pipelines/index.md
+++ b/docs/aws-docs/providers/aws/datapipeline/pipelines/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a pipeline
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a pipeline
resource or lists
## `SELECT` examples
-List all pipelines
in a region.
+Gets all pipelines
in a region.
```sql
SELECT
region,
+activate,
+description,
+name,
+parameter_objects,
+parameter_values,
+pipeline_objects,
+pipeline_tags,
pipeline_id
FROM aws.datapipeline.pipelines
WHERE region = 'us-east-1';
```
-Gets all properties from a pipeline
.
+Gets all properties from an individual pipeline
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.datapipeline.pipelines
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new pipeline
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datapipeline/pipelines_list_only/index.md b/docs/aws-docs/providers/aws/datapipeline/pipelines_list_only/index.md
new file mode 100644
index 0000000000..dc59ab5819
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datapipeline/pipelines_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: pipelines_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - pipelines_list_only
+ - datapipeline
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists pipelines
in a region or regions, for all properties use pipelines
+
+## Overview
+
+Name pipelines_list_only
+Type Resource
+Description An example resource schema demonstrating some basic constructs and validation rules.
+Id
+
+
+## Fields
+Name Datatype Description boolean
Indicates whether to validate and start the pipeline or stop an active pipeline. By default, the value is set to true.
+string
A description of the pipeline.
+string
The name of the pipeline.
+array
The parameter objects used with the pipeline.
+array
The parameter values used with the pipeline.
+array
The objects that define the pipeline. These objects overwrite the existing pipeline definition. Not all objects, fields, and values can be updated. For information about restrictions, see Editing Your Pipeline in the AWS Data Pipeline Developer Guide.
+array
A list of arbitrary tags (key-value pairs) to associate with the pipeline, which you can use to control permissions. For more information, see Controlling Access to Pipelines and Resources in the AWS Data Pipeline Developer Guide.
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all pipelines
in a region.
+```sql
+SELECT
+region,
+pipeline_id
+FROM aws.datapipeline.pipelines_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the pipelines_list_only
resource, see pipelines
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/agent_tags/index.md b/docs/aws-docs/providers/aws/datasync/agent_tags/index.md
new file mode 100644
index 0000000000..d957672d22
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/agent_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: agent_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - agent_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for agents
in a region
+
+## Overview
+
+Name agent_tags
+Type Resource
+Description Resource schema for AWS::DataSync::Agent.
+Id
+
+
+## Fields
+Name Datatype Description string
The name configured for the agent. Text reference used to identify the agent in the console.
+string
Activation key of the Agent.
+array
The ARNs of the security group used to protect your data transfer task subnets.
+array
The ARNs of the subnets in which DataSync will create elastic network interfaces for each data transfer task.
+string
The ID of the VPC endpoint that the agent has access to.
+string
The service endpoints that the agent will connect to.
+string
The DataSync Agent ARN.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all agents
in a region.
+```sql
+SELECT
+region,
+agent_name,
+activation_key,
+security_group_arns,
+subnet_arns,
+vpc_endpoint_id,
+endpoint_type,
+agent_arn,
+tag_key,
+tag_value
+FROM aws.datasync.agent_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the agent_tags
resource, see agents
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/agents/index.md b/docs/aws-docs/providers/aws/datasync/agents/index.md
index 0c46817612..42b628fdbd 100644
--- a/docs/aws-docs/providers/aws/datasync/agents/index.md
+++ b/docs/aws-docs/providers/aws/datasync/agents/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets an agent
resource or lists
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets an agent
resource or lists
## `SELECT` examples
-List all agents
in a region.
+Gets all agents
in a region.
```sql
SELECT
region,
+agent_name,
+activation_key,
+security_group_arns,
+subnet_arns,
+vpc_endpoint_id,
+endpoint_type,
+tags,
agent_arn
FROM aws.datasync.agents
WHERE region = 'us-east-1';
```
-Gets all properties from an agent
.
+Gets all properties from an individual agent
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.datasync.agents
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new agent
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/agents_list_only/index.md b/docs/aws-docs/providers/aws/datasync/agents_list_only/index.md
new file mode 100644
index 0000000000..c00a3d33a1
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/agents_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: agents_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - agents_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists agents
in a region or regions, for all properties use agents
+
+## Overview
+
+Name agents_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::Agent.
+Id
+
+
+## Fields
+Name Datatype Description string
The name configured for the agent. Text reference used to identify the agent in the console.
+string
Activation key of the Agent.
+array
The ARNs of the security group used to protect your data transfer task subnets.
+array
The ARNs of the subnets in which DataSync will create elastic network interfaces for each data transfer task.
+string
The ID of the VPC endpoint that the agent has access to.
+string
The service endpoints that the agent will connect to.
+array
An array of key-value pairs to apply to this resource.
+string
The DataSync Agent ARN.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all agents
in a region.
+```sql
+SELECT
+region,
+agent_arn
+FROM aws.datasync.agents_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the agents_list_only
resource, see agents
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/index.md b/docs/aws-docs/providers/aws/datasync/index.md
index 945434a9bb..c3c5889e1c 100644
--- a/docs/aws-docs/providers/aws/datasync/index.md
+++ b/docs/aws-docs/providers/aws/datasync/index.md
@@ -20,7 +20,7 @@ The datasync service documentation.
-total resources: 14
+total resources: 42
@@ -29,21 +29,49 @@ The datasync service documentation.
## Resources
+agent_tags
agents
+agents_list_only
+location_azure_blob_tags
location_azure_blobs
+location_azure_blobs_list_only
location_efs
+location_efs_list_only
+location_efs_tags
location_hdfs
+location_hdfs_list_only
+location_hdfs_tags
location_nfs
+location_nfs_list_only
+location_nfs_tags
+location_object_storage_tags
location_object_storages
-location_s3s
+location_object_storages_list_only
+location_s3_tags
+location_s3s
+location_s3s_list_only
+location_smb_tags
location_smbs
+location_smbs_list_only
+locationf_sx_lustre_tags
locationf_sx_lustres
+locationf_sx_lustres_list_only
+locationf_sx_ontap_tags
locationf_sx_ontaps
+locationf_sx_ontaps_list_only
locationf_sx_open_zfs
+locationf_sx_open_zfs_list_only
+locationf_sx_open_zfs_tags
locationf_sx_windows
+locationf_sx_windows_list_only
+locationf_sx_windows_tags
+storage_system_tags
storage_systems
-tasks
+storage_systems_list_only
+task_tags
+tasks
+tasks_list_only
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/datasync/location_azure_blob_tags/index.md b/docs/aws-docs/providers/aws/datasync/location_azure_blob_tags/index.md
new file mode 100644
index 0000000000..672571ed2f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_azure_blob_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: location_azure_blob_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_azure_blob_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for location_azure_blobs
in a region
+
+## Overview
+
+Name location_azure_blob_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationAzureBlob.
+Id
+
+
+## Fields
+Name Datatype Description array
The Amazon Resource Names (ARNs) of agents to use for an Azure Blob Location.
+string
The specific authentication type that you want DataSync to use to access your Azure Blob Container.
+object
Specifies the shared access signature (SAS) that DataSync uses to access your Azure Blob Storage container.
+string
The URL of the Azure Blob container that was described.
+string
Specifies a blob type for the objects you're transferring into your Azure Blob Storage container.
+string
Specifies an access tier for the objects you're transferring into your Azure Blob Storage container.
+string
The subdirectory in the Azure Blob Container that is used to read data from the Azure Blob Source Location.
+string
The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
+string
The URL of the Azure Blob Location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all location_azure_blobs
in a region.
+```sql
+SELECT
+region,
+agent_arns,
+azure_blob_authentication_type,
+azure_blob_sas_configuration,
+azure_blob_container_url,
+azure_blob_type,
+azure_access_tier,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.location_azure_blob_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_azure_blob_tags
resource, see location_azure_blobs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_azure_blobs/index.md b/docs/aws-docs/providers/aws/datasync/location_azure_blobs/index.md
index 7c75fad0c1..168418b86d 100644
--- a/docs/aws-docs/providers/aws/datasync/location_azure_blobs/index.md
+++ b/docs/aws-docs/providers/aws/datasync/location_azure_blobs/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a location_azure_blob
resource or
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a location_azure_blob
resource or
## `SELECT` examples
-List all location_azure_blobs
in a region.
+Gets all location_azure_blobs
in a region.
```sql
SELECT
region,
-location_arn
+agent_arns,
+azure_blob_authentication_type,
+azure_blob_sas_configuration,
+azure_blob_container_url,
+azure_blob_type,
+azure_access_tier,
+subdirectory,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.location_azure_blobs
WHERE region = 'us-east-1';
```
-Gets all properties from a location_azure_blob
.
+Gets all properties from an individual location_azure_blob
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.datasync.location_azure_blobs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new location_azure_blob
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/location_azure_blobs_list_only/index.md b/docs/aws-docs/providers/aws/datasync/location_azure_blobs_list_only/index.md
new file mode 100644
index 0000000000..544e266f53
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_azure_blobs_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: location_azure_blobs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_azure_blobs_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists location_azure_blobs
in a region or regions, for all properties use location_azure_blobs
+
+## Overview
+
+Name location_azure_blobs_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationAzureBlob.
+Id
+
+
+## Fields
+Name Datatype Description array
The Amazon Resource Names (ARNs) of agents to use for an Azure Blob Location.
+string
The specific authentication type that you want DataSync to use to access your Azure Blob Container.
+object
Specifies the shared access signature (SAS) that DataSync uses to access your Azure Blob Storage container.
+string
The URL of the Azure Blob container that was described.
+string
Specifies a blob type for the objects you're transferring into your Azure Blob Storage container.
+string
Specifies an access tier for the objects you're transferring into your Azure Blob Storage container.
+string
The subdirectory in the Azure Blob Container that is used to read data from the Azure Blob Source Location.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
+string
The URL of the Azure Blob Location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all location_azure_blobs
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.location_azure_blobs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_azure_blobs_list_only
resource, see location_azure_blobs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_efs/index.md b/docs/aws-docs/providers/aws/datasync/location_efs/index.md
index d2f8c33dc3..2620401e35 100644
--- a/docs/aws-docs/providers/aws/datasync/location_efs/index.md
+++ b/docs/aws-docs/providers/aws/datasync/location_efs/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a location_ef
resource or lists <
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a location_ef
resource or lists <
## `SELECT` examples
-List all location_efs
in a region.
+Gets all location_efs
in a region.
```sql
SELECT
region,
-location_arn
+ec2_config,
+efs_filesystem_arn,
+access_point_arn,
+file_system_access_role_arn,
+in_transit_encryption,
+subdirectory,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.location_efs
WHERE region = 'us-east-1';
```
-Gets all properties from a location_ef
.
+Gets all properties from an individual location_ef
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.datasync.location_efs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new location_ef
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/location_efs_list_only/index.md b/docs/aws-docs/providers/aws/datasync/location_efs_list_only/index.md
new file mode 100644
index 0000000000..d176955288
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_efs_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: location_efs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_efs_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists location_efs
in a region or regions, for all properties use location_efs
+
+## Overview
+
+Name location_efs_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationEFS.
+Id
+
+
+## Fields
+Name Datatype Description object
The subnet and security group that DataSync uses to access target EFS file system.
+string
The Amazon Resource Name (ARN) for the Amazon EFS file system.
+string
The Amazon Resource Name (ARN) for the Amazon EFS Access point that DataSync uses when accessing the EFS file system.
+string
The Amazon Resource Name (ARN) of the AWS IAM role that the DataSync will assume when mounting the EFS file system.
+string
Protocol that is used for encrypting the traffic exchanged between the DataSync Agent and the EFS file system.
+string
A subdirectory in the location's path. This subdirectory in the EFS file system is used to read data from the EFS source location or write data to the EFS destination.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the Amazon EFS file system location that is created.
+string
The URL of the EFS location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all location_efs
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.location_efs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_efs_list_only
resource, see location_efs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_efs_tags/index.md b/docs/aws-docs/providers/aws/datasync/location_efs_tags/index.md
new file mode 100644
index 0000000000..60f106e2ad
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_efs_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: location_efs_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_efs_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for location_efs
in a region
+
+## Overview
+
+Name location_efs_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationEFS.
+Id
+
+
+## Fields
+Name Datatype Description object
The subnet and security group that DataSync uses to access target EFS file system.
+string
The Amazon Resource Name (ARN) for the Amazon EFS file system.
+string
The Amazon Resource Name (ARN) for the Amazon EFS Access point that DataSync uses when accessing the EFS file system.
+string
The Amazon Resource Name (ARN) of the AWS IAM role that the DataSync will assume when mounting the EFS file system.
+string
Protocol that is used for encrypting the traffic exchanged between the DataSync Agent and the EFS file system.
+string
A subdirectory in the location's path. This subdirectory in the EFS file system is used to read data from the EFS source location or write data to the EFS destination.
+string
The Amazon Resource Name (ARN) of the Amazon EFS file system location that is created.
+string
The URL of the EFS location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all location_efs
in a region.
+```sql
+SELECT
+region,
+ec2_config,
+efs_filesystem_arn,
+access_point_arn,
+file_system_access_role_arn,
+in_transit_encryption,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.location_efs_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_efs_tags
resource, see location_efs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_hdfs/index.md b/docs/aws-docs/providers/aws/datasync/location_hdfs/index.md
index 61aa1376ca..1dc84cc2b3 100644
--- a/docs/aws-docs/providers/aws/datasync/location_hdfs/index.md
+++ b/docs/aws-docs/providers/aws/datasync/location_hdfs/index.md
@@ -72,7 +72,7 @@ Creates, updates, deletes or gets a location_hdf
resource or lists
-
+
SELECT
@@ -84,15 +84,29 @@ Creates, updates, deletes or gets a location_hdf
resource or lists
## `SELECT` examples
-List all location_hdfs
in a region.
+Gets all location_hdfs
in a region.
```sql
SELECT
region,
-location_arn
+name_nodes,
+block_size,
+replication_factor,
+kms_key_provider_uri,
+qop_configuration,
+authentication_type,
+simple_user,
+kerberos_principal,
+kerberos_keytab,
+kerberos_krb5_conf,
+tags,
+agent_arns,
+subdirectory,
+location_arn,
+location_uri
FROM aws.datasync.location_hdfs
WHERE region = 'us-east-1';
```
-Gets all properties from a location_hdf
.
+Gets all properties from an individual location_hdf
.
```sql
SELECT
region,
@@ -115,7 +129,6 @@ FROM aws.datasync.location_hdfs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new location_hdf
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/location_hdfs_list_only/index.md b/docs/aws-docs/providers/aws/datasync/location_hdfs_list_only/index.md
new file mode 100644
index 0000000000..243312105f
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_hdfs_list_only/index.md
@@ -0,0 +1,81 @@
+---
+title: location_hdfs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_hdfs_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists location_hdfs
in a region or regions, for all properties use location_hdfs
+
+## Overview
+
+Name location_hdfs_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationHDFS.
+Id
+
+
+## Fields
+Name Datatype Description array
An array of Name Node(s) of the HDFS location.
+integer
Size of chunks (blocks) in bytes that the data is divided into when stored in the HDFS cluster.
+integer
Number of copies of each block that exists inside the HDFS cluster.
+string
The identifier for the Key Management Server where the encryption keys that encrypt data inside HDFS clusters are stored.
+object
Configuration information for RPC Protection and Data Transfer Protection. These parameters can be set to AUTHENTICATION, INTEGRITY, or PRIVACY. The default value is PRIVACY.
+string
The authentication mode used to determine identity of user.
+string
The user name that has read and write permissions on the specified HDFS cluster.
+string
The unique identity, or principal, to which Kerberos can assign tickets.
+string
The Base64 string representation of the Keytab file.
+string
The string representation of the Krb5Conf file, or the presigned URL to access the Krb5.conf file within an S3 bucket.
+array
An array of key-value pairs to apply to this resource.
+array
ARN(s) of the agent(s) to use for an HDFS location.
+string
The subdirectory in HDFS that is used to read data from the HDFS source location or write data to the HDFS destination.
+string
The Amazon Resource Name (ARN) of the HDFS location.
+string
The URL of the HDFS location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all location_hdfs
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.location_hdfs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_hdfs_list_only
resource, see location_hdfs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_hdfs_tags/index.md b/docs/aws-docs/providers/aws/datasync/location_hdfs_tags/index.md
new file mode 100644
index 0000000000..b028006641
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_hdfs_tags/index.md
@@ -0,0 +1,97 @@
+---
+title: location_hdfs_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_hdfs_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for location_hdfs
in a region
+
+## Overview
+
+Name location_hdfs_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationHDFS.
+Id
+
+
+## Fields
+Name Datatype Description array
An array of Name Node(s) of the HDFS location.
+integer
Size of chunks (blocks) in bytes that the data is divided into when stored in the HDFS cluster.
+integer
Number of copies of each block that exists inside the HDFS cluster.
+string
The identifier for the Key Management Server where the encryption keys that encrypt data inside HDFS clusters are stored.
+object
Configuration information for RPC Protection and Data Transfer Protection. These parameters can be set to AUTHENTICATION, INTEGRITY, or PRIVACY. The default value is PRIVACY.
+string
The authentication mode used to determine identity of user.
+string
The user name that has read and write permissions on the specified HDFS cluster.
+string
The unique identity, or principal, to which Kerberos can assign tickets.
+string
The Base64 string representation of the Keytab file.
+string
The string representation of the Krb5Conf file, or the presigned URL to access the Krb5.conf file within an S3 bucket.
+array
ARN(s) of the agent(s) to use for an HDFS location.
+string
The subdirectory in HDFS that is used to read data from the HDFS source location or write data to the HDFS destination.
+string
The Amazon Resource Name (ARN) of the HDFS location.
+string
The URL of the HDFS location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all location_hdfs
in a region.
+```sql
+SELECT
+region,
+name_nodes,
+block_size,
+replication_factor,
+kms_key_provider_uri,
+qop_configuration,
+authentication_type,
+simple_user,
+kerberos_principal,
+kerberos_keytab,
+kerberos_krb5_conf,
+agent_arns,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.location_hdfs_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_hdfs_tags
resource, see location_hdfs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_nfs/index.md b/docs/aws-docs/providers/aws/datasync/location_nfs/index.md
index 4db092bb5f..a21cc49d19 100644
--- a/docs/aws-docs/providers/aws/datasync/location_nfs/index.md
+++ b/docs/aws-docs/providers/aws/datasync/location_nfs/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a location_nf
resource or lists <
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a location_nf
resource or lists <
## `SELECT` examples
-List all location_nfs
in a region.
+Gets all location_nfs
in a region.
```sql
SELECT
region,
-location_arn
+mount_options,
+on_prem_config,
+server_hostname,
+subdirectory,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.location_nfs
WHERE region = 'us-east-1';
```
-Gets all properties from a location_nf
.
+Gets all properties from an individual location_nf
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.datasync.location_nfs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new location_nf
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/location_nfs_list_only/index.md b/docs/aws-docs/providers/aws/datasync/location_nfs_list_only/index.md
new file mode 100644
index 0000000000..34b49361b9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_nfs_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: location_nfs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_nfs_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists location_nfs
in a region or regions, for all properties use location_nfs
+
+## Overview
+
+Name location_nfs_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationNFS
+Id
+
+
+## Fields
+Name Datatype Description object
The mount options used by DataSync to access the SMB server.
+object
Contains a list of Amazon Resource Names (ARNs) of agents that are used to connect an NFS server.
+string
The name of the NFS server. This value is the IP address or DNS name of the NFS server.
+string
The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to the NFS destination.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the NFS location.
+string
The URL of the NFS location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all location_nfs
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.location_nfs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_nfs_list_only
resource, see location_nfs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_nfs_tags/index.md b/docs/aws-docs/providers/aws/datasync/location_nfs_tags/index.md
new file mode 100644
index 0000000000..eef6640104
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_nfs_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: location_nfs_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_nfs_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for location_nfs
in a region
+
+## Overview
+
+Name location_nfs_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationNFS
+Id
+
+
+## Fields
+Name Datatype Description object
The mount options used by DataSync to access the SMB server.
+object
Contains a list of Amazon Resource Names (ARNs) of agents that are used to connect an NFS server.
+string
The name of the NFS server. This value is the IP address or DNS name of the NFS server.
+string
The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to the NFS destination.
+string
The Amazon Resource Name (ARN) of the NFS location.
+string
The URL of the NFS location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all location_nfs
in a region.
+```sql
+SELECT
+region,
+mount_options,
+on_prem_config,
+server_hostname,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.location_nfs_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_nfs_tags
resource, see location_nfs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_object_storage_tags/index.md b/docs/aws-docs/providers/aws/datasync/location_object_storage_tags/index.md
new file mode 100644
index 0000000000..828f3405d0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_object_storage_tags/index.md
@@ -0,0 +1,91 @@
+---
+title: location_object_storage_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_object_storage_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for location_object_storages
in a region
+
+## Overview
+
+Name location_object_storage_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationObjectStorage.
+Id
+
+
+## Fields
+Name Datatype Description string
Optional. The access key is used if credentials are required to access the self-managed object storage server.
+array
The Amazon Resource Name (ARN) of the agents associated with the self-managed object storage server location.
+string
The name of the bucket on the self-managed object storage server.
+string
Optional. The secret key is used if credentials are required to access the self-managed object storage server.
+string
X.509 PEM content containing a certificate authority or chain to trust.
+string
The name of the self-managed object storage server. This value is the IP address or Domain Name Service (DNS) name of the object storage server.
+integer
The port that your self-managed server accepts inbound network traffic on.
+string
The protocol that the object storage server uses to communicate.
+string
The subdirectory in the self-managed object storage server that is used to read data from.
+string
The Amazon Resource Name (ARN) of the location that is created.
+string
The URL of the object storage location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all location_object_storages
in a region.
+```sql
+SELECT
+region,
+access_key,
+agent_arns,
+bucket_name,
+secret_key,
+server_certificate,
+server_hostname,
+server_port,
+server_protocol,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.location_object_storage_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_object_storage_tags
resource, see location_object_storages
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_object_storages/index.md b/docs/aws-docs/providers/aws/datasync/location_object_storages/index.md
index e9cb8b77ec..f9d7b3fc93 100644
--- a/docs/aws-docs/providers/aws/datasync/location_object_storages/index.md
+++ b/docs/aws-docs/providers/aws/datasync/location_object_storages/index.md
@@ -69,7 +69,7 @@ Creates, updates, deletes or gets a location_object_storage
resourc
-
+
SELECT
@@ -81,15 +81,26 @@ Creates, updates, deletes or gets a location_object_storage
resourc
## `SELECT` examples
-List all location_object_storages
in a region.
+Gets all location_object_storages
in a region.
```sql
SELECT
region,
-location_arn
+access_key,
+agent_arns,
+bucket_name,
+secret_key,
+server_certificate,
+server_hostname,
+server_port,
+server_protocol,
+subdirectory,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.location_object_storages
WHERE region = 'us-east-1';
```
-Gets all properties from a location_object_storage
.
+Gets all properties from an individual location_object_storage
.
```sql
SELECT
region,
@@ -109,7 +120,6 @@ FROM aws.datasync.location_object_storages
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new location_object_storage
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/location_object_storages_list_only/index.md b/docs/aws-docs/providers/aws/datasync/location_object_storages_list_only/index.md
new file mode 100644
index 0000000000..e2f66a3d4d
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_object_storages_list_only/index.md
@@ -0,0 +1,78 @@
+---
+title: location_object_storages_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_object_storages_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists location_object_storages
in a region or regions, for all properties use location_object_storages
+
+## Overview
+
+Name location_object_storages_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationObjectStorage.
+Id
+
+
+## Fields
+Name Datatype Description string
Optional. The access key is used if credentials are required to access the self-managed object storage server.
+array
The Amazon Resource Name (ARN) of the agents associated with the self-managed object storage server location.
+string
The name of the bucket on the self-managed object storage server.
+string
Optional. The secret key is used if credentials are required to access the self-managed object storage server.
+string
X.509 PEM content containing a certificate authority or chain to trust.
+string
The name of the self-managed object storage server. This value is the IP address or Domain Name Service (DNS) name of the object storage server.
+integer
The port that your self-managed server accepts inbound network traffic on.
+string
The protocol that the object storage server uses to communicate.
+string
The subdirectory in the self-managed object storage server that is used to read data from.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the location that is created.
+string
The URL of the object storage location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all location_object_storages
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.location_object_storages_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_object_storages_list_only
resource, see location_object_storages
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_s3_tags/index.md b/docs/aws-docs/providers/aws/datasync/location_s3_tags/index.md
new file mode 100644
index 0000000000..ea6d8e4b4c
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_s3_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: location_s3_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_s3_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for location_s3s
in a region
+
+## Overview
+
+Name location_s3_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationS3
+Id
+
+
+## Fields
+Name Datatype Description object
The Amazon Resource Name (ARN) of the AWS IAM role that is used to access an Amazon S3 bucket.
+string
The Amazon Resource Name (ARN) of the Amazon S3 bucket.
+string
A subdirectory in the Amazon S3 bucket. This subdirectory in Amazon S3 is used to read data from the S3 source location or write data to the S3 destination.
+string
The Amazon S3 storage class you want to store your files in when this location is used as a task destination.
+string
The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
+string
The URL of the S3 location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all location_s3s
in a region.
+```sql
+SELECT
+region,
+s3_config,
+s3_bucket_arn,
+subdirectory,
+s3_storage_class,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.location_s3_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_s3_tags
resource, see location_s3s
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_s3s/index.md b/docs/aws-docs/providers/aws/datasync/location_s3s/index.md
index a8fcfc2b4f..a330a75085 100644
--- a/docs/aws-docs/providers/aws/datasync/location_s3s/index.md
+++ b/docs/aws-docs/providers/aws/datasync/location_s3s/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a location_s3
resource or lists <
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a location_s3
resource or lists <
## `SELECT` examples
-List all location_s3s
in a region.
+Gets all location_s3s
in a region.
```sql
SELECT
region,
-location_arn
+s3_config,
+s3_bucket_arn,
+subdirectory,
+s3_storage_class,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.location_s3s
WHERE region = 'us-east-1';
```
-Gets all properties from a location_s3
.
+Gets all properties from an individual location_s3
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.datasync.location_s3s
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new location_s3
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/location_s3s_list_only/index.md b/docs/aws-docs/providers/aws/datasync/location_s3s_list_only/index.md
new file mode 100644
index 0000000000..2e238d30b3
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_s3s_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: location_s3s_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_s3s_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists location_s3s
in a region or regions, for all properties use location_s3s
+
+## Overview
+
+Name location_s3s_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationS3
+Id
+
+
+## Fields
+Name Datatype Description object
The Amazon Resource Name (ARN) of the AWS IAM role that is used to access an Amazon S3 bucket.
+string
The Amazon Resource Name (ARN) of the Amazon S3 bucket.
+string
A subdirectory in the Amazon S3 bucket. This subdirectory in Amazon S3 is used to read data from the S3 source location or write data to the S3 destination.
+string
The Amazon S3 storage class you want to store your files in when this location is used as a task destination.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
+string
The URL of the S3 location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all location_s3s
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.location_s3s_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_s3s_list_only
resource, see location_s3s
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_smb_tags/index.md b/docs/aws-docs/providers/aws/datasync/location_smb_tags/index.md
new file mode 100644
index 0000000000..a24426fb88
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_smb_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: location_smb_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_smb_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for location_smbs
in a region
+
+## Overview
+
+Name location_smb_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationSMB.
+Id
+
+
+## Fields
+Name Datatype Description array
The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
+string
The name of the Windows domain that the SMB server belongs to.
+object
The mount options used by DataSync to access the SMB server.
+string
The password of the user who can mount the share and has the permissions to access files and folders in the SMB share.
+string
The name of the SMB server. This value is the IP address or Domain Name Service (DNS) name of the SMB server.
+string
The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination
+string
The user who can mount the share, has the permissions to access files and folders in the SMB share.
+string
The Amazon Resource Name (ARN) of the SMB location that is created.
+string
The URL of the SMB location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all location_smbs
in a region.
+```sql
+SELECT
+region,
+agent_arns,
+domain,
+mount_options,
+password,
+server_hostname,
+subdirectory,
+user,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.location_smb_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_smb_tags
resource, see location_smbs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/location_smbs/index.md b/docs/aws-docs/providers/aws/datasync/location_smbs/index.md
index 30c2ee4f3a..ae4812f550 100644
--- a/docs/aws-docs/providers/aws/datasync/location_smbs/index.md
+++ b/docs/aws-docs/providers/aws/datasync/location_smbs/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a location_smb
resource or lists
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a location_smb
resource or lists
## `SELECT` examples
-List all location_smbs
in a region.
+Gets all location_smbs
in a region.
```sql
SELECT
region,
-location_arn
+agent_arns,
+domain,
+mount_options,
+password,
+server_hostname,
+subdirectory,
+user,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.location_smbs
WHERE region = 'us-east-1';
```
-Gets all properties from a location_smb
.
+Gets all properties from an individual location_smb
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.datasync.location_smbs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new location_smb
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/location_smbs_list_only/index.md b/docs/aws-docs/providers/aws/datasync/location_smbs_list_only/index.md
new file mode 100644
index 0000000000..4ab3098332
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/location_smbs_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: location_smbs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - location_smbs_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists location_smbs
in a region or regions, for all properties use location_smbs
+
+## Overview
+
+Name location_smbs_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationSMB.
+Id
+
+
+## Fields
+Name Datatype Description array
The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
+string
The name of the Windows domain that the SMB server belongs to.
+object
The mount options used by DataSync to access the SMB server.
+string
The password of the user who can mount the share and has the permissions to access files and folders in the SMB share.
+string
The name of the SMB server. This value is the IP address or Domain Name Service (DNS) name of the SMB server.
+string
The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination
+string
The user who can mount the share, has the permissions to access files and folders in the SMB share.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the SMB location that is created.
+string
The URL of the SMB location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all location_smbs
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.location_smbs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the location_smbs_list_only
resource, see location_smbs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_lustre_tags/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_lustre_tags/index.md
new file mode 100644
index 0000000000..cedf97e1f4
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_lustre_tags/index.md
@@ -0,0 +1,79 @@
+---
+title: locationf_sx_lustre_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_lustre_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for locationf_sx_lustres
in a region
+
+## Overview
+
+Name locationf_sx_lustre_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxLustre.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) for the FSx for Lustre file system.
+array
The ARNs of the security groups that are to use to configure the FSx for Lustre file system.
+string
A subdirectory in the location's path.
+string
The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
+string
The URL of the FSx for Lustre location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all locationf_sx_lustres
in a region.
+```sql
+SELECT
+region,
+fsx_filesystem_arn,
+security_group_arns,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.locationf_sx_lustre_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_lustre_tags
resource, see locationf_sx_lustres
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_lustres/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_lustres/index.md
index 4011e63633..9b5b7f3673 100644
--- a/docs/aws-docs/providers/aws/datasync/locationf_sx_lustres/index.md
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_lustres/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a locationf_sx_lustre
resource or
-
+
SELECT
@@ -75,15 +75,20 @@ Creates, updates, deletes or gets a locationf_sx_lustre
resource or
## `SELECT` examples
-List all locationf_sx_lustres
in a region.
+Gets all locationf_sx_lustres
in a region.
```sql
SELECT
region,
-location_arn
+fsx_filesystem_arn,
+security_group_arns,
+subdirectory,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.locationf_sx_lustres
WHERE region = 'us-east-1';
```
-Gets all properties from a locationf_sx_lustre
.
+Gets all properties from an individual locationf_sx_lustre
.
```sql
SELECT
region,
@@ -97,7 +102,6 @@ FROM aws.datasync.locationf_sx_lustres
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new locationf_sx_lustre
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_lustres_list_only/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_lustres_list_only/index.md
new file mode 100644
index 0000000000..2375781c8e
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_lustres_list_only/index.md
@@ -0,0 +1,72 @@
+---
+title: locationf_sx_lustres_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_lustres_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists locationf_sx_lustres
in a region or regions, for all properties use locationf_sx_lustres
+
+## Overview
+
+Name locationf_sx_lustres_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxLustre.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) for the FSx for Lustre file system.
+array
The ARNs of the security groups that are to use to configure the FSx for Lustre file system.
+string
A subdirectory in the location's path.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
+string
The URL of the FSx for Lustre location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all locationf_sx_lustres
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.locationf_sx_lustres_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_lustres_list_only
resource, see locationf_sx_lustres
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_ontap_tags/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_ontap_tags/index.md
new file mode 100644
index 0000000000..ff3ba3bae3
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_ontap_tags/index.md
@@ -0,0 +1,83 @@
+---
+title: locationf_sx_ontap_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_ontap_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for locationf_sx_ontaps
in a region
+
+## Overview
+
+Name locationf_sx_ontap_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxONTAP.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) for the FSx ONTAP SVM.
+string
The Amazon Resource Name (ARN) for the FSx ONAP file system.
+array
The ARNs of the security groups that are to use to configure the FSx ONTAP file system.
+object
Configuration settings for an NFS or SMB protocol, currently only support NFS
+string
A subdirectory in the location's path.
+string
The Amazon Resource Name (ARN) of the Amazon FSx ONTAP file system location that is created.
+string
The URL of the FSx ONTAP file system that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all locationf_sx_ontaps
in a region.
+```sql
+SELECT
+region,
+storage_virtual_machine_arn,
+fsx_filesystem_arn,
+security_group_arns,
+protocol,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.locationf_sx_ontap_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_ontap_tags
resource, see locationf_sx_ontaps
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_ontaps/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_ontaps/index.md
index 3c62da324e..32dd8959f4 100644
--- a/docs/aws-docs/providers/aws/datasync/locationf_sx_ontaps/index.md
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_ontaps/index.md
@@ -65,7 +65,7 @@ Creates, updates, deletes or gets a locationf_sx_ontap
resource or
-
+
SELECT
@@ -77,15 +77,22 @@ Creates, updates, deletes or gets a locationf_sx_ontap
resource or
## `SELECT` examples
-List all locationf_sx_ontaps
in a region.
+Gets all locationf_sx_ontaps
in a region.
```sql
SELECT
region,
-location_arn
+storage_virtual_machine_arn,
+fsx_filesystem_arn,
+security_group_arns,
+protocol,
+subdirectory,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.locationf_sx_ontaps
WHERE region = 'us-east-1';
```
-Gets all properties from a locationf_sx_ontap
.
+Gets all properties from an individual locationf_sx_ontap
.
```sql
SELECT
region,
@@ -101,7 +108,6 @@ FROM aws.datasync.locationf_sx_ontaps
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new locationf_sx_ontap
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_ontaps_list_only/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_ontaps_list_only/index.md
new file mode 100644
index 0000000000..a81658e803
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_ontaps_list_only/index.md
@@ -0,0 +1,74 @@
+---
+title: locationf_sx_ontaps_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_ontaps_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists locationf_sx_ontaps
in a region or regions, for all properties use locationf_sx_ontaps
+
+## Overview
+
+Name locationf_sx_ontaps_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxONTAP.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) for the FSx ONTAP SVM.
+string
The Amazon Resource Name (ARN) for the FSx ONAP file system.
+array
The ARNs of the security groups that are to use to configure the FSx ONTAP file system.
+object
Configuration settings for an NFS or SMB protocol, currently only support NFS
+string
A subdirectory in the location's path.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the Amazon FSx ONTAP file system location that is created.
+string
The URL of the FSx ONTAP file system that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all locationf_sx_ontaps
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.locationf_sx_ontaps_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_ontaps_list_only
resource, see locationf_sx_ontaps
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs/index.md
index 68015227ef..3edcb3a148 100644
--- a/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs/index.md
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs/index.md
@@ -64,7 +64,7 @@ Creates, updates, deletes or gets a locationf_sx_open_zf
resource o
-
+
SELECT
@@ -76,15 +76,21 @@ Creates, updates, deletes or gets a locationf_sx_open_zf
resource o
## `SELECT` examples
-List all locationf_sx_open_zfs
in a region.
+Gets all locationf_sx_open_zfs
in a region.
```sql
SELECT
region,
-location_arn
+fsx_filesystem_arn,
+security_group_arns,
+protocol,
+subdirectory,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.locationf_sx_open_zfs
WHERE region = 'us-east-1';
```
-Gets all properties from a locationf_sx_open_zf
.
+Gets all properties from an individual locationf_sx_open_zf
.
```sql
SELECT
region,
@@ -99,7 +105,6 @@ FROM aws.datasync.locationf_sx_open_zfs
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new locationf_sx_open_zf
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs_list_only/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs_list_only/index.md
new file mode 100644
index 0000000000..17af0d22b9
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: locationf_sx_open_zfs_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_open_zfs_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists locationf_sx_open_zfs
in a region or regions, for all properties use locationf_sx_open_zfs
+
+## Overview
+
+Name locationf_sx_open_zfs_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxOpenZFS.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) for the FSx OpenZFS file system.
+array
The ARNs of the security groups that are to use to configure the FSx OpenZFS file system.
+object
Configuration settings for an NFS or SMB protocol, currently only support NFS
+string
A subdirectory in the location's path.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the Amazon FSx OpenZFS file system location that is created.
+string
The URL of the FSx OpenZFS that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all locationf_sx_open_zfs
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.locationf_sx_open_zfs_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_open_zfs_list_only
resource, see locationf_sx_open_zfs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs_tags/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs_tags/index.md
new file mode 100644
index 0000000000..cd71f19c6a
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_open_zfs_tags/index.md
@@ -0,0 +1,81 @@
+---
+title: locationf_sx_open_zfs_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_open_zfs_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for locationf_sx_open_zfs
in a region
+
+## Overview
+
+Name locationf_sx_open_zfs_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxOpenZFS.
+Id
+
+
+## Fields
+Name Datatype Description string
The Amazon Resource Name (ARN) for the FSx OpenZFS file system.
+array
The ARNs of the security groups that are to use to configure the FSx OpenZFS file system.
+object
Configuration settings for an NFS or SMB protocol, currently only support NFS
+string
A subdirectory in the location's path.
+string
The Amazon Resource Name (ARN) of the Amazon FSx OpenZFS file system location that is created.
+string
The URL of the FSx OpenZFS that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all locationf_sx_open_zfs
in a region.
+```sql
+SELECT
+region,
+fsx_filesystem_arn,
+security_group_arns,
+protocol,
+subdirectory,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.locationf_sx_open_zfs_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_open_zfs_tags
resource, see locationf_sx_open_zfs
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_windows/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_windows/index.md
index de50967b9b..3ec7830c77 100644
--- a/docs/aws-docs/providers/aws/datasync/locationf_sx_windows/index.md
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_windows/index.md
@@ -66,7 +66,7 @@ Creates, updates, deletes or gets a locationf_sx_window
resource or
-
+
SELECT
@@ -78,15 +78,23 @@ Creates, updates, deletes or gets a locationf_sx_window
resource or
## `SELECT` examples
-List all locationf_sx_windows
in a region.
+Gets all locationf_sx_windows
in a region.
```sql
SELECT
region,
-location_arn
+domain,
+fsx_filesystem_arn,
+password,
+security_group_arns,
+subdirectory,
+user,
+tags,
+location_arn,
+location_uri
FROM aws.datasync.locationf_sx_windows
WHERE region = 'us-east-1';
```
-Gets all properties from a locationf_sx_window
.
+Gets all properties from an individual locationf_sx_window
.
```sql
SELECT
region,
@@ -103,7 +111,6 @@ FROM aws.datasync.locationf_sx_windows
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new locationf_sx_window
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_windows_list_only/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_windows_list_only/index.md
new file mode 100644
index 0000000000..0dac771829
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_windows_list_only/index.md
@@ -0,0 +1,75 @@
+---
+title: locationf_sx_windows_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_windows_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists locationf_sx_windows
in a region or regions, for all properties use locationf_sx_windows
+
+## Overview
+
+Name locationf_sx_windows_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxWindows.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the Windows domain that the FSx for Windows server belongs to.
+string
The Amazon Resource Name (ARN) for the FSx for Windows file system.
+string
The password of the user who has the permissions to access files and folders in the FSx for Windows file system.
+array
The ARNs of the security groups that are to use to configure the FSx for Windows file system.
+string
A subdirectory in the location's path.
+string
The user who has the permissions to access files and folders in the FSx for Windows file system.
+array
An array of key-value pairs to apply to this resource.
+string
The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created.
+string
The URL of the FSx for Windows location that was described.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all locationf_sx_windows
in a region.
+```sql
+SELECT
+region,
+location_arn
+FROM aws.datasync.locationf_sx_windows_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_windows_list_only
resource, see locationf_sx_windows
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/locationf_sx_windows_tags/index.md b/docs/aws-docs/providers/aws/datasync/locationf_sx_windows_tags/index.md
new file mode 100644
index 0000000000..c8ecc7f51b
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/locationf_sx_windows_tags/index.md
@@ -0,0 +1,85 @@
+---
+title: locationf_sx_windows_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - locationf_sx_windows_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for locationf_sx_windows
in a region
+
+## Overview
+
+Name locationf_sx_windows_tags
+Type Resource
+Description Resource schema for AWS::DataSync::LocationFSxWindows.
+Id
+
+
+## Fields
+Name Datatype Description string
The name of the Windows domain that the FSx for Windows server belongs to.
+string
The Amazon Resource Name (ARN) for the FSx for Windows file system.
+string
The password of the user who has the permissions to access files and folders in the FSx for Windows file system.
+array
The ARNs of the security groups that are to use to configure the FSx for Windows file system.
+string
A subdirectory in the location's path.
+string
The user who has the permissions to access files and folders in the FSx for Windows file system.
+string
The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created.
+string
The URL of the FSx for Windows location that was described.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all locationf_sx_windows
in a region.
+```sql
+SELECT
+region,
+domain,
+fsx_filesystem_arn,
+password,
+security_group_arns,
+subdirectory,
+user,
+location_arn,
+location_uri,
+tag_key,
+tag_value
+FROM aws.datasync.locationf_sx_windows_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the locationf_sx_windows_tags
resource, see locationf_sx_windows
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/storage_system_tags/index.md b/docs/aws-docs/providers/aws/datasync/storage_system_tags/index.md
new file mode 100644
index 0000000000..98875418a0
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/storage_system_tags/index.md
@@ -0,0 +1,87 @@
+---
+title: storage_system_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - storage_system_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for storage_systems
in a region
+
+## Overview
+
+Name storage_system_tags
+Type Resource
+Description Resource schema for AWS::DataSync::StorageSystem.
+Id
+
+
+## Fields
+Name Datatype Description object
The server name and network port required to connect with the management interface of the on-premises storage system.
+object
The username and password for accessing your on-premises storage system's management interface.
+string
The ARN of a secret stored by AWS Secrets Manager.
+string
The type of on-premises storage system that DataSync Discovery will analyze.
+array
The ARN of the DataSync agent that connects to and reads from the on-premises storage system's management interface.
+string
The ARN of the Amazon CloudWatch log group used to monitor and log discovery job events.
+string
A familiar name for the on-premises storage system.
+string
The ARN of the on-premises storage system added to DataSync Discovery.
+string
Indicates whether the DataSync agent can access the on-premises storage system.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all storage_systems
in a region.
+```sql
+SELECT
+region,
+server_configuration,
+server_credentials,
+secrets_manager_arn,
+system_type,
+agent_arns,
+cloud_watch_log_group_arn,
+name,
+storage_system_arn,
+connectivity_status,
+tag_key,
+tag_value
+FROM aws.datasync.storage_system_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the storage_system_tags
resource, see storage_systems
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/storage_systems/index.md b/docs/aws-docs/providers/aws/datasync/storage_systems/index.md
index fae0680a66..48e92a9405 100644
--- a/docs/aws-docs/providers/aws/datasync/storage_systems/index.md
+++ b/docs/aws-docs/providers/aws/datasync/storage_systems/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets a storage_system
resource or list
-
+
SELECT
@@ -79,15 +79,24 @@ Creates, updates, deletes or gets a storage_system
resource or list
## `SELECT` examples
-List all storage_systems
in a region.
+Gets all storage_systems
in a region.
```sql
SELECT
region,
-storage_system_arn
+server_configuration,
+server_credentials,
+secrets_manager_arn,
+system_type,
+agent_arns,
+cloud_watch_log_group_arn,
+name,
+tags,
+storage_system_arn,
+connectivity_status
FROM aws.datasync.storage_systems
WHERE region = 'us-east-1';
```
-Gets all properties from a storage_system
.
+Gets all properties from an individual storage_system
.
```sql
SELECT
region,
@@ -105,7 +114,6 @@ FROM aws.datasync.storage_systems
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new storage_system
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/storage_systems_list_only/index.md b/docs/aws-docs/providers/aws/datasync/storage_systems_list_only/index.md
new file mode 100644
index 0000000000..6f38339334
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/storage_systems_list_only/index.md
@@ -0,0 +1,76 @@
+---
+title: storage_systems_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - storage_systems_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists storage_systems
in a region or regions, for all properties use storage_systems
+
+## Overview
+
+Name storage_systems_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::StorageSystem.
+Id
+
+
+## Fields
+Name Datatype Description object
The server name and network port required to connect with the management interface of the on-premises storage system.
+object
The username and password for accessing your on-premises storage system's management interface.
+string
The ARN of a secret stored by AWS Secrets Manager.
+string
The type of on-premises storage system that DataSync Discovery will analyze.
+array
The ARN of the DataSync agent that connects to and reads from the on-premises storage system's management interface.
+string
The ARN of the Amazon CloudWatch log group used to monitor and log discovery job events.
+string
A familiar name for the on-premises storage system.
+array
An array of key-value pairs to apply to this resource.
+string
The ARN of the on-premises storage system added to DataSync Discovery.
+string
Indicates whether the DataSync agent can access the on-premises storage system.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all storage_systems
in a region.
+```sql
+SELECT
+region,
+storage_system_arn
+FROM aws.datasync.storage_systems_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the storage_systems_list_only
resource, see storage_systems
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/task_tags/index.md b/docs/aws-docs/providers/aws/datasync/task_tags/index.md
new file mode 100644
index 0000000000..34ce307785
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/task_tags/index.md
@@ -0,0 +1,97 @@
+---
+title: task_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - task_tags
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for tasks
in a region
+
+## Overview
+
+Name task_tags
+Type Resource
+Description Resource schema for AWS::DataSync::Task.
+Id
+
+
+## Fields
+Name Datatype Description array
+array
+string
The ARN of the Amazon CloudWatch log group that is used to monitor and log events in the task.
+string
The ARN of an AWS storage resource's location.
+string
The name of a task. This value is a text reference that is used to identify the task in the console.
+object
Represents the options that are available to control the behavior of a StartTaskExecution operation.
+object
Specifies how you want to configure a task report, which provides detailed information about for your Datasync transfer.
+object
Configures a manifest, which is a list of files or objects that you want DataSync to transfer.
+object
Specifies the schedule you want your task to use for repeated executions.
+string
The ARN of the source location for the task.
+string
The ARN of the task.
+string
The status of the task that was described.
+array
The Amazon Resource Names (ARNs) of the source ENIs (Elastic Network Interfaces) that were created for your subnet.
+array
The Amazon Resource Names (ARNs) of the destination ENIs (Elastic Network Interfaces) that were created for your subnet.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all tasks
in a region.
+```sql
+SELECT
+region,
+excludes,
+includes,
+cloud_watch_log_group_arn,
+destination_location_arn,
+name,
+options,
+task_report_config,
+manifest_config,
+schedule,
+source_location_arn,
+task_arn,
+status,
+source_network_interface_arns,
+destination_network_interface_arns,
+tag_key,
+tag_value
+FROM aws.datasync.task_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the task_tags
resource, see tasks
+
+
diff --git a/docs/aws-docs/providers/aws/datasync/tasks/index.md b/docs/aws-docs/providers/aws/datasync/tasks/index.md
index 04977c3f23..5754826eef 100644
--- a/docs/aws-docs/providers/aws/datasync/tasks/index.md
+++ b/docs/aws-docs/providers/aws/datasync/tasks/index.md
@@ -72,7 +72,7 @@ Creates, updates, deletes or gets a task
resource or lists ta
-
+
SELECT
@@ -84,15 +84,29 @@ Creates, updates, deletes or gets a task
resource or lists ta
## `SELECT` examples
-List all tasks
in a region.
+Gets all tasks
in a region.
```sql
SELECT
region,
-task_arn
+excludes,
+includes,
+tags,
+cloud_watch_log_group_arn,
+destination_location_arn,
+name,
+options,
+task_report_config,
+manifest_config,
+schedule,
+source_location_arn,
+task_arn,
+status,
+source_network_interface_arns,
+destination_network_interface_arns
FROM aws.datasync.tasks
WHERE region = 'us-east-1';
```
-Gets all properties from a task
.
+Gets all properties from an individual task
.
```sql
SELECT
region,
@@ -115,7 +129,6 @@ FROM aws.datasync.tasks
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new task
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datasync/tasks_list_only/index.md b/docs/aws-docs/providers/aws/datasync/tasks_list_only/index.md
new file mode 100644
index 0000000000..793d618383
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datasync/tasks_list_only/index.md
@@ -0,0 +1,81 @@
+---
+title: tasks_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - tasks_list_only
+ - datasync
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists tasks
in a region or regions, for all properties use tasks
+
+## Overview
+
+Name tasks_list_only
+Type Resource
+Description Resource schema for AWS::DataSync::Task.
+Id
+
+
+## Fields
+Name Datatype Description array
+array
+array
An array of key-value pairs to apply to this resource.
+string
The ARN of the Amazon CloudWatch log group that is used to monitor and log events in the task.
+string
The ARN of an AWS storage resource's location.
+string
The name of a task. This value is a text reference that is used to identify the task in the console.
+object
Represents the options that are available to control the behavior of a StartTaskExecution operation.
+object
Specifies how you want to configure a task report, which provides detailed information about for your Datasync transfer.
+object
Configures a manifest, which is a list of files or objects that you want DataSync to transfer.
+object
Specifies the schedule you want your task to use for repeated executions.
+string
The ARN of the source location for the task.
+string
The ARN of the task.
+string
The status of the task that was described.
+array
The Amazon Resource Names (ARNs) of the source ENIs (Elastic Network Interfaces) that were created for your subnet.
+array
The Amazon Resource Names (ARNs) of the destination ENIs (Elastic Network Interfaces) that were created for your subnet.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all tasks
in a region.
+```sql
+SELECT
+region,
+task_arn
+FROM aws.datasync.tasks_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the tasks_list_only
resource, see tasks
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/data_sources/index.md b/docs/aws-docs/providers/aws/datazone/data_sources/index.md
index 3b39d20694..63e77a3bcf 100644
--- a/docs/aws-docs/providers/aws/datazone/data_sources/index.md
+++ b/docs/aws-docs/providers/aws/datazone/data_sources/index.md
@@ -79,7 +79,7 @@ Creates, updates, deletes or gets a data_source
resource or lists <
-
+
SELECT
@@ -91,16 +91,36 @@ Creates, updates, deletes or gets a data_source
resource or lists <
## `SELECT` examples
-List all data_sources
in a region.
+Gets all data_sources
in a region.
```sql
SELECT
region,
+asset_forms_input,
+created_at,
+description,
domain_id,
-id
+domain_identifier,
+enable_setting,
+environment_id,
+environment_identifier,
+id,
+configuration,
+last_run_asset_count,
+last_run_at,
+last_run_status,
+name,
+project_id,
+project_identifier,
+publish_on_import,
+recommendation,
+schedule,
+status,
+type,
+updated_at
FROM aws.datazone.data_sources
WHERE region = 'us-east-1';
```
-Gets all properties from a data_source
.
+Gets all properties from an individual data_source
.
```sql
SELECT
region,
@@ -130,7 +150,6 @@ FROM aws.datazone.data_sources
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new data_source
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datazone/data_sources_list_only/index.md b/docs/aws-docs/providers/aws/datazone/data_sources_list_only/index.md
new file mode 100644
index 0000000000..b0dae730eb
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/data_sources_list_only/index.md
@@ -0,0 +1,89 @@
+---
+title: data_sources_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - data_sources_list_only
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists data_sources
in a region or regions, for all properties use data_sources
+
+## Overview
+
+Name data_sources_list_only
+Type Resource
+Description A data source is used to import technical metadata of assets (data) from the source databases or data warehouses into Amazon DataZone.
+Id
+
+
+## Fields
+Name Datatype Description array
The metadata forms that are to be attached to the assets that this data source works with.
+string
The timestamp of when the data source was created.
+string
The description of the data source.
+string
The ID of the Amazon DataZone domain where the data source is created.
+string
The ID of the Amazon DataZone domain where the data source is created.
+string
Specifies whether the data source is enabled.
+string
The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
+string
The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
+string
The unique identifier of the data source.
+undefined
Configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
+number
The number of assets created by the data source during its last run.
+string
The timestamp that specifies when the data source was last run.
+string
The status of the last run of this data source.
+string
The name of the data source.
+string
The ID of the Amazon DataZone project to which the data source is added.
+string
The identifier of the Amazon DataZone project in which you want to add the data source.
+boolean
Specifies whether the assets that this data source creates in the inventory are to be also automatically published to the catalog.
+object
Specifies whether the business name generation is to be enabled for this data source.
+object
The schedule of the data source runs.
+string
The status of the data source.
+string
The type of the data source.
+string
The timestamp of when this data source was updated.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all data_sources
in a region.
+```sql
+SELECT
+region,
+domain_id,
+id
+FROM aws.datazone.data_sources_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the data_sources_list_only
resource, see data_sources
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/domain_tags/index.md b/docs/aws-docs/providers/aws/datazone/domain_tags/index.md
new file mode 100644
index 0000000000..23351482e5
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/domain_tags/index.md
@@ -0,0 +1,93 @@
+---
+title: domain_tags
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domain_tags
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Expands all tag keys and values for domains
in a region
+
+## Overview
+
+Name domain_tags
+Type Resource
+Description A domain is an organizing entity for connecting together assets, users, and their projects
+Id
+
+
+## Fields
+Name Datatype Description string
The ARN of the Amazon DataZone domain.
+string
The timestamp of when the Amazon DataZone domain was last updated.
+string
The description of the Amazon DataZone domain.
+string
The domain execution role that is created when an Amazon DataZone domain is created. The domain execution role is created in the AWS account that houses the Amazon DataZone domain.
+string
The id of the Amazon DataZone domain.
+string
The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
+string
The timestamp of when the Amazon DataZone domain was last updated.
+string
The identifier of the AWS account that manages the domain.
+string
The name of the Amazon DataZone domain.
+string
The URL of the data portal for this Amazon DataZone domain.
+object
The single-sign on configuration of the Amazon DataZone domain.
+string
The status of the Amazon DataZone domain.
+string
Tag key.
+string
Tag value.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Expands tags for all domains
in a region.
+```sql
+SELECT
+region,
+arn,
+created_at,
+description,
+domain_execution_role,
+id,
+kms_key_identifier,
+last_updated_at,
+managed_account_id,
+name,
+portal_url,
+single_sign_on,
+status,
+tag_key,
+tag_value
+FROM aws.datazone.domain_tags
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domain_tags
resource, see domains
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/domains/index.md b/docs/aws-docs/providers/aws/datazone/domains/index.md
index 0923380d89..7a1e757eaa 100644
--- a/docs/aws-docs/providers/aws/datazone/domains/index.md
+++ b/docs/aws-docs/providers/aws/datazone/domains/index.md
@@ -70,7 +70,7 @@ Creates, updates, deletes or gets a domain
resource or lists
-
+
SELECT
@@ -82,15 +82,27 @@ Creates, updates, deletes or gets a domain
resource or lists
## `SELECT` examples
-List all domains
in a region.
+Gets all domains
in a region.
```sql
SELECT
region,
-id
+arn,
+created_at,
+description,
+domain_execution_role,
+id,
+kms_key_identifier,
+last_updated_at,
+managed_account_id,
+name,
+portal_url,
+single_sign_on,
+status,
+tags
FROM aws.datazone.domains
WHERE region = 'us-east-1';
```
-Gets all properties from a domain
.
+Gets all properties from an individual domain
.
```sql
SELECT
region,
@@ -111,7 +123,6 @@ FROM aws.datazone.domains
WHERE region = 'us-east-1' AND data__Identifier = '';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new domain
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datazone/domains_list_only/index.md b/docs/aws-docs/providers/aws/datazone/domains_list_only/index.md
new file mode 100644
index 0000000000..5b68d54802
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/domains_list_only/index.md
@@ -0,0 +1,79 @@
+---
+title: domains_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - domains_list_only
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists domains
in a region or regions, for all properties use domains
+
+## Overview
+
+Name domains_list_only
+Type Resource
+Description A domain is an organizing entity for connecting together assets, users, and their projects
+Id
+
+
+## Fields
+Name Datatype Description string
The ARN of the Amazon DataZone domain.
+string
The timestamp of when the Amazon DataZone domain was last updated.
+string
The description of the Amazon DataZone domain.
+string
The domain execution role that is created when an Amazon DataZone domain is created. The domain execution role is created in the AWS account that houses the Amazon DataZone domain.
+string
The id of the Amazon DataZone domain.
+string
The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
+string
The timestamp of when the Amazon DataZone domain was last updated.
+string
The identifier of the AWS account that manages the domain.
+string
The name of the Amazon DataZone domain.
+string
The URL of the data portal for this Amazon DataZone domain.
+object
The single-sign on configuration of the Amazon DataZone domain.
+string
The status of the Amazon DataZone domain.
+array
The tags specified for the Amazon DataZone domain.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all domains
in a region.
+```sql
+SELECT
+region,
+id
+FROM aws.datazone.domains_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the domains_list_only
resource, see domains
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/environment_blueprint_configurations/index.md b/docs/aws-docs/providers/aws/datazone/environment_blueprint_configurations/index.md
index 48996df20b..cca967255d 100644
--- a/docs/aws-docs/providers/aws/datazone/environment_blueprint_configurations/index.md
+++ b/docs/aws-docs/providers/aws/datazone/environment_blueprint_configurations/index.md
@@ -67,7 +67,7 @@ Creates, updates, deletes or gets an environment_blueprint_configuration
-
+
SELECT
@@ -79,16 +79,24 @@ Creates, updates, deletes or gets an environment_blueprint_configuration
## `SELECT` examples
-List all environment_blueprint_configurations
in a region.
+Gets all environment_blueprint_configurations
in a region.
```sql
SELECT
region,
+regional_parameters,
+provisioning_role_arn,
domain_id,
-environment_blueprint_id
+created_at,
+enabled_regions,
+environment_blueprint_identifier,
+environment_blueprint_id,
+updated_at,
+domain_identifier,
+manage_access_role_arn
FROM aws.datazone.environment_blueprint_configurations
WHERE region = 'us-east-1';
```
-Gets all properties from an environment_blueprint_configuration
.
+Gets all properties from an individual environment_blueprint_configuration
.
```sql
SELECT
region,
@@ -106,7 +114,6 @@ FROM aws.datazone.environment_blueprint_configurations
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new environment_blueprint_configuration
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datazone/environment_blueprint_configurations_list_only/index.md b/docs/aws-docs/providers/aws/datazone/environment_blueprint_configurations_list_only/index.md
new file mode 100644
index 0000000000..fd03280342
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/environment_blueprint_configurations_list_only/index.md
@@ -0,0 +1,77 @@
+---
+title: environment_blueprint_configurations_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - environment_blueprint_configurations_list_only
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists environment_blueprint_configurations
in a region or regions, for all properties use environment_blueprint_configurations
+
+## Overview
+
+Name environment_blueprint_configurations_list_only
+Type Resource
+Description Definition of AWS::DataZone::EnvironmentBlueprintConfiguration Resource Type
+Id
+
+
+## Fields
+Name Datatype Description array
+string
+string
+string
+array
+string
+string
+string
+string
+string
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all environment_blueprint_configurations
in a region.
+```sql
+SELECT
+region,
+domain_id,
+environment_blueprint_id
+FROM aws.datazone.environment_blueprint_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the environment_blueprint_configurations_list_only
resource, see environment_blueprint_configurations
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/environment_profiles/index.md b/docs/aws-docs/providers/aws/datazone/environment_profiles/index.md
index db7bbf0ce2..18b3f2917d 100644
--- a/docs/aws-docs/providers/aws/datazone/environment_profiles/index.md
+++ b/docs/aws-docs/providers/aws/datazone/environment_profiles/index.md
@@ -72,7 +72,7 @@ Creates, updates, deletes or gets an environment_profile
resource o
-
+
SELECT
@@ -84,16 +84,29 @@ Creates, updates, deletes or gets an environment_profile
resource o
## `SELECT` examples
-List all environment_profiles
in a region.
+Gets all environment_profiles
in a region.
```sql
SELECT
region,
+aws_account_id,
+aws_account_region,
+created_at,
+created_by,
+description,
domain_id,
-id
+domain_identifier,
+environment_blueprint_id,
+environment_blueprint_identifier,
+id,
+name,
+project_id,
+project_identifier,
+updated_at,
+user_parameters
FROM aws.datazone.environment_profiles
WHERE region = 'us-east-1';
```
-Gets all properties from an environment_profile
.
+Gets all properties from an individual environment_profile
.
```sql
SELECT
region,
@@ -116,7 +129,6 @@ FROM aws.datazone.environment_profiles
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new environment_profile
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datazone/environment_profiles_list_only/index.md b/docs/aws-docs/providers/aws/datazone/environment_profiles_list_only/index.md
new file mode 100644
index 0000000000..41c180a6a8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/environment_profiles_list_only/index.md
@@ -0,0 +1,82 @@
+---
+title: environment_profiles_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - environment_profiles_list_only
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists environment_profiles
in a region or regions, for all properties use environment_profiles
+
+## Overview
+
+Name environment_profiles_list_only
+Type Resource
+Description AWS Datazone Environment Profile is pre-configured set of resources and blueprints that provide reusable templates for creating environments.
+Id
+
+
+## Fields
+Name Datatype Description string
The AWS account in which the Amazon DataZone environment is created.
+string
The AWS region in which this environment profile is created.
+string
The timestamp of when this environment profile was created.
+string
The Amazon DataZone user who created this environment profile.
+string
The description of this Amazon DataZone environment profile.
+string
The ID of the Amazon DataZone domain in which this environment profile is created.
+string
The ID of the Amazon DataZone domain in which this environment profile is created.
+string
The ID of the blueprint with which this environment profile is created.
+string
The ID of the blueprint with which this environment profile is created.
+string
The ID of this Amazon DataZone environment profile.
+string
The name of this Amazon DataZone environment profile.
+string
The identifier of the project in which to create the environment profile.
+string
The identifier of the project in which to create the environment profile.
+string
The timestamp of when this environment profile was updated.
+array
The user parameters of this Amazon DataZone environment profile.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all environment_profiles
in a region.
+```sql
+SELECT
+region,
+domain_id,
+id
+FROM aws.datazone.environment_profiles_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the environment_profiles_list_only
resource, see environment_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/environments/index.md b/docs/aws-docs/providers/aws/datazone/environments/index.md
index 8f12e83a08..2bdd71e930 100644
--- a/docs/aws-docs/providers/aws/datazone/environments/index.md
+++ b/docs/aws-docs/providers/aws/datazone/environments/index.md
@@ -76,7 +76,7 @@ Creates, updates, deletes or gets an environment
resource or lists
-
+
SELECT
@@ -88,16 +88,33 @@ Creates, updates, deletes or gets an environment
resource or lists
## `SELECT` examples
-List all environments
in a region.
+Gets all environments
in a region.
```sql
SELECT
region,
+aws_account_id,
+aws_account_region,
+created_at,
+created_by,
+description,
domain_id,
-id
+domain_identifier,
+environment_blueprint_id,
+environment_profile_id,
+environment_profile_identifier,
+glossary_terms,
+id,
+name,
+project_id,
+project_identifier,
+provider,
+status,
+updated_at,
+user_parameters
FROM aws.datazone.environments
WHERE region = 'us-east-1';
```
-Gets all properties from an environment
.
+Gets all properties from an individual environment
.
```sql
SELECT
region,
@@ -124,7 +141,6 @@ FROM aws.datazone.environments
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new environment
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datazone/environments_list_only/index.md b/docs/aws-docs/providers/aws/datazone/environments_list_only/index.md
new file mode 100644
index 0000000000..376b4eebbb
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/environments_list_only/index.md
@@ -0,0 +1,86 @@
+---
+title: environments_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - environments_list_only
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists environments
in a region or regions, for all properties use environments
+
+## Overview
+
+Name environments_list_only
+Type Resource
+Description Definition of AWS::DataZone::Environment Resource Type
+Id
+
+
+## Fields
+Name Datatype Description string
The AWS account in which the Amazon DataZone environment is created.
+string
The AWS region in which the Amazon DataZone environment is created.
+string
The timestamp of when the environment was created.
+string
The Amazon DataZone user who created the environment.
+string
The description of the Amazon DataZone environment.
+string
The identifier of the Amazon DataZone domain in which the environment is created.
+string
The identifier of the Amazon DataZone domain in which the environment would be created.
+string
The ID of the blueprint with which the Amazon DataZone environment was created.
+string
The ID of the environment profile with which the Amazon DataZone environment was created.
+string
The ID of the environment profile with which the Amazon DataZone environment would be created.
+array
The glossary terms that can be used in the Amazon DataZone environment.
+string
The ID of the Amazon DataZone environment.
+string
The name of the environment.
+string
The ID of the Amazon DataZone project in which the environment is created.
+string
The ID of the Amazon DataZone project in which the environment would be created.
+string
The provider of the Amazon DataZone environment.
+string
The status of the Amazon DataZone environment.
+string
The timestamp of when the environment was updated.
+array
The user parameters of the Amazon DataZone environment.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all environments
in a region.
+```sql
+SELECT
+region,
+domain_id,
+id
+FROM aws.datazone.environments_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the environments_list_only
resource, see environments
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/group_profiles/index.md b/docs/aws-docs/providers/aws/datazone/group_profiles/index.md
index 54cf8c34d0..74e2fae941 100644
--- a/docs/aws-docs/providers/aws/datazone/group_profiles/index.md
+++ b/docs/aws-docs/providers/aws/datazone/group_profiles/index.md
@@ -63,7 +63,7 @@ Creates, updates, deletes or gets a group_profile
resource or lists
-
+
SELECT
@@ -75,16 +75,20 @@ Creates, updates, deletes or gets a group_profile
resource or lists
## `SELECT` examples
-List all group_profiles
in a region.
+Gets all group_profiles
in a region.
```sql
SELECT
region,
domain_id,
-id
+domain_identifier,
+group_identifier,
+group_name,
+id,
+status
FROM aws.datazone.group_profiles
WHERE region = 'us-east-1';
```
-Gets all properties from a group_profile
.
+Gets all properties from an individual group_profile
.
```sql
SELECT
region,
@@ -98,7 +102,6 @@ FROM aws.datazone.group_profiles
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new group_profile
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datazone/group_profiles_list_only/index.md b/docs/aws-docs/providers/aws/datazone/group_profiles_list_only/index.md
new file mode 100644
index 0000000000..21bfacbbd8
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/group_profiles_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: group_profiles_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - group_profiles_list_only
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists group_profiles
in a region or regions, for all properties use group_profiles
+
+## Overview
+
+Name group_profiles_list_only
+Type Resource
+Description Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
+Id
+
+
+## Fields
+Name Datatype Description string
The identifier of the Amazon DataZone domain in which the group profile is created.
+string
The identifier of the Amazon DataZone domain in which the group profile would be created.
+string
The ID of the group.
+string
The group-name of the Group Profile.
+string
The ID of the Amazon DataZone group profile.
+string
The status of the group profile.
+string
AWS region.
+
+
+## Methods
+
+
+
+ Name
+ Accessible by
+ Required Params
+
+
+
+ SELECT
+
+
+
+
+## `SELECT` examples
+Lists all group_profiles
in a region.
+```sql
+SELECT
+region,
+domain_id,
+id
+FROM aws.datazone.group_profiles_list_only
+WHERE region = 'us-east-1';
+```
+
+
+## Permissions
+
+For permissions required to operate on the group_profiles_list_only
resource, see group_profiles
+
+
diff --git a/docs/aws-docs/providers/aws/datazone/index.md b/docs/aws-docs/providers/aws/datazone/index.md
index 26dbb5ab3d..f006bfe8f8 100644
--- a/docs/aws-docs/providers/aws/datazone/index.md
+++ b/docs/aws-docs/providers/aws/datazone/index.md
@@ -20,7 +20,7 @@ The datazone service documentation.
-total resources: 10
+total resources: 21
@@ -30,16 +30,27 @@ The datazone service documentation.
\ No newline at end of file
diff --git a/docs/aws-docs/providers/aws/datazone/project_memberships/index.md b/docs/aws-docs/providers/aws/datazone/project_memberships/index.md
index a1bfc5476a..63bc05cfe9 100644
--- a/docs/aws-docs/providers/aws/datazone/project_memberships/index.md
+++ b/docs/aws-docs/providers/aws/datazone/project_memberships/index.md
@@ -61,7 +61,7 @@ Creates, updates, deletes or gets a project_membership
resource or
-
+
SELECT
@@ -73,18 +73,18 @@ Creates, updates, deletes or gets a project_membership
resource or
## `SELECT` examples
-List all project_memberships
in a region.
+Gets all project_memberships
in a region.
```sql
SELECT
region,
-domain_identifier,
-member_identifier,
-member_identifier_type,
-project_identifier
+project_identifier,
+designation,
+member,
+domain_identifier
FROM aws.datazone.project_memberships
WHERE region = 'us-east-1';
```
-Gets all properties from a project_membership
.
+Gets all properties from an individual project_membership
.
```sql
SELECT
region,
@@ -96,7 +96,6 @@ FROM aws.datazone.project_memberships
WHERE region = 'us-east-1' AND data__Identifier = '|||';
```
-
## `INSERT` example
Use the following StackQL query and manifest file to create a new project_membership
resource, using [__`stack-deploy`__](https://pypi.org/project/stack-deploy/).
diff --git a/docs/aws-docs/providers/aws/datazone/project_memberships_list_only/index.md b/docs/aws-docs/providers/aws/datazone/project_memberships_list_only/index.md
new file mode 100644
index 0000000000..4ba5d3c0d2
--- /dev/null
+++ b/docs/aws-docs/providers/aws/datazone/project_memberships_list_only/index.md
@@ -0,0 +1,73 @@
+---
+title: project_memberships_list_only
+hide_title: false
+hide_table_of_contents: false
+keywords:
+ - project_memberships_list_only
+ - datazone
+ - aws
+ - stackql
+ - infrastructure-as-code
+ - configuration-as-data
+ - cloud inventory
+description: Query, deploy and manage AWS resources using SQL
+custom_edit_url: null
+image: /img/providers/aws/stackql-aws-provider-featured-image.png
+---
+
+import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+Lists project_memberships
in a region or regions, for all properties use