aws_sdk_cloudformation/client/describe_stack_refactor.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 [`DescribeStackRefactor`](crate::operation::describe_stack_refactor::builders::DescribeStackRefactorFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`stack_refactor_id(impl Into<String>)`](crate::operation::describe_stack_refactor::builders::DescribeStackRefactorFluentBuilder::stack_refactor_id) / [`set_stack_refactor_id(Option<String>)`](crate::operation::describe_stack_refactor::builders::DescribeStackRefactorFluentBuilder::set_stack_refactor_id):<br>required: **true**<br><p>The ID associated with the stack refactor created from the <code>CreateStackRefactor</code> action.</p><br>
7 /// - On success, responds with [`DescribeStackRefactorOutput`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput) with field(s):
8 /// - [`description(Option<String>)`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput::description): <p>A description to help you identify the refactor.</p>
9 /// - [`stack_refactor_id(Option<String>)`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput::stack_refactor_id): <p>The ID associated with the stack refactor created from the <code>CreateStackRefactor</code> action.</p>
10 /// - [`stack_ids(Option<Vec::<String>>)`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput::stack_ids): <p>The unique ID for each stack.</p>
11 /// - [`execution_status(Option<StackRefactorExecutionStatus>)`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput::execution_status): <p>The stack refactor execution operation status that's provided after calling the <code>ExecuteStackRefactor</code> action.</p>
12 /// - [`execution_status_reason(Option<String>)`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput::execution_status_reason): <p>A detailed explanation for the stack refactor <code>ExecutionStatus</code>.</p>
13 /// - [`status(Option<StackRefactorStatus>)`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput::status): <p>The stack refactor operation status that's provided after calling the <code>CreateStackRefactor</code> action.</p>
14 /// - [`status_reason(Option<String>)`](crate::operation::describe_stack_refactor::DescribeStackRefactorOutput::status_reason): <p>A detailed explanation for the stack refactor operation <code>Status</code>.</p>
15 /// - On failure, responds with [`SdkError<DescribeStackRefactorError>`](crate::operation::describe_stack_refactor::DescribeStackRefactorError)
16 pub fn describe_stack_refactor(&self) -> crate::operation::describe_stack_refactor::builders::DescribeStackRefactorFluentBuilder {
17 crate::operation::describe_stack_refactor::builders::DescribeStackRefactorFluentBuilder::new(self.handle.clone())
18 }
19}