aws_sdk_appsync/client/delete_graphql_api.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteGraphqlApi`](crate::operation::delete_graphql_api::builders::DeleteGraphqlApiFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`api_id(impl Into<String>)`](crate::operation::delete_graphql_api::builders::DeleteGraphqlApiFluentBuilder::api_id) / [`set_api_id(Option<String>)`](crate::operation::delete_graphql_api::builders::DeleteGraphqlApiFluentBuilder::set_api_id):<br>required: **true**<br><p>The API ID.</p><br>
7 /// - On success, responds with [`DeleteGraphqlApiOutput`](crate::operation::delete_graphql_api::DeleteGraphqlApiOutput)
8 /// - On failure, responds with [`SdkError<DeleteGraphqlApiError>`](crate::operation::delete_graphql_api::DeleteGraphqlApiError)
9 pub fn delete_graphql_api(&self) -> crate::operation::delete_graphql_api::builders::DeleteGraphqlApiFluentBuilder {
10 crate::operation::delete_graphql_api::builders::DeleteGraphqlApiFluentBuilder::new(self.handle.clone())
11 }
12}