trust_store_revocation_contents
Creates, updates, deletes, gets or lists a trust_store_revocation_contents resource.
Overview
| Name | trust_store_revocation_contents |
| Type | Resource |
| Id | aws.elbv2.trust_store_revocation_contents |
Fields
The following fields are returned by SELECT queries:
- get_trust_store_revocation_content
| Name | Datatype | Description |
|---|---|---|
line_items | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_trust_store_revocation_content | select | TrustStoreArn, RevocationId, region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
RevocationId | integer (int64) | The revocation ID of the revocation file. |
TrustStoreArn | string | The Amazon Resource Name (ARN) of the trust store. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_trust_store_revocation_content
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
;