Skip to main content

trust_store_certificates

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

Overview

Nametrust_store_certificates
TypeResource
Idaws.workspaces_web.trust_store_certificates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
certificateobjectThe certificate of the trust store certificate.
trust_store_arnstringThe ARN of the trust store certificate. (pattern: <code>arn:[\w+=/,.@-]+:[a-zA-Z0-9-]+:[a-zA-Z0-9-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(/[a-fA-F0-9-]{36})+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_trust_store_certificateselecttrust_store_arn, thumbprint, regionGets the trust store certificate.
list_trust_store_certificatesselecttrust_store_arn, regionnextToken, maxResultsRetrieves a list of trust store certificates.

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)
thumbprintstringThe thumbprint of the trust store certificate.
trust_store_arnstringThe ARN of the trust store
maxResultsintegerThe maximum number of results to be included in the next page.
nextTokenstringThe pagination token used to retrieve the next page of results for this operation.

SELECT examples

Gets the trust store certificate.

SELECT
certificate,
trust_store_arn
FROM aws.workspaces_web.trust_store_certificates
WHERE trust_store_arn = '{{ trust_store_arn }}' -- required
AND thumbprint = '{{ thumbprint }}' -- required
AND region = '{{ region }}' -- required
;