Interface CfnAgentStatusMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgentStatusMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.529Z")
@Stability(Stable)
public interface CfnAgentStatusMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAgentStatusPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
CfnAgentStatusMixinProps cfnAgentStatusMixinProps = CfnAgentStatusMixinProps.builder()
.description("description")
.displayOrder(123)
.instanceArn("instanceArn")
.name("name")
.resetOrderNumber(false)
.state("state")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAgentStatusMixinPropsstatic final classAn implementation forCfnAgentStatusMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the agent status.default NumberThe display order of the agent status.default StringThe Amazon Resource Name (ARN) of the instance.default StringgetName()The name of the agent status.default ObjectA number indicating the reset order of the agent status.default StringgetState()The state of the agent status.getTags()The tags used to organize, track, or control access for this resource.default StringgetType()The type of agent status.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the agent status.- See Also:
-
getDisplayOrder
The display order of the agent status.- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
getName
The name of the agent status.- See Also:
-
getResetOrderNumber
A number indicating the reset order of the agent status.Returns union: either
BooleanorIResolvable- See Also:
-
getState
The state of the agent status.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
getType
The type of agent status.- See Also:
-
builder
- Returns:
- a
CfnAgentStatusMixinProps.BuilderofCfnAgentStatusMixinProps
-