List Targets
codestarnotifications_list_targets | R Documentation |
Returns a list of the notification rule targets for an Amazon Web Services account¶
Description¶
Returns a list of the notification rule targets for an Amazon Web Services account.
Usage¶
codestarnotifications_list_targets(Filters, NextToken, MaxResults)
Arguments¶
Filters |
The filters to use to return information by service or resource type. Valid filters include target type, target address, and target status. A filter with the same name can appear more than once when used with OR statements. Filters with different names should be applied with AND statements. |
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 maximum number of results that can be returned is 100. |
Value¶
A list with the following syntax:
list(
Targets = list(
list(
TargetAddress = "string",
TargetType = "string",
TargetStatus = "PENDING"|"ACTIVE"|"UNREACHABLE"|"INACTIVE"|"DEACTIVATED"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_targets(
Filters = list(
list(
Name = "TARGET_TYPE"|"TARGET_ADDRESS"|"TARGET_STATUS",
Value = "string"
)
),
NextToken = "string",
MaxResults = 123
)