Interface ComponentStatusData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComponentStatusData.Builder,ComponentStatusData>,SdkBuilder<ComponentStatusData.Builder,ComponentStatusData>,SdkPojo
- Enclosing class:
- ComponentStatusData
public static interface ComponentStatusData.Builder extends SdkPojo, CopyableBuilder<ComponentStatusData.Builder,ComponentStatusData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComponentStatusData.BuilderbytesReceived(Long bytesReceived)Bytes received by the component.ComponentStatusData.BuilderbytesSent(Long bytesSent)Bytes sent by the component.ComponentStatusData.BuildercapabilityArn(String capabilityArn)Capability ARN of the component.ComponentStatusData.BuildercomponentType(String componentType)The Component type.ComponentStatusData.BuilderdataflowId(String dataflowId)Dataflow UUID associated with the component.ComponentStatusData.BuilderpacketsDropped(Long packetsDropped)Packets dropped by component.ComponentStatusData.Builderstatus(String status)Component status.ComponentStatusData.Builderstatus(AgentStatus status)Component status.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
bytesReceived
ComponentStatusData.Builder bytesReceived(Long bytesReceived)
Bytes received by the component.
- Parameters:
bytesReceived- Bytes received by the component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bytesSent
ComponentStatusData.Builder bytesSent(Long bytesSent)
Bytes sent by the component.
- Parameters:
bytesSent- Bytes sent by the component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
capabilityArn
ComponentStatusData.Builder capabilityArn(String capabilityArn)
Capability ARN of the component.
- Parameters:
capabilityArn- Capability ARN of the component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
componentType
ComponentStatusData.Builder componentType(String componentType)
The Component type.
- Parameters:
componentType- The Component type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataflowId
ComponentStatusData.Builder dataflowId(String dataflowId)
Dataflow UUID associated with the component.
- Parameters:
dataflowId- Dataflow UUID associated with the component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
packetsDropped
ComponentStatusData.Builder packetsDropped(Long packetsDropped)
Packets dropped by component.
- Parameters:
packetsDropped- Packets dropped by component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ComponentStatusData.Builder status(String status)
Component status.
- Parameters:
status- Component status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AgentStatus,AgentStatus
-
status
ComponentStatusData.Builder status(AgentStatus status)
Component status.
- Parameters:
status- Component status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AgentStatus,AgentStatus
-
-