aws_sdk_emr/client/list_bootstrap_actions.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 [`ListBootstrapActions`](crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`cluster_id(impl Into<String>)`](crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder::set_cluster_id):<br>required: **true**<br><p>The cluster identifier for the bootstrap actions to list.</p><br>
8 /// - [`marker(impl Into<String>)`](crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder::set_marker):<br>required: **false**<br><p>The pagination token that indicates the next set of results to retrieve.</p><br>
9 /// - On success, responds with [`ListBootstrapActionsOutput`](crate::operation::list_bootstrap_actions::ListBootstrapActionsOutput) with field(s):
10 /// - [`bootstrap_actions(Option<Vec::<Command>>)`](crate::operation::list_bootstrap_actions::ListBootstrapActionsOutput::bootstrap_actions): <p>The bootstrap actions associated with the cluster.</p>
11 /// - [`marker(Option<String>)`](crate::operation::list_bootstrap_actions::ListBootstrapActionsOutput::marker): <p>The pagination token that indicates the next set of results to retrieve.</p>
12 /// - On failure, responds with [`SdkError<ListBootstrapActionsError>`](crate::operation::list_bootstrap_actions::ListBootstrapActionsError)
13 pub fn list_bootstrap_actions(&self) -> crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder {
14 crate::operation::list_bootstrap_actions::builders::ListBootstrapActionsFluentBuilder::new(self.handle.clone())
15 }
16}