Describe Verified Access Endpoints
ec2_describe_verified_access_endpoints | R Documentation |
Describes the specified Amazon Web Services Verified Access endpoints¶
Description¶
Describes the specified Amazon Web Services Verified Access endpoints.
Usage¶
ec2_describe_verified_access_endpoints(VerifiedAccessEndpointIds,
VerifiedAccessInstanceId, VerifiedAccessGroupId, MaxResults, NextToken,
Filters, DryRun)
Arguments¶
VerifiedAccessEndpointIds |
The ID of the Verified Access endpoint. |
VerifiedAccessInstanceId |
The ID of the Verified Access instance. |
VerifiedAccessGroupId |
The ID of the Verified Access group. |
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
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
|
Value¶
A list with the following syntax:
list(
VerifiedAccessEndpoints = list(
list(
VerifiedAccessInstanceId = "string",
VerifiedAccessGroupId = "string",
VerifiedAccessEndpointId = "string",
ApplicationDomain = "string",
EndpointType = "load-balancer"|"network-interface"|"rds"|"cidr",
AttachmentType = "vpc",
DomainCertificateArn = "string",
EndpointDomain = "string",
DeviceValidationDomain = "string",
SecurityGroupIds = list(
"string"
),
LoadBalancerOptions = list(
Protocol = "http"|"https"|"tcp",
Port = 123,
LoadBalancerArn = "string",
SubnetIds = list(
"string"
),
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
),
NetworkInterfaceOptions = list(
NetworkInterfaceId = "string",
Protocol = "http"|"https"|"tcp",
Port = 123,
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
),
Status = list(
Code = "pending"|"active"|"updating"|"deleting"|"deleted",
Message = "string"
),
Description = "string",
CreationTime = "string",
LastUpdatedTime = "string",
DeletionTime = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
SseSpecification = list(
CustomerManagedKeyEnabled = TRUE|FALSE,
KmsKeyArn = "string"
),
RdsOptions = list(
Protocol = "http"|"https"|"tcp",
Port = 123,
RdsDbInstanceArn = "string",
RdsDbClusterArn = "string",
RdsDbProxyArn = "string",
RdsEndpoint = "string",
SubnetIds = list(
"string"
)
),
CidrOptions = list(
Cidr = "string",
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
),
Protocol = "http"|"https"|"tcp",
SubnetIds = list(
"string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_verified_access_endpoints(
VerifiedAccessEndpointIds = list(
"string"
),
VerifiedAccessInstanceId = "string",
VerifiedAccessGroupId = "string",
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
DryRun = TRUE|FALSE
)