Skip to content

Describe Vpc Endpoint Association

networkfirewall_describe_vpc_endpoint_association R Documentation

Returns the data object for the specified VPC endpoint association

Description

Returns the data object for the specified VPC endpoint association.

Usage

networkfirewall_describe_vpc_endpoint_association(
  VpcEndpointAssociationArn)

Arguments

VpcEndpointAssociationArn

[required] The Amazon Resource Name (ARN) of a VPC endpoint association.

Value

A list with the following syntax:

list(
  VpcEndpointAssociation = list(
    VpcEndpointAssociationId = "string",
    VpcEndpointAssociationArn = "string",
    FirewallArn = "string",
    VpcId = "string",
    SubnetMapping = list(
      SubnetId = "string",
      IPAddressType = "DUALSTACK"|"IPV4"|"IPV6"
    ),
    Description = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  ),
  VpcEndpointAssociationStatus = list(
    Status = "PROVISIONING"|"DELETING"|"READY",
    AssociationSyncState = list(
      list(
        Attachment = list(
          SubnetId = "string",
          EndpointId = "string",
          Status = "CREATING"|"DELETING"|"FAILED"|"ERROR"|"SCALING"|"READY",
          StatusMessage = "string"
        )
      )
    )
  )
)

Request syntax

svc$describe_vpc_endpoint_association(
  VpcEndpointAssociationArn = "string"
)