Skip to content

Describe Ip Groups

workspaces_describe_ip_groups R Documentation

Describes one or more of your IP access control groups

Description

Describes one or more of your IP access control groups.

Usage

workspaces_describe_ip_groups(GroupIds, NextToken, MaxResults)

Arguments

GroupIds

The identifiers of one or more IP access control groups.

NextToken

If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.

MaxResults

The maximum number of items to return.

Value

A list with the following syntax:

list(
  Result = list(
    list(
      groupId = "string",
      groupName = "string",
      groupDesc = "string",
      userRules = list(
        list(
          ipRule = "string",
          ruleDesc = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_ip_groups(
  GroupIds = list(
    "string"
  ),
  NextToken = "string",
  MaxResults = 123
)