Skip to content

Describe Vpc Endpoint Associations

ec2_describe_vpc_endpoint_associations R Documentation

Describes the VPC resources, VPC endpoint services, Amazon Lattice services, or service networks associated with the VPC endpoint

Description

Describes the VPC resources, VPC endpoint services, Amazon Lattice services, or service networks associated with the VPC endpoint.

Usage

ec2_describe_vpc_endpoint_associations(DryRun, VpcEndpointIds, 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 DryRunOperation. Otherwise, it is UnauthorizedOperation.

VpcEndpointIds

The IDs of the VPC endpoints.

Filters

The filters.

  • vpc-endpoint-id - The ID of the VPC endpoint.

  • associated-resource-accessibility - The association state. When the state is accessible, it returns AVAILABLE. When the state is inaccessible, it returns PENDING or FAILED.

  • association-id - The ID of the VPC endpoint association.

  • associated-resource-id - The ID of the associated resource configuration.

  • service-network-arn - The Amazon Resource Name (ARN) of the associated service network. Only VPC endpoints of type service network will be returned.

  • resource-configuration-group-arn - The Amazon Resource Name (ARN) of the resource configuration of type GROUP.

  • service-network-resource-association-id - The ID of the association.

MaxResults

The maximum page size.

NextToken

The pagination token.

Value

A list with the following syntax:

list(
  VpcEndpointAssociations = list(
    list(
      Id = "string",
      VpcEndpointId = "string",
      ServiceNetworkArn = "string",
      ServiceNetworkName = "string",
      AssociatedResourceAccessibility = "string",
      FailureReason = "string",
      FailureCode = "string",
      DnsEntry = list(
        DnsName = "string",
        HostedZoneId = "string"
      ),
      PrivateDnsEntry = list(
        DnsName = "string",
        HostedZoneId = "string"
      ),
      AssociatedResourceArn = "string",
      ResourceConfigurationGroupArn = "string",
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_vpc_endpoint_associations(
  DryRun = TRUE|FALSE,
  VpcEndpointIds = list(
    "string"
  ),
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)