Struct aws_sdk_apigatewaymanagement::client::Client
source · [−]pub struct Client { /* private fields */ }Expand description
Client for AmazonApiGatewayManagementApi
Client for invoking operations on AmazonApiGatewayManagementApi. Each operation on AmazonApiGatewayManagementApi 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_apigatewaymanagement::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::retry::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_apigatewaymanagement::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_apigatewaymanagement::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_connection(&self) -> DeleteConnection
pub fn delete_connection(&self) -> DeleteConnection
Constructs a fluent builder for the DeleteConnection operation.
- The fluent builder is configurable:
connection_id(impl Into<String>)/set_connection_id(Option<String>): (undocumented)
- On success, responds with
DeleteConnectionOutput - On failure, responds with
SdkError<DeleteConnectionError>
sourcepub fn get_connection(&self) -> GetConnection
pub fn get_connection(&self) -> GetConnection
Constructs a fluent builder for the GetConnection operation.
- The fluent builder is configurable:
connection_id(impl Into<String>)/set_connection_id(Option<String>): (undocumented)
- On success, responds with
GetConnectionOutputwith field(s):connected_at(Option<DateTime>):The time in ISO 8601 format for when the connection was established.
identity(Option<Identity>): (undocumented)last_active_at(Option<DateTime>):The time in ISO 8601 format for when the connection was last active.
- On failure, responds with
SdkError<GetConnectionError>
sourcepub fn post_to_connection(&self) -> PostToConnection
pub fn post_to_connection(&self) -> PostToConnection
Constructs a fluent builder for the PostToConnection operation.
- The fluent builder is configurable:
data(Blob)/set_data(Option<Blob>):The data to be sent to the client specified by its connection id.
connection_id(impl Into<String>)/set_connection_id(Option<String>):The identifier of the connection that a specific client is using.
- On success, responds with
PostToConnectionOutput - On failure, responds with
SdkError<PostToConnectionError>
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.