1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeStep`](crate::operation::describe_step::builders::DescribeStepFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_id(impl Into<String>)`](crate::operation::describe_step::builders::DescribeStepFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::describe_step::builders::DescribeStepFluentBuilder::set_cluster_id):<br>required: **true**<br><p>The identifier of the cluster with steps to describe.</p><br>
    ///   - [`step_id(impl Into<String>)`](crate::operation::describe_step::builders::DescribeStepFluentBuilder::step_id) / [`set_step_id(Option<String>)`](crate::operation::describe_step::builders::DescribeStepFluentBuilder::set_step_id):<br>required: **true**<br><p>The identifier of the step to describe.</p><br>
    /// - On success, responds with [`DescribeStepOutput`](crate::operation::describe_step::DescribeStepOutput) with field(s):
    ///   - [`step(Option<Step>)`](crate::operation::describe_step::DescribeStepOutput::step): <p>The step details for the requested step identifier.</p>
    /// - On failure, responds with [`SdkError<DescribeStepError>`](crate::operation::describe_step::DescribeStepError)
    pub fn describe_step(&self) -> crate::operation::describe_step::builders::DescribeStepFluentBuilder {
        crate::operation::describe_step::builders::DescribeStepFluentBuilder::new(self.handle.clone())
    }
}