aws_sdk_emr/client/
describe_persistent_app_ui.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 [`DescribePersistentAppUI`](crate::operation::describe_persistent_app_ui::builders::DescribePersistentAppUIFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`persistent_app_ui_id(impl Into<String>)`](crate::operation::describe_persistent_app_ui::builders::DescribePersistentAppUIFluentBuilder::persistent_app_ui_id) / [`set_persistent_app_ui_id(Option<String>)`](crate::operation::describe_persistent_app_ui::builders::DescribePersistentAppUIFluentBuilder::set_persistent_app_ui_id):<br>required: **true**<br><p>The identifier for the persistent application user interface.</p><br>
7    /// - On success, responds with [`DescribePersistentAppUiOutput`](crate::operation::describe_persistent_app_ui::DescribePersistentAppUiOutput) with field(s):
8    ///   - [`persistent_app_ui(Option<PersistentAppUi>)`](crate::operation::describe_persistent_app_ui::DescribePersistentAppUiOutput::persistent_app_ui): <p>The persistent application user interface.</p>
9    /// - On failure, responds with [`SdkError<DescribePersistentAppUIError>`](crate::operation::describe_persistent_app_ui::DescribePersistentAppUIError)
10    pub fn describe_persistent_app_ui(&self) -> crate::operation::describe_persistent_app_ui::builders::DescribePersistentAppUIFluentBuilder {
11        crate::operation::describe_persistent_app_ui::builders::DescribePersistentAppUIFluentBuilder::new(self.handle.clone())
12    }
13}