Skip to content

Get Domain Name Access Associations

apigateway_get_domain_name_access_associations R Documentation

Represents a collection on DomainNameAccessAssociations resources

Description

Represents a collection on DomainNameAccessAssociations resources.

Usage

apigateway_get_domain_name_access_associations(position, limit,
  resourceOwner)

Arguments

position

The current pagination position in the paged result set.

limit

The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

resourceOwner

The owner of the domain name access association. Use SELF to only list the domain name access associations owned by your own account. Use OTHER_ACCOUNTS to list the domain name access associations with your private custom domain names that are owned by other AWS accounts.

Value

A list with the following syntax:

list(
  position = "string",
  items = list(
    list(
      domainNameAccessAssociationArn = "string",
      domainNameArn = "string",
      accessAssociationSourceType = "VPCE",
      accessAssociationSource = "string",
      tags = list(
        "string"
      )
    )
  )
)

Request syntax

svc$get_domain_name_access_associations(
  position = "string",
  limit = 123,
  resourceOwner = "SELF"|"OTHER_ACCOUNTS"
)