Skip to content

List Protect Configuration Rule Set Number Overrides

pinpointsmsvoicev2_list_protect_configuration_rule_set_number_overrides R Documentation

Retrieve all of the protect configuration rule set number overrides that match the filters

Description

Retrieve all of the protect configuration rule set number overrides that match the filters.

Usage

pinpointsmsvoicev2_list_protect_configuration_rule_set_number_overrides(
  ProtectConfigurationId, Filters, NextToken, MaxResults)

Arguments

ProtectConfigurationId

[required] The unique identifier for the protect configuration.

Filters

An array of ProtectConfigurationRuleSetNumberOverrideFilterItem objects to filter the results.

NextToken

The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.

MaxResults

The maximum number of results to return per each request.

Value

A list with the following syntax:

list(
  ProtectConfigurationArn = "string",
  ProtectConfigurationId = "string",
  RuleSetNumberOverrides = list(
    list(
      DestinationPhoneNumber = "string",
      CreatedTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      Action = "ALLOW"|"BLOCK",
      IsoCountryCode = "string",
      ExpirationTimestamp = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_protect_configuration_rule_set_number_overrides(
  ProtectConfigurationId = "string",
  Filters = list(
    list(
      Name = "iso-country-code"|"destination-phone-number-begins-with"|"action"|"expires-before"|"expires-after"|"created-before"|"created-after",
      Values = list(
        "string"
      )
    )
  ),
  NextToken = "string",
  MaxResults = 123
)