[][src]Trait rusoto_apigatewaymanagementapi::ApiGatewayManagementApi

pub trait ApiGatewayManagementApi {
#[must_use]    pub 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
;
#[must_use] pub 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
;
#[must_use] pub 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

#[must_use]pub 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.

#[must_use]pub 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.

#[must_use]pub 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...

Implementors

impl ApiGatewayManagementApi for ApiGatewayManagementApiClient[src]

pub 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.

pub 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.

pub 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...