Skip to content

List Cross Account Attachments

globalaccelerator_list_cross_account_attachments R Documentation

List the cross-account attachments that have been created in Global Accelerator

Description

List the cross-account attachments that have been created in Global Accelerator.

Usage

globalaccelerator_list_cross_account_attachments(MaxResults, NextToken)

Arguments

MaxResults

The number of cross-account attachment objects that you want to return with this call. The default value is 10.

NextToken

The token for the next set of results. You receive this token from a previous call.

Value

A list with the following syntax:

list(
  CrossAccountAttachments = list(
    list(
      AttachmentArn = "string",
      Name = "string",
      Principals = list(
        "string"
      ),
      Resources = list(
        list(
          EndpointId = "string",
          Cidr = "string",
          Region = "string"
        )
      ),
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      CreatedTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_cross_account_attachments(
  MaxResults = 123,
  NextToken = "string"
)