aws_sdk_migrationhubstrategy/client/
get_application_component_strategies.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 [`GetApplicationComponentStrategies`](crate::operation::get_application_component_strategies::builders::GetApplicationComponentStrategiesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`application_component_id(impl Into<String>)`](crate::operation::get_application_component_strategies::builders::GetApplicationComponentStrategiesFluentBuilder::application_component_id) / [`set_application_component_id(Option<String>)`](crate::operation::get_application_component_strategies::builders::GetApplicationComponentStrategiesFluentBuilder::set_application_component_id):<br>required: **true**<br><p>The ID of the application component. The ID is unique within an AWS account.</p><br>
7    /// - On success, responds with [`GetApplicationComponentStrategiesOutput`](crate::operation::get_application_component_strategies::GetApplicationComponentStrategiesOutput) with field(s):
8    ///   - [`application_component_strategies(Option<Vec::<ApplicationComponentStrategy>>)`](crate::operation::get_application_component_strategies::GetApplicationComponentStrategiesOutput::application_component_strategies): <p>A list of application component strategy recommendations.</p>
9    /// - On failure, responds with [`SdkError<GetApplicationComponentStrategiesError>`](crate::operation::get_application_component_strategies::GetApplicationComponentStrategiesError)
10    pub fn get_application_component_strategies(
11        &self,
12    ) -> crate::operation::get_application_component_strategies::builders::GetApplicationComponentStrategiesFluentBuilder {
13        crate::operation::get_application_component_strategies::builders::GetApplicationComponentStrategiesFluentBuilder::new(self.handle.clone())
14    }
15}