[][src]Struct rusoto_ds::RadiusSettings

pub struct RadiusSettings {
    pub authentication_protocol: Option<String>,
    pub display_label: Option<String>,
    pub radius_port: Option<i64>,
    pub radius_retries: Option<i64>,
    pub radius_servers: Option<Vec<String>>,
    pub radius_timeout: Option<i64>,
    pub shared_secret: Option<String>,
    pub use_same_username: Option<bool>,
}

Contains information about a Remote Authentication Dial In User Service (RADIUS) server.

Fields

authentication_protocol: Option<String>

The protocol specified for your RADIUS endpoints.

display_label: Option<String>

Not currently used.

radius_port: Option<i64>

The port that your RADIUS server is using for communications. Your on-premises network must allow inbound traffic over this port from the AWS Directory Service servers.

radius_retries: Option<i64>

The maximum number of times that communication with the RADIUS server is attempted.

radius_servers: Option<Vec<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.

radius_timeout: Option<i64>

The amount of time, in seconds, to wait for the RADIUS server to respond.

shared_secret: Option<String>

Required for enabling RADIUS on the directory.

use_same_username: Option<bool>

Not currently used.

Trait Implementations

impl Clone for RadiusSettings[src]

impl Debug for RadiusSettings[src]

impl Default for RadiusSettings[src]

impl<'de> Deserialize<'de> for RadiusSettings[src]

impl PartialEq<RadiusSettings> for RadiusSettings[src]

impl Serialize for RadiusSettings[src]

impl StructuralPartialEq for RadiusSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.