Describe Trust Store Associations
elbv2_describe_trust_store_associations | R Documentation |
Describes all resources associated with the specified trust store¶
Description¶
Describes all resources associated with the specified trust store.
Usage¶
elbv2_describe_trust_store_associations(TrustStoreArn, Marker, PageSize)
Arguments¶
TrustStoreArn |
[required] The Amazon Resource Name (ARN) of the trust store. |
Marker |
The marker for the next set of results. (You received this marker from a previous call.) |
PageSize |
The maximum number of results to return with this call. |
Value¶
A list with the following syntax:
list(
TrustStoreAssociations = list(
list(
ResourceArn = "string"
)
),
NextMarker = "string"
)
Request syntax¶
svc$describe_trust_store_associations(
TrustStoreArn = "string",
Marker = "string",
PageSize = 123
)