Struct aws_sdk_iotwireless::operation::get_wireless_gateway::builders::GetWirelessGatewayOutputBuilder
source · #[non_exhaustive]pub struct GetWirelessGatewayOutputBuilder { /* private fields */ }Expand description
A builder for GetWirelessGatewayOutput.
Implementations§
source§impl GetWirelessGatewayOutputBuilder
impl GetWirelessGatewayOutputBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the resource.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the resource.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the resource.
sourcepub fn lo_ra_wan(self, input: LoRaWanGateway) -> Self
pub fn lo_ra_wan(self, input: LoRaWanGateway) -> Self
Information about the wireless gateway.
sourcepub fn set_lo_ra_wan(self, input: Option<LoRaWanGateway>) -> Self
pub fn set_lo_ra_wan(self, input: Option<LoRaWanGateway>) -> Self
Information about the wireless gateway.
sourcepub fn get_lo_ra_wan(&self) -> &Option<LoRaWanGateway>
pub fn get_lo_ra_wan(&self) -> &Option<LoRaWanGateway>
Information about the wireless gateway.
sourcepub fn thing_name(self, input: impl Into<String>) -> Self
pub fn thing_name(self, input: impl Into<String>) -> Self
The name of the thing associated with the wireless gateway. The value is empty if a thing isn't associated with the gateway.
sourcepub fn set_thing_name(self, input: Option<String>) -> Self
pub fn set_thing_name(self, input: Option<String>) -> Self
The name of the thing associated with the wireless gateway. The value is empty if a thing isn't associated with the gateway.
sourcepub fn get_thing_name(&self) -> &Option<String>
pub fn get_thing_name(&self) -> &Option<String>
The name of the thing associated with the wireless gateway. The value is empty if a thing isn't associated with the gateway.
sourcepub fn thing_arn(self, input: impl Into<String>) -> Self
pub fn thing_arn(self, input: impl Into<String>) -> Self
The ARN of the thing associated with the wireless gateway.
sourcepub fn set_thing_arn(self, input: Option<String>) -> Self
pub fn set_thing_arn(self, input: Option<String>) -> Self
The ARN of the thing associated with the wireless gateway.
sourcepub fn get_thing_arn(&self) -> &Option<String>
pub fn get_thing_arn(&self) -> &Option<String>
The ARN of the thing associated with the wireless gateway.
sourcepub fn build(self) -> GetWirelessGatewayOutput
pub fn build(self) -> GetWirelessGatewayOutput
Consumes the builder and constructs a GetWirelessGatewayOutput.
Trait Implementations§
source§impl Clone for GetWirelessGatewayOutputBuilder
impl Clone for GetWirelessGatewayOutputBuilder
source§fn clone(&self) -> GetWirelessGatewayOutputBuilder
fn clone(&self) -> GetWirelessGatewayOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetWirelessGatewayOutputBuilder
impl Default for GetWirelessGatewayOutputBuilder
source§fn default() -> GetWirelessGatewayOutputBuilder
fn default() -> GetWirelessGatewayOutputBuilder
source§impl PartialEq for GetWirelessGatewayOutputBuilder
impl PartialEq for GetWirelessGatewayOutputBuilder
source§fn eq(&self, other: &GetWirelessGatewayOutputBuilder) -> bool
fn eq(&self, other: &GetWirelessGatewayOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetWirelessGatewayOutputBuilder
Auto Trait Implementations§
impl Freeze for GetWirelessGatewayOutputBuilder
impl RefUnwindSafe for GetWirelessGatewayOutputBuilder
impl Send for GetWirelessGatewayOutputBuilder
impl Sync for GetWirelessGatewayOutputBuilder
impl Unpin for GetWirelessGatewayOutputBuilder
impl UnwindSafe for GetWirelessGatewayOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more