Interface ProbeInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProbeInput.Builder,ProbeInput>,SdkBuilder<ProbeInput.Builder,ProbeInput>,SdkPojo
- Enclosing class:
- ProbeInput
public static interface ProbeInput.Builder extends SdkPojo, CopyableBuilder<ProbeInput.Builder,ProbeInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProbeInput.Builderdestination(String destination)The destination IP address.ProbeInput.BuilderdestinationPort(Integer destinationPort)The port associated with thedestination.ProbeInput.BuilderpacketSize(Integer packetSize)The size of the packets sent between the source and destination.ProbeInput.Builderprotocol(String protocol)The protocol used for the network traffic between thesourceanddestination.ProbeInput.Builderprotocol(Protocol protocol)The protocol used for the network traffic between thesourceanddestination.ProbeInput.BuildersourceArn(String sourceArn)The ARN of the subnet.ProbeInput.Buildertags(Map<String,String> tags)The list of key-value pairs created and assigned to the monitor.-
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
-
sourceArn
ProbeInput.Builder sourceArn(String sourceArn)
The ARN of the subnet.
- Parameters:
sourceArn- The ARN of the subnet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
ProbeInput.Builder destination(String destination)
The destination IP address. This must be either
IPV4orIPV6.- Parameters:
destination- The destination IP address. This must be eitherIPV4orIPV6.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationPort
ProbeInput.Builder destinationPort(Integer destinationPort)
The port associated with the
destination. This is required only if theprotocolisTCPand must be a number between1and65536.- Parameters:
destinationPort- The port associated with thedestination. This is required only if theprotocolisTCPand must be a number between1and65536.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocol
ProbeInput.Builder protocol(String protocol)
The protocol used for the network traffic between the
sourceanddestination. This must be eitherTCPorICMP.
-
protocol
ProbeInput.Builder protocol(Protocol protocol)
The protocol used for the network traffic between the
sourceanddestination. This must be eitherTCPorICMP.
-
packetSize
ProbeInput.Builder packetSize(Integer packetSize)
The size of the packets sent between the source and destination. This must be a number between
56and8500.- Parameters:
packetSize- The size of the packets sent between the source and destination. This must be a number between56and8500.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ProbeInput.Builder tags(Map<String,String> tags)
The list of key-value pairs created and assigned to the monitor.
- Parameters:
tags- The list of key-value pairs created and assigned to the monitor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-