aws_sdk_devopsagent/client/disassociate_service.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 [`DisassociateService`](crate::operation::disassociate_service::builders::DisassociateServiceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`agent_space_id(impl Into<String>)`](crate::operation::disassociate_service::builders::DisassociateServiceFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::disassociate_service::builders::DisassociateServiceFluentBuilder::set_agent_space_id):<br>required: **true**<br>The unique identifier of the AgentSpace<br>
7 /// - [`association_id(impl Into<String>)`](crate::operation::disassociate_service::builders::DisassociateServiceFluentBuilder::association_id) / [`set_association_id(Option<String>)`](crate::operation::disassociate_service::builders::DisassociateServiceFluentBuilder::set_association_id):<br>required: **true**<br>The unique identifier of the given association.<br>
8 /// - On success, responds with [`DisassociateServiceOutput`](crate::operation::disassociate_service::DisassociateServiceOutput)
9 /// - On failure, responds with [`SdkError<DisassociateServiceError>`](crate::operation::disassociate_service::DisassociateServiceError)
10 pub fn disassociate_service(&self) -> crate::operation::disassociate_service::builders::DisassociateServiceFluentBuilder {
11 crate::operation::disassociate_service::builders::DisassociateServiceFluentBuilder::new(self.handle.clone())
12 }
13}