Describe Verified Access Trust Providers
ec2_describe_verified_access_trust_providers | R Documentation |
Describes the specified Amazon Web Services Verified Access trust providers¶
Description¶
Describes the specified Amazon Web Services Verified Access trust providers.
Usage¶
ec2_describe_verified_access_trust_providers(
VerifiedAccessTrustProviderIds, MaxResults, NextToken, Filters, DryRun)
Arguments¶
VerifiedAccessTrustProviderIds
The IDs of the Verified Access trust providers.
MaxResults
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextToken
value.NextToken
The token for the next page of results.
Filters
One or more filters. Filter names and values are case-sensitive.
DryRun
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.
Value¶
A list with the following syntax:
list(
VerifiedAccessTrustProviders = list(
list(
VerifiedAccessTrustProviderId = "string",
Description = "string",
TrustProviderType = "user"|"device",
UserTrustProviderType = "iam-identity-center"|"oidc",
DeviceTrustProviderType = "jamf"|"crowdstrike"|"jumpcloud",
OidcOptions = list(
Issuer = "string",
AuthorizationEndpoint = "string",
TokenEndpoint = "string",
UserInfoEndpoint = "string",
ClientId = "string",
ClientSecret = "string",
Scope = "string"
),
DeviceOptions = list(
TenantId = "string",
PublicSigningKeyUrl = "string"
),
PolicyReferenceName = "string",
CreationTime = "string",
LastUpdatedTime = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
SseSpecification = list(
CustomerManagedKeyEnabled = TRUE|FALSE,
KmsKeyArn = "string"
)
)
),
NextToken = "string"
)