CfnAgentStatusMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnAgentStatusMixinProps(*, description=None, display_order=None, instance_arn=None, name=None, reset_order_number=None, state=None, tags=None, type=None)

Bases: object

Properties for CfnAgentStatusPropsMixin.

Parameters:
  • description (Optional[str]) – The description of the agent status.

  • display_order (Union[int, float, None]) – The display order of the agent status.

  • instance_arn (Optional[str]) – The Amazon Resource Name (ARN) of the instance.

  • name (Optional[str]) – The name of the agent status.

  • reset_order_number (Union[bool, IResolvable, None]) – A number indicating the reset order of the agent status.

  • state (Optional[str]) – The state of the agent status.

  • 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”} }.

  • type (Optional[str]) – The type of agent status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html

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_agent_status_mixin_props = connect_mixins.CfnAgentStatusMixinProps(
    description="description",
    display_order=123,
    instance_arn="instanceArn",
    name="name",
    reset_order_number=False,
    state="state",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    type="type"
)

Attributes

description

The description of the agent status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-description

display_order

The display order of the agent status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-displayorder

instance_arn

The Amazon Resource Name (ARN) of the instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-instancearn

name

The name of the agent status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-name

reset_order_number

A number indicating the reset order of the agent status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-resetordernumber

state

The state of the agent status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-state

tags

The tags used to organize, track, or control access for this resource.

For example, { “Tags”: {“key1”:”value1”, “key2”:”value2”} }.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-tags

type

The type of agent status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html#cfn-connect-agentstatus-type