Struct aws_sdk_workmailmessageflow::Client
source · [−]pub struct Client { /* private fields */ }Expand description
Client for Amazon WorkMail Message Flow
Client for invoking operations on Amazon WorkMail Message Flow. Each operation on Amazon WorkMail Message Flow 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_workmailmessageflow::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_workmailmessageflow::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_workmailmessageflow::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 get_raw_message_content(&self) -> GetRawMessageContent
pub fn get_raw_message_content(&self) -> GetRawMessageContent
Constructs a fluent builder for the GetRawMessageContent operation.
- The fluent builder is configurable:
message_id(impl Into<String>)/set_message_id(Option<String>):The identifier of the email message to retrieve.
- On success, responds with
GetRawMessageContentOutputwith field(s):message_content(ByteStream):The raw content of the email message, in MIME format.
- On failure, responds with
SdkError<GetRawMessageContentError>
sourcepub fn put_raw_message_content(&self) -> PutRawMessageContent
pub fn put_raw_message_content(&self) -> PutRawMessageContent
Constructs a fluent builder for the PutRawMessageContent operation.
- The fluent builder is configurable:
message_id(impl Into<String>)/set_message_id(Option<String>):The identifier of the email message being updated.
content(RawMessageContent)/set_content(Option<RawMessageContent>):Describes the raw message content of the updated email message.
- On success, responds with
PutRawMessageContentOutput - On failure, responds with
SdkError<PutRawMessageContentError>
sourceimpl Client
impl Client
sourcepub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Selfwhere
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
pub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Selfwhere
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
Creates a client with the given service config and connector override.