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