aws_sdk_emr/client/get_persistent_app_ui_presigned_url.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 [`GetPersistentAppUIPresignedURL`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`persistent_app_ui_id(impl Into<String>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::persistent_app_ui_id) / [`set_persistent_app_ui_id(Option<String>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::set_persistent_app_ui_id):<br>required: **true**<br><p>The persistent application user interface ID associated with the presigned URL.</p><br>
7 /// - [`persistent_app_ui_type(PersistentAppUiType)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::persistent_app_ui_type) / [`set_persistent_app_ui_type(Option<PersistentAppUiType>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::set_persistent_app_ui_type):<br>required: **false**<br><p>The persistent application user interface type associated with the presigned URL.</p><br>
8 /// - [`application_id(impl Into<String>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::set_application_id):<br>required: **false**<br><p>The application ID associated with the presigned URL.</p><br>
9 /// - [`auth_proxy_call(bool)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::auth_proxy_call) / [`set_auth_proxy_call(Option<bool>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::set_auth_proxy_call):<br>required: **false**<br><p>A boolean that represents if the caller is an authentication proxy call.</p><br>
10 /// - [`execution_role_arn(impl Into<String>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::execution_role_arn) / [`set_execution_role_arn(Option<String>)`](crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::set_execution_role_arn):<br>required: **false**<br><p>The execution role ARN associated with the presigned URL.</p><br>
11 /// - On success, responds with [`GetPersistentAppUiPresignedUrlOutput`](crate::operation::get_persistent_app_ui_presigned_url::GetPersistentAppUiPresignedUrlOutput) with field(s):
12 /// - [`presigned_url_ready(Option<bool>)`](crate::operation::get_persistent_app_ui_presigned_url::GetPersistentAppUiPresignedUrlOutput::presigned_url_ready): <p>Used to determine if the presigned URL is ready.</p>
13 /// - [`presigned_url(Option<String>)`](crate::operation::get_persistent_app_ui_presigned_url::GetPersistentAppUiPresignedUrlOutput::presigned_url): <p>The returned presigned URL.</p>
14 /// - On failure, responds with [`SdkError<GetPersistentAppUIPresignedURLError>`](crate::operation::get_persistent_app_ui_presigned_url::GetPersistentAppUIPresignedURLError)
15 pub fn get_persistent_app_ui_presigned_url(
16 &self,
17 ) -> crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder {
18 crate::operation::get_persistent_app_ui_presigned_url::builders::GetPersistentAppUIPresignedURLFluentBuilder::new(self.handle.clone())
19 }
20}