pub struct ApigatewayClient<'a> { /* private fields */ }Expand description
Client for the Amazon API Gateway API
Implementations§
Source§impl<'a> ApigatewayClient<'a>
impl<'a> ApigatewayClient<'a>
Sourcepub async fn get_rest_apis(
&self,
position: &str,
limit: &str,
) -> Result<RestApis>
pub async fn get_rest_apis( &self, position: &str, limit: &str, ) -> Result<RestApis>
Lists the RestApis resources for your collection.
Sourcepub async fn get_stages(
&self,
restapi_id: &str,
deployment_id: &str,
) -> Result<Stages>
pub async fn get_stages( &self, restapi_id: &str, deployment_id: &str, ) -> Result<Stages>
Gets information about one or more Stage resources.
Sourcepub async fn update_stage(
&self,
restapi_id: &str,
stage_name: &str,
body: &UpdateStageRequest,
) -> Result<Stage>
pub async fn update_stage( &self, restapi_id: &str, stage_name: &str, body: &UpdateStageRequest, ) -> Result<Stage>
Changes information about a Stage resource.
Auto Trait Implementations§
impl<'a> Freeze for ApigatewayClient<'a>
impl<'a> !RefUnwindSafe for ApigatewayClient<'a>
impl<'a> Send for ApigatewayClient<'a>
impl<'a> Sync for ApigatewayClient<'a>
impl<'a> Unpin for ApigatewayClient<'a>
impl<'a> UnsafeUnpin for ApigatewayClient<'a>
impl<'a> !UnwindSafe for ApigatewayClient<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more