#[non_exhaustive]pub struct GetEntitiesInputBuilder { /* private fields */ }Expand description
A builder for GetEntitiesInput.
Implementations§
source§impl GetEntitiesInputBuilder
impl GetEntitiesInputBuilder
sourcepub fn ids(self, input: impl Into<String>) -> Self
pub fn ids(self, input: impl Into<String>) -> Self
Appends an item to ids.
To override the contents of this collection use set_ids.
An array of entity IDs.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
sourcepub fn set_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_ids(self, input: Option<Vec<String>>) -> Self
An array of entity IDs.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
sourcepub fn get_ids(&self) -> &Option<Vec<String>>
pub fn get_ids(&self) -> &Option<Vec<String>>
An array of entity IDs.
The IDs should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME
sourcepub fn namespace_version(self, input: i64) -> Self
pub fn namespace_version(self, input: i64) -> Self
The version of the user's namespace. Defaults to the latest version of the user's namespace.
sourcepub fn set_namespace_version(self, input: Option<i64>) -> Self
pub fn set_namespace_version(self, input: Option<i64>) -> Self
The version of the user's namespace. Defaults to the latest version of the user's namespace.
sourcepub fn get_namespace_version(&self) -> &Option<i64>
pub fn get_namespace_version(&self) -> &Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
sourcepub fn build(self) -> Result<GetEntitiesInput, BuildError>
pub fn build(self) -> Result<GetEntitiesInput, BuildError>
Consumes the builder and constructs a GetEntitiesInput.
source§impl GetEntitiesInputBuilder
impl GetEntitiesInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetEntitiesOutput, SdkError<GetEntitiesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetEntitiesOutput, SdkError<GetEntitiesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetEntitiesInputBuilder
impl Clone for GetEntitiesInputBuilder
source§fn clone(&self) -> GetEntitiesInputBuilder
fn clone(&self) -> GetEntitiesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetEntitiesInputBuilder
impl Debug for GetEntitiesInputBuilder
source§impl Default for GetEntitiesInputBuilder
impl Default for GetEntitiesInputBuilder
source§fn default() -> GetEntitiesInputBuilder
fn default() -> GetEntitiesInputBuilder
source§impl PartialEq for GetEntitiesInputBuilder
impl PartialEq for GetEntitiesInputBuilder
impl StructuralPartialEq for GetEntitiesInputBuilder
Auto Trait Implementations§
impl Freeze for GetEntitiesInputBuilder
impl RefUnwindSafe for GetEntitiesInputBuilder
impl Send for GetEntitiesInputBuilder
impl Sync for GetEntitiesInputBuilder
impl Unpin for GetEntitiesInputBuilder
impl UnwindSafe for GetEntitiesInputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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