interface CfnAgentStatusProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Connect.CfnAgentStatusProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnAgentStatusProps |
Java | software.amazon.awscdk.services.connect.CfnAgentStatusProps |
Python | aws_cdk.aws_connect.CfnAgentStatusProps |
TypeScript | aws-cdk-lib » aws_connect » CfnAgentStatusProps |
Properties for defining a CfnAgentStatus
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-agentstatus.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnAgentStatusProps: connect.CfnAgentStatusProps = {
instanceArn: 'instanceArn',
name: 'name',
state: 'state',
// the properties below are optional
description: 'description',
displayOrder: 123,
resetOrderNumber: false,
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
Name | Type | Description |
---|---|---|
instance | string | The Amazon Resource Name (ARN) of the instance. |
name | string | The name of the agent status. |
state | string | The state of the agent status. |
description? | string | The description of the agent status. |
display | number | The display order of the agent status. |
reset | boolean | IResolvable | A number indicating the reset order of the agent status. |
tags? | Cfn [] | The tags used to organize, track, or control access for this resource. |
type? | string | The type of agent status. |
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the instance.
name
Type:
string
The name of the agent status.
state
Type:
string
The state of the agent status.
description?
Type:
string
(optional)
The description of the agent status.
displayOrder?
Type:
number
(optional)
The display order of the agent status.
resetOrderNumber?
Type:
boolean |
IResolvable
(optional)
A number indicating the reset order of the agent status.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
type?
Type:
string
(optional)
The type of agent status.