#[non_exhaustive]pub struct InteractiveConfigurationBuilder { /* private fields */ }
Expand description
A builder for InteractiveConfiguration
.
Implementations§
source§impl InteractiveConfigurationBuilder
impl InteractiveConfigurationBuilder
sourcepub fn studio_enabled(self, input: bool) -> Self
pub fn studio_enabled(self, input: bool) -> Self
Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.
sourcepub fn set_studio_enabled(self, input: Option<bool>) -> Self
pub fn set_studio_enabled(self, input: Option<bool>) -> Self
Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.
sourcepub fn get_studio_enabled(&self) -> &Option<bool>
pub fn get_studio_enabled(&self) -> &Option<bool>
Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.
sourcepub fn livy_endpoint_enabled(self, input: bool) -> Self
pub fn livy_endpoint_enabled(self, input: bool) -> Self
Enables an Apache Livy endpoint that you can connect to and run interactive jobs.
sourcepub fn set_livy_endpoint_enabled(self, input: Option<bool>) -> Self
pub fn set_livy_endpoint_enabled(self, input: Option<bool>) -> Self
Enables an Apache Livy endpoint that you can connect to and run interactive jobs.
sourcepub fn get_livy_endpoint_enabled(&self) -> &Option<bool>
pub fn get_livy_endpoint_enabled(&self) -> &Option<bool>
Enables an Apache Livy endpoint that you can connect to and run interactive jobs.
sourcepub fn build(self) -> InteractiveConfiguration
pub fn build(self) -> InteractiveConfiguration
Consumes the builder and constructs a InteractiveConfiguration
.
Trait Implementations§
source§impl Clone for InteractiveConfigurationBuilder
impl Clone for InteractiveConfigurationBuilder
source§fn clone(&self) -> InteractiveConfigurationBuilder
fn clone(&self) -> InteractiveConfigurationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for InteractiveConfigurationBuilder
impl Default for InteractiveConfigurationBuilder
source§fn default() -> InteractiveConfigurationBuilder
fn default() -> InteractiveConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InteractiveConfigurationBuilder
impl PartialEq for InteractiveConfigurationBuilder
source§fn eq(&self, other: &InteractiveConfigurationBuilder) -> bool
fn eq(&self, other: &InteractiveConfigurationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InteractiveConfigurationBuilder
Auto Trait Implementations§
impl Freeze for InteractiveConfigurationBuilder
impl RefUnwindSafe for InteractiveConfigurationBuilder
impl Send for InteractiveConfigurationBuilder
impl Sync for InteractiveConfigurationBuilder
impl Unpin for InteractiveConfigurationBuilder
impl UnwindSafe for InteractiveConfigurationBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.