diff --git a/bin/generate-docs.js b/bin/generate-docs.js
index b9afc6b61..e04b03d74 100644
--- a/bin/generate-docs.js
+++ b/bin/generate-docs.js
@@ -71,16 +71,28 @@ async function createDocsForService(yamlFilePath) {
resources.push({ name: resourceName, type: methodType, identifiers: identifiers, schemaName, schema, componentsSchemas, resourceData, schemaTypeName });
}
-
+
+ // Build map of _list_only resources to their base resources
+ const listOnlyMap = {};
+ for (const resource of resources) {
+ if (resource.name.endsWith('_list_only')) {
+ const baseName = resource.name.replace('_list_only', '');
+ listOnlyMap[baseName] = resource;
+ }
+ }
+
+ // Filter out _list_only resources - they will be collapsed into base resource docs
+ const filteredResources = resources.filter(r => !r.name.endsWith('_list_only'));
+
// Create index.md for the service
const serviceIndexPath = path.join(serviceFolder, 'index.md');
- const serviceIndexContent = await createServiceIndexContent(serviceName, resources);
+ const serviceIndexContent = await createServiceIndexContent(serviceName, filteredResources);
fs.writeFileSync(serviceIndexPath, serviceIndexContent);
// Divide resources into two columns
- const halfLength = Math.ceil(resources.length / 2);
- const firstColumn = resources.slice(0, halfLength);
- const secondColumn = resources.slice(halfLength);
+ const halfLength = Math.ceil(filteredResources.length / 2);
+ const firstColumn = filteredResources.slice(0, halfLength);
+ const secondColumn = filteredResources.slice(halfLength);
// Create resource subfolders and index.md for each resource
firstColumn.forEach((resource) => {
@@ -90,7 +102,7 @@ async function createDocsForService(yamlFilePath) {
}
const resourceIndexPath = path.join(resourceFolder, 'index.md');
- const resourceIndexContent = createResourceIndexContent(serviceName, resource.name, resource.type, resource.identifiers, resource.schemaName, resource.schema, resource.componentsSchemas, resource.resourceData, resource.schemaTypeName);
+ const resourceIndexContent = createResourceIndexContent(serviceName, resource.name, resource.type, resource.identifiers, resource.schemaName, resource.schema, resource.componentsSchemas, resource.resourceData, resource.schemaTypeName, listOnlyMap[resource.name]);
fs.writeFileSync(resourceIndexPath, resourceIndexContent);
});
@@ -101,7 +113,7 @@ async function createDocsForService(yamlFilePath) {
}
const resourceIndexPath = path.join(resourceFolder, 'index.md');
- const resourceIndexContent = createResourceIndexContent(serviceName, resource.name, resource.type, resource.identifiers, resource.schemaName, resource.schema, resource.componentsSchemas, resource.resourceData, resource.schemaTypeName);
+ const resourceIndexContent = createResourceIndexContent(serviceName, resource.name, resource.type, resource.identifiers, resource.schemaName, resource.schema, resource.componentsSchemas, resource.resourceData, resource.schemaTypeName, listOnlyMap[resource.name]);
try {
fs.writeFileSync(resourceIndexPath, resourceIndexContent);
@@ -201,6 +213,39 @@ ${codeBlockEnd}
`;
}
+function createUpdateExample(serviceName, resourceName, resourceData, thisSchema, allSchemas) {
+ const updateOperation = resourceData.methods?.update_resource;
+ if (!updateOperation) {
+ return '';
+ }
+
+ const readOnlyProps = (thisSchema['x-read-only-properties'] || []).map(p => p.split('/')[0]);
+ const createOnlyProps = (thisSchema['x-create-only-properties'] || []).map(p => p.split('/')[0]);
+ const excludeProps = new Set([...readOnlyProps, ...createOnlyProps]);
+
+ const updatableProps = Object.keys(thisSchema.properties || {}).filter(p => !excludeProps.has(p));
+
+ if (updatableProps.length === 0) {
+ return '';
+ }
+
+ const patchFields = updatableProps.map(p => ` "${p}": ${toSnakeCase(fixCamelCaseIssues(p))}`).join(',\n');
+ const identifierValues = (resourceData['x-identifiers'] || []).map(id => `<${id}>`).join('|');
+
+ return `\n## ${mdCodeAnchor}UPDATE${mdCodeAnchor} example
+
+${sqlCodeBlockStart}
+/*+ update */
+UPDATE ${providerName}.${serviceName}.${resourceName}
+SET data__PatchDocument = string('{{ {
+${patchFields}
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '${identifierValues}';
+${codeBlockEnd}
+`;
+}
+
function createInsertExample(serviceName, resourceName, resourceData, thisSchema, allSchemas) {
const createOperation = resourceData.methods?.create_resource;
if (!createOperation) {
@@ -378,7 +423,7 @@ ${codeBlockEnd}
`;
}
-function createResourceIndexContent(serviceName, resourceName, resourceType, resourceIdentifiers, schemaName, schema, componentsSchemas, resourceData, schemaTypeName) {
+function createResourceIndexContent(serviceName, resourceName, resourceType, resourceIdentifiers, schemaName, schema, componentsSchemas, resourceData, schemaTypeName, listOnlyResource) {
// Create the markdown content for each resource index
// resourceType is x-type, one of 'cloud_control' (cloud control), 'native' (native resource), 'view' (SQL view)
@@ -394,6 +439,7 @@ function createResourceIndexContent(serviceName, resourceName, resourceType, res
let sqlVerbsList = [];
const singularResourceName = pluralize.singular(resourceName);
+ const listOnlyResourceName = listOnlyResource ? listOnlyResource.name : null;
const moreInfoCaption = `For more information, see ${schemaTypeName}.`;
@@ -622,6 +668,41 @@ function createResourceIndexContent(serviceName, resourceName, resourceType, res
const sqlExampleGetCols = getColumns(schema.properties, false, resourceType === 'native', false);
const sqlExampleGetTagsCols = getColumns(schema.properties, false, resourceType === 'native', true);
+ // Compute list_only fields for tabbed display
+ const listOnlyFields = listOnlyResource
+ ? generateSchemaJsonForResource(serviceName, listOnlyResourceName, 'cloud_control_view', schema, componentsSchemas, sqlExampleListCols)
+ : null;
+ const listOnlyFrom = listOnlyResourceName
+ ? `FROM ${providerName}.${serviceName}.${listOnlyResourceName}`
+ : null;
+
+ // Build the Fields section
+ let fieldsSection;
+ if (!(isSelectable || hasList || hasGet)) {
+ fieldsSection = 'SELECT operation not supported for this resource.';
+ } else if (listOnlyResource && hasGet) {
+ const getFields = JSON.stringify(generateSchemaJsonForResource(serviceName, resourceName, resourceType, schema, componentsSchemas, sqlExampleListCols), null, 2);
+ const listFields = JSON.stringify(listOnlyFields, null, 2);
+ fieldsSection = `
SELECT operation not supported for this resource.'}
+${fieldsSection}
${schemaName && resourceType === 'cloud_control' ? `\n${moreInfoCaption}\n` : ''}
## Methods
-${generateMethodsTable(serviceName, resourceName, sqlVerbsList)}
+${generateMethodsTable(serviceName, resourceName, sqlVerbsList, listOnlyResourceName)}
-${serviceName != 'cloud_control' ? generateSelectExamples(resourceName, hasList, hasGet, sqlExampleSelect, sqlExampleListCols, sqlExampleFrom, sqlExampleListWhere, sqlExampleGetCols, sqlExampleGetTagsCols, sqlExampleGetWhere): ''}
+${serviceName != 'cloud_control' ? generateSelectExamples(resourceName, hasList, hasGet, sqlExampleSelect, sqlExampleListCols, sqlExampleFrom, sqlExampleListWhere, sqlExampleGetCols, sqlExampleGetTagsCols, sqlExampleGetWhere, listOnlyResourceName, listOnlyFrom): ''}
${serviceName != 'cloud_control' ? createInsertExample(serviceName, resourceName, resourceData, schema, componentsSchemas): ''}
+${serviceName != 'cloud_control' ? createUpdateExample(serviceName, resourceName, resourceData, schema, componentsSchemas): ''}
${serviceName != 'cloud_control' ? createDeleteExample(serviceName, resourceName, resourceData, schema, componentsSchemas): ''}
${permissionsHeadingMarkdown}
${permissionsBylineMarkdown}
@@ -1094,7 +1176,7 @@ function getColumns(properties, isList, isCustom = false, is_tags = false){
// return fieldsTable;
// }
-function generateSelectExamples(resourceName, hasList, hasGet, sqlExampleSelect, sqlExampleListCols, sqlExampleFrom, sqlExampleListWhere, sqlExampleGetCols, sqlExampleGetTagsCols, sqlExampleGetWhere){
+function generateSelectExamples(resourceName, hasList, hasGet, sqlExampleSelect, sqlExampleListCols, sqlExampleFrom, sqlExampleListWhere, sqlExampleGetCols, sqlExampleGetTagsCols, sqlExampleGetWhere, listOnlyResourceName, listOnlyFrom){
let returnString = '';
if(hasList || hasGet){
returnString = `## ${mdCodeAnchor}SELECT${mdCodeAnchor} examples\n`;
@@ -1102,6 +1184,44 @@ function generateSelectExamples(resourceName, hasList, hasGet, sqlExampleSelect,
return returnString;
}
+ // Tabbed select for cloud_control resources with both get and list_only
+ if(listOnlyResourceName && hasGet && hasList){
+ const singularResourceName = pluralize.singular(resourceName);
+ const getDesc = `Gets all properties from an individual ${singularResourceName}.`;
+ const listDesc = `Lists all ${resourceName} in a region.`;
+ const listFromClause = listOnlyFrom || sqlExampleFrom;
+
+ returnString += `\n${resourceName.replace('_list_only','')} in a region.`;
@@ -1111,11 +1231,10 @@ function generateSelectExamples(resourceName, hasList, hasGet, sqlExampleSelect,
listDesc = `Expands tags for all ${pluralize.plural(resourceName.replace('_tags',''))} in a region.`;
returnString += `${listDesc}\n${sqlCodeBlockStart}\n${sqlExampleSelect}\n${sqlExampleGetTagsCols}\n${sqlExampleFrom}\n${sqlExampleListWhere}\n${codeBlockEnd}`;
}
- }
+ }
if(hasGet){
const singularResourceName = pluralize.singular(resourceName);
- // const getDesc = `Gets all properties from ${indefinite(singularResourceName, { articleOnly: true })} ${singularResourceName}.`;
const getDesc = `Gets all properties from an individual ${singularResourceName}.`;
returnString += `\n${getDesc}\n${sqlCodeBlockStart}\n${sqlExampleSelect}\n${sqlExampleGetCols}\n${sqlExampleFrom}\n${sqlExampleGetWhere}\n${codeBlockEnd}`;
}
@@ -1123,21 +1242,25 @@ function generateSelectExamples(resourceName, hasList, hasGet, sqlExampleSelect,
return returnString;
}
-function generateMethodsTable(serviceName, resourceName, sqlVerbsList) {
-
+function generateMethodsTable(serviceName, resourceName, sqlVerbsList, listOnlyResourceName) {
+ const hasResourceCol = !!listOnlyResourceName;
+
let html = `
AWS::ACMPCA::CertificateAuthority.
@@ -398,31 +424,37 @@ For more information, see certificate_authoritiesINSERTcertificate_authoritiesDELETEcertificate_authoritiesUPDATEcertificate_authorities_list_onlySELECTcertificate_authoritiesSELECTcertificate_authority.
```sql
SELECT
@@ -449,6 +490,19 @@ usage_mode
FROM awscc.acmpca.certificate_authorities
WHERE region = 'us-east-1' AND data__Identifier = 'certificate_authorities in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.acmpca.certificate_authorities_list_only
+WHERE region = 'us-east-1';
+```
+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 | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
certificate_authorities in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/acmpca/certificate_authority_activations/index.md b/website/docs/services/acmpca/certificate_authority_activations/index.md
index 89c15c9c5..292a119c6 100644
--- a/website/docs/services/acmpca/certificate_authority_activations/index.md
+++ b/website/docs/services/acmpca/certificate_authority_activations/index.md
@@ -188,6 +188,21 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.acmpca.certificate_authority_activations
+SET data__PatchDocument = string('{{ {
+ "Certificate": certificate,
+ "CertificateChain": certificate_chain,
+ "Status": status
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = 'investigation_group resource o
## Fields
+AWS::AIOps::InvestigationGroup.
@@ -145,31 +171,37 @@ For more information, see
+ investigation_groupsINSERTinvestigation_groupsDELETEinvestigation_groupsUPDATEinvestigation_groups_list_onlySELECTinvestigation_groupsSELECTinvestigation_group.
```sql
SELECT
@@ -200,6 +241,19 @@ tags
FROM awscc.aiops.investigation_groups
WHERE region = 'us-east-1' AND data__Identifier = 'investigation_groups in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.aiops.investigation_groups_list_only
+WHERE region = 'us-east-1';
+```
+investigation_groups in a region or regions, for all properties use investigation_groups
-
-## Overview
-| Name | investigation_groups_list_only |
| Type | Resource |
| Description | Definition of AWS::AIOps::InvestigationGroup Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
investigation_groups in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.aiops.investigation_groups_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the investigation_groups_list_only resource, see investigation_groups
-
diff --git a/website/docs/services/amazonmq/brokers/index.md b/website/docs/services/amazonmq/brokers/index.md
index cf46f8db9..080551ff8 100644
--- a/website/docs/services/amazonmq/brokers/index.md
+++ b/website/docs/services/amazonmq/brokers/index.md
@@ -364,3 +364,4 @@ For more information, see
+AWS::AmazonMQ::Configuration.
@@ -111,31 +137,37 @@ For more information, see
+ configurationsINSERTconfigurationsDELETEconfigurationsUPDATEconfigurations_list_onlySELECTconfigurationsSELECTconfiguration.
```sql
SELECT
@@ -161,6 +202,19 @@ tags
FROM awscc.amazonmq.configurations
WHERE region = 'us-east-1' AND data__Identifier = 'configurations in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.amazonmq.configurations_list_only
+WHERE region = 'us-east-1';
+```
+configurations in a region or regions, for all properties use configurations
-
-## Overview
-| Name | configurations_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::AmazonMQ::Configuration |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
configurations in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.amazonmq.configurations_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the configurations_list_only resource, see configurations
-
diff --git a/website/docs/services/amazonmq/index.md b/website/docs/services/amazonmq/index.md
index b85e4eabe..57cf2c0b7 100644
--- a/website/docs/services/amazonmq/index.md
+++ b/website/docs/services/amazonmq/index.md
@@ -20,7 +20,7 @@ The amazonmq service documentation.
app resource or lists ap
## Fields
+
+
+
app resource or lists ap
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Amplify::App.
@@ -322,31 +348,37 @@ For more information, see
+ apps
INSERT
+ apps
DELETE
+ apps
UPDATE
+ apps_list_only
SELECT
+ apps
SELECT
@@ -355,6 +387,15 @@ For more information, see
+
+
Gets all properties from an individual app.
```sql
SELECT
@@ -384,6 +425,19 @@ job_config
FROM awscc.amplify.apps
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all apps in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.amplify.apps_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -538,6 +592,36 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.amplify.apps
+SET data__PatchDocument = string('{{ {
+ "AccessToken": access_token,
+ "AutoBranchCreationConfig": auto_branch_creation_config,
+ "BasicAuthConfig": basic_auth_config,
+ "BuildSpec": build_spec,
+ "CacheConfig": cache_config,
+ "ComputeRoleArn": compute_role_arn,
+ "CustomHeaders": custom_headers,
+ "CustomRules": custom_rules,
+ "Description": description,
+ "EnableBranchAutoDeletion": enable_branch_auto_deletion,
+ "EnvironmentVariables": environment_variables,
+ "IAMServiceRole": iam_service_role,
+ "Name": name,
+ "OauthToken": oauth_token,
+ "Platform": platform,
+ "Repository": repository,
+ "Tags": tags,
+ "JobConfig": job_config
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/amplify/apps_list_only/index.md b/website/docs/services/amplify/apps_list_only/index.md
deleted file mode 100644
index 4a99bd264..000000000
--- a/website/docs/services/amplify/apps_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all apps in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/amplify/branches/index.md b/website/docs/services/amplify/branches/index.md
index 35d1c53f6..1d5c4b28f 100644
--- a/website/docs/services/amplify/branches/index.md
+++ b/website/docs/services/amplify/branches/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a branch resource or lists
## Fields
+
+
+
branch resource or lists
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Amplify::Branch.
@@ -182,31 +208,37 @@ For more information, see
+ branches
INSERT
+ branches
DELETE
+ branches
UPDATE
+ branches_list_only
SELECT
+ branches
SELECT
@@ -215,6 +247,15 @@ For more information, see
+
+
Gets all properties from an individual branch.
```sql
SELECT
@@ -239,6 +280,19 @@ tags
FROM awscc.amplify.branches
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all branches in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.amplify.branches_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -369,6 +423,32 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.amplify.branches
+SET data__PatchDocument = string('{{ {
+ "BasicAuthConfig": basic_auth_config,
+ "Backend": backend,
+ "BuildSpec": build_spec,
+ "ComputeRoleArn": compute_role_arn,
+ "Description": description,
+ "EnableAutoBuild": enable_auto_build,
+ "EnablePerformanceMode": enable_performance_mode,
+ "EnablePullRequestPreview": enable_pull_request_preview,
+ "EnableSkewProtection": enable_skew_protection,
+ "EnvironmentVariables": environment_variables,
+ "Framework": framework,
+ "PullRequestEnvironmentName": pull_request_environment_name,
+ "Stage": stage,
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/amplify/branches_list_only/index.md b/website/docs/services/amplify/branches_list_only/index.md
deleted file mode 100644
index e69712587..000000000
--- a/website/docs/services/amplify/branches_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all branches in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/amplify/domains/index.md b/website/docs/services/amplify/domains/index.md
index 8c2a487cb..1d9dcb2f2 100644
--- a/website/docs/services/amplify/domains/index.md
+++ b/website/docs/services/amplify/domains/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a domain resource or lists
## Fields
+
+
+
domain resource or lists
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Amplify::Domain.
@@ -155,31 +181,37 @@ For more information, see
+ domains
INSERT
+ domains
DELETE
+ domains
UPDATE
+ domains_list_only
SELECT
+ domains
SELECT
@@ -188,6 +220,15 @@ For more information, see
+
+
Gets all properties from an individual domain.
```sql
SELECT
@@ -208,6 +249,19 @@ sub_domain_settings
FROM awscc.amplify.domains
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all domains in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.amplify.domains_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -301,6 +355,23 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.amplify.domains
+SET data__PatchDocument = string('{{ {
+ "AutoSubDomainCreationPatterns": auto_sub_domain_creation_patterns,
+ "AutoSubDomainIAMRole": auto_sub_domain_iam_role,
+ "CertificateSettings": certificate_settings,
+ "EnableAutoSubDomain": enable_auto_sub_domain,
+ "SubDomainSettings": sub_domain_settings
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/amplify/domains_list_only/index.md b/website/docs/services/amplify/domains_list_only/index.md
deleted file mode 100644
index e11a5bda7..000000000
--- a/website/docs/services/amplify/domains_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all domains in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/amplify/index.md b/website/docs/services/amplify/index.md
index 083c4d9de..175eb4dbe 100644
--- a/website/docs/services/amplify/index.md
+++ b/website/docs/services/amplify/index.md
@@ -20,7 +20,7 @@ The amplify service documentation.
-total resources: 6
+total resources: 3
@@ -30,12 +30,9 @@ The amplify service documentation.
\ No newline at end of file
diff --git a/website/docs/services/amplifyuibuilder/components/index.md b/website/docs/services/amplifyuibuilder/components/index.md
index a9a67cf73..7d4651584 100644
--- a/website/docs/services/amplifyuibuilder/components/index.md
+++ b/website/docs/services/amplifyuibuilder/components/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a component resource or lists
## Fields
+
+
+
component resource or lists
+
+
+
+
+
+
For more information, see AWS::AmplifyUIBuilder::Component.
@@ -173,31 +214,37 @@ For more information, see
+ components
INSERT
+ components
DELETE
+ components
UPDATE
+ components_list_only
SELECT
+ components
SELECT
@@ -206,6 +253,15 @@ For more information, see
+
+
Gets all properties from an individual component.
```sql
SELECT
@@ -230,6 +286,21 @@ variants
FROM awscc.amplifyuibuilder.components
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
+
+
+
+Lists all components in a region.
+```sql
+SELECT
+region,
+app_id,
+environment_name,
+id
+FROM awscc.amplifyuibuilder.components_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -377,6 +448,30 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.amplifyuibuilder.components
+SET data__PatchDocument = string('{{ {
+ "BindingProperties": binding_properties,
+ "Children": children,
+ "CollectionProperties": collection_properties,
+ "ComponentType": component_type,
+ "Events": events,
+ "Name": name,
+ "Overrides": overrides,
+ "Properties": properties,
+ "SchemaVersion": schema_version,
+ "SourceId": source_id,
+ "Tags": tags,
+ "Variants": variants
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '||';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/amplifyuibuilder/components_list_only/index.md b/website/docs/services/amplifyuibuilder/components_list_only/index.md
deleted file mode 100644
index 53360680b..000000000
--- a/website/docs/services/amplifyuibuilder/components_list_only/index.md
+++ /dev/null
@@ -1,97 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all components in a region.
-```sql
-SELECT
-region,
-app_id,
-environment_name,
-id
-FROM awscc.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/website/docs/services/amplifyuibuilder/forms/index.md b/website/docs/services/amplifyuibuilder/forms/index.md
index b472e4daf..becfca9d1 100644
--- a/website/docs/services/amplifyuibuilder/forms/index.md
+++ b/website/docs/services/amplifyuibuilder/forms/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a form resource or lists fo
## Fields
+
+
+
form resource or lists fo
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::AmplifyUIBuilder::Form.
@@ -162,31 +203,37 @@ For more information, see
+ forms
INSERT
+ forms
DELETE
+ forms
UPDATE
+ forms_list_only
SELECT
+ forms
SELECT
@@ -195,6 +242,15 @@ For more information, see
+
+
Gets all properties from an individual form.
```sql
SELECT
@@ -215,6 +271,21 @@ tags
FROM awscc.amplifyuibuilder.forms
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
+
+
+
+Lists all forms in a region.
+```sql
+SELECT
+region,
+app_id,
+environment_name,
+id
+FROM awscc.amplifyuibuilder.forms_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -353,6 +424,28 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.amplifyuibuilder.forms
+SET data__PatchDocument = string('{{ {
+ "Cta": cta,
+ "DataType": data_type,
+ "Fields": fields,
+ "FormActionType": form_action_type,
+ "LabelDecorator": label_decorator,
+ "Name": name,
+ "SchemaVersion": schema_version,
+ "SectionalElements": sectional_elements,
+ "Style": style,
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '||';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/amplifyuibuilder/forms_list_only/index.md b/website/docs/services/amplifyuibuilder/forms_list_only/index.md
deleted file mode 100644
index e780d9c8a..000000000
--- a/website/docs/services/amplifyuibuilder/forms_list_only/index.md
+++ /dev/null
@@ -1,97 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all forms in a region.
-```sql
-SELECT
-region,
-app_id,
-environment_name,
-id
-FROM awscc.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/website/docs/services/amplifyuibuilder/index.md b/website/docs/services/amplifyuibuilder/index.md
index 85c1d4809..16f9f24b5 100644
--- a/website/docs/services/amplifyuibuilder/index.md
+++ b/website/docs/services/amplifyuibuilder/index.md
@@ -20,7 +20,7 @@ The amplifyuibuilder service documentation.
-total resources: 6
+total resources: 3
@@ -30,12 +30,9 @@ The amplifyuibuilder service documentation.
\ No newline at end of file
diff --git a/website/docs/services/amplifyuibuilder/themes/index.md b/website/docs/services/amplifyuibuilder/themes/index.md
index e9addcef2..abbf46d33 100644
--- a/website/docs/services/amplifyuibuilder/themes/index.md
+++ b/website/docs/services/amplifyuibuilder/themes/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a theme resource or lists t
## Fields
+
+
+
theme resource or lists t
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::AmplifyUIBuilder::Theme.
@@ -118,31 +159,37 @@ For more information, see
+ themes
INSERT
+ themes
DELETE
+ themes
UPDATE
+ themes_list_only
SELECT
+ themes
SELECT
@@ -151,6 +198,15 @@ For more information, see
+
+
Gets all properties from an individual theme.
```sql
SELECT
@@ -167,6 +223,21 @@ values
FROM awscc.amplifyuibuilder.themes
WHERE region = 'us-east-1' AND data__Identifier = '||';
```
+
+
+
+Lists all themes in a region.
+```sql
+SELECT
+region,
+app_id,
+environment_name,
+id
+FROM awscc.amplifyuibuilder.themes_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -263,6 +334,22 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.amplifyuibuilder.themes
+SET data__PatchDocument = string('{{ {
+ "Name": name,
+ "Overrides": overrides,
+ "Tags": tags,
+ "Values": values
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '||';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/amplifyuibuilder/themes_list_only/index.md b/website/docs/services/amplifyuibuilder/themes_list_only/index.md
deleted file mode 100644
index c30866d96..000000000
--- a/website/docs/services/amplifyuibuilder/themes_list_only/index.md
+++ /dev/null
@@ -1,97 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all themes in a region.
-```sql
-SELECT
-region,
-app_id,
-environment_name,
-id
-FROM awscc.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/website/docs/services/apigateway/accounts/index.md b/website/docs/services/apigateway/accounts/index.md
index 2d1c8c069..6e1a4a9f9 100644
--- a/website/docs/services/apigateway/accounts/index.md
+++ b/website/docs/services/apigateway/accounts/index.md
@@ -156,6 +156,19 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigateway.accounts
+SET data__PatchDocument = string('{{ {
+ "CloudWatchRoleArn": cloud_watch_role_arn
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigateway/api_keys/index.md b/website/docs/services/apigateway/api_keys/index.md
index 567a88edd..b9ba968cc 100644
--- a/website/docs/services/apigateway/api_keys/index.md
+++ b/website/docs/services/apigateway/api_keys/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an api_key resource or lists
## Fields
+
+
+
api_key resource or lists
+
+
+
+
+
+
For more information, see AWS::ApiGateway::ApiKey.
@@ -118,31 +144,37 @@ For more information, see
+ api_keys
INSERT
+ api_keys
DELETE
+ api_keys
UPDATE
+ api_keys_list_only
SELECT
+ api_keys
SELECT
@@ -151,6 +183,15 @@ For more information, see
+
+
Gets all properties from an individual api_key.
```sql
SELECT
@@ -167,6 +208,19 @@ value
FROM awscc.apigateway.api_keys
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all api_keys in a region.
+```sql
+SELECT
+region,
+api_key_id
+FROM awscc.apigateway.api_keys_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -273,6 +327,23 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigateway.api_keys
+SET data__PatchDocument = string('{{ {
+ "CustomerId": customer_id,
+ "Description": description,
+ "Enabled": enabled,
+ "StageKeys": stage_keys,
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigateway/api_keys_list_only/index.md b/website/docs/services/apigateway/api_keys_list_only/index.md
deleted file mode 100644
index dd7a31f52..000000000
--- a/website/docs/services/apigateway/api_keys_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all api_keys in a region.
-```sql
-SELECT
-region,
-api_key_id
-FROM awscc.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/website/docs/services/apigateway/authorizers/index.md b/website/docs/services/apigateway/authorizers/index.md
index 63935a522..815c0098c 100644
--- a/website/docs/services/apigateway/authorizers/index.md
+++ b/website/docs/services/apigateway/authorizers/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an authorizer resource or lists <
## Fields
+
+
+
authorizer resource or lists <
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ApiGateway::Authorizer.
@@ -104,31 +135,37 @@ For more information, see
+ authorizers
INSERT
+ authorizers
DELETE
+ authorizers
UPDATE
+ authorizers_list_only
SELECT
+ authorizers
SELECT
@@ -137,6 +174,15 @@ For more information, see
+
+
Gets all properties from an individual authorizer.
```sql
SELECT
@@ -155,6 +201,20 @@ type
FROM awscc.apigateway.authorizers
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all authorizers in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+authorizer_id
+FROM awscc.apigateway.authorizers_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -256,6 +316,27 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigateway.authorizers
+SET data__PatchDocument = string('{{ {
+ "AuthType": auth_type,
+ "AuthorizerCredentials": authorizer_credentials,
+ "AuthorizerResultTtlInSeconds": authorizer_result_ttl_in_seconds,
+ "AuthorizerUri": authorizer_uri,
+ "IdentitySource": identity_source,
+ "IdentityValidationExpression": identity_validation_expression,
+ "Name": name,
+ "ProviderARNs": provider_arns,
+ "Type": type
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '|';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigateway/authorizers_list_only/index.md b/website/docs/services/apigateway/authorizers_list_only/index.md
deleted file mode 100644
index 758d54396..000000000
--- a/website/docs/services/apigateway/authorizers_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all authorizers in a region.
-```sql
-SELECT
-region,
-rest_api_id,
-authorizer_id
-FROM awscc.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/website/docs/services/apigateway/base_path_mapping_v2s/index.md b/website/docs/services/apigateway/base_path_mapping_v2s/index.md
index f4d4987c9..45a69d97c 100644
--- a/website/docs/services/apigateway/base_path_mapping_v2s/index.md
+++ b/website/docs/services/apigateway/base_path_mapping_v2s/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a base_path_mapping_v2 resource o
## Fields
+
+
+
base_path_mapping_v2 resource o
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ApiGateway::BasePathMappingV2.
@@ -74,31 +105,37 @@ For more information, see
+ base_path_mapping_v2s
INSERT
+ base_path_mapping_v2s
DELETE
+ base_path_mapping_v2s
UPDATE
+ base_path_mapping_v2s_list_only
SELECT
+ base_path_mapping_v2s
SELECT
@@ -107,6 +144,15 @@ For more information, see
+
+
Gets all properties from an individual base_path_mapping_v2.
```sql
SELECT
@@ -119,6 +165,19 @@ base_path_mapping_arn
FROM awscc.apigateway.base_path_mapping_v2s
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all base_path_mapping_v2s in a region.
+```sql
+SELECT
+region,
+base_path_mapping_arn
+FROM awscc.apigateway.base_path_mapping_v2s_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -193,6 +252,20 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigateway.base_path_mapping_v2s
+SET data__PatchDocument = string('{{ {
+ "RestApiId": rest_api_id,
+ "Stage": stage
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigateway/base_path_mapping_v2s_list_only/index.md b/website/docs/services/apigateway/base_path_mapping_v2s_list_only/index.md
deleted file mode 100644
index e357dc779..000000000
--- a/website/docs/services/apigateway/base_path_mapping_v2s_list_only/index.md
+++ /dev/null
@@ -1,85 +0,0 @@
----
-title: base_path_mapping_v2s_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - base_path_mapping_v2s_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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists base_path_mapping_v2s in a region or regions, for all properties use base_path_mapping_v2s
-
-## Overview
-
-
-Name base_path_mapping_v2s_list_only
-Type Resource
-Description Resource Type definition for AWS::ApiGateway::BasePathMappingV2
-Id
-
-
-
-## Fields
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all base_path_mapping_v2s in a region.
-```sql
-SELECT
-region,
-base_path_mapping_arn
-FROM awscc.apigateway.base_path_mapping_v2s_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the base_path_mapping_v2s_list_only resource, see base_path_mapping_v2s
-
diff --git a/website/docs/services/apigateway/base_path_mappings/index.md b/website/docs/services/apigateway/base_path_mappings/index.md
index 793ac97ba..3a84d4966 100644
--- a/website/docs/services/apigateway/base_path_mappings/index.md
+++ b/website/docs/services/apigateway/base_path_mappings/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a base_path_mapping resource or l
## Fields
+
+
+
base_path_mapping resource or l
"description": "AWS region."
}
]} />
+
+AWS::ApiGateway::BasePathMapping.
@@ -69,31 +100,37 @@ For more information, see
+ base_path_mappingsINSERTbase_path_mappingsDELETEbase_path_mappingsUPDATEbase_path_mappings_list_onlySELECTbase_path_mappingsSELECTbase_path_mapping.
```sql
SELECT
@@ -113,6 +159,20 @@ stage
FROM awscc.apigateway.base_path_mappings
WHERE region = 'us-east-1' AND data__Identifier = 'base_path_mappings in a region.
+```sql
+SELECT
+region,
+domain_name,
+base_path
+FROM awscc.apigateway.base_path_mappings_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
base_path_mappings in a region.
-```sql
-SELECT
-region,
-domain_name,
-base_path
-FROM awscc.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/website/docs/services/apigateway/client_certificates/index.md b/website/docs/services/apigateway/client_certificates/index.md
index 052e5a538..77bd020c6 100644
--- a/website/docs/services/apigateway/client_certificates/index.md
+++ b/website/docs/services/apigateway/client_certificates/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a client_certificate resource or
## Fields
+AWS::ApiGateway::ClientCertificate.
@@ -76,31 +102,37 @@ For more information, see
+ client_certificatesINSERTclient_certificatesDELETEclient_certificatesUPDATEclient_certificates_list_onlySELECTclient_certificatesSELECTclient_certificate.
```sql
SELECT
@@ -119,6 +160,19 @@ tags
FROM awscc.apigateway.client_certificates
WHERE region = 'us-east-1' AND data__Identifier = 'client_certificates in a region.
+```sql
+SELECT
+region,
+client_certificate_id
+FROM awscc.apigateway.client_certificates_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
client_certificates in a region.
-```sql
-SELECT
-region,
-client_certificate_id
-FROM awscc.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/website/docs/services/apigateway/deployments/index.md b/website/docs/services/apigateway/deployments/index.md
index d17ea555a..35945007a 100644
--- a/website/docs/services/apigateway/deployments/index.md
+++ b/website/docs/services/apigateway/deployments/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a deployment resource or lists AWS::ApiGateway::Deployment.
@@ -291,31 +322,37 @@ For more information, see
+ deploymentsINSERTdeploymentsDELETEdeploymentsUPDATEdeployments_list_onlySELECTdeploymentsSELECTdeployment.
```sql
SELECT
@@ -337,6 +383,20 @@ deployment_canary_settings
FROM awscc.apigateway.deployments
WHERE region = 'us-east-1' AND data__Identifier = 'deployments in a region.
+```sql
+SELECT
+region,
+deployment_id,
+rest_api_id
+FROM awscc.apigateway.deployments_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
deployments in a region.
-```sql
-SELECT
-region,
-deployment_id,
-rest_api_id
-FROM awscc.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/website/docs/services/apigateway/documentation_parts/index.md b/website/docs/services/apigateway/documentation_parts/index.md
index 0f600f8cb..18ebcff7d 100644
--- a/website/docs/services/apigateway/documentation_parts/index.md
+++ b/website/docs/services/apigateway/documentation_parts/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a documentation_part resource or
## Fields
+AWS::ApiGateway::DocumentationPart.
@@ -96,31 +127,37 @@ For more information, see
+ documentation_partsINSERTdocumentation_partsDELETEdocumentation_partsUPDATEdocumentation_parts_list_onlySELECTdocumentation_partsSELECTdocumentation_part.
```sql
SELECT
@@ -140,6 +186,20 @@ rest_api_id
FROM awscc.apigateway.documentation_parts
WHERE region = 'us-east-1' AND data__Identifier = 'documentation_parts in a region.
+```sql
+SELECT
+region,
+documentation_part_id,
+rest_api_id
+FROM awscc.apigateway.documentation_parts_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
documentation_parts in a region.
-```sql
-SELECT
-region,
-documentation_part_id,
-rest_api_id
-FROM awscc.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/website/docs/services/apigateway/documentation_versions/index.md b/website/docs/services/apigateway/documentation_versions/index.md
index 6818e435b..1b7bf7844 100644
--- a/website/docs/services/apigateway/documentation_versions/index.md
+++ b/website/docs/services/apigateway/documentation_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a documentation_version resource
## Fields
+AWS::ApiGateway::DocumentationVersion.
@@ -64,31 +95,37 @@ For more information, see
+ documentation_versionsINSERTdocumentation_versionsDELETEdocumentation_versionsUPDATEdocumentation_versions_list_onlySELECTdocumentation_versionsSELECTdocumentation_version.
```sql
SELECT
@@ -107,6 +153,20 @@ rest_api_id
FROM awscc.apigateway.documentation_versions
WHERE region = 'us-east-1' AND data__Identifier = 'documentation_versions in a region.
+```sql
+SELECT
+region,
+documentation_version,
+rest_api_id
+FROM awscc.apigateway.documentation_versions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
documentation_versions in a region.
-```sql
-SELECT
-region,
-documentation_version,
-rest_api_id
-FROM awscc.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/website/docs/services/apigateway/domain_name_access_associations/index.md b/website/docs/services/apigateway/domain_name_access_associations/index.md
index 8a90111cd..d86a3896c 100644
--- a/website/docs/services/apigateway/domain_name_access_associations/index.md
+++ b/website/docs/services/apigateway/domain_name_access_associations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a domain_name_access_association
## Fields
+AWS::ApiGateway::DomainNameAccessAssociation.
@@ -86,26 +112,31 @@ For more information, see
+ domain_name_access_associationsINSERTdomain_name_access_associationsDELETEdomain_name_access_associations_list_onlySELECTdomain_name_access_associationsSELECTdomain_name_access_association.
```sql
SELECT
@@ -126,6 +166,19 @@ tags
FROM awscc.apigateway.domain_name_access_associations
WHERE region = 'us-east-1' AND data__Identifier = 'domain_name_access_associations in a region.
+```sql
+SELECT
+region,
+domain_name_access_association_arn
+FROM awscc.apigateway.domain_name_access_associations_list_only
+WHERE region = 'us-east-1';
+```
+domain_name_access_associations in a region or regions, for all properties use domain_name_access_associations
-
-## Overview
-| Name | domain_name_access_associations_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::ApiGateway::DomainNameAccessAssociation. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
domain_name_access_associations in a region.
-```sql
-SELECT
-region,
-domain_name_access_association_arn
-FROM awscc.apigateway.domain_name_access_associations_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the domain_name_access_associations_list_only resource, see domain_name_access_associations
-
diff --git a/website/docs/services/apigateway/domain_name_v2s/index.md b/website/docs/services/apigateway/domain_name_v2s/index.md
index c30720237..6aad5b234 100644
--- a/website/docs/services/apigateway/domain_name_v2s/index.md
+++ b/website/docs/services/apigateway/domain_name_v2s/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a domain_name_v2 resource or list
## Fields
+AWS::ApiGateway::DomainNameV2.
@@ -123,31 +154,37 @@ For more information, see
+ domain_name_v2sINSERTdomain_name_v2sDELETEdomain_name_v2sUPDATEdomain_name_v2s_list_onlySELECTdomain_name_v2sSELECTdomain_name_v2.
```sql
SELECT
@@ -172,6 +218,19 @@ tags
FROM awscc.apigateway.domain_name_v2s
WHERE region = 'us-east-1' AND data__Identifier = 'domain_name_v2s in a region.
+```sql
+SELECT
+region,
+domain_name_arn
+FROM awscc.apigateway.domain_name_v2s_list_only
+WHERE region = 'us-east-1';
+```
+domain_name_v2s in a region or regions, for all properties use domain_name_v2s
-
-## Overview
-| Name | domain_name_v2s_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::ApiGateway::DomainNameV2. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
domain_name_v2s in a region.
-```sql
-SELECT
-region,
-domain_name_arn
-FROM awscc.apigateway.domain_name_v2s_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the domain_name_v2s_list_only resource, see domain_name_v2s
-
diff --git a/website/docs/services/apigateway/domain_names/index.md b/website/docs/services/apigateway/domain_names/index.md
index 530be3bc5..ae7389019 100644
--- a/website/docs/services/apigateway/domain_names/index.md
+++ b/website/docs/services/apigateway/domain_names/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a domain_name resource or lists <
## Fields
+AWS::ApiGateway::DomainName.
@@ -160,31 +186,37 @@ For more information, see
+ domain_namesINSERTdomain_namesDELETEdomain_namesUPDATEdomain_names_list_onlySELECTdomain_namesSELECTdomain_name.
```sql
SELECT
@@ -214,6 +255,19 @@ tags
FROM awscc.apigateway.domain_names
WHERE region = 'us-east-1' AND data__Identifier = 'domain_names in a region.
+```sql
+SELECT
+region,
+domain_name
+FROM awscc.apigateway.domain_names_list_only
+WHERE region = 'us-east-1';
+```
+domain_names in a region or regions, for all properties use domain_names
-
-## Overview
-| Name | domain_names_list_only |
| Type | Resource |
| Description | The ``AWS::ApiGateway::DomainName`` resource specifies a custom domain name for your API in 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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
domain_names in a region.
-```sql
-SELECT
-region,
-domain_name
-FROM awscc.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/website/docs/services/apigateway/gateway_responses/index.md b/website/docs/services/apigateway/gateway_responses/index.md
index 1428b5d2e..ecc4d32c8 100644
--- a/website/docs/services/apigateway/gateway_responses/index.md
+++ b/website/docs/services/apigateway/gateway_responses/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a gateway_response resource or li
## Fields
+AWS::ApiGateway::GatewayResponse.
@@ -79,31 +105,37 @@ For more information, see
+ gateway_responsesINSERTgateway_responsesDELETEgateway_responsesUPDATEgateway_responses_list_onlySELECTgateway_responsesSELECTgateway_response.
```sql
SELECT
@@ -125,6 +166,19 @@ response_templates
FROM awscc.apigateway.gateway_responses
WHERE region = 'us-east-1' AND data__Identifier = 'gateway_responses in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.apigateway.gateway_responses_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
gateway_responses in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/apigateway/index.md b/website/docs/services/apigateway/index.md
index ae067c051..31a9d84ce 100644
--- a/website/docs/services/apigateway/index.md
+++ b/website/docs/services/apigateway/index.md
@@ -20,7 +20,7 @@ The apigateway service documentation.
model resource or lists m
## Fields
+
+
+
model resource or lists m
"description": "AWS region."
}
]} />
+
+
+
+ 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."
+ },
+ {
+ "name": "rest_api_id",
+ "type": "string",
+ "description": ""
+ },
+ {
+ "name": "region",
+ "type": "string",
+ "description": "AWS region."
+ }
+]} />
+
+
For more information, see AWS::ApiGateway::Model.
@@ -74,31 +105,37 @@ For more information, see
+ models
INSERT
+ models
DELETE
+ models
UPDATE
+ models_list_only
SELECT
+ models
SELECT
@@ -107,6 +144,15 @@ For more information, see
+
+
Gets all properties from an individual model.
```sql
SELECT
@@ -119,6 +165,20 @@ schema
FROM awscc.apigateway.models
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all models in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+name
+FROM awscc.apigateway.models_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -195,6 +255,20 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigateway.models
+SET data__PatchDocument = string('{{ {
+ "Description": description,
+ "Schema": schema
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '|';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigateway/models_list_only/index.md b/website/docs/services/apigateway/models_list_only/index.md
deleted file mode 100644
index 45ca8a501..000000000
--- a/website/docs/services/apigateway/models_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
- 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."
- },
- {
- "name": "rest_api_id",
- "type": "string",
- "description": ""
- },
- {
- "name": "region",
- "type": "string",
- "description": "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 awscc.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/website/docs/services/apigateway/request_validators/index.md b/website/docs/services/apigateway/request_validators/index.md
index a526444dd..95eeb29bf 100644
--- a/website/docs/services/apigateway/request_validators/index.md
+++ b/website/docs/services/apigateway/request_validators/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a request_validator resource or l
## Fields
+
+
+
request_validator resource or l
"description": "AWS region."
}
]} />
+
+AWS::ApiGateway::RequestValidator.
@@ -74,31 +105,37 @@ For more information, see
+ request_validatorsINSERTrequest_validatorsDELETErequest_validatorsUPDATErequest_validators_list_onlySELECTrequest_validatorsSELECTrequest_validator.
```sql
SELECT
@@ -119,6 +165,20 @@ validate_request_parameters
FROM awscc.apigateway.request_validators
WHERE region = 'us-east-1' AND data__Identifier = 'request_validators in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+request_validator_id
+FROM awscc.apigateway.request_validators_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
request_validators in a region.
-```sql
-SELECT
-region,
-rest_api_id,
-request_validator_id
-FROM awscc.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/website/docs/services/apigateway/resources/index.md b/website/docs/services/apigateway/resources/index.md
index b0d1782c4..09cf9ec98 100644
--- a/website/docs/services/apigateway/resources/index.md
+++ b/website/docs/services/apigateway/resources/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a resource resource or lists AWS::ApiGateway::Resource.
@@ -69,31 +100,37 @@ For more information, see
+ resourcesINSERTresourcesDELETEresourcesUPDATEresources_list_onlySELECTresourcesSELECTresource.
```sql
SELECT
@@ -113,6 +159,20 @@ rest_api_id
FROM awscc.apigateway.resources
WHERE region = 'us-east-1' AND data__Identifier = 'resources in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+resource_id
+FROM awscc.apigateway.resources_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
resources in a region.
-```sql
-SELECT
-region,
-rest_api_id,
-resource_id
-FROM awscc.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/website/docs/services/apigateway/rest_apis/index.md b/website/docs/services/apigateway/rest_apis/index.md
index afd36e006..fc5bf5aa3 100644
--- a/website/docs/services/apigateway/rest_apis/index.md
+++ b/website/docs/services/apigateway/rest_apis/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a rest_api resource or lists AWS::ApiGateway::RestApi.
@@ -185,31 +211,37 @@ For more information, see
+ rest_apisINSERTrest_apisDELETErest_apisUPDATErest_apis_list_onlySELECTrest_apisSELECTrest_api.
```sql
SELECT
@@ -242,6 +283,19 @@ tags
FROM awscc.apigateway.rest_apis
WHERE region = 'us-east-1' AND data__Identifier = 'rest_apis in a region.
+```sql
+SELECT
+region,
+rest_api_id
+FROM awscc.apigateway.rest_apis_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
rest_apis in a region.
-```sql
-SELECT
-region,
-rest_api_id
-FROM awscc.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/website/docs/services/apigateway/stages/index.md b/website/docs/services/apigateway/stages/index.md
index 53843c638..45f32b851 100644
--- a/website/docs/services/apigateway/stages/index.md
+++ b/website/docs/services/apigateway/stages/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a stage resource or lists s
## Fields
+
+
+
stage resource or lists s
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ApiGateway::Stage.
@@ -217,31 +248,37 @@ For more information, see
+ stages
INSERT
+ stages
DELETE
+ stages
UPDATE
+ stages_list_only
SELECT
+ stages
SELECT
@@ -250,6 +287,15 @@ For more information, see
+
+
Gets all properties from an individual stage.
```sql
SELECT
@@ -271,6 +317,20 @@ variables
FROM awscc.apigateway.stages
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all stages in a region.
+```sql
+SELECT
+region,
+rest_api_id,
+stage_name
+FROM awscc.apigateway.stages_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -401,6 +461,30 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigateway.stages
+SET data__PatchDocument = string('{{ {
+ "AccessLogSetting": access_log_setting,
+ "CacheClusterEnabled": cache_cluster_enabled,
+ "CacheClusterSize": cache_cluster_size,
+ "CanarySetting": canary_setting,
+ "ClientCertificateId": client_certificate_id,
+ "DeploymentId": deployment_id,
+ "Description": description,
+ "DocumentationVersion": documentation_version,
+ "MethodSettings": method_settings,
+ "Tags": tags,
+ "TracingEnabled": tracing_enabled,
+ "Variables": variables
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '|';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigateway/stages_list_only/index.md b/website/docs/services/apigateway/stages_list_only/index.md
deleted file mode 100644
index fd044a7a3..000000000
--- a/website/docs/services/apigateway/stages_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all stages in a region.
-```sql
-SELECT
-region,
-rest_api_id,
-stage_name
-FROM awscc.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/website/docs/services/apigateway/usage_plan_keys/index.md b/website/docs/services/apigateway/usage_plan_keys/index.md
index 0539ec50e..e6febff13 100644
--- a/website/docs/services/apigateway/usage_plan_keys/index.md
+++ b/website/docs/services/apigateway/usage_plan_keys/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an usage_plan_key resource or lis
## Fields
+
+
+
usage_plan_key resource or lis
"description": "AWS region."
}
]} />
+
+AWS::ApiGateway::UsagePlanKey.
@@ -69,26 +95,31 @@ For more information, see
+ usage_plan_keysINSERTusage_plan_keysDELETEusage_plan_keys_list_onlySELECTusage_plan_keysSELECTusage_plan_key.
```sql
SELECT
@@ -108,6 +148,19 @@ id
FROM awscc.apigateway.usage_plan_keys
WHERE region = 'us-east-1' AND data__Identifier = 'usage_plan_keys in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.apigateway.usage_plan_keys_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
usage_plan_keys in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/apigateway/usage_plans/index.md b/website/docs/services/apigateway/usage_plans/index.md
index 2b9115d5c..364cb62b6 100644
--- a/website/docs/services/apigateway/usage_plans/index.md
+++ b/website/docs/services/apigateway/usage_plans/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an usage_plan resource or lists <
## Fields
+AWS::ApiGateway::UsagePlan.
@@ -142,31 +168,37 @@ For more information, see
+ usage_plansINSERTusage_plansDELETEusage_plansUPDATEusage_plans_list_onlySELECTusage_plansSELECTusage_plan.
```sql
SELECT
@@ -189,6 +230,19 @@ usage_plan_name
FROM awscc.apigateway.usage_plans
WHERE region = 'us-east-1' AND data__Identifier = 'usage_plans in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.apigateway.usage_plans_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
usage_plans in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/apigateway/vpc_links/index.md b/website/docs/services/apigateway/vpc_links/index.md
index 17461032f..054da6db7 100644
--- a/website/docs/services/apigateway/vpc_links/index.md
+++ b/website/docs/services/apigateway/vpc_links/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a vpc_link resource or lists AWS::ApiGateway::VpcLink.
@@ -86,31 +112,37 @@ For more information, see
+ vpc_linksINSERTvpc_linksDELETEvpc_linksUPDATEvpc_links_list_onlySELECTvpc_linksSELECTvpc_link.
```sql
SELECT
@@ -131,6 +172,19 @@ vpc_link_id
FROM awscc.apigateway.vpc_links
WHERE region = 'us-east-1' AND data__Identifier = 'vpc_links in a region.
+```sql
+SELECT
+region,
+vpc_link_id
+FROM awscc.apigateway.vpc_links_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
vpc_links in a region.
-```sql
-SELECT
-region,
-vpc_link_id
-FROM awscc.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/website/docs/services/apigatewayv2/api_mappings/index.md b/website/docs/services/apigatewayv2/api_mappings/index.md
index d0689f2b0..29f8052e5 100644
--- a/website/docs/services/apigatewayv2/api_mappings/index.md
+++ b/website/docs/services/apigatewayv2/api_mappings/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an api_mapping resource or lists
## Fields
+AWS::ApiGatewayV2::ApiMapping.
@@ -74,31 +105,37 @@ For more information, see
+ api_mappingsINSERTapi_mappingsDELETEapi_mappingsUPDATEapi_mappings_list_onlySELECTapi_mappingsSELECTapi_mapping.
```sql
SELECT
@@ -119,6 +165,20 @@ api_id
FROM awscc.apigatewayv2.api_mappings
WHERE region = 'us-east-1' AND data__Identifier = 'api_mappings in a region.
+```sql
+SELECT
+region,
+api_mapping_id,
+domain_name
+FROM awscc.apigatewayv2.api_mappings_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
api_mappings in a region.
-```sql
-SELECT
-region,
-api_mapping_id,
-domain_name
-FROM awscc.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/website/docs/services/apigatewayv2/apis/index.md b/website/docs/services/apigatewayv2/apis/index.md
index 1c3a4847b..75ee68c42 100644
--- a/website/docs/services/apigatewayv2/apis/index.md
+++ b/website/docs/services/apigatewayv2/apis/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an api resource or lists ap
## Fields
+
+
+
api resource or lists ap
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ApiGatewayV2::Api.
@@ -203,31 +229,37 @@ For more information, see
+ apis
INSERT
+ apis
DELETE
+ apis
UPDATE
+ apis_list_only
SELECT
+ apis
SELECT
@@ -236,6 +268,15 @@ For more information, see
+
+
Gets all properties from an individual api.
```sql
SELECT
@@ -263,6 +304,19 @@ ip_address_type
FROM awscc.apigatewayv2.apis
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all apis in a region.
+```sql
+SELECT
+region,
+api_id
+FROM awscc.apigatewayv2.apis_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -439,6 +493,35 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigatewayv2.apis
+SET data__PatchDocument = string('{{ {
+ "RouteSelectionExpression": route_selection_expression,
+ "Body": body,
+ "BodyS3Location": body_s3_location,
+ "BasePath": base_path,
+ "CredentialsArn": credentials_arn,
+ "CorsConfiguration": cors_configuration,
+ "RouteKey": route_key,
+ "Target": target,
+ "FailOnWarnings": fail_on_warnings,
+ "Description": description,
+ "DisableExecuteApiEndpoint": disable_execute_api_endpoint,
+ "DisableSchemaValidation": disable_schema_validation,
+ "Name": name,
+ "Version": version,
+ "Tags": tags,
+ "ApiKeySelectionExpression": api_key_selection_expression,
+ "IpAddressType": ip_address_type
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigatewayv2/apis_list_only/index.md b/website/docs/services/apigatewayv2/apis_list_only/index.md
deleted file mode 100644
index b9f74a45a..000000000
--- a/website/docs/services/apigatewayv2/apis_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all apis in a region.
-```sql
-SELECT
-region,
-api_id
-FROM awscc.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/website/docs/services/apigatewayv2/authorizers/index.md b/website/docs/services/apigatewayv2/authorizers/index.md
index e051bbf0b..4a69287cf 100644
--- a/website/docs/services/apigatewayv2/authorizers/index.md
+++ b/website/docs/services/apigatewayv2/authorizers/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an authorizer resource or lists <
## Fields
+
+
+
authorizer resource or lists <
"description": "AWS region."
}
]} />
+
+AWS::ApiGatewayV2::Authorizer.
@@ -121,31 +152,37 @@ For more information, see
+ authorizersINSERTauthorizersDELETEauthorizersUPDATEauthorizers_list_onlySELECTauthorizersSELECTauthorizer.
```sql
SELECT
@@ -173,6 +219,20 @@ name
FROM awscc.apigatewayv2.authorizers
WHERE region = 'us-east-1' AND data__Identifier = 'authorizers in a region.
+```sql
+SELECT
+region,
+authorizer_id,
+api_id
+FROM awscc.apigatewayv2.authorizers_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
authorizers in a region.
-```sql
-SELECT
-region,
-authorizer_id,
-api_id
-FROM awscc.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/website/docs/services/apigatewayv2/deployments/index.md b/website/docs/services/apigatewayv2/deployments/index.md
index bcd7353f4..373213893 100644
--- a/website/docs/services/apigatewayv2/deployments/index.md
+++ b/website/docs/services/apigatewayv2/deployments/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a deployment resource or lists AWS::ApiGatewayV2::Deployment.
@@ -69,31 +100,37 @@ For more information, see
+ deploymentsINSERTdeploymentsDELETEdeploymentsUPDATEdeployments_list_onlySELECTdeploymentsSELECTdeployment.
```sql
SELECT
@@ -113,6 +159,20 @@ api_id
FROM awscc.apigatewayv2.deployments
WHERE region = 'us-east-1' AND data__Identifier = 'deployments in a region.
+```sql
+SELECT
+region,
+api_id,
+deployment_id
+FROM awscc.apigatewayv2.deployments_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
deployments in a region.
-```sql
-SELECT
-region,
-api_id,
-deployment_id
-FROM awscc.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/website/docs/services/apigatewayv2/domain_names/index.md b/website/docs/services/apigatewayv2/domain_names/index.md
index 02155dc2e..2d4ce2edd 100644
--- a/website/docs/services/apigatewayv2/domain_names/index.md
+++ b/website/docs/services/apigatewayv2/domain_names/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a domain_name resource or lists <
## Fields
+AWS::ApiGatewayV2::DomainName.
@@ -133,31 +159,37 @@ For more information, see
+ domain_namesINSERTdomain_namesDELETEdomain_namesUPDATEdomain_names_list_onlySELECTdomain_namesSELECTdomain_name.
```sql
SELECT
@@ -181,6 +222,19 @@ tags
FROM awscc.apigatewayv2.domain_names
WHERE region = 'us-east-1' AND data__Identifier = 'domain_names in a region.
+```sql
+SELECT
+region,
+domain_name
+FROM awscc.apigatewayv2.domain_names_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
domain_names in a region.
-```sql
-SELECT
-region,
-domain_name
-FROM awscc.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/website/docs/services/apigatewayv2/index.md b/website/docs/services/apigatewayv2/index.md
index 12a69ba96..65cdcb46f 100644
--- a/website/docs/services/apigatewayv2/index.md
+++ b/website/docs/services/apigatewayv2/index.md
@@ -20,7 +20,7 @@ The apigatewayv2 service documentation.
integration_response resource
## Fields
+AWS::ApiGatewayV2::IntegrationResponse.
@@ -89,31 +125,37 @@ For more information, see
+ integration_responsesINSERTintegration_responsesDELETEintegration_responsesUPDATEintegration_responses_list_onlySELECTintegration_responsesSELECTintegration_response.
```sql
SELECT
@@ -137,6 +188,21 @@ api_id
FROM awscc.apigatewayv2.integration_responses
WHERE region = 'us-east-1' AND data__Identifier = 'integration_responses in a region.
+```sql
+SELECT
+region,
+api_id,
+integration_id,
+integration_response_id
+FROM awscc.apigatewayv2.integration_responses_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
integration_responses in a region.
-```sql
-SELECT
-region,
-api_id,
-integration_id,
-integration_response_id
-FROM awscc.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/website/docs/services/apigatewayv2/integrations/index.md b/website/docs/services/apigatewayv2/integrations/index.md
index d8ad88850..c02994ca1 100644
--- a/website/docs/services/apigatewayv2/integrations/index.md
+++ b/website/docs/services/apigatewayv2/integrations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an integration resource or lists
## Fields
+AWS::ApiGatewayV2::Integration.
@@ -151,31 +182,37 @@ For more information, see
+ integrationsINSERTintegrationsDELETEintegrationsUPDATEintegrations_list_onlySELECTintegrationsSELECTintegration.
```sql
SELECT
@@ -210,6 +256,20 @@ tls_config
FROM awscc.apigatewayv2.integrations
WHERE region = 'us-east-1' AND data__Identifier = 'integrations in a region.
+```sql
+SELECT
+region,
+api_id,
+integration_id
+FROM awscc.apigatewayv2.integrations_list_only
+WHERE region = 'us-east-1';
+```
+integrations in a region or regions, for all properties use integrations
-
-## Overview
-| Name | integrations_list_only |
| Type | Resource |
| Description | An example resource schema demonstrating some basic constructs and validation rules. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
integrations in a region.
-```sql
-SELECT
-region,
-api_id,
-integration_id
-FROM awscc.apigatewayv2.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/website/docs/services/apigatewayv2/models/index.md b/website/docs/services/apigatewayv2/models/index.md
index 79a7f8631..b5b854df1 100644
--- a/website/docs/services/apigatewayv2/models/index.md
+++ b/website/docs/services/apigatewayv2/models/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a model resource or lists m
## Fields
+
+
+
model resource or lists m
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ApiGatewayV2::Model.
@@ -79,31 +110,37 @@ For more information, see
+ models
INSERT
+ models
DELETE
+ models
UPDATE
+ models_list_only
SELECT
+ models
SELECT
@@ -112,6 +149,15 @@ For more information, see
+
+
Gets all properties from an individual model.
```sql
SELECT
@@ -125,6 +171,20 @@ name
FROM awscc.apigatewayv2.models
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all models in a region.
+```sql
+SELECT
+region,
+api_id,
+model_id
+FROM awscc.apigatewayv2.models_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -205,6 +265,22 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigatewayv2.models
+SET data__PatchDocument = string('{{ {
+ "Description": description,
+ "ContentType": content_type,
+ "Schema": schema,
+ "Name": name
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '|';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigatewayv2/models_list_only/index.md b/website/docs/services/apigatewayv2/models_list_only/index.md
deleted file mode 100644
index dfc57a482..000000000
--- a/website/docs/services/apigatewayv2/models_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all models in a region.
-```sql
-SELECT
-region,
-api_id,
-model_id
-FROM awscc.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/website/docs/services/apigatewayv2/route_responses/index.md b/website/docs/services/apigatewayv2/route_responses/index.md
index 7f5f6530b..2083d7da8 100644
--- a/website/docs/services/apigatewayv2/route_responses/index.md
+++ b/website/docs/services/apigatewayv2/route_responses/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a route_response resource or list
## Fields
+
+
+
route_response resource or list
"description": "AWS region."
}
]} />
+
+AWS::ApiGatewayV2::RouteResponse.
@@ -84,31 +120,37 @@ For more information, see
+ route_responsesINSERTroute_responsesDELETEroute_responsesUPDATEroute_responses_list_onlySELECTroute_responsesSELECTroute_response.
```sql
SELECT
@@ -131,6 +182,21 @@ route_response_id
FROM awscc.apigatewayv2.route_responses
WHERE region = 'us-east-1' AND data__Identifier = 'route_responses in a region.
+```sql
+SELECT
+region,
+api_id,
+route_id,
+route_response_id
+FROM awscc.apigatewayv2.route_responses_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
route_responses in a region.
-```sql
-SELECT
-region,
-api_id,
-route_id,
-route_response_id
-FROM awscc.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/website/docs/services/apigatewayv2/routes/index.md b/website/docs/services/apigatewayv2/routes/index.md
index bd243c330..03792bd5c 100644
--- a/website/docs/services/apigatewayv2/routes/index.md
+++ b/website/docs/services/apigatewayv2/routes/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a route resource or lists r
## Fields
+
+
+
route resource or lists r
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ApiGatewayV2::Route.
@@ -114,31 +145,37 @@ For more information, see
+ routes
INSERT
+ routes
DELETE
+ routes
UPDATE
+ routes_list_only
SELECT
+ routes
SELECT
@@ -147,6 +184,15 @@ For more information, see
+
+
Gets all properties from an individual route.
```sql
SELECT
@@ -167,6 +213,20 @@ authorizer_id
FROM awscc.apigatewayv2.routes
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all routes in a region.
+```sql
+SELECT
+region,
+api_id,
+route_id
+FROM awscc.apigatewayv2.routes_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -274,6 +334,29 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.apigatewayv2.routes
+SET data__PatchDocument = string('{{ {
+ "RouteResponseSelectionExpression": route_response_selection_expression,
+ "RequestModels": request_models,
+ "OperationName": operation_name,
+ "AuthorizationScopes": authorization_scopes,
+ "ApiKeyRequired": api_key_required,
+ "RouteKey": route_key,
+ "AuthorizationType": authorization_type,
+ "ModelSelectionExpression": model_selection_expression,
+ "RequestParameters": request_parameters,
+ "Target": target,
+ "AuthorizerId": authorizer_id
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '|';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/apigatewayv2/routes_list_only/index.md b/website/docs/services/apigatewayv2/routes_list_only/index.md
deleted file mode 100644
index 9ba87f11e..000000000
--- a/website/docs/services/apigatewayv2/routes_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all routes in a region.
-```sql
-SELECT
-region,
-api_id,
-route_id
-FROM awscc.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/website/docs/services/apigatewayv2/routing_rules/index.md b/website/docs/services/apigatewayv2/routing_rules/index.md
index 114a8b41b..e7f2f154f 100644
--- a/website/docs/services/apigatewayv2/routing_rules/index.md
+++ b/website/docs/services/apigatewayv2/routing_rules/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a routing_rule resource or lists
## Fields
+
+
+
routing_rule resource or lists
"description": "AWS region."
}
]} />
+
+AWS::ApiGatewayV2::RoutingRule.
@@ -141,31 +167,37 @@ For more information, see
+ routing_rulesINSERTrouting_rulesDELETErouting_rulesUPDATErouting_rules_list_onlySELECTrouting_rulesSELECTrouting_rule.
```sql
SELECT
@@ -187,6 +228,19 @@ actions
FROM awscc.apigatewayv2.routing_rules
WHERE region = 'us-east-1' AND data__Identifier = 'routing_rules in a region.
+```sql
+SELECT
+region,
+routing_rule_arn
+FROM awscc.apigatewayv2.routing_rules_list_only
+WHERE region = 'us-east-1';
+```
+routing_rules in a region or regions, for all properties use routing_rules
-
-## Overview
-| Name | routing_rules_list_only |
| Type | Resource |
| Description | Schema for AWS::ApiGatewayV2::RoutingRule |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
routing_rules in a region.
-```sql
-SELECT
-region,
-routing_rule_arn
-FROM awscc.apigatewayv2.routing_rules_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the routing_rules_list_only resource, see routing_rules
-
diff --git a/website/docs/services/apigatewayv2/vpc_links/index.md b/website/docs/services/apigatewayv2/vpc_links/index.md
index e113f20d9..b8bbb51af 100644
--- a/website/docs/services/apigatewayv2/vpc_links/index.md
+++ b/website/docs/services/apigatewayv2/vpc_links/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a vpc_link resource or lists AWS::ApiGatewayV2::VpcLink.
@@ -74,31 +100,37 @@ For more information, see
+ vpc_linksINSERTvpc_linksDELETEvpc_linksUPDATEvpc_links_list_onlySELECTvpc_linksSELECTvpc_link.
```sql
SELECT
@@ -119,6 +160,19 @@ name
FROM awscc.apigatewayv2.vpc_links
WHERE region = 'us-east-1' AND data__Identifier = 'vpc_links in a region.
+```sql
+SELECT
+region,
+vpc_link_id
+FROM awscc.apigatewayv2.vpc_links_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
vpc_links in a region.
-```sql
-SELECT
-region,
-vpc_link_id
-FROM awscc.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/website/docs/services/appconfig/applications/index.md b/website/docs/services/appconfig/applications/index.md
index 76177c67d..387844b06 100644
--- a/website/docs/services/appconfig/applications/index.md
+++ b/website/docs/services/appconfig/applications/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an application resource or lists
## Fields
+AWS::AppConfig::Application.
@@ -81,31 +107,37 @@ For more information, see
+ applicationsINSERTapplicationsDELETEapplicationsUPDATEapplications_list_onlySELECTapplicationsSELECTapplication.
```sql
SELECT
@@ -125,6 +166,19 @@ name
FROM awscc.appconfig.applications
WHERE region = 'us-east-1' AND data__Identifier = 'applications in a region.
+```sql
+SELECT
+region,
+application_id
+FROM awscc.appconfig.applications_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
applications in a region.
-```sql
-SELECT
-region,
-application_id
-FROM awscc.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/website/docs/services/appconfig/configuration_profiles/index.md b/website/docs/services/appconfig/configuration_profiles/index.md
index 9d7a4605e..6382f77df 100644
--- a/website/docs/services/appconfig/configuration_profiles/index.md
+++ b/website/docs/services/appconfig/configuration_profiles/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a configuration_profile resource
## Fields
+AWS::AppConfig::ConfigurationProfile.
@@ -133,31 +164,37 @@ For more information, see
+ configuration_profilesINSERTconfiguration_profilesDELETEconfiguration_profilesUPDATEconfiguration_profiles_list_onlySELECTconfiguration_profilesSELECTconfiguration_profile.
```sql
SELECT
@@ -185,6 +231,20 @@ name
FROM awscc.appconfig.configuration_profiles
WHERE region = 'us-east-1' AND data__Identifier = 'configuration_profiles in a region.
+```sql
+SELECT
+region,
+application_id,
+configuration_profile_id
+FROM awscc.appconfig.configuration_profiles_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
configuration_profiles in a region.
-```sql
-SELECT
-region,
-application_id,
-configuration_profile_id
-FROM awscc.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/website/docs/services/appconfig/deployment_strategies/index.md b/website/docs/services/appconfig/deployment_strategies/index.md
index ee4256d33..69e5ac34a 100644
--- a/website/docs/services/appconfig/deployment_strategies/index.md
+++ b/website/docs/services/appconfig/deployment_strategies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a deployment_strategy resource or
## Fields
+AWS::AppConfig::DeploymentStrategy.
@@ -106,31 +132,37 @@ For more information, see
+ deployment_strategiesINSERTdeployment_strategiesDELETEdeployment_strategiesUPDATEdeployment_strategies_list_onlySELECTdeployment_strategiesSELECTdeployment_strategy.
```sql
SELECT
@@ -155,6 +196,19 @@ id
FROM awscc.appconfig.deployment_strategies
WHERE region = 'us-east-1' AND data__Identifier = 'deployment_strategies in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.appconfig.deployment_strategies_list_only
+WHERE region = 'us-east-1';
+```
+deployment_strategies in a region or regions, for all properties use deployment_strategies
-
-## Overview
-| Name | deployment_strategies_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::AppConfig::DeploymentStrategy |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
deployment_strategies in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.appconfig.deployment_strategies_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the deployment_strategies_list_only resource, see deployment_strategies
-
diff --git a/website/docs/services/appconfig/deployments/index.md b/website/docs/services/appconfig/deployments/index.md
index 94f8faf11..17a7b0d1f 100644
--- a/website/docs/services/appconfig/deployments/index.md
+++ b/website/docs/services/appconfig/deployments/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a deployment resource or lists AWS::AppConfig::Deployment.
@@ -133,26 +169,31 @@ For more information, see
+ deploymentsINSERTdeploymentsDELETEdeployments_list_onlySELECTdeploymentsSELECTdeployment.
```sql
SELECT
@@ -179,6 +229,21 @@ tags
FROM awscc.appconfig.deployments
WHERE region = 'us-east-1' AND data__Identifier = 'deployments in a region.
+```sql
+SELECT
+region,
+application_id,
+environment_id,
+deployment_number
+FROM awscc.appconfig.deployments_list_only
+WHERE region = 'us-east-1';
+```
+deployments in a region or regions, for all properties use deployments
-
-## Overview
-| Name | deployments_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::AppConfig::Deployment |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
deployments in a region.
-```sql
-SELECT
-region,
-application_id,
-environment_id,
-deployment_number
-FROM awscc.appconfig.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/website/docs/services/appconfig/environments/index.md b/website/docs/services/appconfig/environments/index.md
index 50c3711e8..38890b06d 100644
--- a/website/docs/services/appconfig/environments/index.md
+++ b/website/docs/services/appconfig/environments/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an environment resource or lists
## Fields
+AWS::AppConfig::Environment.
@@ -108,31 +139,37 @@ For more information, see
+ environmentsINSERTenvironmentsDELETEenvironmentsUPDATEenvironments_list_onlySELECTenvironmentsSELECTenvironment.
```sql
SELECT
@@ -155,6 +201,20 @@ name
FROM awscc.appconfig.environments
WHERE region = 'us-east-1' AND data__Identifier = 'environments in a region.
+```sql
+SELECT
+region,
+application_id,
+environment_id
+FROM awscc.appconfig.environments_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
environments in a region.
-```sql
-SELECT
-region,
-application_id,
-environment_id
-FROM awscc.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/website/docs/services/appconfig/extension_associations/index.md b/website/docs/services/appconfig/extension_associations/index.md
index f3f546c89..96c1f55ae 100644
--- a/website/docs/services/appconfig/extension_associations/index.md
+++ b/website/docs/services/appconfig/extension_associations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an extension_association resource
## Fields
+AWS::AppConfig::ExtensionAssociation.
@@ -106,31 +132,37 @@ For more information, see
+ extension_associationsINSERTextension_associationsDELETEextension_associationsUPDATEextension_associations_list_onlySELECTextension_associationsSELECTextension_association.
```sql
SELECT
@@ -155,6 +196,19 @@ tags
FROM awscc.appconfig.extension_associations
WHERE region = 'us-east-1' AND data__Identifier = 'extension_associations in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.appconfig.extension_associations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
extension_associations in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/appconfig/extensions/index.md b/website/docs/services/appconfig/extensions/index.md
index 21b9081bf..d95fd7a05 100644
--- a/website/docs/services/appconfig/extensions/index.md
+++ b/website/docs/services/appconfig/extensions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an extension resource or lists AWS::AppConfig::Extension.
@@ -106,31 +132,37 @@ For more information, see
+ extensionsINSERTextensionsDELETEextensionsUPDATEextensions_list_onlySELECTextensionsSELECTextension.
```sql
SELECT
@@ -155,6 +196,19 @@ tags
FROM awscc.appconfig.extensions
WHERE region = 'us-east-1' AND data__Identifier = 'extensions in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.appconfig.extensions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
extensions in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/appconfig/hosted_configuration_versions/index.md b/website/docs/services/appconfig/hosted_configuration_versions/index.md
index 2ff89b9f2..694bea8b6 100644
--- a/website/docs/services/appconfig/hosted_configuration_versions/index.md
+++ b/website/docs/services/appconfig/hosted_configuration_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a hosted_configuration_version re
## Fields
+AWS::AppConfig::HostedConfigurationVersion.
@@ -89,26 +125,31 @@ For more information, see
+ hosted_configuration_versionsINSERThosted_configuration_versionsDELETEhosted_configuration_versions_list_onlySELECThosted_configuration_versionsSELECThosted_configuration_version.
```sql
SELECT
@@ -132,6 +182,21 @@ version_number
FROM awscc.appconfig.hosted_configuration_versions
WHERE region = 'us-east-1' AND data__Identifier = 'hosted_configuration_versions in a region.
+```sql
+SELECT
+region,
+application_id,
+configuration_profile_id,
+version_number
+FROM awscc.appconfig.hosted_configuration_versions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
hosted_configuration_versions in a region.
-```sql
-SELECT
-region,
-application_id,
-configuration_profile_id,
-version_number
-FROM awscc.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/website/docs/services/appconfig/index.md b/website/docs/services/appconfig/index.md
index f389c3990..e5c08fbf2 100644
--- a/website/docs/services/appconfig/index.md
+++ b/website/docs/services/appconfig/index.md
@@ -20,7 +20,7 @@ The appconfig service documentation.
connector_profile resource or l
## Fields
+AWS::AppFlow::ConnectorProfile.
@@ -794,31 +820,37 @@ For more information, see
+ connector_profilesINSERTconnector_profilesDELETEconnector_profilesUPDATEconnector_profiles_list_onlySELECTconnector_profilesSELECTconnector_profile.
```sql
SELECT
@@ -842,6 +883,19 @@ credentials_arn
FROM awscc.appflow.connector_profiles
WHERE region = 'us-east-1' AND data__Identifier = 'connector_profiles in a region.
+```sql
+SELECT
+region,
+connector_profile_name
+FROM awscc.appflow.connector_profiles_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
connector_profiles in a region.
-```sql
-SELECT
-region,
-connector_profile_name
-FROM awscc.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/website/docs/services/appflow/connectors/index.md b/website/docs/services/appflow/connectors/index.md
index ca927f4c1..3f4af02c6 100644
--- a/website/docs/services/appflow/connectors/index.md
+++ b/website/docs/services/appflow/connectors/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a connector resource or lists AWS::AppFlow::Connector.
@@ -88,31 +114,37 @@ For more information, see
+ connectorsINSERTconnectorsDELETEconnectorsUPDATEconnectors_list_onlySELECTconnectorsSELECTconnector.
```sql
SELECT
@@ -133,6 +174,19 @@ description
FROM awscc.appflow.connectors
WHERE region = 'us-east-1' AND data__Identifier = 'connectors in a region.
+```sql
+SELECT
+region,
+connector_label
+FROM awscc.appflow.connectors_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
connectors in a region.
-```sql
-SELECT
-region,
-connector_label
-FROM awscc.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/website/docs/services/appflow/flows/index.md b/website/docs/services/appflow/flows/index.md
index 802d095f2..d0ebaec2f 100644
--- a/website/docs/services/appflow/flows/index.md
+++ b/website/docs/services/appflow/flows/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a flow resource or lists fl
## Fields
+
+
+
flow resource or lists fl
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::AppFlow::Flow.
@@ -916,31 +942,37 @@ For more information, see
+ flows
INSERT
+ flows
DELETE
+ flows
UPDATE
+ flows_list_only
SELECT
+ flows
SELECT
@@ -949,6 +981,15 @@ For more information, see
+
+
Gets all properties from an individual flow.
```sql
SELECT
@@ -967,6 +1008,19 @@ metadata_catalog_config
FROM awscc.appflow.flows
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all flows in a region.
+```sql
+SELECT
+region,
+flow_name
+FROM awscc.appflow.flows_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -1245,6 +1299,26 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.appflow.flows
+SET data__PatchDocument = string('{{ {
+ "Description": description,
+ "TriggerConfig": trigger_config,
+ "FlowStatus": flow_status,
+ "SourceFlowConfig": source_flow_config,
+ "DestinationFlowConfigList": destination_flow_config_list,
+ "Tasks": tasks,
+ "Tags": tags,
+ "MetadataCatalogConfig": metadata_catalog_config
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/appflow/flows_list_only/index.md b/website/docs/services/appflow/flows_list_only/index.md
deleted file mode 100644
index 6166ee33c..000000000
--- a/website/docs/services/appflow/flows_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all flows in a region.
-```sql
-SELECT
-region,
-flow_name
-FROM awscc.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/website/docs/services/appflow/index.md b/website/docs/services/appflow/index.md
index 9022e7f31..3a903719f 100644
--- a/website/docs/services/appflow/index.md
+++ b/website/docs/services/appflow/index.md
@@ -20,7 +20,7 @@ The appflow service documentation.
-total resources: 6
+total resources: 3
@@ -30,12 +30,9 @@ The appflow service documentation.
\ No newline at end of file
diff --git a/website/docs/services/appintegrations/applications/index.md b/website/docs/services/appintegrations/applications/index.md
index ae7997e13..ede68e888 100644
--- a/website/docs/services/appintegrations/applications/index.md
+++ b/website/docs/services/appintegrations/applications/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an application resource or lists
## Fields
+
+
+
application resource or lists
"description": "AWS region."
}
]} />
+
+AWS::AppIntegrations::Application.
@@ -166,31 +192,37 @@ For more information, see
+ applicationsINSERTapplicationsDELETEapplicationsUPDATEapplications_list_onlySELECTapplicationsSELECTapplication.
```sql
SELECT
@@ -218,6 +259,19 @@ iframe_config
FROM awscc.appintegrations.applications
WHERE region = 'us-east-1' AND data__Identifier = 'applications in a region.
+```sql
+SELECT
+region,
+application_arn
+FROM awscc.appintegrations.applications_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
applications in a region.
-```sql
-SELECT
-region,
-application_arn
-FROM awscc.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/website/docs/services/appintegrations/data_integrations/index.md b/website/docs/services/appintegrations/data_integrations/index.md
index c803b5ce8..e19a4c840 100644
--- a/website/docs/services/appintegrations/data_integrations/index.md
+++ b/website/docs/services/appintegrations/data_integrations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a data_integration resource or li
## Fields
+AWS::AppIntegrations::DataIntegration.
@@ -140,31 +166,37 @@ For more information, see
+ data_integrationsINSERTdata_integrationsDELETEdata_integrationsUPDATEdata_integrations_list_onlySELECTdata_integrationsSELECTdata_integration.
```sql
SELECT
@@ -190,6 +231,19 @@ object_configuration
FROM awscc.appintegrations.data_integrations
WHERE region = 'us-east-1' AND data__Identifier = 'data_integrations in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.appintegrations.data_integrations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
data_integrations in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/appintegrations/event_integrations/index.md b/website/docs/services/appintegrations/event_integrations/index.md
index a60e20f4a..f5d03466f 100644
--- a/website/docs/services/appintegrations/event_integrations/index.md
+++ b/website/docs/services/appintegrations/event_integrations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an event_integration resource or
## Fields
+AWS::AppIntegrations::EventIntegration.
@@ -98,31 +124,37 @@ For more information, see
+ event_integrationsINSERTevent_integrationsDELETEevent_integrationsUPDATEevent_integrations_list_onlySELECTevent_integrationsSELECTevent_integration.
```sql
SELECT
@@ -144,6 +185,19 @@ tags
FROM awscc.appintegrations.event_integrations
WHERE region = 'us-east-1' AND data__Identifier = 'event_integrations in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.appintegrations.event_integrations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
event_integrations in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.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/website/docs/services/appintegrations/index.md b/website/docs/services/appintegrations/index.md
index 01cb0cb71..f1e4db7ec 100644
--- a/website/docs/services/appintegrations/index.md
+++ b/website/docs/services/appintegrations/index.md
@@ -20,7 +20,7 @@ The appintegrations service documentation.
scalable_target resource or lis
## Fields
+AWS::ApplicationAutoScaling::ScalableTarget.
@@ -155,31 +196,37 @@ For more information, see
+ scalable_targetsINSERTscalable_targetsDELETEscalable_targetsUPDATEscalable_targets_list_onlySELECTscalable_targetsSELECTscalable_target.
```sql
SELECT
@@ -204,6 +260,21 @@ max_capacity
FROM awscc.applicationautoscaling.scalable_targets
WHERE region = 'us-east-1' AND data__Identifier = 'scalable_targets in a region.
+```sql
+SELECT
+region,
+resource_id,
+scalable_dimension,
+service_namespace
+FROM awscc.applicationautoscaling.scalable_targets_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
scalable_targets in a region.
-```sql
-SELECT
-region,
-resource_id,
-scalable_dimension,
-service_namespace
-FROM awscc.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/website/docs/services/applicationautoscaling/scaling_policies/index.md b/website/docs/services/applicationautoscaling/scaling_policies/index.md
index 0c663facd..cd958d7a1 100644
--- a/website/docs/services/applicationautoscaling/scaling_policies/index.md
+++ b/website/docs/services/applicationautoscaling/scaling_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a scaling_policy resource or list
## Fields
+AWS::ApplicationAutoScaling::ScalingPolicy.
@@ -379,31 +410,37 @@ For more information, see
+ scaling_policiesINSERTscaling_policiesDELETEscaling_policiesUPDATEscaling_policies_list_onlySELECTscaling_policiesSELECTscaling_policy.
```sql
SELECT
@@ -429,6 +475,20 @@ predictive_scaling_policy_configuration
FROM awscc.applicationautoscaling.scaling_policies
WHERE region = 'us-east-1' AND data__Identifier = 'scaling_policies in a region.
+```sql
+SELECT
+region,
+arn,
+scalable_dimension
+FROM awscc.applicationautoscaling.scaling_policies_list_only
+WHERE region = 'us-east-1';
+```
+scaling_policies in a region or regions, for all properties use scaling_policies
-
-## Overview
-| Name | scaling_policies_list_only |
| Type | Resource |
| Description | The ``AWS::ApplicationAutoScaling::ScalingPolicy`` resource defines a scaling policy that Application Auto Scaling uses to adjust the capacity of a scalable target. For more information, see [Target tracking scaling policies](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-target-tracking.html) and [Step scaling policies](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-step-scaling-policies.html) in the *Application Auto Scaling User Guide*. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
scaling_policies in a region.
-```sql
-SELECT
-region,
-arn,
-scalable_dimension
-FROM awscc.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/website/docs/services/applicationinsights/applications/index.md b/website/docs/services/applicationinsights/applications/index.md
index c9f83449c..805b965eb 100644
--- a/website/docs/services/applicationinsights/applications/index.md
+++ b/website/docs/services/applicationinsights/applications/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an application resource or lists
## Fields
+AWS::ApplicationInsights::Application.
@@ -270,31 +296,37 @@ For more information, see
+ applicationsINSERTapplicationsDELETEapplicationsUPDATEapplications_list_onlySELECTapplicationsSELECTapplication.
```sql
SELECT
@@ -323,6 +364,19 @@ attach_missing_permission
FROM awscc.applicationinsights.applications
WHERE region = 'us-east-1' AND data__Identifier = 'applications in a region.
+```sql
+SELECT
+region,
+application_arn
+FROM awscc.applicationinsights.applications_list_only
+WHERE region = 'us-east-1';
+```
+applications in a region or regions, for all properties use applications
-
-## Overview
-| Name | applications_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::ApplicationInsights::Application |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
applications in a region.
-```sql
-SELECT
-region,
-application_arn
-FROM awscc.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/website/docs/services/applicationinsights/index.md b/website/docs/services/applicationinsights/index.md
index 2c832a5c6..6b9d92d02 100644
--- a/website/docs/services/applicationinsights/index.md
+++ b/website/docs/services/applicationinsights/index.md
@@ -20,7 +20,7 @@ The applicationinsights service documentation.
discovery resource or lists AWS::ApplicationSignals::Discovery.
@@ -54,31 +80,37 @@ For more information, see
+ discoveriesINSERTdiscoveriesDELETEdiscoveriesUPDATEdiscoveries_list_onlySELECTdiscoveriesSELECTdiscovery.
```sql
SELECT
@@ -95,6 +136,19 @@ account_id
FROM awscc.applicationsignals.discoveries
WHERE region = 'us-east-1' AND data__Identifier = 'discoveries in a region.
+```sql
+SELECT
+region,
+account_id
+FROM awscc.applicationsignals.discoveries_list_only
+WHERE region = 'us-east-1';
+```
+discoveries in a region or regions, for all properties use discoveries
-
-## Overview
-| Name | discoveries_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::ApplicationSignals::Discovery |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
discoveries in a region.
-```sql
-SELECT
-region,
-account_id
-FROM awscc.applicationsignals.discoveries_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the discoveries_list_only resource, see discoveries
-
diff --git a/website/docs/services/applicationsignals/index.md b/website/docs/services/applicationsignals/index.md
index e74142866..e505a3e33 100644
--- a/website/docs/services/applicationsignals/index.md
+++ b/website/docs/services/applicationsignals/index.md
@@ -20,7 +20,7 @@ The applicationsignals service documentation.
service_level_objective resourc
## Fields
+AWS::ApplicationSignals::ServiceLevelObjective.
@@ -408,31 +434,37 @@ For more information, see
+ service_level_objectivesINSERTservice_level_objectivesDELETEservice_level_objectivesUPDATEservice_level_objectives_list_onlySELECTservice_level_objectivesSELECTservice_level_objective.
```sql
SELECT
@@ -460,6 +501,19 @@ exclusion_windows
FROM awscc.applicationsignals.service_level_objectives
WHERE region = 'us-east-1' AND data__Identifier = 'service_level_objectives in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.applicationsignals.service_level_objectives_list_only
+WHERE region = 'us-east-1';
+```
+service_level_objectives in a region or regions, for all properties use service_level_objectives
-
-## Overview
-| Name | service_level_objectives_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::ApplicationSignals::ServiceLevelObjective |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
service_level_objectives in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.applicationsignals.service_level_objectives_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the service_level_objectives_list_only resource, see service_level_objectives
-
diff --git a/website/docs/services/apprunner/auto_scaling_configurations/index.md b/website/docs/services/apprunner/auto_scaling_configurations/index.md
index 742190c20..3c3619df5 100644
--- a/website/docs/services/apprunner/auto_scaling_configurations/index.md
+++ b/website/docs/services/apprunner/auto_scaling_configurations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an auto_scaling_configuration res
## Fields
+AWS::AppRunner::AutoScalingConfiguration.
@@ -101,26 +127,31 @@ For more information, see
+ auto_scaling_configurationsINSERTauto_scaling_configurationsDELETEauto_scaling_configurations_list_onlySELECTauto_scaling_configurationsSELECTauto_scaling_configuration.
```sql
SELECT
@@ -144,6 +184,19 @@ tags
FROM awscc.apprunner.auto_scaling_configurations
WHERE region = 'us-east-1' AND data__Identifier = 'auto_scaling_configurations in a region.
+```sql
+SELECT
+region,
+auto_scaling_configuration_arn
+FROM awscc.apprunner.auto_scaling_configurations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
auto_scaling_configurations in a region.
-```sql
-SELECT
-region,
-auto_scaling_configuration_arn
-FROM awscc.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/website/docs/services/apprunner/index.md b/website/docs/services/apprunner/index.md
index 4f774aca2..1173ec8fd 100644
--- a/website/docs/services/apprunner/index.md
+++ b/website/docs/services/apprunner/index.md
@@ -20,7 +20,7 @@ The apprunner service documentation.
observability_configuration re
## Fields
+AWS::AppRunner::ObservabilityConfiguration.
@@ -98,26 +124,31 @@ For more information, see
+ observability_configurationsINSERTobservability_configurationsDELETEobservability_configurations_list_onlySELECTobservability_configurationsSELECTobservability_configuration.
```sql
SELECT
@@ -139,6 +179,19 @@ tags
FROM awscc.apprunner.observability_configurations
WHERE region = 'us-east-1' AND data__Identifier = 'observability_configurations in a region.
+```sql
+SELECT
+region,
+observability_configuration_arn
+FROM awscc.apprunner.observability_configurations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
observability_configurations in a region.
-```sql
-SELECT
-region,
-observability_configuration_arn
-FROM awscc.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/website/docs/services/apprunner/services/index.md b/website/docs/services/apprunner/services/index.md
index 0a3103710..84528554e 100644
--- a/website/docs/services/apprunner/services/index.md
+++ b/website/docs/services/apprunner/services/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a service resource or lists
## Fields
+
+
+
service resource or lists
+
+AWS::AppRunner::Service.
@@ -349,31 +375,37 @@ For more information, see
+ servicesINSERTservicesDELETEservicesUPDATEservices_list_onlySELECTservicesSELECTservice.
```sql
SELECT
@@ -402,6 +443,19 @@ network_configuration
FROM awscc.apprunner.services
WHERE region = 'us-east-1' AND data__Identifier = 'services in a region.
+```sql
+SELECT
+region,
+service_arn
+FROM awscc.apprunner.services_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
services in a region.
-```sql
-SELECT
-region,
-service_arn
-FROM awscc.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/website/docs/services/apprunner/vpc_connectors/index.md b/website/docs/services/apprunner/vpc_connectors/index.md
index 0e1aa4cd2..fa5981ab6 100644
--- a/website/docs/services/apprunner/vpc_connectors/index.md
+++ b/website/docs/services/apprunner/vpc_connectors/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a vpc_connector resource or lists
## Fields
+AWS::AppRunner::VpcConnector.
@@ -91,26 +117,31 @@ For more information, see
+ vpc_connectorsINSERTvpc_connectorsDELETEvpc_connectors_list_onlySELECTvpc_connectorsSELECTvpc_connector.
```sql
SELECT
@@ -132,6 +172,19 @@ tags
FROM awscc.apprunner.vpc_connectors
WHERE region = 'us-east-1' AND data__Identifier = 'vpc_connectors in a region.
+```sql
+SELECT
+region,
+vpc_connector_arn
+FROM awscc.apprunner.vpc_connectors_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
vpc_connectors in a region.
-```sql
-SELECT
-region,
-vpc_connector_arn
-FROM awscc.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/website/docs/services/apprunner/vpc_ingress_connections/index.md b/website/docs/services/apprunner/vpc_ingress_connections/index.md
index 420cf0c49..63c5f80ba 100644
--- a/website/docs/services/apprunner/vpc_ingress_connections/index.md
+++ b/website/docs/services/apprunner/vpc_ingress_connections/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a vpc_ingress_connection resource
## Fields
+AWS::AppRunner::VpcIngressConnection.
@@ -108,31 +134,37 @@ For more information, see
+ vpc_ingress_connectionsINSERTvpc_ingress_connectionsDELETEvpc_ingress_connectionsUPDATEvpc_ingress_connections_list_onlySELECTvpc_ingress_connectionsSELECTvpc_ingress_connection.
```sql
SELECT
@@ -155,6 +196,19 @@ tags
FROM awscc.apprunner.vpc_ingress_connections
WHERE region = 'us-east-1' AND data__Identifier = 'vpc_ingress_connections in a region.
+```sql
+SELECT
+region,
+vpc_ingress_connection_arn
+FROM awscc.apprunner.vpc_ingress_connections_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
vpc_ingress_connections in a region.
-```sql
-SELECT
-region,
-vpc_ingress_connection_arn
-FROM awscc.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/website/docs/services/appstream/app_block_builders/index.md b/website/docs/services/appstream/app_block_builders/index.md
index e7d325a55..6cf4bcb86 100644
--- a/website/docs/services/appstream/app_block_builders/index.md
+++ b/website/docs/services/appstream/app_block_builders/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an app_block_builder resource or
## Fields
+AWS::AppStream::AppBlockBuilder.
@@ -150,31 +176,37 @@ For more information, see
+ app_block_buildersINSERTapp_block_buildersDELETEapp_block_buildersUPDATEapp_block_builders_list_onlySELECTapp_block_buildersSELECTapp_block_builder.
```sql
SELECT
@@ -203,6 +244,19 @@ app_block_arns
FROM awscc.appstream.app_block_builders
WHERE region = 'us-east-1' AND data__Identifier = 'app_block_builders in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.appstream.app_block_builders_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
app_block_builders in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.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/website/docs/services/appstream/app_blocks/index.md b/website/docs/services/appstream/app_blocks/index.md
index b11704835..716acdc12 100644
--- a/website/docs/services/appstream/app_blocks/index.md
+++ b/website/docs/services/appstream/app_blocks/index.md
@@ -278,6 +278,19 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.appstream.app_blocks
+SET data__PatchDocument = string('{{ {
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = 'directory_config resource or li
## Fields
+AWS::AppStream::DirectoryConfig.
@@ -93,31 +119,37 @@ For more information, see
+ directory_configsINSERTdirectory_configsDELETEdirectory_configsUPDATEdirectory_configs_list_onlySELECTdirectory_configsSELECTdirectory_config.
```sql
SELECT
@@ -137,6 +178,19 @@ certificate_based_auth_properties
FROM awscc.appstream.directory_configs
WHERE region = 'us-east-1' AND data__Identifier = 'directory_configs in a region.
+```sql
+SELECT
+region,
+directory_name
+FROM awscc.appstream.directory_configs_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
directory_configs in a region.
-```sql
-SELECT
-region,
-directory_name
-FROM awscc.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/website/docs/services/appstream/entitlements/index.md b/website/docs/services/appstream/entitlements/index.md
index 6a4207b3d..0e33a22d7 100644
--- a/website/docs/services/appstream/entitlements/index.md
+++ b/website/docs/services/appstream/entitlements/index.md
@@ -222,6 +222,21 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.appstream.entitlements
+SET data__PatchDocument = string('{{ {
+ "Description": description,
+ "AppVisibility": app_visibility,
+ "Attributes": attributes
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = 'image_builder resource or list
## Fields
+AWS::AppStream::ImageBuilder.
@@ -167,26 +193,31 @@ For more information, see
+ image_buildersINSERTimage_buildersDELETEimage_builders_list_onlySELECTimage_buildersSELECTimage_builder.
```sql
SELECT
@@ -216,6 +256,19 @@ access_endpoints
FROM awscc.appstream.image_builders
WHERE region = 'us-east-1' AND data__Identifier = 'image_builders in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.appstream.image_builders_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
image_builders in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.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/website/docs/services/appstream/index.md b/website/docs/services/appstream/index.md
index 4e53ca194..b6780c0c8 100644
--- a/website/docs/services/appstream/index.md
+++ b/website/docs/services/appstream/index.md
@@ -20,7 +20,7 @@ The appstream service documentation.
api resource or lists ap
## Fields
+
+
+
api resource or lists ap
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::AppSync::Api.
@@ -222,31 +248,37 @@ For more information, see
+ apis
INSERT
+ apis
DELETE
+ apis
UPDATE
+ apis_list_only
SELECT
+ apis
SELECT
@@ -255,6 +287,15 @@ For more information, see
+
+
Gets all properties from an individual api.
```sql
SELECT
@@ -269,6 +310,19 @@ tags
FROM awscc.appsync.apis
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all apis in a region.
+```sql
+SELECT
+region,
+api_arn
+FROM awscc.appsync.apis_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -365,6 +419,22 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.appsync.apis
+SET data__PatchDocument = string('{{ {
+ "Name": name,
+ "OwnerContact": owner_contact,
+ "EventConfig": event_config,
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/appsync/apis_list_only/index.md b/website/docs/services/appsync/apis_list_only/index.md
deleted file mode 100644
index 6dc3a523b..000000000
--- a/website/docs/services/appsync/apis_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: apis_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - apis_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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists apis in a region or regions, for all properties use apis
-
-## Overview
-
-
-Name apis_list_only
-Type Resource
-Description Resource schema for AppSync Api
-Id
-
-
-
-## Fields
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all apis in a region.
-```sql
-SELECT
-region,
-api_arn
-FROM awscc.appsync.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/website/docs/services/appsync/channel_namespaces/index.md b/website/docs/services/appsync/channel_namespaces/index.md
index d142d3b04..690d715a1 100644
--- a/website/docs/services/appsync/channel_namespaces/index.md
+++ b/website/docs/services/appsync/channel_namespaces/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a channel_namespace resource or l
## Fields
+
+
+
channel_namespace resource or l
"description": "AWS region."
}
]} />
+
+AWS::AppSync::ChannelNamespace.
@@ -139,31 +170,37 @@ For more information, see
+ channel_namespacesINSERTchannel_namespacesDELETEchannel_namespacesUPDATEchannel_namespaces_list_onlySELECTchannel_namespacesSELECTchannel_namespace.
```sql
SELECT
@@ -188,6 +234,19 @@ handler_configs
FROM awscc.appsync.channel_namespaces
WHERE region = 'us-east-1' AND data__Identifier = 'channel_namespaces in a region.
+```sql
+SELECT
+region,
+channel_namespace_arn
+FROM awscc.appsync.channel_namespaces_list_only
+WHERE region = 'us-east-1';
+```
+channel_namespaces in a region or regions, for all properties use channel_namespaces
-
-## Overview
-| Name | channel_namespaces_list_only |
| Type | Resource |
| Description | Resource schema for AppSync ChannelNamespace |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
channel_namespaces in a region.
-```sql
-SELECT
-region,
-channel_namespace_arn
-FROM awscc.appsync.channel_namespaces_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the channel_namespaces_list_only resource, see channel_namespaces
-
diff --git a/website/docs/services/appsync/data_sources/index.md b/website/docs/services/appsync/data_sources/index.md
index 7e6eb6b62..8505374f6 100644
--- a/website/docs/services/appsync/data_sources/index.md
+++ b/website/docs/services/appsync/data_sources/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a data_source resource or lists <
## Fields
+AWS::AppSync::DataSource.
@@ -276,31 +302,37 @@ For more information, see
+ data_sourcesINSERTdata_sourcesDELETEdata_sourcesUPDATEdata_sources_list_onlySELECTdata_sourcesSELECTdata_source.
```sql
SELECT
@@ -330,6 +371,19 @@ metrics_config
FROM awscc.appsync.data_sources
WHERE region = 'us-east-1' AND data__Identifier = 'data_sources in a region.
+```sql
+SELECT
+region,
+data_source_arn
+FROM awscc.appsync.data_sources_list_only
+WHERE region = 'us-east-1';
+```
+data_sources in a region or regions, for all properties use data_sources
-
-## Overview
-| Name | data_sources_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::AppSync::DataSource |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
data_sources in a region.
-```sql
-SELECT
-region,
-data_source_arn
-FROM awscc.appsync.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/website/docs/services/appsync/domain_name_api_associations/index.md b/website/docs/services/appsync/domain_name_api_associations/index.md
index 6b58aeeef..1619e4ae2 100644
--- a/website/docs/services/appsync/domain_name_api_associations/index.md
+++ b/website/docs/services/appsync/domain_name_api_associations/index.md
@@ -168,6 +168,19 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.appsync.domain_name_api_associations
+SET data__PatchDocument = string('{{ {
+ "ApiId": api_id
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = 'domain_name resource or lists <
## Fields
+AWS::AppSync::DomainName.
@@ -96,31 +122,37 @@ For more information, see
+ domain_namesINSERTdomain_namesDELETEdomain_namesUPDATEdomain_names_list_onlySELECTdomain_namesSELECTdomain_name.
```sql
SELECT
@@ -143,6 +184,19 @@ tags
FROM awscc.appsync.domain_names
WHERE region = 'us-east-1' AND data__Identifier = 'domain_names in a region.
+```sql
+SELECT
+region,
+domain_name
+FROM awscc.appsync.domain_names_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
domain_names in a region.
-```sql
-SELECT
-region,
-domain_name
-FROM awscc.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/website/docs/services/appsync/function_configurations/index.md b/website/docs/services/appsync/function_configurations/index.md
index 01c9ebf45..67530bb28 100644
--- a/website/docs/services/appsync/function_configurations/index.md
+++ b/website/docs/services/appsync/function_configurations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a function_configuration resource
## Fields
+AWS::AppSync::FunctionConfiguration.
@@ -165,31 +191,37 @@ For more information, see
+ function_configurationsINSERTfunction_configurationsDELETEfunction_configurationsUPDATEfunction_configurations_list_onlySELECTfunction_configurationsSELECTfunction_configuration.
```sql
SELECT
@@ -221,6 +262,19 @@ sync_config
FROM awscc.appsync.function_configurations
WHERE region = 'us-east-1' AND data__Identifier = 'function_configurations in a region.
+```sql
+SELECT
+region,
+function_arn
+FROM awscc.appsync.function_configurations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
function_configurations in a region.
-```sql
-SELECT
-region,
-function_arn
-FROM awscc.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/website/docs/services/appsync/graphql_apis/index.md b/website/docs/services/appsync/graphql_apis/index.md
index 870e87b56..8329df5ff 100644
--- a/website/docs/services/appsync/graphql_apis/index.md
+++ b/website/docs/services/appsync/graphql_apis/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a graphql_api resource or lists <
## Fields
+AWS::AppSync::GraphQLApi.
@@ -359,31 +385,37 @@ For more information, see
+ graphql_apisINSERTgraphql_apisDELETEgraphql_apisUPDATEgraphql_apis_list_onlySELECTgraphql_apisSELECTgraphql_api.
```sql
SELECT
@@ -424,6 +465,19 @@ xray_enabled
FROM awscc.appsync.graphql_apis
WHERE region = 'us-east-1' AND data__Identifier = 'graphql_apis in a region.
+```sql
+SELECT
+region,
+api_id
+FROM awscc.appsync.graphql_apis_list_only
+WHERE region = 'us-east-1';
+```
+graphql_apis in a region or regions, for all properties use graphql_apis
-
-## Overview
-| Name | graphql_apis_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::AppSync::GraphQLApi |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
graphql_apis in a region.
-```sql
-SELECT
-region,
-api_id
-FROM awscc.appsync.graphql_apis_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the graphql_apis_list_only resource, see graphql_apis
-
diff --git a/website/docs/services/appsync/index.md b/website/docs/services/appsync/index.md
index 50a867853..aed1a4067 100644
--- a/website/docs/services/appsync/index.md
+++ b/website/docs/services/appsync/index.md
@@ -20,7 +20,7 @@ The appsync service documentation.
resolver resource or lists AWS::AppSync::Resolver.
@@ -194,31 +220,37 @@ For more information, see
+ resolversINSERTresolversDELETEresolversUPDATEresolvers_list_onlySELECTresolversSELECTresolver.
```sql
SELECT
@@ -252,6 +293,19 @@ metrics_config
FROM awscc.appsync.resolvers
WHERE region = 'us-east-1' AND data__Identifier = 'resolvers in a region.
+```sql
+SELECT
+region,
+resolver_arn
+FROM awscc.appsync.resolvers_list_only
+WHERE region = 'us-east-1';
+```
+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 | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
resolvers in a region.
-```sql
-SELECT
-region,
-resolver_arn
-FROM awscc.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/website/docs/services/appsync/source_api_associations/index.md b/website/docs/services/appsync/source_api_associations/index.md
index ea5ea226f..f194e6b1e 100644
--- a/website/docs/services/appsync/source_api_associations/index.md
+++ b/website/docs/services/appsync/source_api_associations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a source_api_association resource
## Fields
+AWS::AppSync::SourceApiAssociation.
@@ -121,31 +147,37 @@ For more information, see
+ source_api_associationsINSERTsource_api_associationsDELETEsource_api_associationsUPDATEsource_api_associations_list_onlySELECTsource_api_associationsSELECTsource_api_association.
```sql
SELECT
@@ -174,6 +215,19 @@ last_successful_merge_date
FROM awscc.appsync.source_api_associations
WHERE region = 'us-east-1' AND data__Identifier = 'source_api_associations in a region.
+```sql
+SELECT
+region,
+association_arn
+FROM awscc.appsync.source_api_associations_list_only
+WHERE region = 'us-east-1';
+```
+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 | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
source_api_associations in a region.
-```sql
-SELECT
-region,
-association_arn
-FROM awscc.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/website/docs/services/apptest/index.md b/website/docs/services/apptest/index.md
index d216cc292..7849fe8d9 100644
--- a/website/docs/services/apptest/index.md
+++ b/website/docs/services/apptest/index.md
@@ -20,7 +20,7 @@ The apptest service documentation.
test_case resource or lists AWS::AppTest::TestCase.
@@ -133,31 +159,37 @@ For more information, see
+ test_casesINSERTtest_casesDELETEtest_casesUPDATEtest_cases_list_onlySELECTtest_casesSELECTtest_case.
```sql
SELECT
@@ -184,6 +225,19 @@ test_case_version
FROM awscc.apptest.test_cases
WHERE region = 'us-east-1' AND data__Identifier = 'test_cases in a region.
+```sql
+SELECT
+region,
+test_case_id
+FROM awscc.apptest.test_cases_list_only
+WHERE region = 'us-east-1';
+```
+test_cases in a region or regions, for all properties use test_cases
-
-## Overview
-| Name | test_cases_list_only |
| Type | Resource |
| Description | Represents a Test Case that can be captured and executed |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
test_cases in a region.
-```sql
-SELECT
-region,
-test_case_id
-FROM awscc.apptest.test_cases_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the test_cases_list_only resource, see test_cases
-
diff --git a/website/docs/services/aps/index.md b/website/docs/services/aps/index.md
index 09f19792f..6d24c12f5 100644
--- a/website/docs/services/aps/index.md
+++ b/website/docs/services/aps/index.md
@@ -20,7 +20,7 @@ The aps service documentation.
resource_policy resource or lis
## Fields
+AWS::APS::ResourcePolicy.
@@ -59,31 +85,37 @@ For more information, see
+ resource_policiesINSERTresource_policiesDELETEresource_policiesUPDATEresource_policies_list_onlySELECTresource_policiesSELECTresource_policy.
```sql
SELECT
@@ -101,6 +142,19 @@ policy_document
FROM awscc.aps.resource_policies
WHERE region = 'us-east-1' AND data__Identifier = 'resource_policies in a region.
+```sql
+SELECT
+region,
+workspace_arn
+FROM awscc.aps.resource_policies_list_only
+WHERE region = 'us-east-1';
+```
+resource_policies in a region or regions, for all properties use resource_policies
-
-## Overview
-| Name | resource_policies_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::APS::ResourcePolicy |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
resource_policies in a region.
-```sql
-SELECT
-region,
-workspace_arn
-FROM awscc.aps.resource_policies_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the resource_policies_list_only resource, see resource_policies
-
diff --git a/website/docs/services/aps/rule_groups_namespaces/index.md b/website/docs/services/aps/rule_groups_namespaces/index.md
index 7c98adb92..c9f19d216 100644
--- a/website/docs/services/aps/rule_groups_namespaces/index.md
+++ b/website/docs/services/aps/rule_groups_namespaces/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a rule_groups_namespace resource
## Fields
+AWS::APS::RuleGroupsNamespace.
@@ -86,31 +112,37 @@ For more information, see
+ rule_groups_namespacesINSERTrule_groups_namespacesDELETErule_groups_namespacesUPDATErule_groups_namespaces_list_onlySELECTrule_groups_namespacesSELECTrule_groups_namespace.
```sql
SELECT
@@ -131,6 +172,19 @@ tags
FROM awscc.aps.rule_groups_namespaces
WHERE region = 'us-east-1' AND data__Identifier = 'rule_groups_namespaces in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.aps.rule_groups_namespaces_list_only
+WHERE region = 'us-east-1';
+```
+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 | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
rule_groups_namespaces in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/aps/scrapers/index.md b/website/docs/services/aps/scrapers/index.md
index 61c6a1625..91baf3e18 100644
--- a/website/docs/services/aps/scrapers/index.md
+++ b/website/docs/services/aps/scrapers/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a scraper resource or lists
## Fields
+
+
+
scraper resource or lists
+
+AWS::APS::Scraper.
@@ -163,31 +189,37 @@ For more information, see
+ scrapersINSERTscrapersDELETEscrapersUPDATEscrapers_list_onlySELECTscrapersSELECTscraper.
```sql
SELECT
@@ -212,6 +253,19 @@ tags
FROM awscc.aps.scrapers
WHERE region = 'us-east-1' AND data__Identifier = 'scrapers in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.aps.scrapers_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
scrapers in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/aps/workspaces/index.md b/website/docs/services/aps/workspaces/index.md
index d4e476766..26baac9b1 100644
--- a/website/docs/services/aps/workspaces/index.md
+++ b/website/docs/services/aps/workspaces/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a workspace resource or lists AWS::APS::Workspace.
@@ -194,31 +220,37 @@ For more information, see
+ workspacesINSERTworkspacesDELETEworkspacesUPDATEworkspaces_list_onlySELECTworkspacesSELECTworkspace.
```sql
SELECT
@@ -244,6 +285,19 @@ tags
FROM awscc.aps.workspaces
WHERE region = 'us-east-1' AND data__Identifier = 'workspaces in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.aps.workspaces_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
workspaces in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/arcregionswitch/index.md b/website/docs/services/arcregionswitch/index.md
index 987a479a0..1f536f860 100644
--- a/website/docs/services/arcregionswitch/index.md
+++ b/website/docs/services/arcregionswitch/index.md
@@ -20,7 +20,7 @@ The arcregionswitch service documentation.
plan resource or lists pl
## Fields
+
+
+
plan resource or lists pl
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ARCRegionSwitch::Plan.
@@ -234,31 +260,37 @@ For more information, see
+ plans
INSERT
+ plans
DELETE
+ plans
UPDATE
+ plans_list_only
SELECT
+ plans
SELECT
@@ -267,6 +299,15 @@ For more information, see
+
+
Gets all properties from an individual plan.
```sql
SELECT
@@ -290,6 +331,19 @@ route53_health_checks
FROM awscc.arcregionswitch.plans
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all plans in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.arcregionswitch.plans_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -414,6 +468,25 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.arcregionswitch.plans
+SET data__PatchDocument = string('{{ {
+ "AssociatedAlarms": associated_alarms,
+ "Description": description,
+ "ExecutionRole": execution_role,
+ "RecoveryTimeObjectiveMinutes": recovery_time_objective_minutes,
+ "Tags": tags,
+ "Triggers": triggers,
+ "Workflows": workflows
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/arcregionswitch/plans_list_only/index.md b/website/docs/services/arcregionswitch/plans_list_only/index.md
deleted file mode 100644
index d8e00ec93..000000000
--- a/website/docs/services/arcregionswitch/plans_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: plans_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - plans_list_only
- - arcregionswitch
- - aws
- - stackql
- - infrastructure-as-code
- - configuration-as-data
- - cloud inventory
-description: Query, deploy and manage AWS resources using SQL
-custom_edit_url: null
-image: /img/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists plans in a region or regions, for all properties use plans
-
-## Overview
-
-
-Name plans_list_only
-Type Resource
-Description Represents a plan that specifies Regions, IAM roles, and workflows of logic required to perform the desired change to your multi-Region application
-Id
-
-
-
-## Fields
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all plans in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.arcregionswitch.plans_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the plans_list_only resource, see plans
-
diff --git a/website/docs/services/arczonalshift/autoshift_observer_notification_statuses/index.md b/website/docs/services/arczonalshift/autoshift_observer_notification_statuses/index.md
index 4fae70232..897315015 100644
--- a/website/docs/services/arczonalshift/autoshift_observer_notification_statuses/index.md
+++ b/website/docs/services/arczonalshift/autoshift_observer_notification_statuses/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an autoshift_observer_notification_statu
## Fields
+
+
+
autoshift_observer_notification_statu
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ARCZonalShift::AutoshiftObserverNotificationStatus.
@@ -76,26 +107,31 @@ For more information, see
+ autoshift_observer_notification_statuses
INSERT
+ autoshift_observer_notification_statuses
DELETE
+ autoshift_observer_notification_statuses_list_only
SELECT
+ autoshift_observer_notification_statuses
SELECT
@@ -104,6 +140,15 @@ For more information, see
+
+
Gets all properties from an individual autoshift_observer_notification_status.
```sql
SELECT
@@ -114,6 +159,20 @@ region
FROM awscc.arczonalshift.autoshift_observer_notification_statuses
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all autoshift_observer_notification_statuses in a region.
+```sql
+SELECT
+region,
+account_id,
+region
+FROM awscc.arczonalshift.autoshift_observer_notification_statuses_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -175,6 +234,7 @@ resources:
+
## `DELETE` example
```sql
diff --git a/website/docs/services/arczonalshift/autoshift_observer_notification_statuses_list_only/index.md b/website/docs/services/arczonalshift/autoshift_observer_notification_statuses_list_only/index.md
deleted file mode 100644
index a2ea21eba..000000000
--- a/website/docs/services/arczonalshift/autoshift_observer_notification_statuses_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-title: autoshift_observer_notification_statuses_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - autoshift_observer_notification_statuses_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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists autoshift_observer_notification_statuses in a region or regions, for all properties use autoshift_observer_notification_statuses
-
-## Overview
-
-
-Name autoshift_observer_notification_statuses_list_only
-Type Resource
-Description Definition of AWS::ARCZonalShift::AutoshiftObserverNotificationStatus Resource Type
-Id
-
-
-
-## Fields
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all autoshift_observer_notification_statuses in a region.
-```sql
-SELECT
-region,
-account_id,
-region
-FROM awscc.arczonalshift.autoshift_observer_notification_statuses_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the autoshift_observer_notification_statuses_list_only resource, see autoshift_observer_notification_statuses
-
diff --git a/website/docs/services/arczonalshift/index.md b/website/docs/services/arczonalshift/index.md
index 05923fe15..4dee61b46 100644
--- a/website/docs/services/arczonalshift/index.md
+++ b/website/docs/services/arczonalshift/index.md
@@ -20,7 +20,7 @@ The arczonalshift service documentation.
-total resources: 4
+total resources: 2
@@ -29,11 +29,9 @@ The arczonalshift service documentation.
## Resources
\ No newline at end of file
diff --git a/website/docs/services/arczonalshift/zonal_autoshift_configurations/index.md b/website/docs/services/arczonalshift/zonal_autoshift_configurations/index.md
index 975f37979..f80944ef2 100644
--- a/website/docs/services/arczonalshift/zonal_autoshift_configurations/index.md
+++ b/website/docs/services/arczonalshift/zonal_autoshift_configurations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a zonal_autoshift_configuration r
## Fields
+
+
+
zonal_autoshift_configuration r
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::ARCZonalShift::ZonalAutoshiftConfiguration.
@@ -98,31 +124,37 @@ For more information, see
+ zonal_autoshift_configurations
INSERT
+ zonal_autoshift_configurations
DELETE
+ zonal_autoshift_configurations
UPDATE
+ zonal_autoshift_configurations_list_only
SELECT
+ zonal_autoshift_configurations
SELECT
@@ -131,6 +163,15 @@ For more information, see
+
+
Gets all properties from an individual zonal_autoshift_configuration.
```sql
SELECT
@@ -141,6 +182,19 @@ resource_identifier
FROM awscc.arczonalshift.zonal_autoshift_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all zonal_autoshift_configurations in a region.
+```sql
+SELECT
+region,
+resource_identifier
+FROM awscc.arczonalshift.zonal_autoshift_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -222,6 +276,20 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.arczonalshift.zonal_autoshift_configurations
+SET data__PatchDocument = string('{{ {
+ "ZonalAutoshiftStatus": zonal_autoshift_status,
+ "PracticeRunConfiguration": practice_run_configuration
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/arczonalshift/zonal_autoshift_configurations_list_only/index.md b/website/docs/services/arczonalshift/zonal_autoshift_configurations_list_only/index.md
deleted file mode 100644
index f608fdf34..000000000
--- a/website/docs/services/arczonalshift/zonal_autoshift_configurations_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all zonal_autoshift_configurations in a region.
-```sql
-SELECT
-region,
-resource_identifier
-FROM awscc.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/website/docs/services/athena/capacity_reservations/index.md b/website/docs/services/athena/capacity_reservations/index.md
index d7f6a2537..78301b5be 100644
--- a/website/docs/services/athena/capacity_reservations/index.md
+++ b/website/docs/services/athena/capacity_reservations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a capacity_reservation resource o
## Fields
+
+
+
capacity_reservation resource o
"description": "AWS region."
}
]} />
+
+AWS::Athena::CapacityReservation.
@@ -120,31 +146,37 @@ For more information, see
+ capacity_reservationsINSERTcapacity_reservationsDELETEcapacity_reservationsUPDATEcapacity_reservations_list_onlySELECTcapacity_reservationsSELECTcapacity_reservation.
```sql
SELECT
@@ -169,6 +210,19 @@ tags
FROM awscc.athena.capacity_reservations
WHERE region = 'us-east-1' AND data__Identifier = 'capacity_reservations in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.athena.capacity_reservations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
capacity_reservations in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/athena/data_catalogs/index.md b/website/docs/services/athena/data_catalogs/index.md
index 4a55867ab..6d8c48b65 100644
--- a/website/docs/services/athena/data_catalogs/index.md
+++ b/website/docs/services/athena/data_catalogs/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a data_catalog resource or lists
## Fields
+AWS::Athena::DataCatalog.
@@ -101,31 +127,37 @@ For more information, see
+ data_catalogsINSERTdata_catalogsDELETEdata_catalogsUPDATEdata_catalogs_list_onlySELECTdata_catalogsSELECTdata_catalog.
```sql
SELECT
@@ -149,6 +190,19 @@ error
FROM awscc.athena.data_catalogs
WHERE region = 'us-east-1' AND data__Identifier = 'data_catalogs in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.athena.data_catalogs_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
data_catalogs in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.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/website/docs/services/athena/index.md b/website/docs/services/athena/index.md
index 129adcf53..909a461aa 100644
--- a/website/docs/services/athena/index.md
+++ b/website/docs/services/athena/index.md
@@ -20,7 +20,7 @@ The athena service documentation.
named_query resource or lists <
## Fields
+AWS::Athena::NamedQuery.
@@ -79,26 +110,31 @@ For more information, see
+ named_queriesINSERTnamed_queriesDELETEnamed_queries_list_onlySELECTnamed_queriesSELECTnamed_query.
```sql
SELECT
@@ -120,6 +165,19 @@ named_query_id
FROM awscc.athena.named_queries
WHERE region = 'us-east-1' AND data__Identifier = 'named_queries in a region.
+```sql
+SELECT
+region,
+named_query_id
+FROM awscc.athena.named_queries_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
named_queries in a region.
-```sql
-SELECT
-region,
-named_query_id
-FROM awscc.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/website/docs/services/athena/prepared_statements/index.md b/website/docs/services/athena/prepared_statements/index.md
index 914556f20..57e3bccc1 100644
--- a/website/docs/services/athena/prepared_statements/index.md
+++ b/website/docs/services/athena/prepared_statements/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a prepared_statement resource or
## Fields
+AWS::Athena::PreparedStatement.
@@ -69,31 +100,37 @@ For more information, see
+ prepared_statementsINSERTprepared_statementsDELETEprepared_statementsUPDATEprepared_statements_list_onlySELECTprepared_statementsSELECTprepared_statement.
```sql
SELECT
@@ -113,6 +159,20 @@ query_statement
FROM awscc.athena.prepared_statements
WHERE region = 'us-east-1' AND data__Identifier = 'prepared_statements in a region.
+```sql
+SELECT
+region,
+statement_name,
+work_group
+FROM awscc.athena.prepared_statements_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
prepared_statements in a region.
-```sql
-SELECT
-region,
-statement_name,
-work_group
-FROM awscc.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/website/docs/services/athena/work_groups/index.md b/website/docs/services/athena/work_groups/index.md
index c09b0556b..066ebe4c0 100644
--- a/website/docs/services/athena/work_groups/index.md
+++ b/website/docs/services/athena/work_groups/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a work_group resource or lists AWS::Athena::WorkGroup.
@@ -393,31 +419,37 @@ For more information, see
+ work_groupsINSERTwork_groupsDELETEwork_groupsUPDATEwork_groups_list_onlySELECTwork_groupsSELECTwork_group.
```sql
SELECT
@@ -441,6 +482,19 @@ recursive_delete_option
FROM awscc.athena.work_groups
WHERE region = 'us-east-1' AND data__Identifier = 'work_groups in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.athena.work_groups_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
work_groups in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.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/website/docs/services/auditmanager/assessments/index.md b/website/docs/services/auditmanager/assessments/index.md
index 65a39238f..9d1133870 100644
--- a/website/docs/services/auditmanager/assessments/index.md
+++ b/website/docs/services/auditmanager/assessments/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an assessment resource or lists <
## Fields
+AWS::AuditManager::Assessment.
@@ -228,31 +254,37 @@ For more information, see
+ assessmentsINSERTassessmentsDELETEassessmentsUPDATEassessments_list_onlySELECTassessmentsSELECTassessment.
```sql
SELECT
@@ -281,6 +322,19 @@ description
FROM awscc.auditmanager.assessments
WHERE region = 'us-east-1' AND data__Identifier = 'assessments in a region.
+```sql
+SELECT
+region,
+assessment_id
+FROM awscc.auditmanager.assessments_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
assessments in a region.
-```sql
-SELECT
-region,
-assessment_id
-FROM awscc.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/website/docs/services/auditmanager/index.md b/website/docs/services/auditmanager/index.md
index 46e7d9854..bff05476c 100644
--- a/website/docs/services/auditmanager/index.md
+++ b/website/docs/services/auditmanager/index.md
@@ -20,7 +20,7 @@ The auditmanager service documentation.
auto_scaling_group resource or
## Fields
+AWS::AutoScaling::AutoScalingGroup.
@@ -454,31 +480,37 @@ For more information, see
+ auto_scaling_groupsINSERTauto_scaling_groupsDELETEauto_scaling_groupsUPDATEauto_scaling_groups_list_onlySELECTauto_scaling_groupsSELECTauto_scaling_group.
```sql
SELECT
@@ -530,6 +571,19 @@ max_instance_lifetime
FROM awscc.autoscaling.auto_scaling_groups
WHERE region = 'us-east-1' AND data__Identifier = 'auto_scaling_groups in a region.
+```sql
+SELECT
+region,
+auto_scaling_group_name
+FROM awscc.autoscaling.auto_scaling_groups_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
auto_scaling_groups in a region.
-```sql
-SELECT
-region,
-auto_scaling_group_name
-FROM awscc.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/website/docs/services/autoscaling/index.md b/website/docs/services/autoscaling/index.md
index d9eae8826..fc162ac83 100644
--- a/website/docs/services/autoscaling/index.md
+++ b/website/docs/services/autoscaling/index.md
@@ -20,7 +20,7 @@ The autoscaling service documentation.
launch_configuration resource o
## Fields
+AWS::AutoScaling::LaunchConfiguration.
@@ -220,26 +246,31 @@ For more information, see
+ launch_configurationsINSERTlaunch_configurationsDELETElaunch_configurations_list_onlySELECTlaunch_configurationsSELECTlaunch_configuration.
```sql
SELECT
@@ -274,6 +314,19 @@ instance_monitoring
FROM awscc.autoscaling.launch_configurations
WHERE region = 'us-east-1' AND data__Identifier = 'launch_configurations in a region.
+```sql
+SELECT
+region,
+launch_configuration_name
+FROM awscc.autoscaling.launch_configurations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
launch_configurations in a region.
-```sql
-SELECT
-region,
-launch_configuration_name
-FROM awscc.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/website/docs/services/autoscaling/lifecycle_hooks/index.md b/website/docs/services/autoscaling/lifecycle_hooks/index.md
index cf7f49310..bdcd1330a 100644
--- a/website/docs/services/autoscaling/lifecycle_hooks/index.md
+++ b/website/docs/services/autoscaling/lifecycle_hooks/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a lifecycle_hook resource or list
## Fields
+AWS::AutoScaling::LifecycleHook.
@@ -89,31 +120,37 @@ For more information, see
+ lifecycle_hooksINSERTlifecycle_hooksDELETElifecycle_hooksUPDATElifecycle_hooks_list_onlySELECTlifecycle_hooksSELECTlifecycle_hook.
```sql
SELECT
@@ -137,6 +183,20 @@ role_arn
FROM awscc.autoscaling.lifecycle_hooks
WHERE region = 'us-east-1' AND data__Identifier = 'lifecycle_hooks in a region.
+```sql
+SELECT
+region,
+auto_scaling_group_name,
+lifecycle_hook_name
+FROM awscc.autoscaling.lifecycle_hooks_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
lifecycle_hooks in a region.
-```sql
-SELECT
-region,
-auto_scaling_group_name,
-lifecycle_hook_name
-FROM awscc.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/website/docs/services/autoscaling/scaling_policies/index.md b/website/docs/services/autoscaling/scaling_policies/index.md
index df10e23ec..c1673927b 100644
--- a/website/docs/services/autoscaling/scaling_policies/index.md
+++ b/website/docs/services/autoscaling/scaling_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a scaling_policy resource or list
## Fields
+AWS::AutoScaling::ScalingPolicy.
@@ -367,31 +393,37 @@ For more information, see
+ scaling_policiesINSERTscaling_policiesDELETEscaling_policiesUPDATEscaling_policies_list_onlySELECTscaling_policiesSELECTscaling_policy.
```sql
SELECT
@@ -420,6 +461,19 @@ arn
FROM awscc.autoscaling.scaling_policies
WHERE region = 'us-east-1' AND data__Identifier = 'scaling_policies in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.autoscaling.scaling_policies_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
scaling_policies in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/autoscaling/scheduled_actions/index.md b/website/docs/services/autoscaling/scheduled_actions/index.md
index b33952b8b..a1809a812 100644
--- a/website/docs/services/autoscaling/scheduled_actions/index.md
+++ b/website/docs/services/autoscaling/scheduled_actions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a scheduled_action resource or li
## Fields
+AWS::AutoScaling::ScheduledAction.
@@ -94,31 +125,37 @@ For more information, see
+ scheduled_actionsINSERTscheduled_actionsDELETEscheduled_actionsUPDATEscheduled_actions_list_onlySELECTscheduled_actionsSELECTscheduled_action.
```sql
SELECT
@@ -143,6 +189,20 @@ max_size
FROM awscc.autoscaling.scheduled_actions
WHERE region = 'us-east-1' AND data__Identifier = 'scheduled_actions in a region.
+```sql
+SELECT
+region,
+scheduled_action_name,
+auto_scaling_group_name
+FROM awscc.autoscaling.scheduled_actions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
scheduled_actions in a region.
-```sql
-SELECT
-region,
-scheduled_action_name,
-auto_scaling_group_name
-FROM awscc.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/website/docs/services/autoscaling/warm_pools/index.md b/website/docs/services/autoscaling/warm_pools/index.md
index ec2b5ab5c..b0a24a774 100644
--- a/website/docs/services/autoscaling/warm_pools/index.md
+++ b/website/docs/services/autoscaling/warm_pools/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a warm_pool resource or lists AWS::AutoScaling::WarmPool.
@@ -81,31 +107,37 @@ For more information, see
+ warm_poolsINSERTwarm_poolsDELETEwarm_poolsUPDATEwarm_pools_list_onlySELECTwarm_poolsSELECTwarm_pool.
```sql
SELECT
@@ -126,6 +167,19 @@ instance_reuse_policy
FROM awscc.autoscaling.warm_pools
WHERE region = 'us-east-1' AND data__Identifier = 'warm_pools in a region.
+```sql
+SELECT
+region,
+auto_scaling_group_name
+FROM awscc.autoscaling.warm_pools_list_only
+WHERE region = 'us-east-1';
+```
+warm_pools in a region or regions, for all properties use warm_pools
-
-## Overview
-| Name | warm_pools_list_only |
| Type | Resource |
| Description | Resource schema for AWS::AutoScaling::WarmPool. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
warm_pools in a region.
-```sql
-SELECT
-region,
-auto_scaling_group_name
-FROM awscc.autoscaling.warm_pools_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the warm_pools_list_only resource, see warm_pools
-
diff --git a/website/docs/services/b2bi/capabilities/index.md b/website/docs/services/b2bi/capabilities/index.md
index c94f4bb53..70c60cacb 100644
--- a/website/docs/services/b2bi/capabilities/index.md
+++ b/website/docs/services/b2bi/capabilities/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a capability resource or lists AWS::B2BI::Capability.
@@ -118,31 +144,37 @@ For more information, see
+ capabilitiesINSERTcapabilitiesDELETEcapabilitiesUPDATEcapabilities_list_onlySELECTcapabilitiesSELECTcapability.
```sql
SELECT
@@ -167,6 +208,19 @@ type
FROM awscc.b2bi.capabilities
WHERE region = 'us-east-1' AND data__Identifier = 'capabilities in a region.
+```sql
+SELECT
+region,
+capability_id
+FROM awscc.b2bi.capabilities_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
capabilities in a region.
-```sql
-SELECT
-region,
-capability_id
-FROM awscc.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/website/docs/services/b2bi/index.md b/website/docs/services/b2bi/index.md
index d2f7c94f7..9d862f2c7 100644
--- a/website/docs/services/b2bi/index.md
+++ b/website/docs/services/b2bi/index.md
@@ -20,7 +20,7 @@ The b2bi service documentation.
partnership resource or lists <
## Fields
+AWS::B2BI::Partnership.
@@ -147,31 +173,37 @@ For more information, see
+ partnershipsINSERTpartnershipsDELETEpartnershipsUPDATEpartnerships_list_onlySELECTpartnershipsSELECTpartnership.
```sql
SELECT
@@ -199,6 +240,19 @@ trading_partner_id
FROM awscc.b2bi.partnerships
WHERE region = 'us-east-1' AND data__Identifier = 'partnerships in a region.
+```sql
+SELECT
+region,
+partnership_id
+FROM awscc.b2bi.partnerships_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
partnerships in a region.
-```sql
-SELECT
-region,
-partnership_id
-FROM awscc.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/website/docs/services/b2bi/profiles/index.md b/website/docs/services/b2bi/profiles/index.md
index 5ef3b6fba..e24b04331 100644
--- a/website/docs/services/b2bi/profiles/index.md
+++ b/website/docs/services/b2bi/profiles/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a profile resource or lists
## Fields
+
+
+
profile resource or lists
+
+AWS::B2BI::Profile.
@@ -116,31 +142,37 @@ For more information, see
+ profilesINSERTprofilesDELETEprofilesUPDATEprofiles_list_onlySELECTprofilesSELECTprofile.
```sql
SELECT
@@ -167,6 +208,19 @@ tags
FROM awscc.b2bi.profiles
WHERE region = 'us-east-1' AND data__Identifier = 'profiles in a region.
+```sql
+SELECT
+region,
+profile_id
+FROM awscc.b2bi.profiles_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
profiles in a region.
-```sql
-SELECT
-region,
-profile_id
-FROM awscc.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/website/docs/services/b2bi/transformers/index.md b/website/docs/services/b2bi/transformers/index.md
index 548f0b48a..0fb047ca2 100644
--- a/website/docs/services/b2bi/transformers/index.md
+++ b/website/docs/services/b2bi/transformers/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a transformer resource or lists <
## Fields
+AWS::B2BI::Transformer.
@@ -244,31 +270,37 @@ For more information, see
+ transformersINSERTtransformersDELETEtransformersUPDATEtransformers_list_onlySELECTtransformersSELECTtransformer.
```sql
SELECT
@@ -299,6 +340,19 @@ transformer_id
FROM awscc.b2bi.transformers
WHERE region = 'us-east-1' AND data__Identifier = 'transformers in a region.
+```sql
+SELECT
+region,
+transformer_id
+FROM awscc.b2bi.transformers_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
transformers in a region.
-```sql
-SELECT
-region,
-transformer_id
-FROM awscc.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/website/docs/services/backup/backup_plans/index.md b/website/docs/services/backup/backup_plans/index.md
index fec96d08f..b64de1eba 100644
--- a/website/docs/services/backup/backup_plans/index.md
+++ b/website/docs/services/backup/backup_plans/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a backup_plan resource or lists <
## Fields
+AWS::Backup::BackupPlan.
@@ -196,31 +349,37 @@ For more information, see
+ backup_plansINSERTbackup_plansDELETEbackup_plansUPDATEbackup_plans_list_onlySELECTbackup_plansSELECTbackup_plan.
```sql
SELECT
@@ -241,6 +409,19 @@ version_id
FROM awscc.backup.backup_plans
WHERE region = 'us-east-1' AND data__Identifier = 'backup_plans in a region.
+```sql
+SELECT
+region,
+backup_plan_id
+FROM awscc.backup.backup_plans_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
backup_plans in a region.
-```sql
-SELECT
-region,
-backup_plan_id
-FROM awscc.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/website/docs/services/backup/backup_selections/index.md b/website/docs/services/backup/backup_selections/index.md
index a4c05757a..dc7b342eb 100644
--- a/website/docs/services/backup/backup_selections/index.md
+++ b/website/docs/services/backup/backup_selections/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a backup_selection resource or li
## Fields
+AWS::Backup::BackupSelection.
@@ -152,26 +178,31 @@ For more information, see
+ backup_selectionsINSERTbackup_selectionsDELETEbackup_selections_list_onlySELECTbackup_selectionsSELECTbackup_selection.
```sql
SELECT
@@ -191,6 +231,19 @@ selection_id
FROM awscc.backup.backup_selections
WHERE region = 'us-east-1' AND data__Identifier = 'backup_selections in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.backup.backup_selections_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
backup_selections in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/backup/backup_vaults/index.md b/website/docs/services/backup/backup_vaults/index.md
index df8704ac5..a0651e421 100644
--- a/website/docs/services/backup/backup_vaults/index.md
+++ b/website/docs/services/backup/backup_vaults/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a backup_vault resource or lists
## Fields
+AWS::Backup::BackupVault.
@@ -113,31 +139,37 @@ For more information, see
+ backup_vaultsINSERTbackup_vaultsDELETEbackup_vaultsUPDATEbackup_vaults_list_onlySELECTbackup_vaultsSELECTbackup_vault.
```sql
SELECT
@@ -160,6 +201,19 @@ backup_vault_arn
FROM awscc.backup.backup_vaults
WHERE region = 'us-east-1' AND data__Identifier = 'backup_vaults in a region.
+```sql
+SELECT
+region,
+backup_vault_name
+FROM awscc.backup.backup_vaults_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
backup_vaults in a region.
-```sql
-SELECT
-region,
-backup_vault_name
-FROM awscc.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/website/docs/services/backup/frameworks/index.md b/website/docs/services/backup/frameworks/index.md
index a6f9f7eaa..46c1df813 100644
--- a/website/docs/services/backup/frameworks/index.md
+++ b/website/docs/services/backup/frameworks/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a framework resource or lists AWS::Backup::Framework.
@@ -159,31 +185,37 @@ For more information, see
+ frameworksINSERTframeworksDELETEframeworksUPDATEframeworks_list_onlySELECTframeworksSELECTframework.
```sql
SELECT
@@ -207,6 +248,19 @@ framework_tags
FROM awscc.backup.frameworks
WHERE region = 'us-east-1' AND data__Identifier = 'frameworks in a region.
+```sql
+SELECT
+region,
+framework_arn
+FROM awscc.backup.frameworks_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
frameworks in a region.
-```sql
-SELECT
-region,
-framework_arn
-FROM awscc.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/website/docs/services/backup/index.md b/website/docs/services/backup/index.md
index cabb3d069..8ca669339 100644
--- a/website/docs/services/backup/index.md
+++ b/website/docs/services/backup/index.md
@@ -20,7 +20,7 @@ The backup service documentation.
logically_air_gapped_backup_vaultAWS::Backup::LogicallyAirGappedBackupVault.
@@ -111,31 +137,37 @@ For more information, see
+ logically_air_gapped_backup_vaultsINSERTlogically_air_gapped_backup_vaultsDELETElogically_air_gapped_backup_vaultsUPDATElogically_air_gapped_backup_vaults_list_onlySELECTlogically_air_gapped_backup_vaultsSELECTlogically_air_gapped_backup_vault.
```sql
SELECT
@@ -161,6 +202,19 @@ access_policy
FROM awscc.backup.logically_air_gapped_backup_vaults
WHERE region = 'us-east-1' AND data__Identifier = 'logically_air_gapped_backup_vaults in a region.
+```sql
+SELECT
+region,
+backup_vault_name
+FROM awscc.backup.logically_air_gapped_backup_vaults_list_only
+WHERE region = 'us-east-1';
+```
+logically_air_gapped_backup_vaults in a region or regions, for all properties use logically_air_gapped_backup_vaults
-
-## Overview
-| Name | logically_air_gapped_backup_vaults_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::Backup::LogicallyAirGappedBackupVault |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
logically_air_gapped_backup_vaults in a region.
-```sql
-SELECT
-region,
-backup_vault_name
-FROM awscc.backup.logically_air_gapped_backup_vaults_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the logically_air_gapped_backup_vaults_list_only resource, see logically_air_gapped_backup_vaults
-
diff --git a/website/docs/services/backup/report_plans/index.md b/website/docs/services/backup/report_plans/index.md
index 0fdfcb486..04e0eb981 100644
--- a/website/docs/services/backup/report_plans/index.md
+++ b/website/docs/services/backup/report_plans/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a report_plan resource or lists <
## Fields
+AWS::Backup::ReportPlan.
@@ -135,31 +161,37 @@ For more information, see
+ report_plansINSERTreport_plansDELETEreport_plansUPDATEreport_plans_list_onlySELECTreport_plansSELECTreport_plan.
```sql
SELECT
@@ -181,6 +222,19 @@ report_setting
FROM awscc.backup.report_plans
WHERE region = 'us-east-1' AND data__Identifier = 'report_plans in a region.
+```sql
+SELECT
+region,
+report_plan_arn
+FROM awscc.backup.report_plans_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
report_plans in a region.
-```sql
-SELECT
-region,
-report_plan_arn
-FROM awscc.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/website/docs/services/backup/restore_testing_plans/index.md b/website/docs/services/backup/restore_testing_plans/index.md
index 12def4f3b..1eb879a73 100644
--- a/website/docs/services/backup/restore_testing_plans/index.md
+++ b/website/docs/services/backup/restore_testing_plans/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a restore_testing_plan resource o
## Fields
+AWS::Backup::RestoreTestingPlan.
@@ -123,31 +149,37 @@ For more information, see
+ restore_testing_plansINSERTrestore_testing_plansDELETErestore_testing_plansUPDATErestore_testing_plans_list_onlySELECTrestore_testing_plansSELECTrestore_testing_plan.
```sql
SELECT
@@ -170,6 +211,19 @@ tags
FROM awscc.backup.restore_testing_plans
WHERE region = 'us-east-1' AND data__Identifier = 'restore_testing_plans in a region.
+```sql
+SELECT
+region,
+restore_testing_plan_name
+FROM awscc.backup.restore_testing_plans_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
restore_testing_plans in a region.
-```sql
-SELECT
-region,
-restore_testing_plan_name
-FROM awscc.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/website/docs/services/backup/restore_testing_selections/index.md b/website/docs/services/backup/restore_testing_selections/index.md
index ef29d6583..700311a93 100644
--- a/website/docs/services/backup/restore_testing_selections/index.md
+++ b/website/docs/services/backup/restore_testing_selections/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a restore_testing_selection resou
## Fields
+AWS::Backup::RestoreTestingSelection.
@@ -113,31 +144,37 @@ For more information, see
+ restore_testing_selectionsINSERTrestore_testing_selectionsDELETErestore_testing_selectionsUPDATErestore_testing_selections_list_onlySELECTrestore_testing_selectionsSELECTrestore_testing_selection.
```sql
SELECT
@@ -161,6 +207,20 @@ validation_window_hours
FROM awscc.backup.restore_testing_selections
WHERE region = 'us-east-1' AND data__Identifier = 'restore_testing_selections in a region.
+```sql
+SELECT
+region,
+restore_testing_plan_name,
+restore_testing_selection_name
+FROM awscc.backup.restore_testing_selections_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
restore_testing_selections in a region.
-```sql
-SELECT
-region,
-restore_testing_plan_name,
-restore_testing_selection_name
-FROM awscc.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/website/docs/services/backupgateway/hypervisors/index.md b/website/docs/services/backupgateway/hypervisors/index.md
index 82f9b3448..25d43898e 100644
--- a/website/docs/services/backupgateway/hypervisors/index.md
+++ b/website/docs/services/backupgateway/hypervisors/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a hypervisor resource or lists AWS::BackupGateway::Hypervisor.
@@ -101,31 +127,37 @@ For more information, see
+ hypervisorsINSERThypervisorsDELETEhypervisorsUPDATEhypervisors_list_onlySELECThypervisorsSELECThypervisor.
```sql
SELECT
@@ -149,6 +190,19 @@ username
FROM awscc.backupgateway.hypervisors
WHERE region = 'us-east-1' AND data__Identifier = 'hypervisors in a region.
+```sql
+SELECT
+region,
+hypervisor_arn
+FROM awscc.backupgateway.hypervisors_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
hypervisors in a region.
-```sql
-SELECT
-region,
-hypervisor_arn
-FROM awscc.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/website/docs/services/backupgateway/index.md b/website/docs/services/backupgateway/index.md
index 45c5ec232..8c2320cf6 100644
--- a/website/docs/services/backupgateway/index.md
+++ b/website/docs/services/backupgateway/index.md
@@ -20,7 +20,7 @@ The backupgateway service documentation.
compute_environment resource or
## Fields
+AWS::Batch::ComputeEnvironment.
@@ -296,31 +322,37 @@ For more information, see
+ compute_environmentsINSERTcompute_environmentsDELETEcompute_environmentsUPDATEcompute_environments_list_onlySELECTcompute_environmentsSELECTcompute_environment.
```sql
SELECT
@@ -348,6 +389,19 @@ context
FROM awscc.batch.compute_environments
WHERE region = 'us-east-1' AND data__Identifier = 'compute_environments in a region.
+```sql
+SELECT
+region,
+compute_environment_arn
+FROM awscc.batch.compute_environments_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
compute_environments in a region.
-```sql
-SELECT
-region,
-compute_environment_arn
-FROM awscc.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/website/docs/services/batch/consumable_resources/index.md b/website/docs/services/batch/consumable_resources/index.md
index 622201e94..96221acab 100644
--- a/website/docs/services/batch/consumable_resources/index.md
+++ b/website/docs/services/batch/consumable_resources/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a consumable_resource resource or
## Fields
+AWS::Batch::ConsumableResource.
@@ -89,31 +115,37 @@ For more information, see
+ consumable_resourcesINSERTconsumable_resourcesDELETEconsumable_resourcesUPDATEconsumable_resources_list_onlySELECTconsumable_resourcesSELECTconsumable_resource.
```sql
SELECT
@@ -137,6 +178,19 @@ tags
FROM awscc.batch.consumable_resources
WHERE region = 'us-east-1' AND data__Identifier = 'consumable_resources in a region.
+```sql
+SELECT
+region,
+consumable_resource_arn
+FROM awscc.batch.consumable_resources_list_only
+WHERE region = 'us-east-1';
+```
+consumable_resources in a region or regions, for all properties use consumable_resources
-
-## Overview
-| Name | consumable_resources_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::Batch::ConsumableResource |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
consumable_resources in a region.
-```sql
-SELECT
-region,
-consumable_resource_arn
-FROM awscc.batch.consumable_resources_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the consumable_resources_list_only resource, see consumable_resources
-
diff --git a/website/docs/services/batch/index.md b/website/docs/services/batch/index.md
index 589314525..a5b248c6b 100644
--- a/website/docs/services/batch/index.md
+++ b/website/docs/services/batch/index.md
@@ -20,7 +20,7 @@ The batch service documentation.
job_definition resource or list
## Fields
+AWS::Batch::JobDefinition.
@@ -1085,31 +1111,37 @@ For more information, see
+ job_definitionsINSERTjob_definitionsDELETEjob_definitionsUPDATEjob_definitions_list_onlySELECTjob_definitionsSELECTjob_definition.
```sql
SELECT
@@ -1140,6 +1181,19 @@ consumable_resource_properties
FROM awscc.batch.job_definitions
WHERE region = 'us-east-1' AND data__Identifier = 'job_definitions in a region.
+```sql
+SELECT
+region,
+job_definition_name
+FROM awscc.batch.job_definitions_list_only
+WHERE region = 'us-east-1';
+```
+job_definitions in a region or regions, for all properties use job_definitions
-
-## Overview
-| Name | job_definitions_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::Batch::JobDefinition |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
job_definitions in a region.
-```sql
-SELECT
-region,
-job_definition_name
-FROM awscc.batch.job_definitions_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the job_definitions_list_only resource, see job_definitions
-
diff --git a/website/docs/services/batch/job_queues/index.md b/website/docs/services/batch/job_queues/index.md
index de35547bd..e31cc88a6 100644
--- a/website/docs/services/batch/job_queues/index.md
+++ b/website/docs/services/batch/job_queues/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a job_queue resource or lists AWS::Batch::JobQueue.
@@ -140,31 +166,37 @@ For more information, see
+ job_queuesINSERTjob_queuesDELETEjob_queuesUPDATEjob_queues_list_onlySELECTjob_queuesSELECTjob_queue.
```sql
SELECT
@@ -190,6 +231,19 @@ tags
FROM awscc.batch.job_queues
WHERE region = 'us-east-1' AND data__Identifier = 'job_queues in a region.
+```sql
+SELECT
+region,
+job_queue_arn
+FROM awscc.batch.job_queues_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
job_queues in a region.
-```sql
-SELECT
-region,
-job_queue_arn
-FROM awscc.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/website/docs/services/batch/scheduling_policies/index.md b/website/docs/services/batch/scheduling_policies/index.md
index db003627f..973878ffc 100644
--- a/website/docs/services/batch/scheduling_policies/index.md
+++ b/website/docs/services/batch/scheduling_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a scheduling_policy resource or l
## Fields
+AWS::Batch::SchedulingPolicy.
@@ -98,31 +124,37 @@ For more information, see
+ scheduling_policiesINSERTscheduling_policiesDELETEscheduling_policiesUPDATEscheduling_policies_list_onlySELECTscheduling_policiesSELECTscheduling_policy.
```sql
SELECT
@@ -142,6 +183,19 @@ tags
FROM awscc.batch.scheduling_policies
WHERE region = 'us-east-1' AND data__Identifier = 'scheduling_policies in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.batch.scheduling_policies_list_only
+WHERE region = 'us-east-1';
+```
+scheduling_policies in a region or regions, for all properties use scheduling_policies
-
-## Overview
-| Name | scheduling_policies_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::Batch::SchedulingPolicy |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
scheduling_policies in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/batch/service_environments/index.md b/website/docs/services/batch/service_environments/index.md
index 30c362459..6bd207633 100644
--- a/website/docs/services/batch/service_environments/index.md
+++ b/website/docs/services/batch/service_environments/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a service_environment resource or
## Fields
+AWS::Batch::ServiceEnvironment.
@@ -91,31 +117,37 @@ For more information, see
+ service_environmentsINSERTservice_environmentsDELETEservice_environmentsUPDATEservice_environments_list_onlySELECTservice_environmentsSELECTservice_environment.
```sql
SELECT
@@ -137,6 +178,19 @@ tags
FROM awscc.batch.service_environments
WHERE region = 'us-east-1' AND data__Identifier = 'service_environments in a region.
+```sql
+SELECT
+region,
+service_environment_arn
+FROM awscc.batch.service_environments_list_only
+WHERE region = 'us-east-1';
+```
+service_environments in a region or regions, for all properties use service_environments
-
-## Overview
-| Name | service_environments_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::Batch::ServiceEnvironment |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
service_environments in a region.
-```sql
-SELECT
-region,
-service_environment_arn
-FROM awscc.batch.service_environments_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the service_environments_list_only resource, see service_environments
-
diff --git a/website/docs/services/bcmdataexports/exports/index.md b/website/docs/services/bcmdataexports/exports/index.md
index f1b132a5c..7dad070eb 100644
--- a/website/docs/services/bcmdataexports/exports/index.md
+++ b/website/docs/services/bcmdataexports/exports/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an export resource or lists
## Fields
+
+
+
export resource or lists
+
+AWS::BCMDataExports::Export.
@@ -100,31 +155,37 @@ For more information, see
+ exportsINSERTexportsDELETEexportsUPDATEexports_list_onlySELECTexportsSELECTexport.
```sql
SELECT
@@ -143,6 +213,19 @@ tags
FROM awscc.bcmdataexports.exports
WHERE region = 'us-east-1' AND data__Identifier = 'exports in a region.
+```sql
+SELECT
+region,
+export_arn
+FROM awscc.bcmdataexports.exports_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
exports in a region.
-```sql
-SELECT
-region,
-export_arn
-FROM awscc.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/website/docs/services/bcmdataexports/index.md b/website/docs/services/bcmdataexports/index.md
index 56657ef55..1ba7b9e76 100644
--- a/website/docs/services/bcmdataexports/index.md
+++ b/website/docs/services/bcmdataexports/index.md
@@ -20,7 +20,7 @@ The bcmdataexports service documentation.
agent_alias resource or lists
## Fields
+AWS::Bedrock::AgentAlias.
@@ -135,31 +166,37 @@ For more information, see
+ agent_aliasesINSERTagent_aliasesDELETEagent_aliasesUPDATEagent_aliases_list_onlySELECTagent_aliasesSELECTagent_alias.
```sql
SELECT
@@ -186,6 +232,20 @@ updated_at
FROM awscc.bedrock.agent_aliases
WHERE region = 'us-east-1' AND data__Identifier = 'agent_aliases in a region.
+```sql
+SELECT
+region,
+agent_id,
+agent_alias_id
+FROM awscc.bedrock.agent_aliases_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
agent_aliases in a region.
-```sql
-SELECT
-region,
-agent_id,
-agent_alias_id
-FROM awscc.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/website/docs/services/bedrock/agents/index.md b/website/docs/services/bedrock/agents/index.md
index 53216f6d6..69ac8f121 100644
--- a/website/docs/services/bedrock/agents/index.md
+++ b/website/docs/services/bedrock/agents/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an agent resource or lists
## Fields
+
+
+
agent resource or lists
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Bedrock::Agent.
@@ -427,31 +453,37 @@ For more information, see
+ agents
INSERT
+ agents
DELETE
+ agents
UPDATE
+ agents_list_only
SELECT
+ agents
SELECT
@@ -460,6 +492,15 @@ For more information, see
+
+
Gets all properties from an individual agent.
```sql
SELECT
@@ -496,6 +537,19 @@ updated_at
FROM awscc.bedrock.agents
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all agents in a region.
+```sql
+SELECT
+region,
+agent_id
+FROM awscc.bedrock.agents_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -678,6 +732,38 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.bedrock.agents
+SET data__PatchDocument = string('{{ {
+ "ActionGroups": action_groups,
+ "AgentName": agent_name,
+ "AgentResourceRoleArn": agent_resource_role_arn,
+ "AutoPrepare": auto_prepare,
+ "CustomOrchestration": custom_orchestration,
+ "CustomerEncryptionKeyArn": customer_encryption_key_arn,
+ "SkipResourceInUseCheckOnDelete": skip_resource_in_use_check_on_delete,
+ "Description": description,
+ "FoundationModel": foundation_model,
+ "GuardrailConfiguration": guardrail_configuration,
+ "MemoryConfiguration": memory_configuration,
+ "IdleSessionTTLInSeconds": idle_session_ttl_in_seconds,
+ "AgentCollaboration": agent_collaboration,
+ "Instruction": instruction,
+ "KnowledgeBases": knowledge_bases,
+ "AgentCollaborators": agent_collaborators,
+ "OrchestrationType": orchestration_type,
+ "PromptOverrideConfiguration": prompt_override_configuration,
+ "Tags": tags,
+ "TestAliasTags": test_alias_tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/bedrock/agents_list_only/index.md b/website/docs/services/bedrock/agents_list_only/index.md
deleted file mode 100644
index bfdf3ca20..000000000
--- a/website/docs/services/bedrock/agents_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all agents in a region.
-```sql
-SELECT
-region,
-agent_id
-FROM awscc.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/website/docs/services/bedrock/application_inference_profiles/index.md b/website/docs/services/bedrock/application_inference_profiles/index.md
index c6e1ce4e8..1e37c8e26 100644
--- a/website/docs/services/bedrock/application_inference_profiles/index.md
+++ b/website/docs/services/bedrock/application_inference_profiles/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an application_inference_profile
## Fields
+
+
+
application_inference_profile
"description": "AWS region."
}
]} />
+
+AWS::Bedrock::ApplicationInferenceProfile.
@@ -128,31 +159,37 @@ For more information, see
+ application_inference_profilesINSERTapplication_inference_profilesDELETEapplication_inference_profilesUPDATEapplication_inference_profiles_list_onlySELECTapplication_inference_profilesSELECTapplication_inference_profile.
```sql
SELECT
@@ -180,6 +226,19 @@ updated_at
FROM awscc.bedrock.application_inference_profiles
WHERE region = 'us-east-1' AND data__Identifier = 'application_inference_profiles in a region.
+```sql
+SELECT
+region,
+inference_profile_identifier
+FROM awscc.bedrock.application_inference_profiles_list_only
+WHERE region = 'us-east-1';
+```
+application_inference_profiles in a region or regions, for all properties use application_inference_profiles
-
-## Overview
-| Name | application_inference_profiles_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::ApplicationInferenceProfile Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
application_inference_profiles in a region.
-```sql
-SELECT
-region,
-inference_profile_identifier
-FROM awscc.bedrock.application_inference_profiles_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the application_inference_profiles_list_only resource, see application_inference_profiles
-
diff --git a/website/docs/services/bedrock/automated_reasoning_policies/index.md b/website/docs/services/bedrock/automated_reasoning_policies/index.md
index 003386d8f..6c419438d 100644
--- a/website/docs/services/bedrock/automated_reasoning_policies/index.md
+++ b/website/docs/services/bedrock/automated_reasoning_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an automated_reasoning_policy res
## Fields
+AWS::Bedrock::AutomatedReasoningPolicy.
@@ -196,31 +222,37 @@ For more information, see
+ automated_reasoning_policiesINSERTautomated_reasoning_policiesDELETEautomated_reasoning_policiesUPDATEautomated_reasoning_policies_list_onlySELECTautomated_reasoning_policiesSELECTautomated_reasoning_policy.
```sql
SELECT
@@ -246,6 +287,19 @@ tags
FROM awscc.bedrock.automated_reasoning_policies
WHERE region = 'us-east-1' AND data__Identifier = 'automated_reasoning_policies in a region.
+```sql
+SELECT
+region,
+policy_arn
+FROM awscc.bedrock.automated_reasoning_policies_list_only
+WHERE region = 'us-east-1';
+```
+automated_reasoning_policies in a region or regions, for all properties use automated_reasoning_policies
-
-## Overview
-| Name | automated_reasoning_policies_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::AutomatedReasoningPolicy Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
automated_reasoning_policies in a region.
-```sql
-SELECT
-region,
-policy_arn
-FROM awscc.bedrock.automated_reasoning_policies_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the automated_reasoning_policies_list_only resource, see automated_reasoning_policies
-
diff --git a/website/docs/services/bedrock/automated_reasoning_policy_versions/index.md b/website/docs/services/bedrock/automated_reasoning_policy_versions/index.md
index fdbb805f9..44d11ee9d 100644
--- a/website/docs/services/bedrock/automated_reasoning_policy_versions/index.md
+++ b/website/docs/services/bedrock/automated_reasoning_policy_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an automated_reasoning_policy_versionAWS::Bedrock::AutomatedReasoningPolicyVersion.
@@ -106,26 +137,31 @@ For more information, see
+ automated_reasoning_policy_versionsINSERTautomated_reasoning_policy_versionsDELETEautomated_reasoning_policy_versions_list_onlySELECTautomated_reasoning_policy_versionsSELECTautomated_reasoning_policy_version.
```sql
SELECT
@@ -151,6 +196,20 @@ tags
FROM awscc.bedrock.automated_reasoning_policy_versions
WHERE region = 'us-east-1' AND data__Identifier = 'automated_reasoning_policy_versions in a region.
+```sql
+SELECT
+region,
+policy_arn,
+version
+FROM awscc.bedrock.automated_reasoning_policy_versions_list_only
+WHERE region = 'us-east-1';
+```
+automated_reasoning_policy_versions in a region or regions, for all properties use automated_reasoning_policy_versions
-
-## Overview
-| Name | automated_reasoning_policy_versions_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::AutomatedReasoningPolicyVersion Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
automated_reasoning_policy_versions in a region.
-```sql
-SELECT
-region,
-policy_arn,
-version
-FROM awscc.bedrock.automated_reasoning_policy_versions_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the automated_reasoning_policy_versions_list_only resource, see automated_reasoning_policy_versions
-
diff --git a/website/docs/services/bedrock/blueprints/index.md b/website/docs/services/bedrock/blueprints/index.md
index 29306e840..bbbf84c6c 100644
--- a/website/docs/services/bedrock/blueprints/index.md
+++ b/website/docs/services/bedrock/blueprints/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a blueprint resource or lists AWS::Bedrock::Blueprint.
@@ -111,31 +137,37 @@ For more information, see
+ blueprintsINSERTblueprintsDELETEblueprintsUPDATEblueprints_list_onlySELECTblueprintsSELECTblueprint.
```sql
SELECT
@@ -161,6 +202,19 @@ tags
FROM awscc.bedrock.blueprints
WHERE region = 'us-east-1' AND data__Identifier = 'blueprints in a region.
+```sql
+SELECT
+region,
+blueprint_arn
+FROM awscc.bedrock.blueprints_list_only
+WHERE region = 'us-east-1';
+```
+blueprints in a region or regions, for all properties use blueprints
-
-## Overview
-| Name | blueprints_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::Blueprint Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
blueprints in a region.
-```sql
-SELECT
-region,
-blueprint_arn
-FROM awscc.bedrock.blueprints_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the blueprints_list_only resource, see blueprints
-
diff --git a/website/docs/services/bedrock/data_automation_projects/index.md b/website/docs/services/bedrock/data_automation_projects/index.md
index c4d3f58d1..bc7f91203 100644
--- a/website/docs/services/bedrock/data_automation_projects/index.md
+++ b/website/docs/services/bedrock/data_automation_projects/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a data_automation_project resourc
## Fields
+AWS::Bedrock::DataAutomationProject.
@@ -425,31 +451,37 @@ For more information, see
+ data_automation_projectsINSERTdata_automation_projectsDELETEdata_automation_projectsUPDATEdata_automation_projects_list_onlySELECTdata_automation_projectsSELECTdata_automation_project.
```sql
SELECT
@@ -478,6 +519,19 @@ tags
FROM awscc.bedrock.data_automation_projects
WHERE region = 'us-east-1' AND data__Identifier = 'data_automation_projects in a region.
+```sql
+SELECT
+region,
+project_arn
+FROM awscc.bedrock.data_automation_projects_list_only
+WHERE region = 'us-east-1';
+```
+data_automation_projects in a region or regions, for all properties use data_automation_projects
-
-## Overview
-| Name | data_automation_projects_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::DataAutomationProject Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
data_automation_projects in a region.
-```sql
-SELECT
-region,
-project_arn
-FROM awscc.bedrock.data_automation_projects_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the data_automation_projects_list_only resource, see data_automation_projects
-
diff --git a/website/docs/services/bedrock/data_sources/index.md b/website/docs/services/bedrock/data_sources/index.md
index e239f471c..661fb8b3d 100644
--- a/website/docs/services/bedrock/data_sources/index.md
+++ b/website/docs/services/bedrock/data_sources/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a data_source resource or lists <
## Fields
+AWS::Bedrock::DataSource.
@@ -520,31 +551,37 @@ For more information, see
+ data_sourcesINSERTdata_sourcesDELETEdata_sourcesUPDATEdata_sources_list_onlySELECTdata_sourcesSELECTdata_source.
```sql
SELECT
@@ -572,6 +618,20 @@ failure_reasons
FROM awscc.bedrock.data_sources
WHERE region = 'us-east-1' AND data__Identifier = 'data_sources in a region.
+```sql
+SELECT
+region,
+knowledge_base_id,
+data_source_id
+FROM awscc.bedrock.data_sources_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
data_sources in a region.
-```sql
-SELECT
-region,
-knowledge_base_id,
-data_source_id
-FROM awscc.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/website/docs/services/bedrock/flow_aliases/index.md b/website/docs/services/bedrock/flow_aliases/index.md
index f7d37cad6..7128b1534 100644
--- a/website/docs/services/bedrock/flow_aliases/index.md
+++ b/website/docs/services/bedrock/flow_aliases/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a flow_alias resource or lists AWS::Bedrock::FlowAlias.
@@ -123,31 +154,37 @@ For more information, see
+ flow_aliasesINSERTflow_aliasesDELETEflow_aliasesUPDATEflow_aliases_list_onlySELECTflow_aliasesSELECTflow_alias.
```sql
SELECT
@@ -174,6 +220,20 @@ tags
FROM awscc.bedrock.flow_aliases
WHERE region = 'us-east-1' AND data__Identifier = 'flow_aliases in a region.
+```sql
+SELECT
+region,
+arn,
+flow_arn
+FROM awscc.bedrock.flow_aliases_list_only
+WHERE region = 'us-east-1';
+```
+flow_aliases in a region or regions, for all properties use flow_aliases
-
-## Overview
-| Name | flow_aliases_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::FlowAlias Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
flow_aliases in a region.
-```sql
-SELECT
-region,
-arn,
-flow_arn
-FROM awscc.bedrock.flow_aliases_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the flow_aliases_list_only resource, see flow_aliases
-
diff --git a/website/docs/services/bedrock/flow_versions/index.md b/website/docs/services/bedrock/flow_versions/index.md
index 6b58cf3d0..fef55de52 100644
--- a/website/docs/services/bedrock/flow_versions/index.md
+++ b/website/docs/services/bedrock/flow_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a flow_version resource or lists
## Fields
+AWS::Bedrock::FlowVersion.
@@ -194,31 +225,37 @@ For more information, see
+ flow_versionsINSERTflow_versionsDELETEflow_versionsUPDATEflow_versions_list_onlySELECTflow_versionsSELECTflow_version.
```sql
SELECT
@@ -244,6 +290,20 @@ customer_encryption_key_arn
FROM awscc.bedrock.flow_versions
WHERE region = 'us-east-1' AND data__Identifier = 'flow_versions in a region.
+```sql
+SELECT
+region,
+flow_arn,
+version
+FROM awscc.bedrock.flow_versions_list_only
+WHERE region = 'us-east-1';
+```
+flow_versions in a region or regions, for all properties use flow_versions
-
-## Overview
-| Name | flow_versions_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::FlowVersion Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
flow_versions in a region.
-```sql
-SELECT
-region,
-flow_arn,
-version
-FROM awscc.bedrock.flow_versions_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the flow_versions_list_only resource, see flow_versions
-
diff --git a/website/docs/services/bedrock/flows/index.md b/website/docs/services/bedrock/flows/index.md
index 0e968c48f..b52bf73f8 100644
--- a/website/docs/services/bedrock/flows/index.md
+++ b/website/docs/services/bedrock/flows/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a flow resource or lists fl
## Fields
+
+
+
flow resource or lists fl
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Bedrock::Flow.
@@ -238,31 +264,37 @@ For more information, see
+ flows
INSERT
+ flows
DELETE
+ flows
UPDATE
+ flows_list_only
SELECT
+ flows
SELECT
@@ -271,6 +303,15 @@ For more information, see
+
+
Gets all properties from an individual flow.
```sql
SELECT
@@ -295,6 +336,19 @@ test_alias_tags
FROM awscc.bedrock.flows
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all flows in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.bedrock.flows_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -411,6 +465,28 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.bedrock.flows
+SET data__PatchDocument = string('{{ {
+ "Definition": definition,
+ "DefinitionString": definition_string,
+ "DefinitionS3Location": definition_s3_location,
+ "DefinitionSubstitutions": definition_substitutions,
+ "Description": description,
+ "ExecutionRoleArn": execution_role_arn,
+ "Name": name,
+ "CustomerEncryptionKeyArn": customer_encryption_key_arn,
+ "Tags": tags,
+ "TestAliasTags": test_alias_tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/bedrock/flows_list_only/index.md b/website/docs/services/bedrock/flows_list_only/index.md
deleted file mode 100644
index 7348ed8cb..000000000
--- a/website/docs/services/bedrock/flows_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: flows_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - flows_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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists flows in a region or regions, for all properties use flows
-
-## Overview
-
-
-Name flows_list_only
-Type Resource
-Description Definition of AWS::Bedrock::Flow Resource Type
-Id
-
-
-
-## Fields
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all flows in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.bedrock.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/website/docs/services/bedrock/guardrail_versions/index.md b/website/docs/services/bedrock/guardrail_versions/index.md
index d36718795..9281535d3 100644
--- a/website/docs/services/bedrock/guardrail_versions/index.md
+++ b/website/docs/services/bedrock/guardrail_versions/index.md
@@ -173,6 +173,7 @@ resources:
+
## `DELETE` example
```sql
diff --git a/website/docs/services/bedrock/guardrails/index.md b/website/docs/services/bedrock/guardrails/index.md
index f13c340ef..c5ae34b15 100644
--- a/website/docs/services/bedrock/guardrails/index.md
+++ b/website/docs/services/bedrock/guardrails/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a guardrail resource or lists
## Fields
+
+
+
guardrail resource or lists AWS::Bedrock::Guardrail.
@@ -431,31 +457,37 @@ For more information, see
+ guardrailsINSERTguardrailsDELETEguardrailsUPDATEguardrails_list_onlySELECTguardrailsSELECTguardrail.
```sql
SELECT
@@ -491,6 +532,19 @@ word_policy_config
FROM awscc.bedrock.guardrails
WHERE region = 'us-east-1' AND data__Identifier = 'guardrails in a region.
+```sql
+SELECT
+region,
+guardrail_arn
+FROM awscc.bedrock.guardrails_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
guardrails in a region.
-```sql
-SELECT
-region,
-guardrail_arn
-FROM awscc.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/website/docs/services/bedrock/index.md b/website/docs/services/bedrock/index.md
index 71b47fc7c..dbcafc736 100644
--- a/website/docs/services/bedrock/index.md
+++ b/website/docs/services/bedrock/index.md
@@ -20,7 +20,7 @@ The bedrock service documentation.
intelligent_prompt_router reso
## Fields
+AWS::Bedrock::IntelligentPromptRouter.
@@ -130,31 +156,37 @@ For more information, see
+ intelligent_prompt_routersINSERTintelligent_prompt_routersDELETEintelligent_prompt_routersUPDATEintelligent_prompt_routers_list_onlySELECTintelligent_prompt_routersSELECTintelligent_prompt_router.
```sql
SELECT
@@ -181,6 +222,19 @@ updated_at
FROM awscc.bedrock.intelligent_prompt_routers
WHERE region = 'us-east-1' AND data__Identifier = 'intelligent_prompt_routers in a region.
+```sql
+SELECT
+region,
+prompt_router_arn
+FROM awscc.bedrock.intelligent_prompt_routers_list_only
+WHERE region = 'us-east-1';
+```
+intelligent_prompt_routers in a region or regions, for all properties use intelligent_prompt_routers
-
-## Overview
-| Name | intelligent_prompt_routers_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::IntelligentPromptRouter Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
intelligent_prompt_routers in a region.
-```sql
-SELECT
-region,
-prompt_router_arn
-FROM awscc.bedrock.intelligent_prompt_routers_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the intelligent_prompt_routers_list_only resource, see intelligent_prompt_routers
-
diff --git a/website/docs/services/bedrock/knowledge_bases/index.md b/website/docs/services/bedrock/knowledge_bases/index.md
index e8eab2921..7989aa347 100644
--- a/website/docs/services/bedrock/knowledge_bases/index.md
+++ b/website/docs/services/bedrock/knowledge_bases/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a knowledge_base resource or list
## Fields
+AWS::Bedrock::KnowledgeBase.
@@ -479,31 +505,37 @@ For more information, see
+ knowledge_basesINSERTknowledge_basesDELETEknowledge_basesUPDATEknowledge_bases_list_onlySELECTknowledge_basesSELECTknowledge_base.
```sql
SELECT
@@ -531,6 +572,19 @@ tags
FROM awscc.bedrock.knowledge_bases
WHERE region = 'us-east-1' AND data__Identifier = 'knowledge_bases in a region.
+```sql
+SELECT
+region,
+knowledge_base_id
+FROM awscc.bedrock.knowledge_bases_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
knowledge_bases in a region.
-```sql
-SELECT
-region,
-knowledge_base_id
-FROM awscc.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/website/docs/services/bedrock/prompt_versions/index.md b/website/docs/services/bedrock/prompt_versions/index.md
index 5744e6409..bd4c8148e 100644
--- a/website/docs/services/bedrock/prompt_versions/index.md
+++ b/website/docs/services/bedrock/prompt_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a prompt_version resource or list
## Fields
+AWS::Bedrock::PromptVersion.
@@ -163,26 +189,31 @@ For more information, see
+ prompt_versionsINSERTprompt_versionsDELETEprompt_versions_list_onlySELECTprompt_versionsSELECTprompt_version.
```sql
SELECT
@@ -210,6 +250,19 @@ tags
FROM awscc.bedrock.prompt_versions
WHERE region = 'us-east-1' AND data__Identifier = 'prompt_versions in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.bedrock.prompt_versions_list_only
+WHERE region = 'us-east-1';
+```
+prompt_versions in a region or regions, for all properties use prompt_versions
-
-## Overview
-| Name | prompt_versions_list_only |
| Type | Resource |
| Description | Definition of AWS::Bedrock::PromptVersion Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
prompt_versions in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.bedrock.prompt_versions_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the prompt_versions_list_only resource, see prompt_versions
-
diff --git a/website/docs/services/bedrock/prompts/index.md b/website/docs/services/bedrock/prompts/index.md
index 750cde6f1..a395431eb 100644
--- a/website/docs/services/bedrock/prompts/index.md
+++ b/website/docs/services/bedrock/prompts/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a prompt resource or lists
## Fields
+
+
+
prompt resource or lists
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Bedrock::Prompt.
@@ -158,31 +184,37 @@ For more information, see
+ prompts
INSERT
+ prompts
DELETE
+ prompts
UPDATE
+ prompts_list_only
SELECT
+ prompts
SELECT
@@ -191,6 +223,15 @@ For more information, see
+
+
Gets all properties from an individual prompt.
```sql
SELECT
@@ -209,6 +250,19 @@ version
FROM awscc.bedrock.prompts
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all prompts in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.bedrock.prompts_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -299,6 +353,24 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.bedrock.prompts
+SET data__PatchDocument = string('{{ {
+ "DefaultVariant": default_variant,
+ "Description": description,
+ "Name": name,
+ "Variants": variants,
+ "Tags": tags,
+ "CustomerEncryptionKeyArn": customer_encryption_key_arn
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/bedrock/prompts_list_only/index.md b/website/docs/services/bedrock/prompts_list_only/index.md
deleted file mode 100644
index d10159d9b..000000000
--- a/website/docs/services/bedrock/prompts_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: prompts_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - prompts_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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists prompts in a region or regions, for all properties use prompts
-
-## Overview
-
-
-Name prompts_list_only
-Type Resource
-Description Definition of AWS::Bedrock::Prompt Resource Type
-Id
-
-
-
-## Fields
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all prompts in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.bedrock.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/website/docs/services/billing/billing_views/index.md b/website/docs/services/billing/billing_views/index.md
index b9a651e1c..bdcf30814 100644
--- a/website/docs/services/billing/billing_views/index.md
+++ b/website/docs/services/billing/billing_views/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a billing_view resource or lists
## Fields
+
+
+
billing_view resource or lists
"description": "AWS region."
}
]} />
+
+AWS::Billing::BillingView.
@@ -147,31 +173,37 @@ For more information, see
+ billing_viewsINSERTbilling_viewsDELETEbilling_viewsUPDATEbilling_views_list_onlySELECTbilling_viewsSELECTbilling_view.
```sql
SELECT
@@ -197,6 +238,19 @@ updated_at
FROM awscc.billing.billing_views
WHERE region = 'us-east-1' AND data__Identifier = 'billing_views in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.billing.billing_views_list_only
+WHERE region = 'us-east-1';
+```
+billing_views in a region or regions, for all properties use billing_views
-
-## Overview
-| Name | billing_views_list_only |
| Type | Resource |
| Description | A billing view is a container of cost & usage metadata. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
billing_views in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.billing.billing_views_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the billing_views_list_only resource, see billing_views
-
diff --git a/website/docs/services/billing/index.md b/website/docs/services/billing/index.md
index b29fb58f8..903097a2c 100644
--- a/website/docs/services/billing/index.md
+++ b/website/docs/services/billing/index.md
@@ -20,7 +20,7 @@ The billing service documentation.
billing_group resource or lists
## Fields
+AWS::BillingConductor::BillingGroup.
@@ -140,31 +166,37 @@ For more information, see
+ billing_groupsINSERTbilling_groupsDELETEbilling_groupsUPDATEbilling_groups_list_onlySELECTbilling_groupsSELECTbilling_group.
```sql
SELECT
@@ -192,6 +233,19 @@ tags
FROM awscc.billingconductor.billing_groups
WHERE region = 'us-east-1' AND data__Identifier = 'billing_groups in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.billingconductor.billing_groups_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
billing_groups in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/billingconductor/custom_line_items/index.md b/website/docs/services/billingconductor/custom_line_items/index.md
index 69587c881..9a1815c58 100644
--- a/website/docs/services/billingconductor/custom_line_items/index.md
+++ b/website/docs/services/billingconductor/custom_line_items/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a custom_line_item resource or li
## Fields
+AWS::BillingConductor::CustomLineItem.
@@ -196,31 +222,37 @@ For more information, see
+ custom_line_itemsINSERTcustom_line_itemsDELETEcustom_line_itemsUPDATEcustom_line_items_list_onlySELECTcustom_line_itemsSELECTcustom_line_item.
```sql
SELECT
@@ -249,6 +290,19 @@ tags
FROM awscc.billingconductor.custom_line_items
WHERE region = 'us-east-1' AND data__Identifier = 'custom_line_items in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.billingconductor.custom_line_items_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
custom_line_items in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/billingconductor/index.md b/website/docs/services/billingconductor/index.md
index cc49bc8da..244c17d5d 100644
--- a/website/docs/services/billingconductor/index.md
+++ b/website/docs/services/billingconductor/index.md
@@ -20,7 +20,7 @@ The billingconductor service documentation.
pricing_plan resource or lists
## Fields
+AWS::BillingConductor::PricingPlan.
@@ -101,31 +127,37 @@ For more information, see
+ pricing_plansINSERTpricing_plansDELETEpricing_plansUPDATEpricing_plans_list_onlySELECTpricing_plansSELECTpricing_plan.
```sql
SELECT
@@ -149,6 +190,19 @@ tags
FROM awscc.billingconductor.pricing_plans
WHERE region = 'us-east-1' AND data__Identifier = 'pricing_plans in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.billingconductor.pricing_plans_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
pricing_plans in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/billingconductor/pricing_rules/index.md b/website/docs/services/billingconductor/pricing_rules/index.md
index d41b4b8a4..8649b0e6d 100644
--- a/website/docs/services/billingconductor/pricing_rules/index.md
+++ b/website/docs/services/billingconductor/pricing_rules/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a pricing_rule resource or lists
## Fields
+AWS::BillingConductor::PricingRule.
@@ -150,31 +176,37 @@ For more information, see
+ pricing_rulesINSERTpricing_rulesDELETEpricing_rulesUPDATEpricing_rules_list_onlySELECTpricing_rulesSELECTpricing_rule.
```sql
SELECT
@@ -205,6 +246,19 @@ tags
FROM awscc.billingconductor.pricing_rules
WHERE region = 'us-east-1' AND data__Identifier = 'pricing_rules in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.billingconductor.pricing_rules_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
pricing_rules in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/budgets/budgets_actions/index.md b/website/docs/services/budgets/budgets_actions/index.md
index 6c2f73d38..d97854f2b 100644
--- a/website/docs/services/budgets/budgets_actions/index.md
+++ b/website/docs/services/budgets/budgets_actions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a budgets_action resource or list
## Fields
+AWS::Budgets::BudgetsAction.
@@ -203,31 +234,37 @@ For more information, see
+ budgets_actionsINSERTbudgets_actionsDELETEbudgets_actionsUPDATEbudgets_actions_list_onlySELECTbudgets_actionsSELECTbudgets_action.
```sql
SELECT
@@ -253,6 +299,20 @@ resource_tags
FROM awscc.budgets.budgets_actions
WHERE region = 'us-east-1' AND data__Identifier = 'budgets_actions in a region.
+```sql
+SELECT
+region,
+action_id,
+budget_name
+FROM awscc.budgets.budgets_actions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
budgets_actions in a region.
-```sql
-SELECT
-region,
-action_id,
-budget_name
-FROM awscc.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/website/docs/services/budgets/index.md b/website/docs/services/budgets/index.md
index 56fd988eb..40a36b3b9 100644
--- a/website/docs/services/budgets/index.md
+++ b/website/docs/services/budgets/index.md
@@ -20,7 +20,7 @@ The budgets service documentation.
keyspace resource or lists AWS::Cassandra::Keyspace.
@@ -93,31 +119,37 @@ For more information, see
+ keyspacesINSERTkeyspacesDELETEkeyspacesUPDATEkeyspaces_list_onlySELECTkeyspacesSELECTkeyspace.
```sql
SELECT
@@ -137,6 +178,19 @@ client_side_timestamps_enabled
FROM awscc.cassandra.keyspaces
WHERE region = 'us-east-1' AND data__Identifier = 'keyspaces in a region.
+```sql
+SELECT
+region,
+keyspace_name
+FROM awscc.cassandra.keyspaces_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
keyspaces in a region.
-```sql
-SELECT
-region,
-keyspace_name
-FROM awscc.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/website/docs/services/cassandra/tables/index.md b/website/docs/services/cassandra/tables/index.md
index 3ab608b3c..53fa7d124 100644
--- a/website/docs/services/cassandra/tables/index.md
+++ b/website/docs/services/cassandra/tables/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a table resource or lists t
## Fields
+
+
+
table resource or lists t
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Cassandra::Table.
@@ -285,31 +316,37 @@ For more information, see
+ tables
INSERT
+ tables
DELETE
+ tables
UPDATE
+ tables_list_only
SELECT
+ tables
SELECT
@@ -318,6 +355,15 @@ For more information, see
+
+
Gets all properties from an individual table.
```sql
SELECT
@@ -339,6 +385,20 @@ replica_specifications
FROM awscc.cassandra.tables
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all tables in a region.
+```sql
+SELECT
+region,
+keyspace_name,
+table_name
+FROM awscc.cassandra.tables_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -484,6 +544,27 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cassandra.tables
+SET data__PatchDocument = string('{{ {
+ "RegularColumns": regular_columns,
+ "BillingMode": billing_mode,
+ "PointInTimeRecoveryEnabled": point_in_time_recovery_enabled,
+ "Tags": tags,
+ "DefaultTimeToLive": default_time_to_live,
+ "EncryptionSpecification": encryption_specification,
+ "AutoScalingSpecifications": auto_scaling_specifications,
+ "CdcSpecification": cdc_specification,
+ "ReplicaSpecifications": replica_specifications
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '|';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cassandra/tables_list_only/index.md b/website/docs/services/cassandra/tables_list_only/index.md
deleted file mode 100644
index f5e5cc58d..000000000
--- a/website/docs/services/cassandra/tables_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all tables in a region.
-```sql
-SELECT
-region,
-keyspace_name,
-table_name
-FROM awscc.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/website/docs/services/cassandra/types/index.md b/website/docs/services/cassandra/types/index.md
index a7c466a8a..1330e1a2c 100644
--- a/website/docs/services/cassandra/types/index.md
+++ b/website/docs/services/cassandra/types/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a type resource or lists ty
## Fields
+
+
+
type resource or lists ty
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Cassandra::Type.
@@ -101,26 +132,31 @@ For more information, see
+ types
INSERT
+ types
DELETE
+ types_list_only
SELECT
+ types
SELECT
@@ -129,6 +165,15 @@ For more information, see
+
+
Gets all properties from an individual type.
```sql
SELECT
@@ -144,6 +189,20 @@ keyspace_arn
FROM awscc.cassandra.types
WHERE region = 'us-east-1' AND data__Identifier = '|';
```
+
+
+
+Lists all types in a region.
+```sql
+SELECT
+region,
+keyspace_name,
+type_name
+FROM awscc.cassandra.types_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -218,6 +277,7 @@ resources:
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cassandra/types_list_only/index.md b/website/docs/services/cassandra/types_list_only/index.md
deleted file mode 100644
index f7c89dea6..000000000
--- a/website/docs/services/cassandra/types_list_only/index.md
+++ /dev/null
@@ -1,86 +0,0 @@
----
-title: types_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - types_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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists types in a region or regions, for all properties use types
-
-## Overview
-
-
-Name types_list_only
-Type Resource
-Description Resource schema for AWS::Cassandra::Type
-Id
-
-
-
-## Fields
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all types in a region.
-```sql
-SELECT
-region,
-keyspace_name,
-type_name
-FROM awscc.cassandra.types_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the types_list_only resource, see types
-
diff --git a/website/docs/services/ce/anomaly_monitors/index.md b/website/docs/services/ce/anomaly_monitors/index.md
index 4d0f326f9..7900726b1 100644
--- a/website/docs/services/ce/anomaly_monitors/index.md
+++ b/website/docs/services/ce/anomaly_monitors/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an anomaly_monitor resource or li
## Fields
+
+
+
anomaly_monitor resource or li
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::CE::AnomalyMonitor.
@@ -111,31 +137,37 @@ For more information, see
+ anomaly_monitors
INSERT
+ anomaly_monitors
DELETE
+ anomaly_monitors
UPDATE
+ anomaly_monitors_list_only
SELECT
+ anomaly_monitors
SELECT
@@ -144,6 +176,15 @@ For more information, see
+
+
Gets all properties from an individual anomaly_monitor.
```sql
SELECT
@@ -161,6 +202,19 @@ resource_tags
FROM awscc.ce.anomaly_monitors
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all anomaly_monitors in a region.
+```sql
+SELECT
+region,
+monitor_arn
+FROM awscc.ce.anomaly_monitors_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -241,6 +295,19 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.ce.anomaly_monitors
+SET data__PatchDocument = string('{{ {
+ "MonitorName": monitor_name
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/ce/anomaly_monitors_list_only/index.md b/website/docs/services/ce/anomaly_monitors_list_only/index.md
deleted file mode 100644
index cc4bb94aa..000000000
--- a/website/docs/services/ce/anomaly_monitors_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all anomaly_monitors in a region.
-```sql
-SELECT
-region,
-monitor_arn
-FROM awscc.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/website/docs/services/ce/anomaly_subscriptions/index.md b/website/docs/services/ce/anomaly_subscriptions/index.md
index 8eba109d2..4dcdd68c4 100644
--- a/website/docs/services/ce/anomaly_subscriptions/index.md
+++ b/website/docs/services/ce/anomaly_subscriptions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an anomaly_subscription resource
## Fields
+
+
+
anomaly_subscription resource
"description": "AWS region."
}
]} />
+
+AWS::CE::AnomalySubscription.
@@ -123,31 +149,37 @@ For more information, see
+ anomaly_subscriptionsINSERTanomaly_subscriptionsDELETEanomaly_subscriptionsUPDATEanomaly_subscriptions_list_onlySELECTanomaly_subscriptionsSELECTanomaly_subscription.
```sql
SELECT
@@ -172,6 +213,19 @@ resource_tags
FROM awscc.ce.anomaly_subscriptions
WHERE region = 'us-east-1' AND data__Identifier = 'anomaly_subscriptions in a region.
+```sql
+SELECT
+region,
+subscription_arn
+FROM awscc.ce.anomaly_subscriptions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
anomaly_subscriptions in a region.
-```sql
-SELECT
-region,
-subscription_arn
-FROM awscc.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/website/docs/services/ce/cost_categories/index.md b/website/docs/services/ce/cost_categories/index.md
index 514375d72..3f90b6e7b 100644
--- a/website/docs/services/ce/cost_categories/index.md
+++ b/website/docs/services/ce/cost_categories/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a cost_category resource or lists
## Fields
+AWS::CE::CostCategory.
@@ -101,31 +127,37 @@ For more information, see
+ cost_categoriesINSERTcost_categoriesDELETEcost_categoriesUPDATEcost_categories_list_onlySELECTcost_categoriesSELECTcost_category.
```sql
SELECT
@@ -149,6 +190,19 @@ tags
FROM awscc.ce.cost_categories
WHERE region = 'us-east-1' AND data__Identifier = 'cost_categories in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.ce.cost_categories_list_only
+WHERE region = 'us-east-1';
+```
+cost_categories in a region or regions, for all properties use cost_categories
-
-## Overview
-| Name | cost_categories_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::CE::CostCategory. 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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
cost_categories in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/ce/index.md b/website/docs/services/ce/index.md
index e4bcd5c4a..14a14e250 100644
--- a/website/docs/services/ce/index.md
+++ b/website/docs/services/ce/index.md
@@ -20,7 +20,7 @@ The ce service documentation.
custom_action resource or lists
## Fields
+AWS::Chatbot::CustomAction.
@@ -137,31 +163,37 @@ For more information, see
+ custom_actionsINSERTcustom_actionsDELETEcustom_actionsUPDATEcustom_actions_list_onlySELECTcustom_actionsSELECTcustom_action.
```sql
SELECT
@@ -183,6 +224,19 @@ tags
FROM awscc.chatbot.custom_actions
WHERE region = 'us-east-1' AND data__Identifier = 'custom_actions in a region.
+```sql
+SELECT
+region,
+custom_action_arn
+FROM awscc.chatbot.custom_actions_list_only
+WHERE region = 'us-east-1';
+```
+custom_actions in a region or regions, for all properties use custom_actions
-
-## Overview
-| Name | custom_actions_list_only |
| Type | Resource |
| Description | Definition of AWS::Chatbot::CustomAction Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
custom_actions in a region.
-```sql
-SELECT
-region,
-custom_action_arn
-FROM awscc.chatbot.custom_actions_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the custom_actions_list_only resource, see custom_actions
-
diff --git a/website/docs/services/chatbot/index.md b/website/docs/services/chatbot/index.md
index b32b7ac1f..2f4c0a4dd 100644
--- a/website/docs/services/chatbot/index.md
+++ b/website/docs/services/chatbot/index.md
@@ -20,7 +20,7 @@ The chatbot service documentation.
microsoft_teams_channel_configuration<
## Fields
+
+
+
microsoft_teams_channel_configuration<
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::Chatbot::MicrosoftTeamsChannelConfiguration.
@@ -126,31 +152,37 @@ For more information, see
+ microsoft_teams_channel_configurations
INSERT
+ microsoft_teams_channel_configurations
DELETE
+ microsoft_teams_channel_configurations
UPDATE
+ microsoft_teams_channel_configurations_list_only
SELECT
+ microsoft_teams_channel_configurations
SELECT
@@ -159,6 +191,15 @@ For more information, see
+
+
Gets all properties from an individual microsoft_teams_channel_configuration.
```sql
SELECT
@@ -179,6 +220,19 @@ customization_resource_arns
FROM awscc.chatbot.microsoft_teams_channel_configurations
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all microsoft_teams_channel_configurations in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.chatbot.microsoft_teams_channel_configurations_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -296,6 +350,27 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.chatbot.microsoft_teams_channel_configurations
+SET data__PatchDocument = string('{{ {
+ "TeamsChannelId": teams_channel_id,
+ "TeamsChannelName": teams_channel_name,
+ "IamRoleArn": iam_role_arn,
+ "SnsTopicArns": sns_topic_arns,
+ "LoggingLevel": logging_level,
+ "GuardrailPolicies": guardrail_policies,
+ "UserRoleRequired": user_role_required,
+ "Tags": tags,
+ "CustomizationResourceArns": customization_resource_arns
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/chatbot/microsoft_teams_channel_configurations_list_only/index.md b/website/docs/services/chatbot/microsoft_teams_channel_configurations_list_only/index.md
deleted file mode 100644
index f23a60b70..000000000
--- a/website/docs/services/chatbot/microsoft_teams_channel_configurations_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all microsoft_teams_channel_configurations in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/chatbot/slack_channel_configurations/index.md b/website/docs/services/chatbot/slack_channel_configurations/index.md
index c364f571a..df3154159 100644
--- a/website/docs/services/chatbot/slack_channel_configurations/index.md
+++ b/website/docs/services/chatbot/slack_channel_configurations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a slack_channel_configuration res
## Fields
+
+
+
slack_channel_configuration res
"description": "AWS region."
}
]} />
+
+AWS::Chatbot::SlackChannelConfiguration.
@@ -116,31 +142,37 @@ For more information, see
+ slack_channel_configurationsINSERTslack_channel_configurationsDELETEslack_channel_configurationsUPDATEslack_channel_configurations_list_onlySELECTslack_channel_configurationsSELECTslack_channel_configuration.
```sql
SELECT
@@ -167,6 +208,19 @@ customization_resource_arns
FROM awscc.chatbot.slack_channel_configurations
WHERE region = 'us-east-1' AND data__Identifier = 'slack_channel_configurations in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.chatbot.slack_channel_configurations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
slack_channel_configurations in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cleanrooms/analysis_templates/index.md b/website/docs/services/cleanrooms/analysis_templates/index.md
index ce5cc3def..0d23b6ea1 100644
--- a/website/docs/services/cleanrooms/analysis_templates/index.md
+++ b/website/docs/services/cleanrooms/analysis_templates/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an analysis_template resource or
## Fields
+AWS::CleanRooms::AnalysisTemplate.
@@ -155,31 +186,37 @@ For more information, see
+ analysis_templatesINSERTanalysis_templatesDELETEanalysis_templatesUPDATEanalysis_templates_list_onlySELECTanalysis_templatesSELECTanalysis_template.
```sql
SELECT
@@ -209,6 +255,20 @@ format
FROM awscc.cleanrooms.analysis_templates
WHERE region = 'us-east-1' AND data__Identifier = 'analysis_templates in a region.
+```sql
+SELECT
+region,
+analysis_template_identifier,
+membership_identifier
+FROM awscc.cleanrooms.analysis_templates_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
analysis_templates in a region.
-```sql
-SELECT
-region,
-analysis_template_identifier,
-membership_identifier
-FROM awscc.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/website/docs/services/cleanrooms/collaborations/index.md b/website/docs/services/cleanrooms/collaborations/index.md
index a91575a28..6e6474104 100644
--- a/website/docs/services/cleanrooms/collaborations/index.md
+++ b/website/docs/services/cleanrooms/collaborations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a collaboration resource or lists
## Fields
+AWS::CleanRooms::Collaboration.
@@ -272,31 +298,37 @@ For more information, see
+ collaborationsINSERTcollaborationsDELETEcollaborationsUPDATEcollaborations_list_onlySELECTcollaborationsSELECTcollaboration.
```sql
SELECT
@@ -326,6 +367,19 @@ creator_payment_configuration
FROM awscc.cleanrooms.collaborations
WHERE region = 'us-east-1' AND data__Identifier = 'collaborations in a region.
+```sql
+SELECT
+region,
+collaboration_identifier
+FROM awscc.cleanrooms.collaborations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
collaborations in a region.
-```sql
-SELECT
-region,
-collaboration_identifier
-FROM awscc.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/website/docs/services/cleanrooms/configured_table_associations/index.md b/website/docs/services/cleanrooms/configured_table_associations/index.md
index 5a1e3a324..4bcea5def 100644
--- a/website/docs/services/cleanrooms/configured_table_associations/index.md
+++ b/website/docs/services/cleanrooms/configured_table_associations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a configured_table_association re
## Fields
+AWS::CleanRooms::ConfiguredTableAssociation.
@@ -125,31 +156,37 @@ For more information, see
+ configured_table_associationsINSERTconfigured_table_associationsDELETEconfigured_table_associationsUPDATEconfigured_table_associations_list_onlySELECTconfigured_table_associationsSELECTconfigured_table_association.
```sql
SELECT
@@ -174,6 +220,20 @@ configured_table_association_analysis_rules
FROM awscc.cleanrooms.configured_table_associations
WHERE region = 'us-east-1' AND data__Identifier = 'configured_table_associations in a region.
+```sql
+SELECT
+region,
+configured_table_association_identifier,
+membership_identifier
+FROM awscc.cleanrooms.configured_table_associations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
configured_table_associations in a region.
-```sql
-SELECT
-region,
-configured_table_association_identifier,
-membership_identifier
-FROM awscc.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/website/docs/services/cleanrooms/configured_tables/index.md b/website/docs/services/cleanrooms/configured_tables/index.md
index f42f79292..d2ef7d3a6 100644
--- a/website/docs/services/cleanrooms/configured_tables/index.md
+++ b/website/docs/services/cleanrooms/configured_tables/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a configured_table resource or li
## Fields
+AWS::CleanRooms::ConfiguredTable.
@@ -130,31 +156,37 @@ For more information, see
+ configured_tablesINSERTconfigured_tablesDELETEconfigured_tablesUPDATEconfigured_tables_list_onlySELECTconfigured_tablesSELECTconfigured_table.
```sql
SELECT
@@ -180,6 +221,19 @@ table_reference
FROM awscc.cleanrooms.configured_tables
WHERE region = 'us-east-1' AND data__Identifier = 'configured_tables in a region.
+```sql
+SELECT
+region,
+configured_table_identifier
+FROM awscc.cleanrooms.configured_tables_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
configured_tables in a region.
-```sql
-SELECT
-region,
-configured_table_identifier
-FROM awscc.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/website/docs/services/cleanrooms/id_mapping_tables/index.md b/website/docs/services/cleanrooms/id_mapping_tables/index.md
index 8cda2ba24..4870ab0a9 100644
--- a/website/docs/services/cleanrooms/id_mapping_tables/index.md
+++ b/website/docs/services/cleanrooms/id_mapping_tables/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an id_mapping_table resource or l
## Fields
+AWS::CleanRooms::IdMappingTable.
@@ -142,31 +168,37 @@ For more information, see
+ id_mapping_tablesINSERTid_mapping_tablesDELETEid_mapping_tablesUPDATEid_mapping_tables_list_onlySELECTid_mapping_tablesSELECTid_mapping_table.
```sql
SELECT
@@ -194,6 +235,20 @@ tags
FROM awscc.cleanrooms.id_mapping_tables
WHERE region = 'us-east-1' AND data__Identifier = 'id_mapping_tables in a region.
+```sql
+SELECT
+region,
+id_mapping_table_identifier,
+membership_identifier
+FROM awscc.cleanrooms.id_mapping_tables_list_only
+WHERE region = 'us-east-1';
+```
+id_mapping_tables in a region or regions, for all properties use id_mapping_tables
-
-## Overview
-| Name | id_mapping_tables_list_only |
| Type | Resource |
| Description | Represents an association between an ID mapping workflow and a collaboration |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
id_mapping_tables in a region.
-```sql
-SELECT
-region,
-id_mapping_table_identifier,
-membership_identifier
-FROM awscc.cleanrooms.id_mapping_tables_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the id_mapping_tables_list_only resource, see id_mapping_tables
-
diff --git a/website/docs/services/cleanrooms/id_namespace_associations/index.md b/website/docs/services/cleanrooms/id_namespace_associations/index.md
index 6c2e6e1d8..ee4e43178 100644
--- a/website/docs/services/cleanrooms/id_namespace_associations/index.md
+++ b/website/docs/services/cleanrooms/id_namespace_associations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an id_namespace_association resou
## Fields
+AWS::CleanRooms::IdNamespaceAssociation.
@@ -142,31 +173,37 @@ For more information, see
+ id_namespace_associationsINSERTid_namespace_associationsDELETEid_namespace_associationsUPDATEid_namespace_associations_list_onlySELECTid_namespace_associationsSELECTid_namespace_association.
```sql
SELECT
@@ -194,6 +240,20 @@ input_reference_properties
FROM awscc.cleanrooms.id_namespace_associations
WHERE region = 'us-east-1' AND data__Identifier = 'id_namespace_associations in a region.
+```sql
+SELECT
+region,
+id_namespace_association_identifier,
+membership_identifier
+FROM awscc.cleanrooms.id_namespace_associations_list_only
+WHERE region = 'us-east-1';
+```
+id_namespace_associations in a region or regions, for all properties use id_namespace_associations
-
-## Overview
-| Name | id_namespace_associations_list_only |
| Type | Resource |
| Description | Represents an association between an ID namespace and a collaboration |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
id_namespace_associations in a region.
-```sql
-SELECT
-region,
-id_namespace_association_identifier,
-membership_identifier
-FROM awscc.cleanrooms.id_namespace_associations_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the id_namespace_associations_list_only resource, see id_namespace_associations
-
diff --git a/website/docs/services/cleanrooms/index.md b/website/docs/services/cleanrooms/index.md
index 8dceac580..291a34fc8 100644
--- a/website/docs/services/cleanrooms/index.md
+++ b/website/docs/services/cleanrooms/index.md
@@ -20,7 +20,7 @@ The cleanrooms service documentation.
membership resource or lists AWS::CleanRooms::Membership.
@@ -245,31 +271,37 @@ For more information, see
+ membershipsINSERTmembershipsDELETEmembershipsUPDATEmemberships_list_onlySELECTmembershipsSELECTmembership.
```sql
SELECT
@@ -296,6 +337,19 @@ payment_configuration
FROM awscc.cleanrooms.memberships
WHERE region = 'us-east-1' AND data__Identifier = 'memberships in a region.
+```sql
+SELECT
+region,
+membership_identifier
+FROM awscc.cleanrooms.memberships_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
memberships in a region.
-```sql
-SELECT
-region,
-membership_identifier
-FROM awscc.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/website/docs/services/cleanrooms/privacy_budget_templates/index.md b/website/docs/services/cleanrooms/privacy_budget_templates/index.md
index ac1790dea..0d1a27f39 100644
--- a/website/docs/services/cleanrooms/privacy_budget_templates/index.md
+++ b/website/docs/services/cleanrooms/privacy_budget_templates/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a privacy_budget_template resourc
## Fields
+AWS::CleanRooms::PrivacyBudgetTemplate.
@@ -123,31 +154,37 @@ For more information, see
+ privacy_budget_templatesINSERTprivacy_budget_templatesDELETEprivacy_budget_templatesUPDATEprivacy_budget_templates_list_onlySELECTprivacy_budget_templatesSELECTprivacy_budget_template.
```sql
SELECT
@@ -173,6 +219,20 @@ membership_identifier
FROM awscc.cleanrooms.privacy_budget_templates
WHERE region = 'us-east-1' AND data__Identifier = 'privacy_budget_templates in a region.
+```sql
+SELECT
+region,
+privacy_budget_template_identifier,
+membership_identifier
+FROM awscc.cleanrooms.privacy_budget_templates_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
privacy_budget_templates in a region.
-```sql
-SELECT
-region,
-privacy_budget_template_identifier,
-membership_identifier
-FROM awscc.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/website/docs/services/cleanroomsml/index.md b/website/docs/services/cleanroomsml/index.md
index 104c6328e..46a92ccf8 100644
--- a/website/docs/services/cleanroomsml/index.md
+++ b/website/docs/services/cleanroomsml/index.md
@@ -20,7 +20,7 @@ The cleanroomsml service documentation.
training_dataset resource or li
## Fields
+AWS::CleanRoomsML::TrainingDataset.
@@ -139,31 +213,37 @@ For more information, see
+ training_datasetsINSERTtraining_datasetsDELETEtraining_datasetsUPDATEtraining_datasets_list_onlySELECTtraining_datasetsSELECTtraining_dataset.
```sql
SELECT
@@ -186,6 +275,19 @@ status
FROM awscc.cleanroomsml.training_datasets
WHERE region = 'us-east-1' AND data__Identifier = 'training_datasets in a region.
+```sql
+SELECT
+region,
+training_dataset_arn
+FROM awscc.cleanroomsml.training_datasets_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
training_datasets in a region.
-```sql
-SELECT
-region,
-training_dataset_arn
-FROM awscc.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/website/docs/services/cloud_control/resource/index.md b/website/docs/services/cloud_control/resource/index.md
index 7a2c0cfb5..dbe6c1b3d 100644
--- a/website/docs/services/cloud_control/resource/index.md
+++ b/website/docs/services/cloud_control/resource/index.md
@@ -73,3 +73,4 @@ Represents information about a provisioned resource.
+
diff --git a/website/docs/services/cloud_control/resource_request/index.md b/website/docs/services/cloud_control/resource_request/index.md
index 32e4aaba4..d92935192 100644
--- a/website/docs/services/cloud_control/resource_request/index.md
+++ b/website/docs/services/cloud_control/resource_request/index.md
@@ -113,3 +113,4 @@ For more information about Amazon Web Services Cloud Control API, see the vw_cancelled_request resource o
+
diff --git a/website/docs/services/cloud_control/vw_create_requests/index.md b/website/docs/services/cloud_control/vw_create_requests/index.md
index dcb9f493e..89d1d6a1f 100644
--- a/website/docs/services/cloud_control/vw_create_requests/index.md
+++ b/website/docs/services/cloud_control/vw_create_requests/index.md
@@ -58,3 +58,4 @@ Creates, updates, deletes or gets a vw_create_request resource or l
+
diff --git a/website/docs/services/cloud_control/vw_delete_requests/index.md b/website/docs/services/cloud_control/vw_delete_requests/index.md
index 0e83af00a..67eab5284 100644
--- a/website/docs/services/cloud_control/vw_delete_requests/index.md
+++ b/website/docs/services/cloud_control/vw_delete_requests/index.md
@@ -58,3 +58,4 @@ Creates, updates, deletes or gets a vw_delete_request resource or l
+
diff --git a/website/docs/services/cloud_control/vw_failed_requests/index.md b/website/docs/services/cloud_control/vw_failed_requests/index.md
index 2d1cbf89d..ac29cf081 100644
--- a/website/docs/services/cloud_control/vw_failed_requests/index.md
+++ b/website/docs/services/cloud_control/vw_failed_requests/index.md
@@ -58,3 +58,4 @@ Creates, updates, deletes or gets a vw_failed_request resource or l
+
diff --git a/website/docs/services/cloud_control/vw_pending_requests/index.md b/website/docs/services/cloud_control/vw_pending_requests/index.md
index 2a8d07e99..de0db9bb6 100644
--- a/website/docs/services/cloud_control/vw_pending_requests/index.md
+++ b/website/docs/services/cloud_control/vw_pending_requests/index.md
@@ -58,3 +58,4 @@ Creates, updates, deletes or gets a vw_pending_request resource or
+
diff --git a/website/docs/services/cloud_control/vw_successful_requests/index.md b/website/docs/services/cloud_control/vw_successful_requests/index.md
index fbc71c23b..72772ac55 100644
--- a/website/docs/services/cloud_control/vw_successful_requests/index.md
+++ b/website/docs/services/cloud_control/vw_successful_requests/index.md
@@ -58,3 +58,4 @@ Creates, updates, deletes or gets a vw_successful_request resource
+
diff --git a/website/docs/services/cloud_control/vw_update_requests/index.md b/website/docs/services/cloud_control/vw_update_requests/index.md
index 3411205c2..b4a66716f 100644
--- a/website/docs/services/cloud_control/vw_update_requests/index.md
+++ b/website/docs/services/cloud_control/vw_update_requests/index.md
@@ -58,3 +58,4 @@ Creates, updates, deletes or gets a vw_update_request resource or l
+
diff --git a/website/docs/services/cloudformation/guard_hooks/index.md b/website/docs/services/cloudformation/guard_hooks/index.md
index 93f89ca78..d51b8f0bb 100644
--- a/website/docs/services/cloudformation/guard_hooks/index.md
+++ b/website/docs/services/cloudformation/guard_hooks/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a guard_hook resource or lists AWS::CloudFormation::GuardHook.
@@ -157,31 +183,37 @@ For more information, see
+ guard_hooksINSERTguard_hooksDELETEguard_hooksUPDATEguard_hooks_list_onlySELECTguard_hooksSELECTguard_hook.
```sql
SELECT
@@ -208,6 +249,19 @@ options
FROM awscc.cloudformation.guard_hooks
WHERE region = 'us-east-1' AND data__Identifier = 'guard_hooks in a region.
+```sql
+SELECT
+region,
+hook_arn
+FROM awscc.cloudformation.guard_hooks_list_only
+WHERE region = 'us-east-1';
+```
+guard_hooks in a region or regions, for all properties use guard_hooks
-
-## Overview
-| Name | guard_hooks_list_only |
| Type | Resource |
| Description | This is a CloudFormation resource for activating the first-party AWS::Hooks::GuardHook. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
guard_hooks in a region.
-```sql
-SELECT
-region,
-hook_arn
-FROM awscc.cloudformation.guard_hooks_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the guard_hooks_list_only resource, see guard_hooks
-
diff --git a/website/docs/services/cloudformation/hook_default_versions/index.md b/website/docs/services/cloudformation/hook_default_versions/index.md
index e7a5ca36e..99f3e2ad7 100644
--- a/website/docs/services/cloudformation/hook_default_versions/index.md
+++ b/website/docs/services/cloudformation/hook_default_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a hook_default_version resource o
## Fields
+AWS::CloudFormation::HookDefaultVersion.
@@ -69,26 +95,31 @@ For more information, see
+ hook_default_versionsINSERThook_default_versionsUPDATEhook_default_versions_list_onlySELECThook_default_versionsSELECThook_default_version.
```sql
SELECT
@@ -108,6 +148,19 @@ version_id
FROM awscc.cloudformation.hook_default_versions
WHERE region = 'us-east-1' AND data__Identifier = 'hook_default_versions in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.cloudformation.hook_default_versions_list_only
+WHERE region = 'us-east-1';
+```
+hook_default_versions resource, the following permissions are required:
diff --git a/website/docs/services/cloudformation/hook_default_versions_list_only/index.md b/website/docs/services/cloudformation/hook_default_versions_list_only/index.md
deleted file mode 100644
index ba33e264e..000000000
--- a/website/docs/services/cloudformation/hook_default_versions_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
hook_default_versions in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cloudformation/hook_type_configs/index.md b/website/docs/services/cloudformation/hook_type_configs/index.md
index 043dbad82..e966df46e 100644
--- a/website/docs/services/cloudformation/hook_type_configs/index.md
+++ b/website/docs/services/cloudformation/hook_type_configs/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a hook_type_config resource or li
## Fields
+AWS::CloudFormation::HookTypeConfig.
@@ -74,31 +105,37 @@ For more information, see
+ hook_type_configsINSERThook_type_configsDELETEhook_type_configsUPDATEhook_type_configs_list_onlySELECThook_type_configsSELECThook_type_config.
```sql
SELECT
@@ -119,6 +165,19 @@ configuration_alias
FROM awscc.cloudformation.hook_type_configs
WHERE region = 'us-east-1' AND data__Identifier = 'hook_type_configs in a region.
+```sql
+SELECT
+region,
+configuration_arn
+FROM awscc.cloudformation.hook_type_configs_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
hook_type_configs in a region.
-```sql
-SELECT
-region,
-configuration_arn
-FROM awscc.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/website/docs/services/cloudformation/hook_versions/index.md b/website/docs/services/cloudformation/hook_versions/index.md
index ee9a81fd8..2d6efeb11 100644
--- a/website/docs/services/cloudformation/hook_versions/index.md
+++ b/website/docs/services/cloudformation/hook_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a hook_version resource or lists
## Fields
+AWS::CloudFormation::HookVersion.
@@ -106,26 +132,31 @@ For more information, see
+ hook_versionsINSERThook_versionsDELETEhook_versions_list_onlySELECThook_versionsSELECThook_version.
```sql
SELECT
@@ -150,6 +190,19 @@ visibility
FROM awscc.cloudformation.hook_versions
WHERE region = 'us-east-1' AND data__Identifier = 'hook_versions in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.cloudformation.hook_versions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
hook_versions in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cloudformation/index.md b/website/docs/services/cloudformation/index.md
index f6d864469..2949e3c3c 100644
--- a/website/docs/services/cloudformation/index.md
+++ b/website/docs/services/cloudformation/index.md
@@ -20,7 +20,7 @@ The cloudformation service documentation.
lambda_hook resource or lists <
## Fields
+AWS::CloudFormation::LambdaHook.
@@ -135,31 +161,37 @@ For more information, see
+ lambda_hooksINSERTlambda_hooksDELETElambda_hooksUPDATElambda_hooks_list_onlySELECTlambda_hooksSELECTlambda_hook.
```sql
SELECT
@@ -184,6 +225,19 @@ execution_role
FROM awscc.cloudformation.lambda_hooks
WHERE region = 'us-east-1' AND data__Identifier = 'lambda_hooks in a region.
+```sql
+SELECT
+region,
+hook_arn
+FROM awscc.cloudformation.lambda_hooks_list_only
+WHERE region = 'us-east-1';
+```
+lambda_hooks in a region or regions, for all properties use lambda_hooks
-
-## Overview
-| Name | lambda_hooks_list_only |
| Type | Resource |
| Description | This is a CloudFormation resource for the first-party AWS::Hooks::LambdaHook. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
lambda_hooks in a region.
-```sql
-SELECT
-region,
-hook_arn
-FROM awscc.cloudformation.lambda_hooks_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the lambda_hooks_list_only resource, see lambda_hooks
-
diff --git a/website/docs/services/cloudformation/module_default_versions/index.md b/website/docs/services/cloudformation/module_default_versions/index.md
index 92baa9670..6d6b5a15d 100644
--- a/website/docs/services/cloudformation/module_default_versions/index.md
+++ b/website/docs/services/cloudformation/module_default_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a module_default_version resource
## Fields
+AWS::CloudFormation::ModuleDefaultVersion.
@@ -64,21 +90,25 @@ For more information, see
+ module_default_versionsINSERTmodule_default_versions_list_onlySELECTmodule_default_versionsSELECTmodule_default_version.
```sql
SELECT
@@ -97,6 +136,19 @@ version_id
FROM awscc.cloudformation.module_default_versions
WHERE region = 'us-east-1' AND data__Identifier = 'module_default_versions in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.cloudformation.module_default_versions_list_only
+WHERE region = 'us-east-1';
+```
+module_default_versions resource, the following permissions are required:
diff --git a/website/docs/services/cloudformation/module_default_versions_list_only/index.md b/website/docs/services/cloudformation/module_default_versions_list_only/index.md
deleted file mode 100644
index 8a12232de..000000000
--- a/website/docs/services/cloudformation/module_default_versions_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
module_default_versions in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cloudformation/module_versions/index.md b/website/docs/services/cloudformation/module_versions/index.md
index 5b8d59cb1..d162d126d 100644
--- a/website/docs/services/cloudformation/module_versions/index.md
+++ b/website/docs/services/cloudformation/module_versions/index.md
@@ -205,6 +205,7 @@ resources:
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cloudformation/public_type_versions/index.md b/website/docs/services/cloudformation/public_type_versions/index.md
index 3aacf1f0b..f6c0fb77d 100644
--- a/website/docs/services/cloudformation/public_type_versions/index.md
+++ b/website/docs/services/cloudformation/public_type_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a public_type_version resource or
## Fields
+AWS::CloudFormation::PublicTypeVersion.
@@ -89,21 +125,25 @@ For more information, see
+ public_type_versionsINSERTpublic_type_versions_list_onlySELECTpublic_type_versionsSELECTpublic_type_version.
```sql
SELECT
@@ -127,6 +176,19 @@ type
FROM awscc.cloudformation.public_type_versions
WHERE region = 'us-east-1' AND data__Identifier = 'public_type_versions in a region.
+```sql
+SELECT
+region,
+public_type_arn
+FROM awscc.cloudformation.public_type_versions_list_only
+WHERE region = 'us-east-1';
+```
+public_type_versions resource, the following permissions are required:
diff --git a/website/docs/services/cloudformation/public_type_versions_list_only/index.md b/website/docs/services/cloudformation/public_type_versions_list_only/index.md
deleted file mode 100644
index 15e1fc934..000000000
--- a/website/docs/services/cloudformation/public_type_versions_list_only/index.md
+++ /dev/null
@@ -1,90 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
public_type_versions in a region.
-```sql
-SELECT
-region,
-public_type_arn
-FROM awscc.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/website/docs/services/cloudformation/publishers/index.md b/website/docs/services/cloudformation/publishers/index.md
index 993118862..3547cdb7a 100644
--- a/website/docs/services/cloudformation/publishers/index.md
+++ b/website/docs/services/cloudformation/publishers/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a publisher resource or lists AWS::CloudFormation::Publisher.
@@ -79,21 +105,25 @@ For more information, see
+ publishersINSERTpublishers_list_onlySELECTpublishersSELECTpublisher.
```sql
SELECT
@@ -115,6 +154,19 @@ identity_provider
FROM awscc.cloudformation.publishers
WHERE region = 'us-east-1' AND data__Identifier = 'publishers in a region.
+```sql
+SELECT
+region,
+publisher_id
+FROM awscc.cloudformation.publishers_list_only
+WHERE region = 'us-east-1';
+```
+publishers resource, the following permissions are required:
diff --git a/website/docs/services/cloudformation/publishers_list_only/index.md b/website/docs/services/cloudformation/publishers_list_only/index.md
deleted file mode 100644
index beade39e9..000000000
--- a/website/docs/services/cloudformation/publishers_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
publishers in a region.
-```sql
-SELECT
-region,
-publisher_id
-FROM awscc.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/website/docs/services/cloudformation/resource_default_versions/index.md b/website/docs/services/cloudformation/resource_default_versions/index.md
index d99ff9d8a..abc137c23 100644
--- a/website/docs/services/cloudformation/resource_default_versions/index.md
+++ b/website/docs/services/cloudformation/resource_default_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a resource_default_version resour
## Fields
+AWS::CloudFormation::ResourceDefaultVersion.
@@ -69,31 +95,37 @@ For more information, see
+ resource_default_versionsINSERTresource_default_versionsDELETEresource_default_versionsUPDATEresource_default_versions_list_onlySELECTresource_default_versionsSELECTresource_default_version.
```sql
SELECT
@@ -113,6 +154,19 @@ type_version_arn
FROM awscc.cloudformation.resource_default_versions
WHERE region = 'us-east-1' AND data__Identifier = 'resource_default_versions in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.cloudformation.resource_default_versions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
resource_default_versions in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cloudformation/resource_versions/index.md b/website/docs/services/cloudformation/resource_versions/index.md
index 99fb89324..03e85806c 100644
--- a/website/docs/services/cloudformation/resource_versions/index.md
+++ b/website/docs/services/cloudformation/resource_versions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a resource_version resource or li
## Fields
+AWS::CloudFormation::ResourceVersion.
@@ -111,26 +137,31 @@ For more information, see
+ resource_versionsINSERTresource_versionsDELETEresource_versions_list_onlySELECTresource_versionsSELECTresource_version.
```sql
SELECT
@@ -156,6 +196,19 @@ visibility
FROM awscc.cloudformation.resource_versions
WHERE region = 'us-east-1' AND data__Identifier = 'resource_versions in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.cloudformation.resource_versions_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
resource_versions in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cloudformation/stack_sets/index.md b/website/docs/services/cloudformation/stack_sets/index.md
index 4ca1344bb..3e5a8b10a 100644
--- a/website/docs/services/cloudformation/stack_sets/index.md
+++ b/website/docs/services/cloudformation/stack_sets/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a stack_set resource or lists AWS::CloudFormation::StackSet.
@@ -260,31 +286,37 @@ For more information, see
+ stack_setsINSERTstack_setsDELETEstack_setsUPDATEstack_sets_list_onlySELECTstack_setsSELECTstack_set.
```sql
SELECT
@@ -316,6 +357,19 @@ managed_execution
FROM awscc.cloudformation.stack_sets
WHERE region = 'us-east-1' AND data__Identifier = 'stack_sets in a region.
+```sql
+SELECT
+region,
+stack_set_id
+FROM awscc.cloudformation.stack_sets_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
stack_sets in a region.
-```sql
-SELECT
-region,
-stack_set_id
-FROM awscc.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/website/docs/services/cloudformation/stacks/index.md b/website/docs/services/cloudformation/stacks/index.md
index 60331c436..390bc6e24 100644
--- a/website/docs/services/cloudformation/stacks/index.md
+++ b/website/docs/services/cloudformation/stacks/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a stack resource or lists s
## Fields
+
+
+
stack resource or lists s
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::CloudFormation::Stack.
@@ -198,31 +224,37 @@ For more information, see
+ stacks
INSERT
+ stacks
DELETE
+ stacks
UPDATE
+ stacks_list_only
SELECT
+ stacks
SELECT
@@ -231,6 +263,15 @@ For more information, see
+
+
Gets all properties from an individual stack.
```sql
SELECT
@@ -261,6 +302,19 @@ creation_time
FROM awscc.cloudformation.stacks
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all stacks in a region.
+```sql
+SELECT
+region,
+stack_id
+FROM awscc.cloudformation.stacks_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -381,6 +435,32 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cloudformation.stacks
+SET data__PatchDocument = string('{{ {
+ "Capabilities": capabilities,
+ "RoleARN": role_arn,
+ "Description": description,
+ "DisableRollback": disable_rollback,
+ "EnableTerminationProtection": enable_termination_protection,
+ "NotificationARNs": notification_arns,
+ "Parameters": parameters,
+ "StackPolicyBody": stack_policy_body,
+ "StackPolicyURL": stack_policy_url,
+ "StackStatusReason": stack_status_reason,
+ "Tags": tags,
+ "TemplateBody": template_body,
+ "TemplateURL": template_url,
+ "TimeoutInMinutes": timeout_in_minutes
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cloudformation/stacks_list_only/index.md b/website/docs/services/cloudformation/stacks_list_only/index.md
deleted file mode 100644
index 027d1397f..000000000
--- a/website/docs/services/cloudformation/stacks_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all stacks in a region.
-```sql
-SELECT
-region,
-stack_id
-FROM awscc.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/website/docs/services/cloudformation/type_activations/index.md b/website/docs/services/cloudformation/type_activations/index.md
index 0dd17b1ce..9dcadc9cd 100644
--- a/website/docs/services/cloudformation/type_activations/index.md
+++ b/website/docs/services/cloudformation/type_activations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a type_activation resource or lis
## Fields
+
+
+
type_activation resource or lis
"description": "AWS region."
}
]} />
+
+AWS::CloudFormation::TypeActivation.
@@ -116,31 +142,37 @@ For more information, see
+ type_activationsINSERTtype_activationsDELETEtype_activationsUPDATEtype_activations_list_onlySELECTtype_activationsSELECTtype_activation.
```sql
SELECT
@@ -167,6 +208,19 @@ type
FROM awscc.cloudformation.type_activations
WHERE region = 'us-east-1' AND data__Identifier = 'type_activations in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.cloudformation.type_activations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
type_activations in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cloudfront/anycast_ip_lists/index.md b/website/docs/services/cloudfront/anycast_ip_lists/index.md
index 9be234f86..4c71e11a0 100644
--- a/website/docs/services/cloudfront/anycast_ip_lists/index.md
+++ b/website/docs/services/cloudfront/anycast_ip_lists/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an anycast_ip_list resource or li
## Fields
+AWS::CloudFront::AnycastIpList.
@@ -144,26 +170,31 @@ For more information, see
+ anycast_ip_listsINSERTanycast_ip_listsDELETEanycast_ip_lists_list_onlySELECTanycast_ip_listsSELECTanycast_ip_list.
```sql
SELECT
@@ -185,6 +225,19 @@ tags
FROM awscc.cloudfront.anycast_ip_lists
WHERE data__Identifier = 'anycast_ip_lists in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.anycast_ip_lists_list_only
+;
+```
+anycast_ip_lists in a region or regions, for all properties use anycast_ip_lists
-
-## Overview
-| Name | anycast_ip_lists_list_only |
| Type | Resource |
| Description | An Anycast static IP list. For more information, see [Request Anycast static IPs to use for allowlisting](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html) in the *Amazon CloudFront Developer Guide*. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
anycast_ip_lists in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.anycast_ip_lists_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the anycast_ip_lists_list_only resource, see anycast_ip_lists
-
diff --git a/website/docs/services/cloudfront/cache_policies/index.md b/website/docs/services/cloudfront/cache_policies/index.md
index b15f00a08..a0956b599 100644
--- a/website/docs/services/cloudfront/cache_policies/index.md
+++ b/website/docs/services/cloudfront/cache_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a cache_policy resource or lists
## Fields
+AWS::CloudFront::CachePolicy.
@@ -159,31 +185,37 @@ For more information, see
+ cache_policiesINSERTcache_policiesDELETEcache_policiesUPDATEcache_policies_list_onlySELECTcache_policiesSELECTcache_policy.
```sql
SELECT
@@ -202,6 +243,19 @@ last_modified_time
FROM awscc.cloudfront.cache_policies
WHERE data__Identifier = 'cache_policies in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.cache_policies_list_only
+;
+```
+cache_policies in a region or regions, for all properties use cache_policies
-
-## Overview
-| Name | cache_policies_list_only |
| Type | Resource |
| Description | A cache policy. When it's attached to a cache behavior, the cache policy determines the following: + The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer. + The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache. The headers, cookies, and query strings that are included in the cache key are also included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find a valid object in its cache that matches the request's cache key. If you want to send values to the origin but *not* include them in the cache key, use ``OriginRequestPolicy``. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
cache_policies in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.cache_policies_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the cache_policies_list_only resource, see cache_policies
-
diff --git a/website/docs/services/cloudfront/cloud_front_origin_access_identities/index.md b/website/docs/services/cloudfront/cloud_front_origin_access_identities/index.md
index 73fe5d103..3b1a9caf7 100644
--- a/website/docs/services/cloudfront/cloud_front_origin_access_identities/index.md
+++ b/website/docs/services/cloudfront/cloud_front_origin_access_identities/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a cloud_front_origin_access_identityAWS::CloudFront::CloudFrontOriginAccessIdentity.
@@ -71,31 +97,37 @@ For more information, see
+ cloud_front_origin_access_identitiesINSERTcloud_front_origin_access_identitiesDELETEcloud_front_origin_access_identitiesUPDATEcloud_front_origin_access_identities_list_onlySELECTcloud_front_origin_access_identitiesSELECTcloud_front_origin_access_identity.
```sql
SELECT
@@ -114,6 +155,19 @@ s3_canonical_user_id
FROM awscc.cloudfront.cloud_front_origin_access_identities
WHERE data__Identifier = 'cloud_front_origin_access_identities in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.cloud_front_origin_access_identities_list_only
+;
+```
+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 | The request to create a new origin access identity (OAI). An origin access identity is a special CloudFront user that you can associate with Amazon S3 origins, so that you can secure all or just some of your Amazon S3 content. For more information, see [Restricting Access to Amazon S3 Content by Using an Origin Access Identity](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html) in the *Amazon CloudFront Developer Guide*. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
cloud_front_origin_access_identities in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/cloudfront/connection_groups/index.md b/website/docs/services/cloudfront/connection_groups/index.md
index 68ea83ba9..890b608df 100644
--- a/website/docs/services/cloudfront/connection_groups/index.md
+++ b/website/docs/services/cloudfront/connection_groups/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a connection_group resource or li
## Fields
+AWS::CloudFront::ConnectionGroup.
@@ -126,31 +152,37 @@ For more information, see
+ connection_groupsINSERTconnection_groupsDELETEconnection_groupsUPDATEconnection_groups_list_onlySELECTconnection_groupsSELECTconnection_group.
```sql
SELECT
@@ -179,6 +220,19 @@ e_tag
FROM awscc.cloudfront.connection_groups
WHERE data__Identifier = 'connection_groups in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.connection_groups_list_only
+;
+```
+connection_groups in a region or regions, for all properties use connection_groups
-
-## Overview
-| Name | connection_groups_list_only |
| Type | Resource |
| Description | The connection group for your distribution tenants. When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
connection_groups in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.connection_groups_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the connection_groups_list_only resource, see connection_groups
-
diff --git a/website/docs/services/cloudfront/continuous_deployment_policies/index.md b/website/docs/services/cloudfront/continuous_deployment_policies/index.md
index 7db924078..e5ce2618f 100644
--- a/website/docs/services/cloudfront/continuous_deployment_policies/index.md
+++ b/website/docs/services/cloudfront/continuous_deployment_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a continuous_deployment_policy re
## Fields
+AWS::CloudFront::ContinuousDeploymentPolicy.
@@ -173,31 +199,37 @@ For more information, see
+ continuous_deployment_policiesINSERTcontinuous_deployment_policiesDELETEcontinuous_deployment_policiesUPDATEcontinuous_deployment_policies_list_onlySELECTcontinuous_deployment_policiesSELECTcontinuous_deployment_policy.
```sql
SELECT
@@ -216,6 +257,19 @@ last_modified_time
FROM awscc.cloudfront.continuous_deployment_policies
WHERE data__Identifier = 'continuous_deployment_policies in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.continuous_deployment_policies_list_only
+;
+```
+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 | Creates a continuous deployment policy that routes a subset of production traffic from a primary distribution to a staging distribution. After you create and update a staging distribution, you can use a continuous deployment policy to incrementally move traffic to the staging distribution. This enables you to test changes to a distribution's configuration before moving all of your production traffic to the new configuration. For more information, see [Using CloudFront continuous deployment to safely test CDN configuration changes](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/continuous-deployment.html) in the *Amazon CloudFront Developer Guide*. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
continuous_deployment_policies in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/cloudfront/distribution_tenants/index.md b/website/docs/services/cloudfront/distribution_tenants/index.md
index 48b3d337b..05ada41d9 100644
--- a/website/docs/services/cloudfront/distribution_tenants/index.md
+++ b/website/docs/services/cloudfront/distribution_tenants/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a distribution_tenant resource or
## Fields
+AWS::CloudFront::DistributionTenant.
@@ -230,31 +256,37 @@ For more information, see
+ distribution_tenantsINSERTdistribution_tenantsDELETEdistribution_tenantsUPDATEdistribution_tenants_list_onlySELECTdistribution_tenantsSELECTdistribution_tenant.
```sql
SELECT
@@ -286,6 +327,19 @@ managed_certificate_request
FROM awscc.cloudfront.distribution_tenants
WHERE data__Identifier = 'distribution_tenants in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.distribution_tenants_list_only
+;
+```
+distribution_tenants in a region or regions, for all properties use distribution_tenants
-
-## Overview
-| Name | distribution_tenants_list_only |
| Type | Resource |
| Description | The distribution tenant. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
distribution_tenants in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.distribution_tenants_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the distribution_tenants_list_only resource, see distribution_tenants
-
diff --git a/website/docs/services/cloudfront/distributions/index.md b/website/docs/services/cloudfront/distributions/index.md
index 836ed4e26..b0f9d6e0d 100644
--- a/website/docs/services/cloudfront/distributions/index.md
+++ b/website/docs/services/cloudfront/distributions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a distribution resource or lists
## Fields
+AWS::CloudFront::Distribution.
@@ -857,31 +883,37 @@ For more information, see
+ distributionsINSERTdistributionsDELETEdistributionsUPDATEdistributions_list_onlySELECTdistributionsSELECTdistribution.
```sql
SELECT
@@ -901,6 +942,19 @@ tags
FROM awscc.cloudfront.distributions
WHERE data__Identifier = 'distributions in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.distributions_list_only
+;
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
distributions in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.distributions_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the distributions_list_only resource, see distributions
-
diff --git a/website/docs/services/cloudfront/functions/index.md b/website/docs/services/cloudfront/functions/index.md
index ad1fa13fb..c0b71bee6 100644
--- a/website/docs/services/cloudfront/functions/index.md
+++ b/website/docs/services/cloudfront/functions/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a function resource or lists AWS::CloudFront::Function.
@@ -115,31 +141,37 @@ For more information, see
+ functionsINSERTfunctionsDELETEfunctionsUPDATEfunctions_list_onlySELECTfunctionsSELECTfunction.
```sql
SELECT
@@ -162,6 +203,19 @@ stage
FROM awscc.cloudfront.functions
WHERE data__Identifier = 'functions in a region.
+```sql
+SELECT
+region,
+function_arn
+FROM awscc.cloudfront.functions_list_only
+;
+```
+functions in a region or regions, for all properties use functions
-
-## Overview
-| Name | functions_list_only |
| Type | Resource |
| Description | Creates a CF function. To create a function, you provide the function code and some configuration information about the function. The response contains an Amazon Resource Name (ARN) that uniquely identifies the function, and the function’s stage. By default, when you create a function, it’s in the ``DEVELOPMENT`` stage. In this stage, you can [test the function](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/test-function.html) in the CF console (or with ``TestFunction`` in the CF API). When you’re ready to use your function with a CF distribution, publish the function to the ``LIVE`` stage. You can do this in the CF console, with ``PublishFunction`` in the CF API, or by updating the ``AWS::CloudFront::Function`` resource with the ``AutoPublish`` property set to ``true``. When the function is published to the ``LIVE`` stage, you can attach it to a distribution’s cache behavior, using the function’s ARN. To automatically publish the function to the ``LIVE`` stage when it’s created, set the ``AutoPublish`` property to ``true``. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
functions in a region.
-```sql
-SELECT
-region,
-function_arn
-FROM awscc.cloudfront.functions_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the functions_list_only resource, see functions
-
diff --git a/website/docs/services/cloudfront/index.md b/website/docs/services/cloudfront/index.md
index e9bda9e83..e10c54047 100644
--- a/website/docs/services/cloudfront/index.md
+++ b/website/docs/services/cloudfront/index.md
@@ -20,7 +20,7 @@ The cloudfront service documentation.
key_group resource or lists AWS::CloudFront::KeyGroup.
@@ -81,31 +107,37 @@ For more information, see
+ key_groupsINSERTkey_groupsDELETEkey_groupsUPDATEkey_groups_list_onlySELECTkey_groupsSELECTkey_group.
```sql
SELECT
@@ -124,6 +165,19 @@ last_modified_time
FROM awscc.cloudfront.key_groups
WHERE data__Identifier = 'key_groups in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.key_groups_list_only
+;
+```
+key_groups in a region or regions, for all properties use key_groups
-
-## Overview
-| Name | key_groups_list_only |
| Type | Resource |
| Description | A key group. A key group contains a list of public keys that you can use with [CloudFront signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html). |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
key_groups in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.key_groups_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the key_groups_list_only resource, see key_groups
-
diff --git a/website/docs/services/cloudfront/key_value_stores/index.md b/website/docs/services/cloudfront/key_value_stores/index.md
index 8a2900211..1edaf58e9 100644
--- a/website/docs/services/cloudfront/key_value_stores/index.md
+++ b/website/docs/services/cloudfront/key_value_stores/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a key_value_store resource or lis
## Fields
+AWS::CloudFront::KeyValueStore.
@@ -91,31 +117,37 @@ For more information, see
+ key_value_storesINSERTkey_value_storesDELETEkey_value_storesUPDATEkey_value_stores_list_onlySELECTkey_value_storesSELECTkey_value_store.
```sql
SELECT
@@ -137,6 +178,19 @@ import_source
FROM awscc.cloudfront.key_value_stores
WHERE data__Identifier = 'key_value_stores in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.cloudfront.key_value_stores_list_only
+;
+```
+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 | The key value store. Use this to separate data from function code, allowing you to update data without having to publish a new version of a function. The key value store holds keys and their corresponding values. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
key_value_stores in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.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/website/docs/services/cloudfront/monitoring_subscriptions/index.md b/website/docs/services/cloudfront/monitoring_subscriptions/index.md
index 0ded0fbab..0c654a041 100644
--- a/website/docs/services/cloudfront/monitoring_subscriptions/index.md
+++ b/website/docs/services/cloudfront/monitoring_subscriptions/index.md
@@ -166,6 +166,7 @@ resources:
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cloudfront/origin_access_controls/index.md b/website/docs/services/cloudfront/origin_access_controls/index.md
index 1ef505c81..a72bf00cf 100644
--- a/website/docs/services/cloudfront/origin_access_controls/index.md
+++ b/website/docs/services/cloudfront/origin_access_controls/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an origin_access_control resource
## Fields
+AWS::CloudFront::OriginAccessControl.
@@ -86,31 +112,37 @@ For more information, see
+ origin_access_controlsINSERTorigin_access_controlsDELETEorigin_access_controlsUPDATEorigin_access_controls_list_onlySELECTorigin_access_controlsSELECTorigin_access_control.
```sql
SELECT
@@ -128,6 +169,19 @@ origin_access_control_config
FROM awscc.cloudfront.origin_access_controls
WHERE data__Identifier = 'origin_access_controls in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.origin_access_controls_list_only
+;
+```
+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 | Creates a new origin access control in CloudFront. After you create an origin access control, you can add it to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin. This makes it possible to block public access to the origin, allowing viewers (users) to access the origin's content only through CloudFront. For more information about using a CloudFront origin access control, see [Restricting access to an origin](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-origin.html) in the *Amazon CloudFront Developer Guide*. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
origin_access_controls in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/cloudfront/origin_request_policies/index.md b/website/docs/services/cloudfront/origin_request_policies/index.md
index f58f13d6e..cdf61dd4d 100644
--- a/website/docs/services/cloudfront/origin_request_policies/index.md
+++ b/website/docs/services/cloudfront/origin_request_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an origin_request_policy resource
## Fields
+AWS::CloudFront::OriginRequestPolicy.
@@ -127,31 +153,37 @@ For more information, see
+ origin_request_policiesINSERTorigin_request_policiesDELETEorigin_request_policiesUPDATEorigin_request_policies_list_onlySELECTorigin_request_policiesSELECTorigin_request_policy.
```sql
SELECT
@@ -170,6 +211,19 @@ origin_request_policy_config
FROM awscc.cloudfront.origin_request_policies
WHERE data__Identifier = 'origin_request_policies in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.origin_request_policies_list_only
+;
+```
+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 | An origin request policy. When it's attached to a cache behavior, the origin request policy determines the values that CloudFront includes in requests that it sends to the origin. Each request that CloudFront sends to the origin includes the following: + The request body and the URL path (without the domain name) from the viewer request. + The headers that CloudFront automatically includes in every origin request, including ``Host``, ``User-Agent``, and ``X-Amz-Cf-Id``. + All HTTP headers, cookies, and URL query strings that are specified in the cache policy or the origin request policy. These can include items from the viewer request and, in the case of headers, additional ones that are added by CloudFront. CloudFront sends a request when it can't find an object in its cache that matches the request. If you want to send values to the origin and also include them in the cache key, use ``CachePolicy``. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
origin_request_policies in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/cloudfront/public_keys/index.md b/website/docs/services/cloudfront/public_keys/index.md
index 9e6479169..0992578bf 100644
--- a/website/docs/services/cloudfront/public_keys/index.md
+++ b/website/docs/services/cloudfront/public_keys/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a public_key resource or lists AWS::CloudFront::PublicKey.
@@ -86,31 +112,37 @@ For more information, see
+ public_keysINSERTpublic_keysDELETEpublic_keysUPDATEpublic_keys_list_onlySELECTpublic_keysSELECTpublic_key.
```sql
SELECT
@@ -129,6 +170,19 @@ public_key_config
FROM awscc.cloudfront.public_keys
WHERE data__Identifier = 'public_keys in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.public_keys_list_only
+;
+```
+public_keys in a region or regions, for all properties use public_keys
-
-## Overview
-| Name | public_keys_list_only |
| Type | Resource |
| Description | A public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html). |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
public_keys in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.public_keys_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the public_keys_list_only resource, see public_keys
-
diff --git a/website/docs/services/cloudfront/realtime_log_configs/index.md b/website/docs/services/cloudfront/realtime_log_configs/index.md
index b542315ff..c82c57648 100644
--- a/website/docs/services/cloudfront/realtime_log_configs/index.md
+++ b/website/docs/services/cloudfront/realtime_log_configs/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a realtime_log_config resource or
## Fields
+AWS::CloudFront::RealtimeLogConfig.
@@ -98,31 +124,37 @@ For more information, see
+ realtime_log_configsINSERTrealtime_log_configsDELETErealtime_log_configsUPDATErealtime_log_configs_list_onlySELECTrealtime_log_configsSELECTrealtime_log_config.
```sql
SELECT
@@ -143,6 +184,19 @@ sampling_rate
FROM awscc.cloudfront.realtime_log_configs
WHERE data__Identifier = 'realtime_log_configs in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.cloudfront.realtime_log_configs_list_only
+;
+```
+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 | A real-time log configuration. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
realtime_log_configs in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cloudfront/response_headers_policies/index.md b/website/docs/services/cloudfront/response_headers_policies/index.md
index 58b077940..c837d53df 100644
--- a/website/docs/services/cloudfront/response_headers_policies/index.md
+++ b/website/docs/services/cloudfront/response_headers_policies/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a response_headers_policy resourc
## Fields
+AWS::CloudFront::ResponseHeadersPolicy.
@@ -335,31 +361,37 @@ For more information, see
+ response_headers_policiesINSERTresponse_headers_policiesDELETEresponse_headers_policiesUPDATEresponse_headers_policies_list_onlySELECTresponse_headers_policiesSELECTresponse_headers_policy.
```sql
SELECT
@@ -378,6 +419,19 @@ response_headers_policy_config
FROM awscc.cloudfront.response_headers_policies
WHERE data__Identifier = 'response_headers_policies in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.response_headers_policies_list_only
+;
+```
+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 | A response headers policy. A response headers policy contains information about a set of HTTP response headers. After you create a response headers policy, you can use its ID to attach it to one or more cache behaviors in a CloudFront distribution. When it's attached to a cache behavior, the response headers policy affects the HTTP headers that CloudFront includes in HTTP responses to requests that match the cache behavior. CloudFront adds or removes response headers according to the configuration of the response headers policy. For more information, see [Adding or removing HTTP headers in CloudFront responses](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/modifying-response-headers.html) in the *Amazon CloudFront Developer Guide*. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
response_headers_policies in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/cloudfront/vpc_origins/index.md b/website/docs/services/cloudfront/vpc_origins/index.md
index f0627fcd5..778cb3c8b 100644
--- a/website/docs/services/cloudfront/vpc_origins/index.md
+++ b/website/docs/services/cloudfront/vpc_origins/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a vpc_origin resource or lists AWS::CloudFront::VpcOrigin.
@@ -128,31 +154,37 @@ For more information, see
+ vpc_originsINSERTvpc_originsDELETEvpc_originsUPDATEvpc_origins_list_onlySELECTvpc_originsSELECTvpc_origin.
```sql
SELECT
@@ -175,6 +216,19 @@ vpc_origin_endpoint_config
FROM awscc.cloudfront.vpc_origins
WHERE data__Identifier = 'vpc_origins in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cloudfront.vpc_origins_list_only
+;
+```
+vpc_origins in a region or regions, for all properties use vpc_origins
-
-## Overview
-| Name | vpc_origins_list_only |
| Type | Resource |
| Description | An Amazon CloudFront VPC origin. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
vpc_origins in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.cloudfront.vpc_origins_list_only
-;
-```
-
-
-## Permissions
-
-For permissions required to operate on the vpc_origins_list_only resource, see vpc_origins
-
diff --git a/website/docs/services/cloudtrail/channels/index.md b/website/docs/services/cloudtrail/channels/index.md
index 6810c8535..84a69d97f 100644
--- a/website/docs/services/cloudtrail/channels/index.md
+++ b/website/docs/services/cloudtrail/channels/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a channel resource or lists
## Fields
+
+
+
channel resource or lists
+
+AWS::CloudTrail::Channel.
@@ -98,31 +124,37 @@ For more information, see
+ channelsINSERTchannelsDELETEchannelsUPDATEchannels_list_onlySELECTchannelsSELECTchannel.
```sql
SELECT
@@ -143,6 +184,19 @@ tags
FROM awscc.cloudtrail.channels
WHERE region = 'us-east-1' AND data__Identifier = 'channels in a region.
+```sql
+SELECT
+region,
+channel_arn
+FROM awscc.cloudtrail.channels_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
channels in a region.
-```sql
-SELECT
-region,
-channel_arn
-FROM awscc.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/website/docs/services/cloudtrail/dashboards/index.md b/website/docs/services/cloudtrail/dashboards/index.md
index c43049e85..75db4f123 100644
--- a/website/docs/services/cloudtrail/dashboards/index.md
+++ b/website/docs/services/cloudtrail/dashboards/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a dashboard resource or lists AWS::CloudTrail::Dashboard.
@@ -152,31 +178,37 @@ For more information, see
+ dashboardsINSERTdashboardsDELETEdashboardsUPDATEdashboards_list_onlySELECTdashboardsSELECTdashboard.
```sql
SELECT
@@ -202,6 +243,19 @@ tags
FROM awscc.cloudtrail.dashboards
WHERE region = 'us-east-1' AND data__Identifier = 'dashboards in a region.
+```sql
+SELECT
+region,
+dashboard_arn
+FROM awscc.cloudtrail.dashboards_list_only
+WHERE region = 'us-east-1';
+```
+dashboards in a region or regions, for all properties use dashboards
-
-## Overview
-| Name | dashboards_list_only |
| Type | Resource |
| Description | The Amazon CloudTrail dashboard resource allows customers to manage managed dashboards and create custom dashboards. You can manually refresh custom and managed dashboards. For custom dashboards, you can also set up an automatic refresh schedule and modify dashboard widgets. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
dashboards in a region.
-```sql
-SELECT
-region,
-dashboard_arn
-FROM awscc.cloudtrail.dashboards_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the dashboards_list_only resource, see dashboards
-
diff --git a/website/docs/services/cloudtrail/event_data_stores/index.md b/website/docs/services/cloudtrail/event_data_stores/index.md
index d089c13fc..b9a10fc36 100644
--- a/website/docs/services/cloudtrail/event_data_stores/index.md
+++ b/website/docs/services/cloudtrail/event_data_stores/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an event_data_store resource or l
## Fields
+AWS::CloudTrail::EventDataStore.
@@ -224,31 +250,37 @@ For more information, see
+ event_data_storesINSERTevent_data_storesDELETEevent_data_storesUPDATEevent_data_stores_list_onlySELECTevent_data_storesSELECTevent_data_store.
```sql
SELECT
@@ -284,6 +325,19 @@ ingestion_enabled
FROM awscc.cloudtrail.event_data_stores
WHERE region = 'us-east-1' AND data__Identifier = 'event_data_stores in a region.
+```sql
+SELECT
+region,
+event_data_store_arn
+FROM awscc.cloudtrail.event_data_stores_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
event_data_stores in a region.
-```sql
-SELECT
-region,
-event_data_store_arn
-FROM awscc.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/website/docs/services/cloudtrail/index.md b/website/docs/services/cloudtrail/index.md
index 76cfa32d8..8446ae187 100644
--- a/website/docs/services/cloudtrail/index.md
+++ b/website/docs/services/cloudtrail/index.md
@@ -20,7 +20,7 @@ The cloudtrail service documentation.
trail resource or lists t
## Fields
+
+
+
trail resource or lists t
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::CloudTrail::Trail.
@@ -241,31 +267,37 @@ For more information, see
+ trails
INSERT
+ trails
DELETE
+ trails
UPDATE
+ trails_list_only
SELECT
+ trails
SELECT
@@ -274,6 +306,15 @@ For more information, see
+
+
Gets all properties from an individual trail.
```sql
SELECT
@@ -299,6 +340,19 @@ is_logging
FROM awscc.cloudtrail.trails
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all trails in a region.
+```sql
+SELECT
+region,
+trail_name
+FROM awscc.cloudtrail.trails_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -447,6 +501,33 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cloudtrail.trails
+SET data__PatchDocument = string('{{ {
+ "IncludeGlobalServiceEvents": include_global_service_events,
+ "EventSelectors": event_selectors,
+ "KMSKeyId": kms_key_id,
+ "CloudWatchLogsRoleArn": cloud_watch_logs_role_arn,
+ "S3KeyPrefix": s3_key_prefix,
+ "AdvancedEventSelectors": advanced_event_selectors,
+ "IsOrganizationTrail": is_organization_trail,
+ "InsightSelectors": insight_selectors,
+ "CloudWatchLogsLogGroupArn": cloud_watch_logs_log_group_arn,
+ "SnsTopicName": sns_topic_name,
+ "IsMultiRegionTrail": is_multi_region_trail,
+ "S3BucketName": s3_bucket_name,
+ "EnableLogFileValidation": enable_log_file_validation,
+ "Tags": tags,
+ "IsLogging": is_logging
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cloudtrail/trails_list_only/index.md b/website/docs/services/cloudtrail/trails_list_only/index.md
deleted file mode 100644
index 05df470d2..000000000
--- a/website/docs/services/cloudtrail/trails_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all trails in a region.
-```sql
-SELECT
-region,
-trail_name
-FROM awscc.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/website/docs/services/cloudwatch/alarms/index.md b/website/docs/services/cloudwatch/alarms/index.md
index c85aee04b..648d9b4fb 100644
--- a/website/docs/services/cloudwatch/alarms/index.md
+++ b/website/docs/services/cloudwatch/alarms/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an alarm resource or lists
## Fields
+
+
+
alarm resource or lists
"description": "AWS region."
}
]} />
+
+
+
+ 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."
+ },
+ {
+ "name": "region",
+ "type": "string",
+ "description": "AWS region."
+ }
+]} />
+
+
For more information, see AWS::CloudWatch::Alarm.
@@ -264,31 +290,37 @@ For more information, see
+ alarms
INSERT
+ alarms
DELETE
+ alarms
UPDATE
+ alarms_list_only
SELECT
+ alarms
SELECT
@@ -297,6 +329,15 @@ For more information, see
+
+
Gets all properties from an individual alarm.
```sql
SELECT
@@ -327,6 +368,19 @@ tags
FROM awscc.cloudwatch.alarms
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all alarms in a region.
+```sql
+SELECT
+region,
+alarm_name
+FROM awscc.cloudwatch.alarms_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -495,6 +549,39 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cloudwatch.alarms
+SET data__PatchDocument = string('{{ {
+ "ThresholdMetricId": threshold_metric_id,
+ "EvaluateLowSampleCountPercentile": evaluate_low_sample_count_percentile,
+ "ExtendedStatistic": extended_statistic,
+ "ComparisonOperator": comparison_operator,
+ "TreatMissingData": treat_missing_data,
+ "Dimensions": dimensions,
+ "Period": period,
+ "EvaluationPeriods": evaluation_periods,
+ "Unit": unit,
+ "Namespace": namespace,
+ "OKActions": ok_actions,
+ "AlarmActions": alarm_actions,
+ "MetricName": metric_name,
+ "ActionsEnabled": actions_enabled,
+ "Metrics": metrics,
+ "AlarmDescription": alarm_description,
+ "Statistic": statistic,
+ "InsufficientDataActions": insufficient_data_actions,
+ "DatapointsToAlarm": datapoints_to_alarm,
+ "Threshold": threshold,
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cloudwatch/alarms_list_only/index.md b/website/docs/services/cloudwatch/alarms_list_only/index.md
deleted file mode 100644
index 565515e9c..000000000
--- a/website/docs/services/cloudwatch/alarms_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
- 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."
- },
- {
- "name": "region",
- "type": "string",
- "description": "AWS region."
- }
-]} />
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all alarms in a region.
-```sql
-SELECT
-region,
-alarm_name
-FROM awscc.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/website/docs/services/cloudwatch/composite_alarms/index.md b/website/docs/services/cloudwatch/composite_alarms/index.md
index fdd98947e..e435de165 100644
--- a/website/docs/services/cloudwatch/composite_alarms/index.md
+++ b/website/docs/services/cloudwatch/composite_alarms/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a composite_alarm resource or lis
## Fields
+
+
+
composite_alarm resource or lis
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::CloudWatch::CompositeAlarm.
@@ -121,31 +147,37 @@ For more information, see
+ composite_alarms
INSERT
+ composite_alarms
DELETE
+ composite_alarms
UPDATE
+ composite_alarms_list_only
SELECT
+ composite_alarms
SELECT
@@ -154,6 +186,15 @@ For more information, see
+
+
Gets all properties from an individual composite_alarm.
```sql
SELECT
@@ -173,6 +214,19 @@ tags
FROM awscc.cloudwatch.composite_alarms
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all composite_alarms in a region.
+```sql
+SELECT
+region,
+alarm_name
+FROM awscc.cloudwatch.composite_alarms_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -278,6 +332,28 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cloudwatch.composite_alarms
+SET data__PatchDocument = string('{{ {
+ "AlarmRule": alarm_rule,
+ "AlarmDescription": alarm_description,
+ "ActionsEnabled": actions_enabled,
+ "OKActions": ok_actions,
+ "AlarmActions": alarm_actions,
+ "InsufficientDataActions": insufficient_data_actions,
+ "ActionsSuppressor": actions_suppressor,
+ "ActionsSuppressorWaitPeriod": actions_suppressor_wait_period,
+ "ActionsSuppressorExtensionPeriod": actions_suppressor_extension_period,
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/cloudwatch/composite_alarms_list_only/index.md b/website/docs/services/cloudwatch/composite_alarms_list_only/index.md
deleted file mode 100644
index c1e46d58f..000000000
--- a/website/docs/services/cloudwatch/composite_alarms_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all composite_alarms in a region.
-```sql
-SELECT
-region,
-alarm_name
-FROM awscc.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/website/docs/services/cloudwatch/dashboards/index.md b/website/docs/services/cloudwatch/dashboards/index.md
index 0dc1e03b0..c517b8fe2 100644
--- a/website/docs/services/cloudwatch/dashboards/index.md
+++ b/website/docs/services/cloudwatch/dashboards/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a dashboard resource or lists
## Fields
+
+
+
dashboard resource or lists AWS::CloudWatch::Dashboard.
@@ -59,31 +85,37 @@ For more information, see
+ dashboardsINSERTdashboardsDELETEdashboardsUPDATEdashboards_list_onlySELECTdashboardsSELECTdashboard.
```sql
SELECT
@@ -101,6 +142,19 @@ dashboard_body
FROM awscc.cloudwatch.dashboards
WHERE region = 'us-east-1' AND data__Identifier = 'dashboards in a region.
+```sql
+SELECT
+region,
+dashboard_name
+FROM awscc.cloudwatch.dashboards_list_only
+WHERE region = 'us-east-1';
+```
+dashboards in a region or regions, for all properties use dashboards
-
-## Overview
-| Name | dashboards_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::CloudWatch::Dashboard |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
dashboards in a region.
-```sql
-SELECT
-region,
-dashboard_name
-FROM awscc.cloudwatch.dashboards_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the dashboards_list_only resource, see dashboards
-
diff --git a/website/docs/services/cloudwatch/index.md b/website/docs/services/cloudwatch/index.md
index cf51ec8ed..7c4f1738d 100644
--- a/website/docs/services/cloudwatch/index.md
+++ b/website/docs/services/cloudwatch/index.md
@@ -20,7 +20,7 @@ The cloudwatch service documentation.
metric_stream resource or lists
## Fields
+AWS::CloudWatch::MetricStream.
@@ -162,31 +188,37 @@ For more information, see
+ metric_streamsINSERTmetric_streamsDELETEmetric_streamsUPDATEmetric_streams_list_onlySELECTmetric_streamsSELECTmetric_stream.
```sql
SELECT
@@ -215,6 +256,19 @@ include_linked_accounts_metrics
FROM awscc.cloudwatch.metric_streams
WHERE region = 'us-east-1' AND data__Identifier = 'metric_streams in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.cloudwatch.metric_streams_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
metric_streams in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.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/website/docs/services/codeartifact/domains/index.md b/website/docs/services/codeartifact/domains/index.md
index a26094d16..d7cfa77e7 100644
--- a/website/docs/services/codeartifact/domains/index.md
+++ b/website/docs/services/codeartifact/domains/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a domain resource or lists
## Fields
+
+
+
domain resource or lists
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::CodeArtifact::Domain.
@@ -96,31 +122,37 @@ For more information, see
+ domains
INSERT
+ domains
DELETE
+ domains
UPDATE
+ domains_list_only
SELECT
+ domains
SELECT
@@ -129,6 +161,15 @@ For more information, see
+
+
Gets all properties from an individual domain.
```sql
SELECT
@@ -143,6 +184,19 @@ arn
FROM awscc.codeartifact.domains
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all domains in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.codeartifact.domains_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -213,6 +267,20 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.codeartifact.domains
+SET data__PatchDocument = string('{{ {
+ "PermissionsPolicyDocument": permissions_policy_document,
+ "Tags": tags
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/codeartifact/domains_list_only/index.md b/website/docs/services/codeartifact/domains_list_only/index.md
deleted file mode 100644
index 2a44861f0..000000000
--- a/website/docs/services/codeartifact/domains_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all domains in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/codeartifact/index.md b/website/docs/services/codeartifact/index.md
index 2ead5464e..f4a6128f7 100644
--- a/website/docs/services/codeartifact/index.md
+++ b/website/docs/services/codeartifact/index.md
@@ -20,7 +20,7 @@ The codeartifact service documentation.
-total resources: 6
+total resources: 3
@@ -30,12 +30,9 @@ The codeartifact service documentation.
\ No newline at end of file
diff --git a/website/docs/services/codeartifact/package_groups/index.md b/website/docs/services/codeartifact/package_groups/index.md
index 7b3fb5fbc..4210fa82d 100644
--- a/website/docs/services/codeartifact/package_groups/index.md
+++ b/website/docs/services/codeartifact/package_groups/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a package_group resource or lists
## Fields
+
+
+
package_group resource or lists
"description": "AWS region."
}
]} />
+
+AWS::CodeArtifact::PackageGroup.
@@ -127,31 +153,37 @@ For more information, see
+ package_groupsINSERTpackage_groupsDELETEpackage_groupsUPDATEpackage_groups_list_onlySELECTpackage_groupsSELECTpackage_group.
```sql
SELECT
@@ -175,6 +216,19 @@ arn
FROM awscc.codeartifact.package_groups
WHERE region = 'us-east-1' AND data__Identifier = 'package_groups in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.codeartifact.package_groups_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
package_groups in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/codeartifact/repositories/index.md b/website/docs/services/codeartifact/repositories/index.md
index 6f98ab374..ebcc0ec5e 100644
--- a/website/docs/services/codeartifact/repositories/index.md
+++ b/website/docs/services/codeartifact/repositories/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a repository resource or lists AWS::CodeArtifact::Repository.
@@ -111,31 +137,37 @@ For more information, see
+ repositoriesINSERTrepositoriesDELETErepositoriesUPDATErepositories_list_onlySELECTrepositoriesSELECTrepository.
```sql
SELECT
@@ -161,6 +202,19 @@ tags
FROM awscc.codeartifact.repositories
WHERE region = 'us-east-1' AND data__Identifier = 'repositories in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.codeartifact.repositories_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
repositories in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/codebuild/fleets/index.md b/website/docs/services/codebuild/fleets/index.md
index 720abd787..84d73cf41 100644
--- a/website/docs/services/codebuild/fleets/index.md
+++ b/website/docs/services/codebuild/fleets/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a fleet resource or lists f
## Fields
+
+
+
fleet resource or lists f
"description": "AWS region."
}
]} />
+
+
+
+
+
+
For more information, see AWS::CodeBuild::Fleet.
@@ -228,31 +254,37 @@ For more information, see
+ fleets
INSERT
+ fleets
DELETE
+ fleets
UPDATE
+ fleets_list_only
SELECT
+ fleets
SELECT
@@ -261,6 +293,15 @@ For more information, see
+
+
Gets all properties from an individual fleet.
```sql
SELECT
@@ -281,6 +322,19 @@ compute_configuration
FROM awscc.codebuild.fleets
WHERE region = 'us-east-1' AND data__Identifier = '';
```
+
+
+
+Lists all fleets in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.codebuild.fleets_list_only
+WHERE region = 'us-east-1';
+```
+
+
## `INSERT` example
@@ -430,6 +484,30 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.codebuild.fleets
+SET data__PatchDocument = string('{{ {
+ "Name": name,
+ "BaseCapacity": base_capacity,
+ "EnvironmentType": environment_type,
+ "ComputeType": compute_type,
+ "OverflowBehavior": overflow_behavior,
+ "FleetServiceRole": fleet_service_role,
+ "FleetVpcConfig": fleet_vpc_config,
+ "FleetProxyConfiguration": fleet_proxy_configuration,
+ "Tags": tags,
+ "ImageId": image_id,
+ "ScalingConfiguration": scaling_configuration,
+ "ComputeConfiguration": compute_configuration
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = '';
+```
+
+
## `DELETE` example
```sql
diff --git a/website/docs/services/codebuild/fleets_list_only/index.md b/website/docs/services/codebuild/fleets_list_only/index.md
deleted file mode 100644
index 81c9cb5bb..000000000
--- a/website/docs/services/codebuild/fleets_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-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
-
-
-## Methods
-
-
-
-
- Name
- Accessible by
- Required Params
-
-
-
- SELECT
-
-
-
-
-
-## `SELECT` examples
-Lists all fleets in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/codebuild/index.md b/website/docs/services/codebuild/index.md
index afb3ec3c1..654a56738 100644
--- a/website/docs/services/codebuild/index.md
+++ b/website/docs/services/codebuild/index.md
@@ -20,7 +20,7 @@ The codebuild service documentation.
-total resources: 2
+total resources: 1
@@ -32,6 +32,6 @@ The codebuild service documentation.
fleets
\ No newline at end of file
diff --git a/website/docs/services/codeconnections/connections/index.md b/website/docs/services/codeconnections/connections/index.md
index 186eeeceb..b2a17c63e 100644
--- a/website/docs/services/codeconnections/connections/index.md
+++ b/website/docs/services/codeconnections/connections/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a connection resource or lists
## Fields
+
+
+
connection resource or lists AWS::CodeConnections::Connection.
@@ -96,31 +122,37 @@ For more information, see
+ connectionsINSERTconnectionsDELETEconnectionsUPDATEconnections_list_onlySELECTconnectionsSELECTconnection.
```sql
SELECT
@@ -143,6 +184,19 @@ tags
FROM awscc.codeconnections.connections
WHERE region = 'us-east-1' AND data__Identifier = 'connections in a region.
+```sql
+SELECT
+region,
+connection_arn
+FROM awscc.codeconnections.connections_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
connections in a region.
-```sql
-SELECT
-region,
-connection_arn
-FROM awscc.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/website/docs/services/codeconnections/index.md b/website/docs/services/codeconnections/index.md
index 1cfa36281..fbc6d8498 100644
--- a/website/docs/services/codeconnections/index.md
+++ b/website/docs/services/codeconnections/index.md
@@ -20,7 +20,7 @@ The codeconnections service documentation.
application resource or lists
## Fields
+AWS::CodeDeploy::Application.
@@ -76,31 +102,37 @@ For more information, see
+ applicationsINSERTapplicationsDELETEapplicationsUPDATEapplications_list_onlySELECTapplicationsSELECTapplication.
```sql
SELECT
@@ -119,6 +160,19 @@ tags
FROM awscc.codedeploy.applications
WHERE region = 'us-east-1' AND data__Identifier = 'applications in a region.
+```sql
+SELECT
+region,
+application_name
+FROM awscc.codedeploy.applications_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
applications in a region.
-```sql
-SELECT
-region,
-application_name
-FROM awscc.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/website/docs/services/codedeploy/deployment_configs/index.md b/website/docs/services/codedeploy/deployment_configs/index.md
index b18bfdc8a..6f5ce6e89 100644
--- a/website/docs/services/codedeploy/deployment_configs/index.md
+++ b/website/docs/services/codedeploy/deployment_configs/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a deployment_config resource or l
## Fields
+AWS::CodeDeploy::DeploymentConfig.
@@ -156,26 +182,31 @@ For more information, see
+ deployment_configsINSERTdeployment_configsDELETEdeployment_configs_list_onlySELECTdeployment_configsSELECTdeployment_config.
```sql
SELECT
@@ -196,6 +236,19 @@ traffic_routing_config
FROM awscc.codedeploy.deployment_configs
WHERE region = 'us-east-1' AND data__Identifier = 'deployment_configs in a region.
+```sql
+SELECT
+region,
+deployment_config_name
+FROM awscc.codedeploy.deployment_configs_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
deployment_configs in a region.
-```sql
-SELECT
-region,
-deployment_config_name
-FROM awscc.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/website/docs/services/codedeploy/index.md b/website/docs/services/codedeploy/index.md
index 81b09dbba..e27b64f3e 100644
--- a/website/docs/services/codedeploy/index.md
+++ b/website/docs/services/codedeploy/index.md
@@ -20,7 +20,7 @@ The codedeploy service documentation.
profiling_group resource or lis
## Fields
+AWS::CodeGuruProfiler::ProfilingGroup.
@@ -110,31 +136,37 @@ For more information, see
+ profiling_groupsINSERTprofiling_groupsDELETEprofiling_groupsUPDATEprofiling_groups_list_onlySELECTprofiling_groupsSELECTprofiling_group.
```sql
SELECT
@@ -156,6 +197,19 @@ tags
FROM awscc.codeguruprofiler.profiling_groups
WHERE region = 'us-east-1' AND data__Identifier = 'profiling_groups in a region.
+```sql
+SELECT
+region,
+profiling_group_name
+FROM awscc.codeguruprofiler.profiling_groups_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
profiling_groups in a region.
-```sql
-SELECT
-region,
-profiling_group_name
-FROM awscc.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/website/docs/services/codegurureviewer/index.md b/website/docs/services/codegurureviewer/index.md
index e53a10911..b86566135 100644
--- a/website/docs/services/codegurureviewer/index.md
+++ b/website/docs/services/codegurureviewer/index.md
@@ -20,7 +20,7 @@ The codegurureviewer service documentation.
repository_association resource
## Fields
+AWS::CodeGuruReviewer::RepositoryAssociation.
@@ -96,26 +122,31 @@ For more information, see
+ repository_associationsINSERTrepository_associationsDELETErepository_associations_list_onlySELECTrepository_associationsSELECTrepository_association.
```sql
SELECT
@@ -138,6 +178,19 @@ tags
FROM awscc.codegurureviewer.repository_associations
WHERE region = 'us-east-1' AND data__Identifier = 'repository_associations in a region.
+```sql
+SELECT
+region,
+association_arn
+FROM awscc.codegurureviewer.repository_associations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
repository_associations in a region.
-```sql
-SELECT
-region,
-association_arn
-FROM awscc.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/website/docs/services/codepipeline/custom_action_types/index.md b/website/docs/services/codepipeline/custom_action_types/index.md
index 10f75d97b..fd2e28c8e 100644
--- a/website/docs/services/codepipeline/custom_action_types/index.md
+++ b/website/docs/services/codepipeline/custom_action_types/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a custom_action_type resource or
## Fields
+AWS::CodePipeline::CustomActionType.
@@ -172,31 +213,37 @@ For more information, see
+ custom_action_typesINSERTcustom_action_typesDELETEcustom_action_typesUPDATEcustom_action_types_list_onlySELECTcustom_action_typesSELECTcustom_action_type.
```sql
SELECT
@@ -221,6 +277,21 @@ id
FROM awscc.codepipeline.custom_action_types
WHERE region = 'us-east-1' AND data__Identifier = 'custom_action_types in a region.
+```sql
+SELECT
+region,
+category,
+provider,
+version
+FROM awscc.codepipeline.custom_action_types_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
custom_action_types in a region.
-```sql
-SELECT
-region,
-category,
-provider,
-version
-FROM awscc.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/website/docs/services/codepipeline/index.md b/website/docs/services/codepipeline/index.md
index 06a70f807..808a61ec2 100644
--- a/website/docs/services/codepipeline/index.md
+++ b/website/docs/services/codepipeline/index.md
@@ -20,7 +20,7 @@ The codepipeline service documentation.
pipeline resource or lists AWS::CodePipeline::Pipeline.
@@ -531,31 +557,37 @@ For more information, see
+ pipelinesINSERTpipelinesDELETEpipelinesUPDATEpipelines_list_onlySELECTpipelinesSELECTpipeline.
```sql
SELECT
@@ -584,6 +625,19 @@ tags
FROM awscc.codepipeline.pipelines
WHERE region = 'us-east-1' AND data__Identifier = 'pipelines in a region.
+```sql
+SELECT
+region,
+name
+FROM awscc.codepipeline.pipelines_list_only
+WHERE region = 'us-east-1';
+```
+pipelines in a region or regions, for all properties use pipelines
-
-## Overview
-| Name | pipelines_list_only |
| Type | Resource |
| Description | The AWS::CodePipeline::Pipeline resource creates a CodePipeline pipeline that describes how software changes go through a release process. |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
pipelines in a region.
-```sql
-SELECT
-region,
-name
-FROM awscc.codepipeline.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/website/docs/services/codepipeline/webhooks/index.md b/website/docs/services/codepipeline/webhooks/index.md
index d7bacf62a..55fb0a410 100644
--- a/website/docs/services/codepipeline/webhooks/index.md
+++ b/website/docs/services/codepipeline/webhooks/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a webhook resource or lists
## Fields
+
+
+
webhook resource or lists
+
+AWS::CodePipeline::Webhook.
@@ -123,31 +149,37 @@ For more information, see
+ webhooksINSERTwebhooksDELETEwebhooksUPDATEwebhooks_list_onlySELECTwebhooksSELECTwebhook.
```sql
SELECT
@@ -173,6 +214,19 @@ register_with_third_party
FROM awscc.codepipeline.webhooks
WHERE region = 'us-east-1' AND data__Identifier = 'webhooks in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.codepipeline.webhooks_list_only
+WHERE region = 'us-east-1';
+```
+webhooks in a region or regions, for all properties use webhooks
-
-## Overview
-| Name | webhooks_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::CodePipeline::Webhook |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
webhooks in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.codepipeline.webhooks_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the webhooks_list_only resource, see webhooks
-
diff --git a/website/docs/services/codestarconnections/connections/index.md b/website/docs/services/codestarconnections/connections/index.md
index e455e6685..3d89ec698 100644
--- a/website/docs/services/codestarconnections/connections/index.md
+++ b/website/docs/services/codestarconnections/connections/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a connection resource or lists AWS::CodeStarConnections::Connection.
@@ -96,31 +122,37 @@ For more information, see
+ connectionsINSERTconnectionsDELETEconnectionsUPDATEconnections_list_onlySELECTconnectionsSELECTconnection.
```sql
SELECT
@@ -143,6 +184,19 @@ tags
FROM awscc.codestarconnections.connections
WHERE region = 'us-east-1' AND data__Identifier = 'connections in a region.
+```sql
+SELECT
+region,
+connection_arn
+FROM awscc.codestarconnections.connections_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
connections in a region.
-```sql
-SELECT
-region,
-connection_arn
-FROM awscc.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/website/docs/services/codestarconnections/index.md b/website/docs/services/codestarconnections/index.md
index 4db4f8e7d..9a4c6080d 100644
--- a/website/docs/services/codestarconnections/index.md
+++ b/website/docs/services/codestarconnections/index.md
@@ -20,7 +20,7 @@ The codestarconnections service documentation.
repository_link resource or lis
## Fields
+AWS::CodeStarConnections::RepositoryLink.
@@ -101,31 +127,37 @@ For more information, see
+ repository_linksINSERTrepository_linksDELETErepository_linksUPDATErepository_links_list_onlySELECTrepository_linksSELECTrepository_link.
```sql
SELECT
@@ -149,6 +190,19 @@ tags
FROM awscc.codestarconnections.repository_links
WHERE region = 'us-east-1' AND data__Identifier = 'repository_links in a region.
+```sql
+SELECT
+region,
+repository_link_arn
+FROM awscc.codestarconnections.repository_links_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
repository_links in a region.
-```sql
-SELECT
-region,
-repository_link_arn
-FROM awscc.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/website/docs/services/codestarconnections/sync_configurations/index.md b/website/docs/services/codestarconnections/sync_configurations/index.md
index 7c2a6af47..0d767971f 100644
--- a/website/docs/services/codestarconnections/sync_configurations/index.md
+++ b/website/docs/services/codestarconnections/sync_configurations/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a sync_configuration resource or
## Fields
+AWS::CodeStarConnections::SyncConfiguration.
@@ -104,31 +135,37 @@ For more information, see
+ sync_configurationsINSERTsync_configurationsDELETEsync_configurationsUPDATEsync_configurations_list_onlySELECTsync_configurationsSELECTsync_configuration.
```sql
SELECT
@@ -155,6 +201,20 @@ repository_link_id
FROM awscc.codestarconnections.sync_configurations
WHERE region = 'us-east-1' AND data__Identifier = 'sync_configurations in a region.
+```sql
+SELECT
+region,
+resource_name,
+sync_type
+FROM awscc.codestarconnections.sync_configurations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
sync_configurations in a region.
-```sql
-SELECT
-region,
-resource_name,
-sync_type
-FROM awscc.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/website/docs/services/codestarnotifications/index.md b/website/docs/services/codestarnotifications/index.md
index e559d0b3e..0e5391b71 100644
--- a/website/docs/services/codestarnotifications/index.md
+++ b/website/docs/services/codestarnotifications/index.md
@@ -20,7 +20,7 @@ The codestarnotifications service documentation.
notification_rule resource or l
## Fields
+AWS::CodeStarNotifications::NotificationRule.
@@ -116,31 +142,37 @@ For more information, see
+ notification_rulesINSERTnotification_rulesDELETEnotification_rulesUPDATEnotification_rules_list_onlySELECTnotification_rulesSELECTnotification_rule.
```sql
SELECT
@@ -167,6 +208,19 @@ arn
FROM awscc.codestarnotifications.notification_rules
WHERE region = 'us-east-1' AND data__Identifier = 'notification_rules in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.codestarnotifications.notification_rules_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
notification_rules in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/cognito/identity_pool_principal_tags/index.md b/website/docs/services/cognito/identity_pool_principal_tags/index.md
index 604da904c..a37da76ef 100644
--- a/website/docs/services/cognito/identity_pool_principal_tags/index.md
+++ b/website/docs/services/cognito/identity_pool_principal_tags/index.md
@@ -33,6 +33,15 @@ Expands all tag keys and values for identity_pool_principals in a r
## Fields
+AWS::Cognito::IdentityPoolPrincipalTag.
@@ -79,31 +110,37 @@ For more information, see
+ identity_pool_principal_tagsINSERTidentity_pool_principal_tagsDELETEidentity_pool_principal_tagsUPDATEidentity_pool_principal_tags_list_onlySELECTidentity_pool_principal_tagsSELECTidentity_pool_principal_tag.
```sql
SELECT
region,
identity_pool_id,
identity_provider_name,
use_defaults,
-principal_tags,
-tag_key,
-tag_value
+principal_tags
FROM awscc.cognito.identity_pool_principal_tags
-WHERE region = 'us-east-1';
+WHERE region = 'us-east-1' AND data__Identifier = 'identity_pool_principal_tag.
+identity_pool_principal_tags in a region.
```sql
SELECT
region,
identity_pool_id,
-identity_provider_name,
-use_defaults,
-principal_tags
-FROM awscc.cognito.identity_pool_principal_tags
-WHERE region = 'us-east-1' AND data__Identifier = '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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
identity_pool_principal_tags in a region.
-```sql
-SELECT
-region,
-identity_pool_id,
-identity_provider_name
-FROM awscc.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/website/docs/services/cognito/identity_pool_role_attachments/index.md b/website/docs/services/cognito/identity_pool_role_attachments/index.md
index 8d9a0c667..3a79d94ce 100644
--- a/website/docs/services/cognito/identity_pool_role_attachments/index.md
+++ b/website/docs/services/cognito/identity_pool_role_attachments/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an identity_pool_role_attachment
## Fields
+AWS::Cognito::IdentityPoolRoleAttachment.
@@ -69,31 +95,37 @@ For more information, see
+ identity_pool_role_attachmentsINSERTidentity_pool_role_attachmentsDELETEidentity_pool_role_attachmentsUPDATEidentity_pool_role_attachments_list_onlySELECTidentity_pool_role_attachmentsSELECTidentity_pool_role_attachment.
```sql
SELECT
@@ -113,6 +154,19 @@ role_mappings
FROM awscc.cognito.identity_pool_role_attachments
WHERE region = 'us-east-1' AND data__Identifier = 'identity_pool_role_attachments in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cognito.identity_pool_role_attachments_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
identity_pool_role_attachments in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/cognito/identity_pools/index.md b/website/docs/services/cognito/identity_pools/index.md
index ae6a8af8b..23b1d8a2a 100644
--- a/website/docs/services/cognito/identity_pools/index.md
+++ b/website/docs/services/cognito/identity_pools/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an identity_pool resource or list
## Fields
+AWS::Cognito::IdentityPool.
@@ -177,31 +203,37 @@ For more information, see
+ identity_poolsINSERTidentity_poolsDELETEidentity_poolsUPDATEidentity_pools_list_onlySELECTidentity_poolsSELECTidentity_pool.
```sql
SELECT
@@ -231,6 +272,19 @@ identity_pool_tags
FROM awscc.cognito.identity_pools
WHERE region = 'us-east-1' AND data__Identifier = 'identity_pools in a region.
+```sql
+SELECT
+region,
+id
+FROM awscc.cognito.identity_pools_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
identity_pools in a region.
-```sql
-SELECT
-region,
-id
-FROM awscc.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/website/docs/services/cognito/index.md b/website/docs/services/cognito/index.md
index 2332f1268..2766eeb68 100644
--- a/website/docs/services/cognito/index.md
+++ b/website/docs/services/cognito/index.md
@@ -20,7 +20,7 @@ The cognito service documentation.
user_pool_client resource or l
## Fields
+AWS::Cognito::UserPoolClient.
@@ -235,31 +266,37 @@ For more information, see
+ user_pool_clientsINSERTuser_pool_clientsDELETEuser_pool_clientsUPDATEuser_pool_clients_list_onlySELECTuser_pool_clientsSELECTuser_pool_client.
```sql
SELECT
@@ -301,6 +347,20 @@ client_id
FROM awscc.cognito.user_pool_clients
WHERE region = 'us-east-1' AND data__Identifier = 'user_pool_clients in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+client_id
+FROM awscc.cognito.user_pool_clients_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
user_pool_clients in a region.
-```sql
-SELECT
-region,
-user_pool_id,
-client_id
-FROM awscc.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/website/docs/services/cognito/user_pool_domains/index.md b/website/docs/services/cognito/user_pool_domains/index.md
index 0f3a75636..f0cc3f2c2 100644
--- a/website/docs/services/cognito/user_pool_domains/index.md
+++ b/website/docs/services/cognito/user_pool_domains/index.md
@@ -196,6 +196,20 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cognito.user_pool_domains
+SET data__PatchDocument = string('{{ {
+ "CustomDomainConfig": custom_domain_config,
+ "ManagedLoginVersion": managed_login_version
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = 'user_pool_group resource or li
## Fields
+AWS::Cognito::UserPoolGroup.
@@ -74,31 +105,37 @@ For more information, see
+ user_pool_groupsINSERTuser_pool_groupsDELETEuser_pool_groupsUPDATEuser_pool_groups_list_onlySELECTuser_pool_groupsSELECTuser_pool_group.
```sql
SELECT
@@ -119,6 +165,20 @@ user_pool_id
FROM awscc.cognito.user_pool_groups
WHERE region = 'us-east-1' AND data__Identifier = 'user_pool_groups in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+group_name
+FROM awscc.cognito.user_pool_groups_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
user_pool_groups in a region.
-```sql
-SELECT
-region,
-user_pool_id,
-group_name
-FROM awscc.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/website/docs/services/cognito/user_pool_identity_providers/index.md b/website/docs/services/cognito/user_pool_identity_providers/index.md
index a76f49bfc..041a371d3 100644
--- a/website/docs/services/cognito/user_pool_identity_providers/index.md
+++ b/website/docs/services/cognito/user_pool_identity_providers/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an user_pool_identity_provider re
## Fields
+AWS::Cognito::UserPoolIdentityProvider.
@@ -79,31 +110,37 @@ For more information, see
+ user_pool_identity_providersINSERTuser_pool_identity_providersDELETEuser_pool_identity_providersUPDATEuser_pool_identity_providers_list_onlySELECTuser_pool_identity_providersSELECTuser_pool_identity_provider.
```sql
SELECT
@@ -125,6 +171,20 @@ attribute_mapping
FROM awscc.cognito.user_pool_identity_providers
WHERE region = 'us-east-1' AND data__Identifier = 'user_pool_identity_providers in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+provider_name
+FROM awscc.cognito.user_pool_identity_providers_list_only
+WHERE region = 'us-east-1';
+```
+user_pool_identity_providers in a region or regions, for all properties use user_pool_identity_providers
-
-## Overview
-| Name | user_pool_identity_providers_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::Cognito::UserPoolIdentityProvider |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
user_pool_identity_providers in a region.
-```sql
-SELECT
-region,
-user_pool_id,
-provider_name
-FROM awscc.cognito.user_pool_identity_providers_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the user_pool_identity_providers_list_only resource, see user_pool_identity_providers
-
diff --git a/website/docs/services/cognito/user_pool_resource_servers/index.md b/website/docs/services/cognito/user_pool_resource_servers/index.md
index 2a61d5282..4da7f2281 100644
--- a/website/docs/services/cognito/user_pool_resource_servers/index.md
+++ b/website/docs/services/cognito/user_pool_resource_servers/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an user_pool_resource_server reso
## Fields
+AWS::Cognito::UserPoolResourceServer.
@@ -81,31 +112,37 @@ For more information, see
+ user_pool_resource_serversINSERTuser_pool_resource_serversDELETEuser_pool_resource_serversUPDATEuser_pool_resource_servers_list_onlySELECTuser_pool_resource_serversSELECTuser_pool_resource_server.
```sql
SELECT
@@ -125,6 +171,20 @@ scopes
FROM awscc.cognito.user_pool_resource_servers
WHERE region = 'us-east-1' AND data__Identifier = 'user_pool_resource_servers in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+identifier
+FROM awscc.cognito.user_pool_resource_servers_list_only
+WHERE region = 'us-east-1';
+```
+user_pool_resource_servers in a region or regions, for all properties use user_pool_resource_servers
-
-## Overview
-| Name | user_pool_resource_servers_list_only |
| Type | Resource |
| Description | Resource Type definition for AWS::Cognito::UserPoolResourceServer |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
user_pool_resource_servers in a region.
-```sql
-SELECT
-region,
-user_pool_id,
-identifier
-FROM awscc.cognito.user_pool_resource_servers_list_only
-WHERE region = 'us-east-1';
-```
-
-
-## Permissions
-
-For permissions required to operate on the user_pool_resource_servers_list_only resource, see user_pool_resource_servers
-
diff --git a/website/docs/services/cognito/user_pool_risk_configuration_attachments/index.md b/website/docs/services/cognito/user_pool_risk_configuration_attachments/index.md
index d21e11a76..c0d0f30bc 100644
--- a/website/docs/services/cognito/user_pool_risk_configuration_attachments/index.md
+++ b/website/docs/services/cognito/user_pool_risk_configuration_attachments/index.md
@@ -317,6 +317,21 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cognito.user_pool_risk_configuration_attachments
+SET data__PatchDocument = string('{{ {
+ "RiskExceptionConfiguration": risk_exception_configuration,
+ "CompromisedCredentialsRiskConfiguration": compromised_credentials_risk_configuration,
+ "AccountTakeoverRiskConfiguration": account_takeover_risk_configuration
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = 'user_pool_user resource or lis
## Fields
+AWS::Cognito::UserPoolUser.
@@ -101,26 +132,31 @@ For more information, see
+ user_pool_usersINSERTuser_pool_usersDELETEuser_pool_users_list_onlySELECTuser_pool_usersSELECTuser_pool_user.
```sql
SELECT
@@ -144,6 +189,20 @@ client_metadata
FROM awscc.cognito.user_pool_users
WHERE region = 'us-east-1' AND data__Identifier = 'user_pool_users in a region.
+```sql
+SELECT
+region,
+user_pool_id,
+username
+FROM awscc.cognito.user_pool_users_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
user_pool_users in a region.
-```sql
-SELECT
-region,
-user_pool_id,
-username
-FROM awscc.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/website/docs/services/cognito/user_pools/index.md b/website/docs/services/cognito/user_pools/index.md
index 8222a7d95..ef5527df9 100644
--- a/website/docs/services/cognito/user_pools/index.md
+++ b/website/docs/services/cognito/user_pools/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an user_pool resource or lists AWS::Cognito::UserPool.
@@ -613,31 +639,37 @@ For more information, see
+ user_poolsINSERTuser_poolsDELETEuser_poolsUPDATEuser_pools_list_onlySELECTuser_poolsSELECTuser_pool.
```sql
SELECT
@@ -686,6 +727,19 @@ user_pool_tier
FROM awscc.cognito.user_pools
WHERE region = 'us-east-1' AND data__Identifier = 'user_pools in a region.
+```sql
+SELECT
+region,
+user_pool_id
+FROM awscc.cognito.user_pools_list_only
+WHERE region = 'us-east-1';
+```
+user_pools in a region or regions, for all properties use user_pools
-
-## Overview
-| Name | user_pools_list_only |
| Type | Resource |
| Description | Definition of AWS::Cognito::UserPool Resource Type |
| Id |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
user_pools in a region.
-```sql
-SELECT
-region,
-user_pool_id
-FROM awscc.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/website/docs/services/cognito/user_poolui_customization_attachments/index.md b/website/docs/services/cognito/user_poolui_customization_attachments/index.md
index 84b19eae2..fd1c7f7f2 100644
--- a/website/docs/services/cognito/user_poolui_customization_attachments/index.md
+++ b/website/docs/services/cognito/user_poolui_customization_attachments/index.md
@@ -172,6 +172,19 @@ resources:
+## `UPDATE` example
+
+```sql
+/*+ update */
+UPDATE awscc.cognito.user_poolui_customization_attachments
+SET data__PatchDocument = string('{{ {
+ "CSS": c_ss
+} | generate_patch_document }}')
+WHERE region = '{{ region }}'
+AND data__Identifier = 'document_classifier resource or
## Fields
+AWS::Comprehend::DocumentClassifier.
@@ -223,31 +249,37 @@ For more information, see
+ document_classifiersINSERTdocument_classifiersDELETEdocument_classifiersUPDATEdocument_classifiers_list_onlySELECTdocument_classifiersSELECTdocument_classifier.
```sql
SELECT
@@ -276,6 +317,19 @@ arn
FROM awscc.comprehend.document_classifiers
WHERE region = 'us-east-1' AND data__Identifier = 'document_classifiers in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.comprehend.document_classifiers_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
document_classifiers in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/comprehend/flywheels/index.md b/website/docs/services/comprehend/flywheels/index.md
index 20361298d..c98e39ecc 100644
--- a/website/docs/services/comprehend/flywheels/index.md
+++ b/website/docs/services/comprehend/flywheels/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a flywheel resource or lists AWS::Comprehend::Flywheel.
@@ -173,31 +199,37 @@ For more information, see
+ flywheelsINSERTflywheelsDELETEflywheelsUPDATEflywheels_list_onlySELECTflywheelsSELECTflywheel.
```sql
SELECT
@@ -222,6 +263,19 @@ arn
FROM awscc.comprehend.flywheels
WHERE region = 'us-east-1' AND data__Identifier = 'flywheels in a region.
+```sql
+SELECT
+region,
+arn
+FROM awscc.comprehend.flywheels_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
flywheels in a region.
-```sql
-SELECT
-region,
-arn
-FROM awscc.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/website/docs/services/comprehend/index.md b/website/docs/services/comprehend/index.md
index 4601aafc3..16a990f11 100644
--- a/website/docs/services/comprehend/index.md
+++ b/website/docs/services/comprehend/index.md
@@ -20,7 +20,7 @@ The comprehend service documentation.
aggregation_authorization reso
## Fields
+AWS::Config::AggregationAuthorization.
@@ -81,31 +112,37 @@ For more information, see
+ aggregation_authorizationsINSERTaggregation_authorizationsDELETEaggregation_authorizationsUPDATEaggregation_authorizations_list_onlySELECTaggregation_authorizationsSELECTaggregation_authorization.
```sql
SELECT
@@ -125,6 +171,20 @@ tags
FROM awscc.config.aggregation_authorizations
WHERE region = 'us-east-1' AND data__Identifier = 'aggregation_authorizations in a region.
+```sql
+SELECT
+region,
+authorized_account_id,
+authorized_aws_region
+FROM awscc.config.aggregation_authorizations_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
aggregation_authorizations in a region.
-```sql
-SELECT
-region,
-authorized_account_id,
-authorized_aws_region
-FROM awscc.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/website/docs/services/config/config_rules/index.md b/website/docs/services/config/config_rules/index.md
index 3afc5b123..a7506787d 100644
--- a/website/docs/services/config/config_rules/index.md
+++ b/website/docs/services/config/config_rules/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a config_rule resource or lists <
## Fields
+AWS::Config::ConfigRule.
@@ -191,31 +217,37 @@ For more information, see
+ config_rulesINSERTconfig_rulesDELETEconfig_rulesUPDATEconfig_rules_list_onlySELECTconfig_rulesSELECTconfig_rule.
```sql
SELECT
@@ -241,6 +282,19 @@ evaluation_modes
FROM awscc.config.config_rules
WHERE region = 'us-east-1' AND data__Identifier = 'config_rules in a region.
+```sql
+SELECT
+region,
+config_rule_name
+FROM awscc.config.config_rules_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
config_rules in a region.
-```sql
-SELECT
-region,
-config_rule_name
-FROM awscc.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/website/docs/services/config/configuration_aggregators/index.md b/website/docs/services/config/configuration_aggregators/index.md
index cb12fa35d..cc919c7bd 100644
--- a/website/docs/services/config/configuration_aggregators/index.md
+++ b/website/docs/services/config/configuration_aggregators/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a configuration_aggregator resour
## Fields
+AWS::Config::ConfigurationAggregator.
@@ -120,31 +146,37 @@ For more information, see
+ configuration_aggregatorsINSERTconfiguration_aggregatorsDELETEconfiguration_aggregatorsUPDATEconfiguration_aggregators_list_onlySELECTconfiguration_aggregatorsSELECTconfiguration_aggregator.
```sql
SELECT
@@ -165,6 +206,19 @@ tags
FROM awscc.config.configuration_aggregators
WHERE region = 'us-east-1' AND data__Identifier = 'configuration_aggregators in a region.
+```sql
+SELECT
+region,
+configuration_aggregator_name
+FROM awscc.config.configuration_aggregators_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
configuration_aggregators in a region.
-```sql
-SELECT
-region,
-configuration_aggregator_name
-FROM awscc.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/website/docs/services/config/conformance_packs/index.md b/website/docs/services/config/conformance_packs/index.md
index 1e21f0fa9..c6eeb0dc9 100644
--- a/website/docs/services/config/conformance_packs/index.md
+++ b/website/docs/services/config/conformance_packs/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a conformance_pack resource or li
## Fields
+AWS::Config::ConformancePack.
@@ -108,31 +134,37 @@ For more information, see
+ conformance_packsINSERTconformance_packsDELETEconformance_packsUPDATEconformance_packs_list_onlySELECTconformance_packsSELECTconformance_pack.
```sql
SELECT
@@ -155,6 +196,19 @@ conformance_pack_input_parameters
FROM awscc.config.conformance_packs
WHERE region = 'us-east-1' AND data__Identifier = 'conformance_packs in a region.
+```sql
+SELECT
+region,
+conformance_pack_name
+FROM awscc.config.conformance_packs_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
conformance_packs in a region.
-```sql
-SELECT
-region,
-conformance_pack_name
-FROM awscc.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/website/docs/services/config/index.md b/website/docs/services/config/index.md
index 92cc816ec..879af2525 100644
--- a/website/docs/services/config/index.md
+++ b/website/docs/services/config/index.md
@@ -20,7 +20,7 @@ The config service documentation.
organization_conformance_pack
## Fields
+AWS::Config::OrganizationConformancePack.
@@ -96,31 +122,37 @@ For more information, see
+ organization_conformance_packsINSERTorganization_conformance_packsDELETEorganization_conformance_packsUPDATEorganization_conformance_packs_list_onlySELECTorganization_conformance_packsSELECTorganization_conformance_pack.
```sql
SELECT
@@ -143,6 +184,19 @@ excluded_accounts
FROM awscc.config.organization_conformance_packs
WHERE region = 'us-east-1' AND data__Identifier = 'organization_conformance_packs in a region.
+```sql
+SELECT
+region,
+organization_conformance_pack_name
+FROM awscc.config.organization_conformance_packs_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
organization_conformance_packs in a region.
-```sql
-SELECT
-region,
-organization_conformance_pack_name
-FROM awscc.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/website/docs/services/config/stored_queries/index.md b/website/docs/services/config/stored_queries/index.md
index 34e0d7682..5fcbccc66 100644
--- a/website/docs/services/config/stored_queries/index.md
+++ b/website/docs/services/config/stored_queries/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets a stored_query resource or lists
## Fields
+AWS::Config::StoredQuery.
@@ -91,31 +117,37 @@ For more information, see
+ stored_queriesINSERTstored_queriesDELETEstored_queriesUPDATEstored_queries_list_onlySELECTstored_queriesSELECTstored_query.
```sql
SELECT
@@ -137,6 +178,19 @@ tags
FROM awscc.config.stored_queries
WHERE region = 'us-east-1' AND data__Identifier = 'stored_queries in a region.
+```sql
+SELECT
+region,
+query_name
+FROM awscc.config.stored_queries_list_only
+WHERE region = 'us-east-1';
+```
+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 |
| Name | -Accessible by | -Required Params | -
|---|---|---|
SELECT |
-
stored_queries in a region.
-```sql
-SELECT
-region,
-query_name
-FROM awscc.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/website/docs/services/connect/agent_statuses/index.md b/website/docs/services/connect/agent_statuses/index.md
index 831d649ea..39c142ce3 100644
--- a/website/docs/services/connect/agent_statuses/index.md
+++ b/website/docs/services/connect/agent_statuses/index.md
@@ -33,6 +33,15 @@ Creates, updates, deletes or gets an agent_status resource or lists
## Fields
+AWS::Connect::AgentStatus.
@@ -116,26 +142,31 @@ For more information, see
+ agent_statusesINSERTagent_statusesUPDATEagent_statuses_list_onlySELECTagent_statusesSELECTagent_status.
```sql
SELECT
@@ -162,6 +202,19 @@ last_modified_time
FROM awscc.connect.agent_statuses
WHERE region = 'us-east-1' AND data__Identifier = 'agent_statuses in a region.
+```sql
+SELECT
+region,
+agent_status_arn
+FROM awscc.connect.agent_statuses_list_only
+WHERE region = 'us-east-1';
+```
+agent_statuses resource, the following permissions are required:
diff --git a/website/docs/services/connect/agent_statuses_list_only/index.md b/website/docs/services/connect/agent_statuses_list_only/index.md
deleted file mode 100644
index 8398b9a96..000000000
--- a/website/docs/services/connect/agent_statuses_list_only/index.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: agent_statuses_list_only
-hide_title: false
-hide_table_of_contents: false
-keywords:
- - agent_statuses_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/stackql-aws-provider-featured-image.png
----
-
-import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-import SchemaTable from '@site/src/components/SchemaTable/SchemaTable';
-
-Lists agent_statuses in a region or regions, for all properties use agent_statuses
-
-## Overview
-