#[non_exhaustive]pub struct UpdateRadiusInputBuilder { /* private fields */ }Expand description
A builder for UpdateRadiusInput.
Implementations§
source§impl UpdateRadiusInputBuilder
impl UpdateRadiusInputBuilder
sourcepub fn directory_id(self, input: impl Into<String>) -> Self
pub fn directory_id(self, input: impl Into<String>) -> Self
The identifier of the directory for which to update the RADIUS server information.
This field is required.sourcepub fn set_directory_id(self, input: Option<String>) -> Self
pub fn set_directory_id(self, input: Option<String>) -> Self
The identifier of the directory for which to update the RADIUS server information.
sourcepub fn get_directory_id(&self) -> &Option<String>
pub fn get_directory_id(&self) -> &Option<String>
The identifier of the directory for which to update the RADIUS server information.
sourcepub fn radius_settings(self, input: RadiusSettings) -> Self
pub fn radius_settings(self, input: RadiusSettings) -> Self
A RadiusSettings object that contains information about the RADIUS server.
sourcepub fn set_radius_settings(self, input: Option<RadiusSettings>) -> Self
pub fn set_radius_settings(self, input: Option<RadiusSettings>) -> Self
A RadiusSettings object that contains information about the RADIUS server.
sourcepub fn get_radius_settings(&self) -> &Option<RadiusSettings>
pub fn get_radius_settings(&self) -> &Option<RadiusSettings>
A RadiusSettings object that contains information about the RADIUS server.
sourcepub fn build(self) -> Result<UpdateRadiusInput, BuildError>
pub fn build(self) -> Result<UpdateRadiusInput, BuildError>
Consumes the builder and constructs a UpdateRadiusInput.
source§impl UpdateRadiusInputBuilder
impl UpdateRadiusInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateRadiusOutput, SdkError<UpdateRadiusError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateRadiusOutput, SdkError<UpdateRadiusError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateRadiusInputBuilder
impl Clone for UpdateRadiusInputBuilder
source§fn clone(&self) -> UpdateRadiusInputBuilder
fn clone(&self) -> UpdateRadiusInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UpdateRadiusInputBuilder
impl Debug for UpdateRadiusInputBuilder
source§impl Default for UpdateRadiusInputBuilder
impl Default for UpdateRadiusInputBuilder
source§fn default() -> UpdateRadiusInputBuilder
fn default() -> UpdateRadiusInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateRadiusInputBuilder
impl PartialEq for UpdateRadiusInputBuilder
source§fn eq(&self, other: &UpdateRadiusInputBuilder) -> bool
fn eq(&self, other: &UpdateRadiusInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateRadiusInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateRadiusInputBuilder
impl Send for UpdateRadiusInputBuilder
impl Sync for UpdateRadiusInputBuilder
impl Unpin for UpdateRadiusInputBuilder
impl UnwindSafe for UpdateRadiusInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.