Skip to content

List Connectors V2

securityhub_list_connectors_v2 R Documentation

Grants permission to retrieve a list of connectorsV2 and their metadata for the calling account

Description

Grants permission to retrieve a list of connectorsV2 and their metadata for the calling account.

Usage

securityhub_list_connectors_v2(NextToken, MaxResults, ProviderName,
  ConnectorStatus)

Arguments

NextToken

The pagination token per the Amazon Web Services Pagination standard

MaxResults

The maximum number of results to be returned.

ProviderName

The name of the third-party provider.

ConnectorStatus

The status for the connectorV2.

Value

A list with the following syntax:

list(
  NextToken = "string",
  Connectors = list(
    list(
      ConnectorArn = "string",
      ConnectorId = "string",
      Name = "string",
      Description = "string",
      ProviderSummary = list(
        ProviderName = "JIRA_CLOUD"|"SERVICENOW",
        ConnectorStatus = "CONNECTED"|"FAILED_TO_CONNECT"|"PENDING_CONFIGURATION"|"PENDING_AUTHORIZATION"
      ),
      CreatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$list_connectors_v2(
  NextToken = "string",
  MaxResults = 123,
  ProviderName = "JIRA_CLOUD"|"SERVICENOW",
  ConnectorStatus = "CONNECTED"|"FAILED_TO_CONNECT"|"PENDING_CONFIGURATION"|"PENDING_AUTHORIZATION"
)