aws_sdk_swf/client/undeprecate_domain.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 [`UndeprecateDomain`](crate::operation::undeprecate_domain::builders::UndeprecateDomainFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::undeprecate_domain::builders::UndeprecateDomainFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::undeprecate_domain::builders::UndeprecateDomainFluentBuilder::set_name):<br>required: **true**<br><p>The name of the domain of the deprecated workflow type.</p><br>
7 /// - On success, responds with [`UndeprecateDomainOutput`](crate::operation::undeprecate_domain::UndeprecateDomainOutput)
8 /// - On failure, responds with [`SdkError<UndeprecateDomainError>`](crate::operation::undeprecate_domain::UndeprecateDomainError)
9 pub fn undeprecate_domain(&self) -> crate::operation::undeprecate_domain::builders::UndeprecateDomainFluentBuilder {
10 crate::operation::undeprecate_domain::builders::UndeprecateDomainFluentBuilder::new(self.handle.clone())
11 }
12}