Skip to main content

trust_store_revocation_contents

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

Overview

Nametrust_store_revocation_contents
TypeResource
Idaws.elbv2.trust_store_revocation_contents

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
line_itemsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_trust_store_revocation_contentselectTrustStoreArn, RevocationId, regionRetrieves the specified revocation file. This action returns a pre-signed S3 URI which is active for ten minutes.

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
RevocationIdinteger (int64)The revocation ID of the revocation file.
TrustStoreArnstringThe Amazon Resource Name (ARN) of the trust store.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the specified revocation file. This action returns a pre-signed S3 URI which is active for ten minutes.

SELECT
line_items
FROM aws.elbv2.trust_store_revocation_contents
WHERE TrustStoreArn = '{{ TrustStoreArn }}' -- required
AND RevocationId = '{{ RevocationId }}' -- required
AND region = '{{ region }}' -- required
;