aws logo
AWS Classic v5.41.0, May 15 23

aws.connect.HoursOfOperation

Explore with Pulumi AI

Provides an Amazon Connect Hours of Operation resource. For more information see Amazon Connect: Getting Started

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var test = new Aws.Connect.HoursOfOperation("test", new()
    {
        Configs = new[]
        {
            new Aws.Connect.Inputs.HoursOfOperationConfigArgs
            {
                Day = "MONDAY",
                EndTime = new Aws.Connect.Inputs.HoursOfOperationConfigEndTimeArgs
                {
                    Hours = 23,
                    Minutes = 8,
                },
                StartTime = new Aws.Connect.Inputs.HoursOfOperationConfigStartTimeArgs
                {
                    Hours = 8,
                    Minutes = 0,
                },
            },
            new Aws.Connect.Inputs.HoursOfOperationConfigArgs
            {
                Day = "TUESDAY",
                EndTime = new Aws.Connect.Inputs.HoursOfOperationConfigEndTimeArgs
                {
                    Hours = 21,
                    Minutes = 0,
                },
                StartTime = new Aws.Connect.Inputs.HoursOfOperationConfigStartTimeArgs
                {
                    Hours = 9,
                    Minutes = 0,
                },
            },
        },
        Description = "Monday office hours",
        InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
        Tags = 
        {
            { "Name", "Example Hours of Operation" },
        },
        TimeZone = "EST",
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/connect"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := connect.NewHoursOfOperation(ctx, "test", &connect.HoursOfOperationArgs{
			Configs: connect.HoursOfOperationConfigArray{
				&connect.HoursOfOperationConfigArgs{
					Day: pulumi.String("MONDAY"),
					EndTime: &connect.HoursOfOperationConfigEndTimeArgs{
						Hours:   pulumi.Int(23),
						Minutes: pulumi.Int(8),
					},
					StartTime: &connect.HoursOfOperationConfigStartTimeArgs{
						Hours:   pulumi.Int(8),
						Minutes: pulumi.Int(0),
					},
				},
				&connect.HoursOfOperationConfigArgs{
					Day: pulumi.String("TUESDAY"),
					EndTime: &connect.HoursOfOperationConfigEndTimeArgs{
						Hours:   pulumi.Int(21),
						Minutes: pulumi.Int(0),
					},
					StartTime: &connect.HoursOfOperationConfigStartTimeArgs{
						Hours:   pulumi.Int(9),
						Minutes: pulumi.Int(0),
					},
				},
			},
			Description: pulumi.String("Monday office hours"),
			InstanceId:  pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
			Tags: pulumi.StringMap{
				"Name": pulumi.String("Example Hours of Operation"),
			},
			TimeZone: pulumi.String("EST"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.HoursOfOperation;
import com.pulumi.aws.connect.HoursOfOperationArgs;
import com.pulumi.aws.connect.inputs.HoursOfOperationConfigArgs;
import com.pulumi.aws.connect.inputs.HoursOfOperationConfigEndTimeArgs;
import com.pulumi.aws.connect.inputs.HoursOfOperationConfigStartTimeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var test = new HoursOfOperation("test", HoursOfOperationArgs.builder()        
            .configs(            
                HoursOfOperationConfigArgs.builder()
                    .day("MONDAY")
                    .endTime(HoursOfOperationConfigEndTimeArgs.builder()
                        .hours(23)
                        .minutes(8)
                        .build())
                    .startTime(HoursOfOperationConfigStartTimeArgs.builder()
                        .hours(8)
                        .minutes(0)
                        .build())
                    .build(),
                HoursOfOperationConfigArgs.builder()
                    .day("TUESDAY")
                    .endTime(HoursOfOperationConfigEndTimeArgs.builder()
                        .hours(21)
                        .minutes(0)
                        .build())
                    .startTime(HoursOfOperationConfigStartTimeArgs.builder()
                        .hours(9)
                        .minutes(0)
                        .build())
                    .build())
            .description("Monday office hours")
            .instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
            .tags(Map.of("Name", "Example Hours of Operation"))
            .timeZone("EST")
            .build());

    }
}
import pulumi
import pulumi_aws as aws

test = aws.connect.HoursOfOperation("test",
    configs=[
        aws.connect.HoursOfOperationConfigArgs(
            day="MONDAY",
            end_time=aws.connect.HoursOfOperationConfigEndTimeArgs(
                hours=23,
                minutes=8,
            ),
            start_time=aws.connect.HoursOfOperationConfigStartTimeArgs(
                hours=8,
                minutes=0,
            ),
        ),
        aws.connect.HoursOfOperationConfigArgs(
            day="TUESDAY",
            end_time=aws.connect.HoursOfOperationConfigEndTimeArgs(
                hours=21,
                minutes=0,
            ),
            start_time=aws.connect.HoursOfOperationConfigStartTimeArgs(
                hours=9,
                minutes=0,
            ),
        ),
    ],
    description="Monday office hours",
    instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
    tags={
        "Name": "Example Hours of Operation",
    },
    time_zone="EST")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const test = new aws.connect.HoursOfOperation("test", {
    configs: [
        {
            day: "MONDAY",
            endTime: {
                hours: 23,
                minutes: 8,
            },
            startTime: {
                hours: 8,
                minutes: 0,
            },
        },
        {
            day: "TUESDAY",
            endTime: {
                hours: 21,
                minutes: 0,
            },
            startTime: {
                hours: 9,
                minutes: 0,
            },
        },
    ],
    description: "Monday office hours",
    instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
    tags: {
        Name: "Example Hours of Operation",
    },
    timeZone: "EST",
});
resources:
  test:
    type: aws:connect:HoursOfOperation
    properties:
      configs:
        - day: MONDAY
          endTime:
            hours: 23
            minutes: 8
          startTime:
            hours: 8
            minutes: 0
        - day: TUESDAY
          endTime:
            hours: 21
            minutes: 0
          startTime:
            hours: 9
            minutes: 0
      description: Monday office hours
      instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
      tags:
        Name: Example Hours of Operation
      timeZone: EST

Create HoursOfOperation Resource

new HoursOfOperation(name: string, args: HoursOfOperationArgs, opts?: CustomResourceOptions);
@overload
def HoursOfOperation(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     configs: Optional[Sequence[HoursOfOperationConfigArgs]] = None,
                     description: Optional[str] = None,
                     instance_id: Optional[str] = None,
                     name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     time_zone: Optional[str] = None)
@overload
def HoursOfOperation(resource_name: str,
                     args: HoursOfOperationArgs,
                     opts: Optional[ResourceOptions] = None)
func NewHoursOfOperation(ctx *Context, name string, args HoursOfOperationArgs, opts ...ResourceOption) (*HoursOfOperation, error)
public HoursOfOperation(string name, HoursOfOperationArgs args, CustomResourceOptions? opts = null)
public HoursOfOperation(String name, HoursOfOperationArgs args)
public HoursOfOperation(String name, HoursOfOperationArgs args, CustomResourceOptions options)
type: aws:connect:HoursOfOperation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args HoursOfOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args HoursOfOperationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args HoursOfOperationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args HoursOfOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args HoursOfOperationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

HoursOfOperation Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The HoursOfOperation resource accepts the following input properties:

Configs List<HoursOfOperationConfigArgs>

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

InstanceId string

Specifies the identifier of the hosting Amazon Connect Instance.

TimeZone string

Specifies the time zone of the Hours of Operation.

Description string

Specifies the description of the Hours of Operation.

Name string

Specifies the name of the Hours of Operation.

Tags Dictionary<string, string>

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Configs []HoursOfOperationConfigArgs

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

InstanceId string

Specifies the identifier of the hosting Amazon Connect Instance.

TimeZone string

Specifies the time zone of the Hours of Operation.

Description string

Specifies the description of the Hours of Operation.

Name string

Specifies the name of the Hours of Operation.

Tags map[string]string

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

configs List<HoursOfOperationConfigArgs>

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

instanceId String

Specifies the identifier of the hosting Amazon Connect Instance.

timeZone String

Specifies the time zone of the Hours of Operation.

description String

Specifies the description of the Hours of Operation.

name String

Specifies the name of the Hours of Operation.

tags Map<String,String>

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

configs HoursOfOperationConfigArgs[]

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

instanceId string

Specifies the identifier of the hosting Amazon Connect Instance.

timeZone string

Specifies the time zone of the Hours of Operation.

description string

Specifies the description of the Hours of Operation.

name string

Specifies the name of the Hours of Operation.

tags {[key: string]: string}

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

configs Sequence[HoursOfOperationConfigArgs]

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

instance_id str

Specifies the identifier of the hosting Amazon Connect Instance.

time_zone str

Specifies the time zone of the Hours of Operation.

description str

Specifies the description of the Hours of Operation.

name str

Specifies the name of the Hours of Operation.

tags Mapping[str, str]

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

configs List<Property Map>

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

instanceId String

Specifies the identifier of the hosting Amazon Connect Instance.

timeZone String

Specifies the time zone of the Hours of Operation.

description String

Specifies the description of the Hours of Operation.

name String

Specifies the name of the Hours of Operation.

tags Map<String>

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

All input properties are implicitly available as output properties. Additionally, the HoursOfOperation resource produces the following output properties:

Arn string

The Amazon Resource Name (ARN) of the Hours of Operation.

HoursOfOperationArn string

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

HoursOfOperationId string

The identifier for the hours of operation.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll Dictionary<string, string>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Arn string

The Amazon Resource Name (ARN) of the Hours of Operation.

HoursOfOperationArn string

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

HoursOfOperationId string

The identifier for the hours of operation.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll map[string]string

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn String

The Amazon Resource Name (ARN) of the Hours of Operation.

hoursOfOperationArn String

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hoursOfOperationId String

The identifier for the hours of operation.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String,String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn string

The Amazon Resource Name (ARN) of the Hours of Operation.

hoursOfOperationArn string

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hoursOfOperationId string

The identifier for the hours of operation.

id string

The provider-assigned unique ID for this managed resource.

tagsAll {[key: string]: string}

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn str

The Amazon Resource Name (ARN) of the Hours of Operation.

hours_of_operation_arn str

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hours_of_operation_id str

The identifier for the hours of operation.

id str

The provider-assigned unique ID for this managed resource.

tags_all Mapping[str, str]

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn String

The Amazon Resource Name (ARN) of the Hours of Operation.

hoursOfOperationArn String

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hoursOfOperationId String

The identifier for the hours of operation.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Look up Existing HoursOfOperation Resource

Get an existing HoursOfOperation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: HoursOfOperationState, opts?: CustomResourceOptions): HoursOfOperation
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        configs: Optional[Sequence[HoursOfOperationConfigArgs]] = None,
        description: Optional[str] = None,
        hours_of_operation_arn: Optional[str] = None,
        hours_of_operation_id: Optional[str] = None,
        instance_id: Optional[str] = None,
        name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        time_zone: Optional[str] = None) -> HoursOfOperation
