Skip to main content

trust_store_associations

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

Overview

Nametrust_store_associations
TypeResource
Idaws.elbv2.trust_store_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resource_arnstringThe Amazon Resource Name (ARN) of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_trust_store_associationsselectTrustStoreArn, regionMarker, PageSizeDescribes all resources associated with the specified trust store.
delete_shared_trust_store_associationdeleteTrustStoreArn, ResourceArn, regionDeletes 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.

NameDatatypeDescription
ResourceArnstringThe Amazon Resource Name (ARN) of the resource.
TrustStoreArnstringThe Amazon Resource Name (ARN) of the trust store.
regionstringAWS region (default: us-east-1)
MarkerstringThe marker for the next set of results. (You received this marker from a previous call.)
PageSizeintegerThe maximum number of results to return with this call.

SELECT examples

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

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
;