#[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
source§fn eq(&self, other: &GetEntitiesInputBuilder) -> bool
fn eq(&self, other: &GetEntitiesInputBuilder) -> bool
self and other values to be equal, and is used
by ==.