DescribeTrustStoreAssociationsCommand

Describes all resources associated with the specified trust store.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { ElasticLoadBalancingV2Client, DescribeTrustStoreAssociationsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import
// const { ElasticLoadBalancingV2Client, DescribeTrustStoreAssociationsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import
const client = new ElasticLoadBalancingV2Client(config);
const input = { // DescribeTrustStoreAssociationsInput
  TrustStoreArn: "STRING_VALUE", // required
  Marker: "STRING_VALUE",
  PageSize: Number("int"),
};
const command = new DescribeTrustStoreAssociationsCommand(input);
const response = await client.send(command);
// { // DescribeTrustStoreAssociationsOutput
//   TrustStoreAssociations: [ // TrustStoreAssociations
//     { // TrustStoreAssociation
//       ResourceArn: "STRING_VALUE",
//     },
//   ],
//   NextMarker: "STRING_VALUE",
// };

DescribeTrustStoreAssociationsCommand Input

Parameter
Type
Description
TrustStoreArn
Required
string | undefined

The Amazon Resource Name (ARN) of the trust store.

Marker
string | undefined

The marker for the next set of results. (You received this marker from a previous call.)

PageSize
number | undefined

The maximum number of results to return with this call.

DescribeTrustStoreAssociationsCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.
NextMarker
string | undefined

If there are additional results, this is the marker for the next set of results. Otherwise, this is null.

TrustStoreAssociations
TrustStoreAssociation[] | undefined

Information about the resources the trust store is associated to.

Throws

Name
Fault
Details
TrustStoreNotFoundException
client

The specified trust store does not exist.

ElasticLoadBalancingV2ServiceException
Base exception class for all service exceptions from ElasticLoadBalancingV2 service.