Skip to main content

tax_registration_documents

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

Overview

Nametax_registration_documents
TypeResource
Idaws.taxsettings.tax_registration_documents

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
destination_file_pathstringThe file path of the Amazon S3 bucket where you want to download your tax document to. (pattern: <code>[\s\S]*</code>)
presigned_s3_urlstringThe Amazon S3 presigned URL of the tax registration document. (pattern: <code>https.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_tax_registration_documentselectregionDownloads 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;