CfnAgentStatusProps

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

Bases: object

Properties for defining a CfnAgentStatus.

Parameters:
  • instance_arn (str) – The Amazon Resource Name (ARN) of the instance.

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

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

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

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

  • reset_order_number (Union[bool, IResolvable, None]) – A number indicating the reset order 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 import aws_connect as connect

cfn_agent_status_props = connect.CfnAgentStatusProps(
    instance_arn="instanceArn",
    name="name",
    state="state",

    # the properties below are optional
    description="description",
    display_order=123,
    reset_order_number=False,
    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