Struct aws_sdk_directory::model::RadiusSettings
source · [−]#[non_exhaustive]pub struct RadiusSettings {
pub radius_servers: Option<Vec<String>>,
pub radius_port: i32,
pub radius_timeout: i32,
pub radius_retries: i32,
pub shared_secret: Option<String>,
pub authentication_protocol: Option<RadiusAuthenticationProtocol>,
pub display_label: Option<String>,
pub use_same_username: bool,
}
Expand description
Contains information about a Remote Authentication Dial In User Service (RADIUS) server.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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_port: 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.
radius_timeout: i32
The amount of time, in seconds, to wait for the RADIUS server to respond.
radius_retries: i32
The maximum number of times that communication with the RADIUS server is attempted.
Required for enabling RADIUS on the directory.
authentication_protocol: Option<RadiusAuthenticationProtocol>
The protocol specified for your RADIUS endpoints.
display_label: Option<String>
Not currently used.
use_same_username: bool
Not currently used.
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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RadiusSettings
impl Debug for RadiusSettings
sourceimpl PartialEq<RadiusSettings> for RadiusSettings
impl PartialEq<RadiusSettings> for RadiusSettings
sourcefn eq(&self, other: &RadiusSettings) -> bool
fn eq(&self, other: &RadiusSettings) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RadiusSettings) -> bool
fn ne(&self, other: &RadiusSettings) -> bool
This method tests for !=
.
impl StructuralPartialEq for RadiusSettings
Auto Trait Implementations
impl RefUnwindSafe for RadiusSettings
impl Send for RadiusSettings
impl Sync for RadiusSettings
impl Unpin for RadiusSettings
impl UnwindSafe for RadiusSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more