Skip to main content

child_hours_of_operations

Creates, updates, deletes, gets or lists a child_hours_of_operations resource.

Overview

Namechild_hours_of_operations
TypeResource
Idaws.connect.child_hours_of_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringAmazon Resource Name (ARN) of the hours of operations.
idstringUnique identifier of the hours of operation.
namestringName of the hours of operation

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_child_hours_of_operationsselectinstance_id, hours_of_operation_id, regionnextToken, maxResultsProvides information about the child hours of operations for the specified parent hours of operation. For more information about child hours of operations, see Link overrides from different hours of operation in the Administrator Guide.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
hours_of_operation_idstringThe identifier of the parent hours of operation.
instance_idstringThe identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return per page. The default MaxResult size is 100.
nextTokenstringThe 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.

SELECT examples

Provides information about the child hours of operations for the specified parent hours of operation. For more information about child hours of operations, see Link overrides from different hours of operation in the Administrator Guide.

SELECT
arn,
id,
name
FROM aws.connect.child_hours_of_operations
WHERE instance_id = '{{ instance_id }}' -- required
AND hours_of_operation_id = '{{ hours_of_operation_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;