interface CfnAgentStatusMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnAgentStatusMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnAgentStatusMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnAgentStatusMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnAgentStatusMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnAgentStatusMixinProps |
Properties for CfnAgentStatusPropsMixin.
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/cfn-property-mixins';
const cfnAgentStatusMixinProps: connect.CfnAgentStatusMixinProps = {
description: 'description',
displayOrder: 123,
instanceArn: 'instanceArn',
name: 'name',
resetOrderNumber: false,
state: 'state',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the agent status. |
| display | number | The display order of the agent status. |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| name? | string | The name of the agent status. |
| reset | boolean | IResolvable | A number indicating the reset order of the agent status. |
| state? | string | The state 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. |
description?
Type:
string
(optional)
The description of the agent status.
displayOrder?
Type:
number
(optional)
The display order of the agent status.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.
name?
Type:
string
(optional)
The name of the agent status.
resetOrderNumber?
Type:
boolean | IResolvable
(optional)
A number indicating the reset order of the agent status.
state?
Type:
string
(optional)
The state 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.

.NET
Go
Java
Python
TypeScript