interface CfnAgentStatusMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnAgentStatusMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnAgentStatusMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnAgentStatusMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnAgentStatusMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnAgentStatusMixinProps: connect_mixins.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