Skip to main content

default_q_business_applications

Creates, updates, deletes, gets or lists a default_q_business_applications resource.

Overview

Namedefault_q_business_applications
TypeResource
Idaws.quicksight.default_q_business_applications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_idstringThe ID of the Amazon Q Business application that is linked to the Quick Sight account.
request_idstringThe Amazon Web Services request ID for this operation.
statusintegerThe HTTP status of the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_default_q_business_applicationselectaws_account_id, regionnamespaceDescribes a Amazon Q Business application that is linked to an Quick Sight account.
update_default_q_business_applicationupdateaws_account_id, region, ApplicationIdnamespaceUpdates a Amazon Q Business application that is linked to a Quick Sight account.
delete_default_q_business_applicationdeleteaws_account_id, regionnamespaceDeletes a linked Amazon Q Business application from an Quick Sight account

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
aws_account_idstringThe ID of the Quick Sight account that you want to disconnect from a Amazon Q Business application.
regionstringAWS region (default: us-east-1)
namespacestringThe Quick Sight namespace that you want to delete a linked Amazon Q Business application from. If this field is left blank, the Amazon Q Business application is deleted from the default namespace. Currently, the default namespace is the only valid value for this parameter.

SELECT examples

Describes a Amazon Q Business application that is linked to an Quick Sight account.

SELECT
application_id,
request_id,
status
FROM aws.quicksight.default_q_business_applications
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND region = '{{ region }}' -- required
AND namespace = '{{ namespace }}'
;

UPDATE examples

Updates a Amazon Q Business application that is linked to a Quick Sight account.

UPDATE aws.quicksight.default_q_business_applications
SET
ApplicationId = '{{ ApplicationId }}'
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND region = '{{ region }}' --required
AND ApplicationId = '{{ ApplicationId }}' --required
AND namespace = '{{ namespace}}'
RETURNING
request_id,
status;

DELETE examples

Deletes a linked Amazon Q Business application from an Quick Sight account

DELETE FROM aws.quicksight.default_q_business_applications
WHERE aws_account_id = '{{ aws_account_id }}' --required
AND region = '{{ region }}' --required
AND namespace = '{{ namespace }}'
;