Interface CfnAgentStatusProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgentStatusProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-06T22:15:51.991Z")
@Stability(Stable)
public interface CfnAgentStatusProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAgentStatus
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.connect.*; CfnAgentStatusProps cfnAgentStatusProps = CfnAgentStatusProps.builder() .instanceArn("instanceArn") .name("name") .state("state") // the properties below are optional .description("description") .displayOrder(123) .resetOrderNumber(false) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .type("type") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAgentStatusProps
static final class
An implementation forCfnAgentStatusProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAgentStatusProps.Builder
builder()
default String
The description of the agent status.default Number
The display order of the agent status.The Amazon Resource Name (ARN) of the instance.getName()
The name of the agent status.default Object
A number indicating the reset order of the agent status.getState()
The state of the agent status.getTags()
The tags used to organize, track, or control access for this resource.default String
getType()
The type of agent status.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
getName
The name of the agent status.- See Also:
-
getState
The state of the agent status.- See Also:
-
getDescription
The description of the agent status.- See Also:
-
getDisplayOrder
The display order of the agent status.- See Also:
-
getResetOrderNumber
A number indicating the reset order 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
CfnAgentStatusProps.Builder
ofCfnAgentStatusProps
-