Interface CreateMonitorProbeInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CreateMonitorProbeInput.Builder,CreateMonitorProbeInput>,SdkBuilder<CreateMonitorProbeInput.Builder,CreateMonitorProbeInput>,SdkPojo
- Enclosing class:
- CreateMonitorProbeInput
public static interface CreateMonitorProbeInput.Builder extends SdkPojo, CopyableBuilder<CreateMonitorProbeInput.Builder,CreateMonitorProbeInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateMonitorProbeInput.Builderdestination(String destination)The destination IP address.CreateMonitorProbeInput.BuilderdestinationPort(Integer destinationPort)The port associated with thedestination.CreateMonitorProbeInput.BuilderpacketSize(Integer packetSize)The size of the packets sent between the source and destination.CreateMonitorProbeInput.BuilderprobeTags(Map<String,String> probeTags)The list of key-value pairs created and assigned to the monitor.CreateMonitorProbeInput.Builderprotocol(String protocol)The protocol used for the network traffic between thesourceanddestination.CreateMonitorProbeInput.Builderprotocol(Protocol protocol)The protocol used for the network traffic between thesourceanddestination.CreateMonitorProbeInput.BuildersourceArn(String sourceArn)The ARN of the subnet.-
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
CreateMonitorProbeInput.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
CreateMonitorProbeInput.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
CreateMonitorProbeInput.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
CreateMonitorProbeInput.Builder protocol(String protocol)
The protocol used for the network traffic between the
sourceanddestination. This must be eitherTCPorICMP.
-
protocol
CreateMonitorProbeInput.Builder protocol(Protocol protocol)
The protocol used for the network traffic between the
sourceanddestination. This must be eitherTCPorICMP.
-
packetSize
CreateMonitorProbeInput.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.
-
probeTags
CreateMonitorProbeInput.Builder probeTags(Map<String,String> probeTags)
The list of key-value pairs created and assigned to the monitor.
- Parameters:
probeTags- 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.
-
-