Describe Protect Configurations
| pinpointsmsvoicev2_describe_protect_configurations | R Documentation |
Retrieves the protect configurations that match any of filters¶
Description¶
Retrieves the protect configurations that match any of filters. If a filter isn’t provided then all protect configurations are returned.
Usage¶
pinpointsmsvoicev2_describe_protect_configurations(
ProtectConfigurationIds, Filters, NextToken, MaxResults)
Arguments¶
ProtectConfigurationIdsAn array of protect configuration identifiers to search for.
FiltersAn array of ProtectConfigurationFilter objects to filter the results.
NextTokenThe 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.
MaxResultsThe maximum number of results to return per each request.
Value¶
A list with the following syntax:
list(
ProtectConfigurations = list(
list(
ProtectConfigurationArn = "string",
ProtectConfigurationId = "string",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
),
AccountDefault = TRUE|FALSE,
DeletionProtectionEnabled = TRUE|FALSE
)
),
NextToken = "string"
)