Skip to content

List Trust Anchors

iamrolesanywhere_list_trust_anchors R Documentation

Lists the trust anchors in the authenticated account and Amazon Web Services Region

Description

Lists the trust anchors in the authenticated account and Amazon Web Services Region.

Required permissions: rolesanywhere:ListTrustAnchors.

Usage

iamrolesanywhere_list_trust_anchors(nextToken, pageSize)

Arguments

nextToken

A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.

pageSize

The number of resources in the paginated list.

Value

A list with the following syntax:

list(
  nextToken = "string",
  trustAnchors = list(
    list(
      trustAnchorId = "string",
      trustAnchorArn = "string",
      name = "string",
      source = list(
        sourceType = "AWS_ACM_PCA"|"CERTIFICATE_BUNDLE"|"SELF_SIGNED_REPOSITORY",
        sourceData = list(
          x509CertificateData = "string",
          acmPcaArn = "string"
        )
      ),
      enabled = TRUE|FALSE,
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      updatedAt = as.POSIXct(
        "2015-01-01"
      ),
      notificationSettings = list(
        list(
          enabled = TRUE|FALSE,
          event = "CA_CERTIFICATE_EXPIRY"|"END_ENTITY_CERTIFICATE_EXPIRY",
          threshold = 123,
          channel = "ALL",
          configuredBy = "string"
        )
      )
    )
  )
)

Request syntax

svc$list_trust_anchors(
  nextToken = "string",
  pageSize = 123
)