tax_registration_documents
Creates, updates, deletes, gets or lists a tax_registration_documents resource.
Overview
| Name | tax_registration_documents |
| Type | Resource |
| Id | aws.taxsettings.tax_registration_documents |
Fields
The following fields are returned by SELECT queries:
- get_tax_registration_document
| Name | Datatype | Description |
|---|---|---|
destination_file_path | string | The file path of the Amazon S3 bucket where you want to download your tax document to. (pattern: <code>[\s\S]*</code>) |
presigned_s3_url | string | The Amazon S3 presigned URL of the tax registration document. (pattern: <code>https.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_tax_registration_document | select | region | Downloads your tax documents to the Amazon S3 bucket that you specify in your request. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_tax_registration_document
Downloads your tax documents to the Amazon S3 bucket that you specify in your request.
SELECT
destination_file_path,
presigned_s3_url
FROM aws.taxsettings.tax_registration_documents
WHERE region = '{{ region }}' -- required
;