Interface RadiusSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RadiusSettings.Builder,RadiusSettings>,SdkBuilder<RadiusSettings.Builder,RadiusSettings>,SdkPojo
- Enclosing class:
- RadiusSettings
public static interface RadiusSettings.Builder extends SdkPojo, CopyableBuilder<RadiusSettings.Builder,RadiusSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RadiusSettings.BuilderauthenticationProtocol(String authenticationProtocol)The protocol specified for your RADIUS endpoints.RadiusSettings.BuilderauthenticationProtocol(RadiusAuthenticationProtocol authenticationProtocol)The protocol specified for your RADIUS endpoints.RadiusSettings.BuilderdisplayLabel(String displayLabel)Not currently used.RadiusSettings.BuilderradiusPort(Integer radiusPort)The port that your RADIUS server is using for communications.RadiusSettings.BuilderradiusRetries(Integer radiusRetries)The maximum number of times that communication with the RADIUS server is retried after the initial attempt.RadiusSettings.BuilderradiusServers(String... radiusServers)An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.RadiusSettings.BuilderradiusServers(Collection<String> radiusServers)An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.RadiusSettings.BuilderradiusTimeout(Integer radiusTimeout)The amount of time, in seconds, to wait for the RADIUS server to respond.RadiusSettings.BuildersharedSecret(String sharedSecret)Required for enabling RADIUS on the directory.RadiusSettings.BuilderuseSameUsername(Boolean useSameUsername)Not currently used.-
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
-
radiusServers
RadiusSettings.Builder radiusServers(Collection<String> radiusServers)
An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.
- Parameters:
radiusServers- An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radiusServers
RadiusSettings.Builder radiusServers(String... radiusServers)
An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.
- Parameters:
radiusServers- An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radiusPort
RadiusSettings.Builder radiusPort(Integer radiusPort)
The port that your RADIUS server is using for communications. Your self-managed network must allow inbound traffic over this port from the Directory Service servers.
- Parameters:
radiusPort- The port that your RADIUS server is using for communications. Your self-managed network must allow inbound traffic over this port from the Directory Service servers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radiusTimeout
RadiusSettings.Builder radiusTimeout(Integer radiusTimeout)
The amount of time, in seconds, to wait for the RADIUS server to respond.
- Parameters:
radiusTimeout- The amount of time, in seconds, to wait for the RADIUS server to respond.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
radiusRetries
RadiusSettings.Builder radiusRetries(Integer radiusRetries)
The maximum number of times that communication with the RADIUS server is retried after the initial attempt.
- Parameters:
radiusRetries- The maximum number of times that communication with the RADIUS server is retried after the initial attempt.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sharedSecret
RadiusSettings.Builder sharedSecret(String sharedSecret)
Required for enabling RADIUS on the directory.
- Parameters:
sharedSecret- Required for enabling RADIUS on the directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationProtocol
RadiusSettings.Builder authenticationProtocol(String authenticationProtocol)
The protocol specified for your RADIUS endpoints.
- Parameters:
authenticationProtocol- The protocol specified for your RADIUS endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RadiusAuthenticationProtocol,RadiusAuthenticationProtocol
-
authenticationProtocol
RadiusSettings.Builder authenticationProtocol(RadiusAuthenticationProtocol authenticationProtocol)
The protocol specified for your RADIUS endpoints.
- Parameters:
authenticationProtocol- The protocol specified for your RADIUS endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RadiusAuthenticationProtocol,RadiusAuthenticationProtocol
-
displayLabel
RadiusSettings.Builder displayLabel(String displayLabel)
Not currently used.
- Parameters:
displayLabel- Not currently used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
useSameUsername
RadiusSettings.Builder useSameUsername(Boolean useSameUsername)
Not currently used.
- Parameters:
useSameUsername- Not currently used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-