Interface Network.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Network.Builder,Network>,SdkBuilder<Network.Builder,Network>,SdkPojo
- Enclosing class:
- Network
public static interface Network.Builder extends SdkPojo, CopyableBuilder<Network.Builder,Network>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Network.BuildercreatedAt(Instant createdAt)The creation time of the network.Network.Builderdescription(String description)The description of the network.Network.BuildernetworkArn(String networkArn)The Amazon Resource Name (ARN) of the network.Network.BuildernetworkName(String networkName)The name of the network.Network.Builderstatus(String status)The status of the network.Network.Builderstatus(NetworkStatus status)The status of the network.Network.BuilderstatusReason(String statusReason)The status reason of the network.-
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
-
createdAt
Network.Builder createdAt(Instant createdAt)
The creation time of the network.
- Parameters:
createdAt- The creation time of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Network.Builder description(String description)
The description of the network.
- Parameters:
description- The description of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkArn
Network.Builder networkArn(String networkArn)
The Amazon Resource Name (ARN) of the network.
- Parameters:
networkArn- The Amazon Resource Name (ARN) of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkName
Network.Builder networkName(String networkName)
The name of the network.
- Parameters:
networkName- The name of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
Network.Builder status(String status)
The status of the network.
- Parameters:
status- The status of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NetworkStatus,NetworkStatus
-
status
Network.Builder status(NetworkStatus status)
The status of the network.
- Parameters:
status- The status of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NetworkStatus,NetworkStatus
-
statusReason
Network.Builder statusReason(String statusReason)
The status reason of the network.
- Parameters:
statusReason- The status reason of the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-