func GetHoursOfOperation(ctx *Context, name string, id IDInput, state *HoursOfOperationState, opts ...ResourceOption) (*HoursOfOperation, error)
public static HoursOfOperation Get(string name, Input<string> id, HoursOfOperationState? state, CustomResourceOptions? opts = null)
public static HoursOfOperation get(String name, Output<String> id, HoursOfOperationState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string

The Amazon Resource Name (ARN) of the Hours of Operation.

Configs List<HoursOfOperationConfigArgs>

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

Description string

Specifies the description of the Hours of Operation.

HoursOfOperationArn string

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

HoursOfOperationId string

The identifier for the hours of operation.

InstanceId string

Specifies the identifier of the hosting Amazon Connect Instance.

Name string

Specifies the name of the Hours of Operation.

Tags Dictionary<string, string>

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll Dictionary<string, string>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

TimeZone string

Specifies the time zone of the Hours of Operation.

Arn string

The Amazon Resource Name (ARN) of the Hours of Operation.

Configs []HoursOfOperationConfigArgs

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

Description string

Specifies the description of the Hours of Operation.

HoursOfOperationArn string

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

HoursOfOperationId string

The identifier for the hours of operation.

InstanceId string

Specifies the identifier of the hosting Amazon Connect Instance.

Name string

Specifies the name of the Hours of Operation.

Tags map[string]string

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll map[string]string

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

TimeZone string

Specifies the time zone of the Hours of Operation.

arn String

The Amazon Resource Name (ARN) of the Hours of Operation.

configs List<HoursOfOperationConfigArgs>

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

description String

Specifies the description of the Hours of Operation.

hoursOfOperationArn String

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hoursOfOperationId String

The identifier for the hours of operation.

instanceId String

Specifies the identifier of the hosting Amazon Connect Instance.

name String

Specifies the name of the Hours of Operation.

tags Map<String,String>

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String,String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

timeZone String

Specifies the time zone of the Hours of Operation.

arn string

The Amazon Resource Name (ARN) of the Hours of Operation.

configs HoursOfOperationConfigArgs[]

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

description string

Specifies the description of the Hours of Operation.

hoursOfOperationArn string

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hoursOfOperationId string

The identifier for the hours of operation.

instanceId string

Specifies the identifier of the hosting Amazon Connect Instance.

name string

Specifies the name of the Hours of Operation.

tags {[key: string]: string}

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll {[key: string]: string}

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

timeZone string

Specifies the time zone of the Hours of Operation.

arn str

The Amazon Resource Name (ARN) of the Hours of Operation.

configs Sequence[HoursOfOperationConfigArgs]

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

description str

Specifies the description of the Hours of Operation.

hours_of_operation_arn str

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hours_of_operation_id str

The identifier for the hours of operation.

instance_id str

Specifies the identifier of the hosting Amazon Connect Instance.

name str

Specifies the name of the Hours of Operation.

tags Mapping[str, str]

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tags_all Mapping[str, str]

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

time_zone str

Specifies the time zone of the Hours of Operation.

arn String

The Amazon Resource Name (ARN) of the Hours of Operation.

configs List<Property Map>

One or more config blocks which define the configuration information for the hours of operation: day, start time, and end time . Config blocks are documented below.

description String

Specifies the description of the Hours of Operation.

hoursOfOperationArn String

(Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.

Deprecated:

use 'arn' attribute instead

hoursOfOperationId String

The identifier for the hours of operation.

instanceId String

Specifies the identifier of the hosting Amazon Connect Instance.

name String

Specifies the name of the Hours of Operation.

tags Map<String>

Tags to apply to the Hours of Operation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

timeZone String

Specifies the time zone of the Hours of Operation.

Supporting Types

HoursOfOperationConfig

Day string

Specifies the day that the hours of operation applies to.

EndTime HoursOfOperationConfigEndTime

A end time block specifies the time that your contact center closes. The end_time is documented below.

StartTime HoursOfOperationConfigStartTime

A start time block specifies the time that your contact center opens. The start_time is documented below.

Day string

Specifies the day that the hours of operation applies to.

EndTime HoursOfOperationConfigEndTime

A end time block specifies the time that your contact center closes. The end_time is documented below.

StartTime HoursOfOperationConfigStartTime

A start time block specifies the time that your contact center opens. The start_time is documented below.

day String

Specifies the day that the hours of operation applies to.

endTime HoursOfOperationConfigEndTime

A end time block specifies the time that your contact center closes. The end_time is documented below.

startTime HoursOfOperationConfigStartTime

A start time block specifies the time that your contact center opens. The start_time is documented below.

day string

Specifies the day that the hours of operation applies to.

endTime HoursOfOperationConfigEndTime

A end time block specifies the time that your contact center closes. The end_time is documented below.

startTime HoursOfOperationConfigStartTime

A start time block specifies the time that your contact center opens. The start_time is documented below.

day str

Specifies the day that the hours of operation applies to.

end_time HoursOfOperationConfigEndTime

A end time block specifies the time that your contact center closes. The end_time is documented below.

start_time HoursOfOperationConfigStartTime

A start time block specifies the time that your contact center opens. The start_time is documented below.

day String

Specifies the day that the hours of operation applies to.

endTime Property Map

A end time block specifies the time that your contact center closes. The end_time is documented below.

startTime Property Map

A start time block specifies the time that your contact center opens. The start_time is documented below.

HoursOfOperationConfigEndTime

Hours int

Specifies the hour of closing.

Minutes int

Specifies the minute of closing.

Hours int

Specifies the hour of closing.

Minutes int

Specifies the minute of closing.

hours Integer

Specifies the hour of closing.

minutes Integer

Specifies the minute of closing.

hours number

Specifies the hour of closing.

minutes number

Specifies the minute of closing.

hours int

Specifies the hour of closing.

minutes int

Specifies the minute of closing.

hours Number

Specifies the hour of closing.

minutes Number

Specifies the minute of closing.

HoursOfOperationConfigStartTime

Hours int

Specifies the hour of opening.

Minutes int

Specifies the minute of opening.

Hours int

Specifies the hour of opening.

Minutes int

Specifies the minute of opening.

hours Integer

Specifies the hour of opening.

minutes Integer

Specifies the minute of opening.

hours number

Specifies the hour of opening.

minutes number

Specifies the minute of opening.

hours int

Specifies the hour of opening.

minutes int

Specifies the minute of opening.

hours Number

Specifies the hour of opening.

minutes Number

Specifies the minute of opening.

Import

Amazon Connect Hours of Operations can be imported using the instance_id and hours_of_operation_id separated by a colon (:), e.g.,

 $ pulumi import aws:connect/hoursOfOperation:HoursOfOperation example f1288a1f-6193-445a-b47e-af739b2:c1d4e5f6-1b3c-1b3c-1b3c-c1d4e5f6c1d4e5

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes

This Pulumi package is based on the aws Terraform Provider.