Search Hours of Operations
| connect_search_hours_of_operations | R Documentation |
Searches the hours of operation in an Amazon Connect instance, with optional filtering¶
Description¶
Searches the hours of operation in an Amazon Connect instance, with optional filtering.
Usage¶
Arguments¶
InstanceId[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
NextTokenThe token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
MaxResultsThe maximum number of results to return per page.
SearchFilterFilters to be applied to search results.
SearchCriteriaThe search criteria to be used to return hours of operations.
Value¶
A list with the following syntax:
list(
HoursOfOperations = list(
list(
HoursOfOperationId = "string",
HoursOfOperationArn = "string",
Name = "string",
Description = "string",
TimeZone = "string",
Config = list(
list(
Day = "SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY",
StartTime = list(
Hours = 123,
Minutes = 123
),
EndTime = list(
Hours = 123,
Minutes = 123
)
)
),
Tags = list(
"string"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedRegion = "string"
)
),
NextToken = "string",
ApproximateTotalCount = 123
)
Request syntax¶
svc$search_hours_of_operations(
InstanceId = "string",
NextToken = "string",
MaxResults = 123,
SearchFilter = list(
TagFilter = list(
OrConditions = list(
list(
list(
TagKey = "string",
TagValue = "string"
)
)
),
AndConditions = list(
list(
TagKey = "string",
TagValue = "string"
)
),
TagCondition = list(
TagKey = "string",
TagValue = "string"
)
)
),
SearchCriteria = list(
OrConditions = list(
list()
),
AndConditions = list(
list()
),
StringCondition = list(
FieldName = "string",
Value = "string",
ComparisonType = "STARTS_WITH"|"CONTAINS"|"EXACT"
)
)
)