Interface TunnelSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TunnelSummary.Builder,TunnelSummary>,SdkBuilder<TunnelSummary.Builder,TunnelSummary>,SdkPojo
- Enclosing class:
- TunnelSummary
public static interface TunnelSummary.Builder extends SdkPojo, CopyableBuilder<TunnelSummary.Builder,TunnelSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TunnelSummary.BuildercreatedAt(Instant createdAt)The time the tunnel was created.TunnelSummary.Builderdescription(String description)A description of the tunnel.TunnelSummary.BuilderlastUpdatedAt(Instant lastUpdatedAt)The time the tunnel was last updated.TunnelSummary.Builderstatus(String status)The status of a tunnel.TunnelSummary.Builderstatus(TunnelStatus status)The status of a tunnel.TunnelSummary.BuildertunnelArn(String tunnelArn)The Amazon Resource Name of the tunnel.TunnelSummary.BuildertunnelId(String tunnelId)The unique alpha-numeric identifier for the tunnel.-
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
-
tunnelId
TunnelSummary.Builder tunnelId(String tunnelId)
The unique alpha-numeric identifier for the tunnel.
- Parameters:
tunnelId- The unique alpha-numeric identifier for the tunnel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tunnelArn
TunnelSummary.Builder tunnelArn(String tunnelArn)
The Amazon Resource Name of the tunnel.
- Parameters:
tunnelArn- The Amazon Resource Name of the tunnel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
TunnelSummary.Builder status(String status)
The status of a tunnel. Valid values are: Open and Closed.
- Parameters:
status- The status of a tunnel. Valid values are: Open and Closed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TunnelStatus,TunnelStatus
-
status
TunnelSummary.Builder status(TunnelStatus status)
The status of a tunnel. Valid values are: Open and Closed.
- Parameters:
status- The status of a tunnel. Valid values are: Open and Closed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TunnelStatus,TunnelStatus
-
description
TunnelSummary.Builder description(String description)
A description of the tunnel.
- Parameters:
description- A description of the tunnel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
TunnelSummary.Builder createdAt(Instant createdAt)
The time the tunnel was created.
- Parameters:
createdAt- The time the tunnel was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
TunnelSummary.Builder lastUpdatedAt(Instant lastUpdatedAt)
The time the tunnel was last updated.
- Parameters:
lastUpdatedAt- The time the tunnel was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-