Skip to content

List Event Types

codestarnotifications_list_event_types R Documentation

Returns information about the event types available for configuring notifications

Description

Returns information about the event types available for configuring notifications.

Usage

codestarnotifications_list_event_types(Filters, NextToken, MaxResults)

Arguments

Filters

The filters to use to return information by service or resource type.

NextToken

An enumeration token that, when provided in a request, returns the next batch of the results.

MaxResults

A non-negative integer used to limit the number of returned results. The default number is 50. The maximum number of results that can be returned is 100.

Value

A list with the following syntax:

list(
  EventTypes = list(
    list(
      EventTypeId = "string",
      ServiceName = "string",
      EventTypeName = "string",
      ResourceType = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_event_types(
  Filters = list(
    list(
      Name = "RESOURCE_TYPE"|"SERVICE_NAME",
      Value = "string"
    )
  ),
  NextToken = "string",
  MaxResults = 123
)