CfnHoursOfOperationMixinProps
- class aws_cdk.mixins_preview.aws_connect.mixins.CfnHoursOfOperationMixinProps(*, config=None, description=None, hours_of_operation_overrides=None, instance_arn=None, name=None, tags=None, time_zone=None)
Bases:
objectProperties for CfnHoursOfOperationPropsMixin.
- Parameters:
config (
Union[IResolvable,Sequence[Union[IResolvable,HoursOfOperationConfigProperty,Dict[str,Any]]],None]) – Configuration information for the hours of operation.description (
Optional[str]) – The description for the hours of operation.hours_of_operation_overrides (
Union[IResolvable,Sequence[Union[IResolvable,HoursOfOperationOverrideProperty,Dict[str,Any]]],None]) – One or more hours of operation overrides assigned to an hour of operation.instance_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the instance.name (
Optional[str]) – The name for the hours of operation.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for this resource. For example, { “Tags”: {“key1”:”value1”, “key2”:”value2”} }.time_zone (
Optional[str]) – The time zone for the hours of operation.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_connect import mixins as connect_mixins cfn_hours_of_operation_mixin_props = connect_mixins.CfnHoursOfOperationMixinProps( config=[connect_mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationConfigProperty( day="day", end_time=connect_mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationTimeSliceProperty( hours=123, minutes=123 ), start_time=connect_mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationTimeSliceProperty( hours=123, minutes=123 ) )], description="description", hours_of_operation_overrides=[connect_mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty( effective_from="effectiveFrom", effective_till="effectiveTill", hours_of_operation_override_id="hoursOfOperationOverrideId", override_config=[connect_mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideConfigProperty( day="day", end_time=connect_mixins.CfnHoursOfOperationPropsMixin.OverrideTimeSliceProperty( hours=123, minutes=123 ), start_time=connect_mixins.CfnHoursOfOperationPropsMixin.OverrideTimeSliceProperty( hours=123, minutes=123 ) )], override_description="overrideDescription", override_name="overrideName" )], instance_arn="instanceArn", name="name", tags=[CfnTag( key="key", value="value" )], time_zone="timeZone" )
Attributes
- config
Configuration information for the hours of operation.
- description
The description for the hours of operation.
- hours_of_operation_overrides
One or more hours of operation overrides assigned to an hour of operation.
- instance_arn
The Amazon Resource Name (ARN) of the instance.
- name
The name for the hours of operation.
- tags
The tags used to organize, track, or control access for this resource.
For example, { “Tags”: {“key1”:”value1”, “key2”:”value2”} }.
- time_zone
The time zone for the hours of operation.