Struct aws_sdk_iotdataplane::client::Client
source · [−]pub struct Client { /* private fields */ }
Expand description
Client for AWS IoT Data Plane
Client for invoking operations on AWS IoT Data Plane. Each operation on AWS IoT Data Plane is a method on this
this struct. .send()
MUST be invoked on the generated operations to dispatch the request to the service.
Examples
Constructing a client and invoking an operation
// create a shared configuration. This can be used & shared between multiple service clients.
let shared_config = aws_config::load_from_env().await;
let client = aws_sdk_iotdataplane::Client::new(&shared_config);
// invoke an operation
/* let rsp = client
.<operation_name>().
.<param>("some value")
.send().await; */
Constructing a client with custom configuration
use aws_config::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_iotdataplane::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_iotdataplane::Client::from_conf(config);
Implementations
sourceimpl Client
impl Client
sourcepub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
pub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
Creates a client with the given service configuration.
sourceimpl Client
impl Client
sourcepub fn delete_thing_shadow(&self) -> DeleteThingShadow
pub fn delete_thing_shadow(&self) -> DeleteThingShadow
Constructs a fluent builder for the DeleteThingShadow
operation.
- The fluent builder is configurable:
thing_name(impl Into<String>)
/set_thing_name(Option<String>)
:The name of the thing.
shadow_name(impl Into<String>)
/set_shadow_name(Option<String>)
:The name of the shadow.
- On success, responds with
DeleteThingShadowOutput
with field(s):payload(Option<Blob>)
:The state information, in JSON format.
- On failure, responds with
SdkError<DeleteThingShadowError>
sourcepub fn get_retained_message(&self) -> GetRetainedMessage
pub fn get_retained_message(&self) -> GetRetainedMessage
Constructs a fluent builder for the GetRetainedMessage
operation.
- The fluent builder is configurable:
topic(impl Into<String>)
/set_topic(Option<String>)
:The topic name of the retained message to retrieve.
- On success, responds with
GetRetainedMessageOutput
with field(s):topic(Option<String>)
:The topic name to which the retained message was published.
payload(Option<Blob>)
:The Base64-encoded message payload of the retained message body.
qos(i32)
:The quality of service (QoS) level used to publish the retained message.
last_modified_time(i64)
:The Epoch date and time, in milliseconds, when the retained message was stored by IoT.
- On failure, responds with
SdkError<GetRetainedMessageError>
sourcepub fn get_thing_shadow(&self) -> GetThingShadow
pub fn get_thing_shadow(&self) -> GetThingShadow
Constructs a fluent builder for the GetThingShadow
operation.
- The fluent builder is configurable:
thing_name(impl Into<String>)
/set_thing_name(Option<String>)
:The name of the thing.
shadow_name(impl Into<String>)
/set_shadow_name(Option<String>)
:The name of the shadow.
- On success, responds with
GetThingShadowOutput
with field(s):payload(Option<Blob>)
:The state information, in JSON format.
- On failure, responds with
SdkError<GetThingShadowError>
sourcepub fn list_named_shadows_for_thing(&self) -> ListNamedShadowsForThing
pub fn list_named_shadows_for_thing(&self) -> ListNamedShadowsForThing
Constructs a fluent builder for the ListNamedShadowsForThing
operation.
- The fluent builder is configurable:
thing_name(impl Into<String>)
/set_thing_name(Option<String>)
:The name of the thing.
next_token(impl Into<String>)
/set_next_token(Option<String>)
:The token to retrieve the next set of results.
page_size(i32)
/set_page_size(Option<i32>)
:The result page size.
- On success, responds with
ListNamedShadowsForThingOutput
with field(s):results(Option<Vec<String>>)
:The list of shadows for the specified thing.
next_token(Option<String>)
:The token to use to get the next set of results, or null if there are no additional results.
timestamp(i64)
:The Epoch date and time the response was generated by IoT.
- On failure, responds with
SdkError<ListNamedShadowsForThingError>
sourcepub fn list_retained_messages(&self) -> ListRetainedMessages
pub fn list_retained_messages(&self) -> ListRetainedMessages
Constructs a fluent builder for the ListRetainedMessages
operation.
This operation supports pagination; See into_paginator()
.
- The fluent builder is configurable:
next_token(impl Into<String>)
/set_next_token(Option<String>)
:To retrieve the next set of results, the
nextToken
value from a previous response; otherwise null to receive the first set of results.max_results(i32)
/set_max_results(i32)
:The maximum number of results to return at one time.
- On success, responds with
ListRetainedMessagesOutput
with field(s):retained_topics(Option<Vec<RetainedMessageSummary>>)
:A summary list the account’s retained messages. The information returned doesn’t include the message payloads of the retained messages.
next_token(Option<String>)
:The token for the next set of results, or null if there are no additional results.
- On failure, responds with
SdkError<ListRetainedMessagesError>
sourcepub fn publish(&self) -> Publish
pub fn publish(&self) -> Publish
Constructs a fluent builder for the Publish
operation.
- The fluent builder is configurable:
topic(impl Into<String>)
/set_topic(Option<String>)
:The name of the MQTT topic.
qos(i32)
/set_qos(i32)
:The Quality of Service (QoS) level.
retain(bool)
/set_retain(bool)
:A Boolean value that determines whether to set the RETAIN flag when the message is published.
Setting the RETAIN flag causes the message to be retained and sent to new subscribers to the topic.
Valid values:
true
|false
Default value:
false
payload(Blob)
/set_payload(Option<Blob>)
:The message body. MQTT accepts text, binary, and empty (null) message payloads.
Publishing an empty (null) payload with retain =
true
deletes the retained message identified by topic from Amazon Web Services IoT Core.
- On success, responds with
PublishOutput
- On failure, responds with
SdkError<PublishError>
sourcepub fn update_thing_shadow(&self) -> UpdateThingShadow
pub fn update_thing_shadow(&self) -> UpdateThingShadow
Constructs a fluent builder for the UpdateThingShadow
operation.
- The fluent builder is configurable:
thing_name(impl Into<String>)
/set_thing_name(Option<String>)
:The name of the thing.
shadow_name(impl Into<String>)
/set_shadow_name(Option<String>)
:The name of the shadow.
payload(Blob)
/set_payload(Option<Blob>)
:The state information, in JSON format.
- On success, responds with
UpdateThingShadowOutput
with field(s):payload(Option<Blob>)
:The state information, in JSON format.
- On failure, responds with
SdkError<UpdateThingShadowError>
sourceimpl Client
impl Client
sourcepub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Self where
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
pub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Self where
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
Creates a client with the given service config and connector override.
Trait Implementations
sourceimpl From<Client<DynConnector, DynMiddleware<DynConnector>, Standard>> for Client
impl From<Client<DynConnector, DynMiddleware<DynConnector>, Standard>> for Client
sourcefn from(client: Client<DynConnector, DynMiddleware<DynConnector>>) -> Self
fn from(client: Client<DynConnector, DynMiddleware<DynConnector>>) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more