AWS Classic v5.41.0, May 15 23
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<Hours
Of Operation Config Args> 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 string Specifies the identifier of the hosting Amazon Connect Instance.
- Time
Zone 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.
- 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
[]Hours
Of Operation Config Args 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 string Specifies the identifier of the hosting Amazon Connect Instance.
- Time
Zone 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.
- 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<Hours
Of Operation Config Args> 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 String Specifies the identifier of the hosting Amazon Connect Instance.
- time
Zone 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.
- 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
Hours
Of Operation Config Args[] 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 string Specifies the identifier of the hosting Amazon Connect Instance.
- time
Zone 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.
- {[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[Hours
Of Operation Config Args] 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.
- 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.
- instance
Id String Specifies the identifier of the hosting Amazon Connect Instance.
- time
Zone 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.
- 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.
- Hours
Of stringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- Hours
Of stringOperation Id The identifier for the hours of operation.
- Id string
The provider-assigned unique ID for this managed resource.
- 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.
- Hours
Of stringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- Hours
Of stringOperation Id The identifier for the hours of operation.
- Id string
The provider-assigned unique ID for this managed resource.
- 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.
- hours
Of StringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours
Of StringOperation Id The identifier for the hours of operation.
- id String
The provider-assigned unique ID for this managed resource.
- 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.
- hours
Of stringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours
Of stringOperation Id The identifier for the hours of operation.
- id string
The provider-assigned unique ID for this managed resource.
- {[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_ stroperation_ arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours_
of_ stroperation_ id The identifier for the hours of operation.
- id str
The provider-assigned unique ID for this managed resource.
- 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.
- hours
Of StringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours
Of StringOperation Id The identifier for the hours of operation.
- id String
The provider-assigned unique ID for this managed resource.
- 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.
- Arn string
The Amazon Resource Name (ARN) of the Hours of Operation.
- Configs
List<Hours
Of Operation Config Args> 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.
- Hours
Of stringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- Hours
Of stringOperation Id The identifier for the hours of operation.
- Instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- Name string
Specifies the name of the Hours of Operation.
- 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.- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- Time
Zone string Specifies the time zone of the Hours of Operation.
- Arn string
The Amazon Resource Name (ARN) of the Hours of Operation.
- Configs
[]Hours
Of Operation Config Args 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.
- Hours
Of stringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- Hours
Of stringOperation Id The identifier for the hours of operation.
- Instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- Name string
Specifies the name of the Hours of Operation.
- 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.- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- Time
Zone string Specifies the time zone of the Hours of Operation.
- arn String
The Amazon Resource Name (ARN) of the Hours of Operation.
- configs
List<Hours
Of Operation Config Args> 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.
- hours
Of StringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours
Of StringOperation Id The identifier for the hours of operation.
- instance
Id String Specifies the identifier of the hosting Amazon Connect Instance.
- name String
Specifies the name of the Hours of Operation.
- 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.- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- time
Zone String Specifies the time zone of the Hours of Operation.
- arn string
The Amazon Resource Name (ARN) of the Hours of Operation.
- configs
Hours
Of Operation Config Args[] 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.
- hours
Of stringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours
Of stringOperation Id The identifier for the hours of operation.
- instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- name string
Specifies the name of the Hours of Operation.
- {[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.- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- time
Zone string Specifies the time zone of the Hours of Operation.
- arn str
The Amazon Resource Name (ARN) of the Hours of Operation.
- configs
Sequence[Hours
Of Operation Config Args] 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_ stroperation_ arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours_
of_ stroperation_ id 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.
- 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.- 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.
- hours
Of StringOperation Arn (Deprecated) The Amazon Resource Name (ARN) of the Hours of Operation.
use 'arn' attribute instead
- hours
Of StringOperation Id The identifier for the hours of operation.
- instance
Id String Specifies the identifier of the hosting Amazon Connect Instance.
- name String
Specifies the name of the Hours of Operation.
- 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.- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- time
Zone 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.
- End
Time HoursOf Operation Config End Time A end time block specifies the time that your contact center closes. The
end_time
is documented below.- Start
Time HoursOf Operation Config Start Time 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.
- End
Time HoursOf Operation Config End Time A end time block specifies the time that your contact center closes. The
end_time
is documented below.- Start
Time HoursOf Operation Config Start Time 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.
- end
Time HoursOf Operation Config End Time A end time block specifies the time that your contact center closes. The
end_time
is documented below.- start
Time HoursOf Operation Config Start Time 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.
- end
Time HoursOf Operation Config End Time A end time block specifies the time that your contact center closes. The
end_time
is documented below.- start
Time HoursOf Operation Config Start Time 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 HoursOf Operation Config End Time A end time block specifies the time that your contact center closes. The
end_time
is documented below.- start_
time HoursOf Operation Config Start Time 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.
- end
Time Property Map A end time block specifies the time that your contact center closes. The
end_time
is documented below.- start
Time Property Map A start time block specifies the time that your contact center opens. The
start_time
is documented below.
HoursOfOperationConfigEndTime
HoursOfOperationConfigStartTime
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.