Skip to content

Describe Vpc Block Public Access Exclusions

ec2_describe_vpc_block_public_access_exclusions R Documentation

Describe VPC Block Public Access (BPA) exclusions

Description

Describe VPC Block Public Access (BPA) exclusions. A VPC BPA exclusion is a mode that can be applied to a single VPC or subnet that exempts it from the account’s BPA mode and will allow bidirectional or egress-only access. You can create BPA exclusions for VPCs and subnets even when BPA is not enabled on the account to ensure that there is no traffic disruption to the exclusions when VPC BPA is turned on. To learn more about VPC BPA, see Block public access to VPCs and subnets in the Amazon VPC User Guide.

Usage

ec2_describe_vpc_block_public_access_exclusions(DryRun, Filters,
  ExclusionIds, NextToken, MaxResults)

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.

Filters

Filters for the request:

  • resource-arn - The Amazon Resource Name (ARN) of a exclusion.

  • internet-gateway-exclusion-mode - The mode of a VPC BPA exclusion. Possible values: allow-bidirectional | allow-egress.

  • state - The state of VPC BPA. Possible values: ⁠create-in-progress | create-complete | update-in-progress | update-complete | delete-in-progress | deleted-complete | disable-in-progress | disable-complete⁠

  • tag - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • tag-value: The value of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific value, regardless of the tag key.

ExclusionIds

IDs of exclusions.

NextToken

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

MaxResults

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

Value

A list with the following syntax:

list(
  VpcBlockPublicAccessExclusions = list(
    list(
      ExclusionId = "string",
      InternetGatewayExclusionMode = "allow-bidirectional"|"allow-egress",
      ResourceArn = "string",
      State = "create-in-progress"|"create-complete"|"create-failed"|"update-in-progress"|"update-complete"|"update-failed"|"delete-in-progress"|"delete-complete"|"disable-in-progress"|"disable-complete",
      Reason = "string",
      CreationTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdateTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      DeletionTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

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