trust_store_associations
Creates, updates, deletes, gets or lists a trust_store_associations resource.
Overview
| Name | trust_store_associations |
| Type | Resource |
| Id | aws.elbv2.trust_store_associations |
Fields
The following fields are returned by SELECT queries:
- describe_trust_store_associations
| Name | Datatype | Description |
|---|---|---|
resource_arn | string | The Amazon Resource Name (ARN) of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_trust_store_associations | select | TrustStoreArn, region | Marker, PageSize | Describes all resources associated with the specified trust store. |
delete_shared_trust_store_association | delete | TrustStoreArn, ResourceArn, region | Deletes a shared trust store association. |
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 |
|---|---|---|
ResourceArn | string | The Amazon Resource Name (ARN) of the resource. |
TrustStoreArn | string | The Amazon Resource Name (ARN) of the trust store. |
region | string | AWS region (default: us-east-1) |
Marker | string | The marker for the next set of results. (You received this marker from a previous call.) |
PageSize | integer | The maximum number of results to return with this call. |
SELECT examples
- describe_trust_store_associations
Describes all resources associated with the specified trust store.
SELECT
resource_arn
FROM aws.elbv2.trust_store_associations
WHERE TrustStoreArn = '{{ TrustStoreArn }}' -- required
AND region = '{{ region }}' -- required
AND Marker = '{{ Marker }}'
AND PageSize = '{{ PageSize }}'
;
DELETE examples
- delete_shared_trust_store_association
Deletes a shared trust store association.
DELETE FROM aws.elbv2.trust_store_associations
WHERE TrustStoreArn = '{{ TrustStoreArn }}' --required
AND ResourceArn = '{{ ResourceArn }}' --required
AND region = '{{ region }}' --required
;