[][src]Trait rusoto_apigatewaymanagementapi::ApiGatewayManagementApi

pub trait ApiGatewayManagementApi {
    fn delete_connection<'life0, 'async_trait>(
        &'life0 self,
        input: DeleteConnectionRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteConnectionError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_connection<'life0, 'async_trait>(
        &'life0 self,
        input: GetConnectionRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetConnectionResponse, RusotoError<GetConnectionError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn post_to_connection<'life0, 'async_trait>(
        &'life0 self,
        input: PostToConnectionRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<PostToConnectionError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Trait representing the capabilities of the AmazonApiGatewayManagementApi API. AmazonApiGatewayManagementApi clients implement this trait.

Required methods

fn delete_connection<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Delete the connection with the provided id.

fn get_connection<'life0, 'async_trait>(
    &'life0 self,
    input: GetConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<GetConnectionResponse, RusotoError<GetConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Get information about the connection with the provided id.

fn post_to_connection<'life0, 'async_trait>(
    &'life0 self,
    input: PostToConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<PostToConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Sends the provided data to the specified connection.

Loading content...

Implementors

impl ApiGatewayManagementApi for ApiGatewayManagementApiClient[src]

fn delete_connection<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Delete the connection with the provided id.

fn get_connection<'life0, 'async_trait>(
    &'life0 self,
    input: GetConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<GetConnectionResponse, RusotoError<GetConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Get information about the connection with the provided id.

fn post_to_connection<'life0, 'async_trait>(
    &'life0 self,
    input: PostToConnectionRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<PostToConnectionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Sends the provided data to the specified connection.

Loading content...