Struct aws_sdk_directory::model::RadiusSettings
source · [−]#[non_exhaustive]pub struct RadiusSettings { /* private fields */ }Expand description
Contains information about a Remote Authentication Dial In User Service (RADIUS) server.
Implementations
sourceimpl RadiusSettings
impl RadiusSettings
sourcepub fn radius_servers(&self) -> Option<&[String]>
pub fn radius_servers(&self) -> Option<&[String]>
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.
sourcepub fn radius_port(&self) -> i32
pub fn radius_port(&self) -> i32
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.
sourcepub fn radius_timeout(&self) -> i32
pub fn radius_timeout(&self) -> i32
The amount of time, in seconds, to wait for the RADIUS server to respond.
sourcepub fn radius_retries(&self) -> i32
pub fn radius_retries(&self) -> i32
The maximum number of times that communication with the RADIUS server is attempted.
Required for enabling RADIUS on the directory.
sourcepub fn authentication_protocol(&self) -> Option<&RadiusAuthenticationProtocol>
pub fn authentication_protocol(&self) -> Option<&RadiusAuthenticationProtocol>
The protocol specified for your RADIUS endpoints.
sourcepub fn display_label(&self) -> Option<&str>
pub fn display_label(&self) -> Option<&str>
Not currently used.
sourcepub fn use_same_username(&self) -> bool
pub fn use_same_username(&self) -> bool
Not currently used.
sourceimpl RadiusSettings
impl RadiusSettings
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RadiusSettings.
Trait Implementations
sourceimpl Clone for RadiusSettings
impl Clone for RadiusSettings
sourcefn clone(&self) -> RadiusSettings
fn clone(&self) -> RadiusSettings
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more