Describe Vpc Endpoint Service Configurations
ec2_describe_vpc_endpoint_service_configurations | R Documentation |
Describes the VPC endpoint service configurations in your account (your services)¶
Description¶
Describes the VPC endpoint service configurations in your account (your services).
Usage¶
ec2_describe_vpc_endpoint_service_configurations(DryRun, ServiceIds,
Filters, MaxResults, NextToken)
Arguments¶
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
|
ServiceIds |
The IDs of the endpoint services. |
Filters |
The filters.
|
MaxResults |
The maximum number of results to return for the request in a
single page. The remaining results of the initial request can be seen by
sending another request with the returned |
NextToken |
The token to retrieve the next page of results. |
Value¶
A list with the following syntax:
list(
ServiceConfigurations = list(
list(
ServiceType = list(
list(
ServiceType = "Interface"|"Gateway"|"GatewayLoadBalancer"
)
),
ServiceId = "string",
ServiceName = "string",
ServiceState = "Pending"|"Available"|"Deleting"|"Deleted"|"Failed",
AvailabilityZones = list(
"string"
),
AcceptanceRequired = TRUE|FALSE,
ManagesVpcEndpoints = TRUE|FALSE,
NetworkLoadBalancerArns = list(
"string"
),
GatewayLoadBalancerArns = list(
"string"
),
SupportedIpAddressTypes = list(
"ipv4"|"ipv6"
),
BaseEndpointDnsNames = list(
"string"
),
PrivateDnsName = "string",
PrivateDnsNameConfiguration = list(
State = "pendingVerification"|"verified"|"failed",
Type = "string",
Value = "string",
Name = "string"
),
PayerResponsibility = "ServiceOwner",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
SupportedRegions = list(
list(
Region = "string",
ServiceState = "string"
)
),
RemoteAccessEnabled = TRUE|FALSE
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_vpc_endpoint_service_configurations(
DryRun = TRUE|FALSE,
ServiceIds = list(
"string"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string"
)