Struct aws_sdk_iotwireless::operation::get_resource_log_level::builders::GetResourceLogLevelInputBuilder
source · #[non_exhaustive]pub struct GetResourceLogLevelInputBuilder { /* private fields */ }Expand description
A builder for GetResourceLogLevelInput.
Implementations§
source§impl GetResourceLogLevelInputBuilder
impl GetResourceLogLevelInputBuilder
sourcepub fn resource_identifier(self, input: impl Into<String>) -> Self
pub fn resource_identifier(self, input: impl Into<String>) -> Self
The identifier of the resource. For a Wireless Device, it is the wireless device ID. For a wireless gateway, it is the wireless gateway ID.
This field is required.sourcepub fn set_resource_identifier(self, input: Option<String>) -> Self
pub fn set_resource_identifier(self, input: Option<String>) -> Self
The identifier of the resource. For a Wireless Device, it is the wireless device ID. For a wireless gateway, it is the wireless gateway ID.
sourcepub fn get_resource_identifier(&self) -> &Option<String>
pub fn get_resource_identifier(&self) -> &Option<String>
The identifier of the resource. For a Wireless Device, it is the wireless device ID. For a wireless gateway, it is the wireless gateway ID.
sourcepub fn resource_type(self, input: impl Into<String>) -> Self
pub fn resource_type(self, input: impl Into<String>) -> Self
The type of the resource, which can be WirelessDevice or WirelessGateway.
sourcepub fn set_resource_type(self, input: Option<String>) -> Self
pub fn set_resource_type(self, input: Option<String>) -> Self
The type of the resource, which can be WirelessDevice or WirelessGateway.
sourcepub fn get_resource_type(&self) -> &Option<String>
pub fn get_resource_type(&self) -> &Option<String>
The type of the resource, which can be WirelessDevice or WirelessGateway.
sourcepub fn build(self) -> Result<GetResourceLogLevelInput, BuildError>
pub fn build(self) -> Result<GetResourceLogLevelInput, BuildError>
Consumes the builder and constructs a GetResourceLogLevelInput.
source§impl GetResourceLogLevelInputBuilder
impl GetResourceLogLevelInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetResourceLogLevelOutput, SdkError<GetResourceLogLevelError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetResourceLogLevelOutput, SdkError<GetResourceLogLevelError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetResourceLogLevelInputBuilder
impl Clone for GetResourceLogLevelInputBuilder
source§fn clone(&self) -> GetResourceLogLevelInputBuilder
fn clone(&self) -> GetResourceLogLevelInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetResourceLogLevelInputBuilder
impl Default for GetResourceLogLevelInputBuilder
source§fn default() -> GetResourceLogLevelInputBuilder
fn default() -> GetResourceLogLevelInputBuilder
source§impl PartialEq for GetResourceLogLevelInputBuilder
impl PartialEq for GetResourceLogLevelInputBuilder
source§fn eq(&self, other: &GetResourceLogLevelInputBuilder) -> bool
fn eq(&self, other: &GetResourceLogLevelInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetResourceLogLevelInputBuilder
Auto Trait Implementations§
impl Freeze for GetResourceLogLevelInputBuilder
impl RefUnwindSafe for GetResourceLogLevelInputBuilder
impl Send for GetResourceLogLevelInputBuilder
impl Sync for GetResourceLogLevelInputBuilder
impl Unpin for GetResourceLogLevelInputBuilder
impl UnwindSafe for GetResourceLogLevelInputBuilder
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