aws_sdk_emr/client/get_on_cluster_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 [`GetOnClusterAppUIPresignedURL`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cluster_id(impl Into<String>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::set_cluster_id):<br>required: **true**<br><p>The cluster ID associated with the cluster's application user interface presigned URL.</p><br>
7 /// - [`on_cluster_app_ui_type(OnClusterAppUiType)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::on_cluster_app_ui_type) / [`set_on_cluster_app_ui_type(Option<OnClusterAppUiType>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::set_on_cluster_app_ui_type):<br>required: **false**<br><p>The application UI type associated with the cluster's application user interface presigned URL.</p><br>
8 /// - [`application_id(impl Into<String>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::set_application_id):<br>required: **false**<br><p>The application ID associated with the cluster's application user interface presigned URL.</p><br>
9 /// - [`dry_run(bool)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::set_dry_run):<br>required: **false**<br><p>Determines if the user interface presigned URL is for a dry run.</p><br>
10 /// - [`execution_role_arn(impl Into<String>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::execution_role_arn) / [`set_execution_role_arn(Option<String>)`](crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::set_execution_role_arn):<br>required: **false**<br><p>The execution role ARN associated with the cluster's application user interface presigned URL.</p><br>
11 /// - On success, responds with [`GetOnClusterAppUiPresignedUrlOutput`](crate::operation::get_on_cluster_app_ui_presigned_url::GetOnClusterAppUiPresignedUrlOutput) with field(s):
12 /// - [`presigned_url_ready(Option<bool>)`](crate::operation::get_on_cluster_app_ui_presigned_url::GetOnClusterAppUiPresignedUrlOutput::presigned_url_ready): <p>Used to determine if the presigned URL is ready.</p>
13 /// - [`presigned_url(Option<String>)`](crate::operation::get_on_cluster_app_ui_presigned_url::GetOnClusterAppUiPresignedUrlOutput::presigned_url): <p>The cluster's generated presigned URL.</p>
14 /// - On failure, responds with [`SdkError<GetOnClusterAppUIPresignedURLError>`](crate::operation::get_on_cluster_app_ui_presigned_url::GetOnClusterAppUIPresignedURLError)
15 pub fn get_on_cluster_app_ui_presigned_url(
16 &self,
17 ) -> crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder {
18 crate::operation::get_on_cluster_app_ui_presigned_url::builders::GetOnClusterAppUIPresignedURLFluentBuilder::new(self.handle.clone())
19 }
20}