UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

65 lines (64 loc) 2.15 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Connect::HoursOfOperation */ export declare function getHoursOfOperation(args: GetHoursOfOperationArgs, opts?: pulumi.InvokeOptions): Promise<GetHoursOfOperationResult>; export interface GetHoursOfOperationArgs { /** * The Amazon Resource Name (ARN) for the hours of operation. */ hoursOfOperationArn: string; } export interface GetHoursOfOperationResult { /** * List of child hours of operations. */ readonly childHoursOfOperations?: outputs.connect.HoursOfOperationsIdentifier[]; /** * Configuration information for the hours of operation: day, start time, and end time. */ readonly config?: outputs.connect.HoursOfOperationConfig[]; /** * The description of the hours of operation. */ readonly description?: string; /** * The Amazon Resource Name (ARN) for the hours of operation. */ readonly hoursOfOperationArn?: string; /** * One or more hours of operation overrides assigned to an hour of operation. */ readonly hoursOfOperationOverrides?: outputs.connect.HoursOfOperationOverride[]; /** * The identifier of the Amazon Connect instance. */ readonly instanceArn?: string; /** * The name of the hours of operation. */ readonly name?: string; /** * List of parent hours of operations. */ readonly parentHoursOfOperations?: outputs.connect.HoursOfOperationsIdentifier[]; /** * One or more tags. */ readonly tags?: outputs.Tag[]; /** * The time zone of the hours of operation. */ readonly timeZone?: string; } /** * Resource Type definition for AWS::Connect::HoursOfOperation */ export declare function getHoursOfOperationOutput(args: GetHoursOfOperationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHoursOfOperationResult>; export interface GetHoursOfOperationOutputArgs { /** * The Amazon Resource Name (ARN) for the hours of operation. */ hoursOfOperationArn: pulumi.Input<string>; }