child_hours_of_operations
Creates, updates, deletes, gets or lists a child_hours_of_operations resource.
Overview
| Name | child_hours_of_operations |
| Type | Resource |
| Id | aws.connect.child_hours_of_operations |
Fields
The following fields are returned by SELECT queries:
- list_child_hours_of_operations
| Name | Datatype | Description |
|---|---|---|
arn | string | Amazon Resource Name (ARN) of the hours of operations. |
id | string | Unique identifier of the hours of operation. |
name | string | Name of the hours of operation |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_child_hours_of_operations | select | instance_id, hours_of_operation_id, region | nextToken, maxResults | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
hours_of_operation_id | string | The identifier of the parent hours of operation. |
instance_id | string | The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return per page. The default MaxResult size is 100. |
nextToken | string | The 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
- list_child_hours_of_operations
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 }}'
;