aws_sdk_appsync/client/
disassociate_merged_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 [`DisassociateMergedGraphqlApi`](crate::operation::disassociate_merged_graphql_api::builders::DisassociateMergedGraphqlApiFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`source_api_identifier(impl Into<String>)`](crate::operation::disassociate_merged_graphql_api::builders::DisassociateMergedGraphqlApiFluentBuilder::source_api_identifier) / [`set_source_api_identifier(Option<String>)`](crate::operation::disassociate_merged_graphql_api::builders::DisassociateMergedGraphqlApiFluentBuilder::set_source_api_identifier):<br>required: **true**<br><p>The identifier of the AppSync Source API. This is generated by the AppSync service. In most cases, source APIs (especially in your account) only require the API ID value or ARN of the source API. However, source APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the source API.</p><br>
7    ///   - [`association_id(impl Into<String>)`](crate::operation::disassociate_merged_graphql_api::builders::DisassociateMergedGraphqlApiFluentBuilder::association_id) / [`set_association_id(Option<String>)`](crate::operation::disassociate_merged_graphql_api::builders::DisassociateMergedGraphqlApiFluentBuilder::set_association_id):<br>required: **true**<br><p>The ID generated by the AppSync service for the source API association.</p><br>
8    /// - On success, responds with [`DisassociateMergedGraphqlApiOutput`](crate::operation::disassociate_merged_graphql_api::DisassociateMergedGraphqlApiOutput) with field(s):
9    ///   - [`source_api_association_status(Option<SourceApiAssociationStatus>)`](crate::operation::disassociate_merged_graphql_api::DisassociateMergedGraphqlApiOutput::source_api_association_status): <p>The state of the source API association.</p>
10    /// - On failure, responds with [`SdkError<DisassociateMergedGraphqlApiError>`](crate::operation::disassociate_merged_graphql_api::DisassociateMergedGraphqlApiError)
11    pub fn disassociate_merged_graphql_api(
12        &self,
13    ) -> crate::operation::disassociate_merged_graphql_api::builders::DisassociateMergedGraphqlApiFluentBuilder {
14        crate::operation::disassociate_merged_graphql_api::builders::DisassociateMergedGraphqlApiFluentBuilder::new(self.handle.clone())
15    }
16}