Struct aws_sdk_emrserverless::types::builders::HiveBuilder
source · #[non_exhaustive]pub struct HiveBuilder { /* private fields */ }
Expand description
A builder for Hive
.
Implementations§
source§impl HiveBuilder
impl HiveBuilder
sourcepub fn query(self, input: impl Into<String>) -> Self
pub fn query(self, input: impl Into<String>) -> Self
The query for the Hive job run.
This field is required.sourcepub fn init_query_file(self, input: impl Into<String>) -> Self
pub fn init_query_file(self, input: impl Into<String>) -> Self
The query file for the Hive job run.
sourcepub fn set_init_query_file(self, input: Option<String>) -> Self
pub fn set_init_query_file(self, input: Option<String>) -> Self
The query file for the Hive job run.
sourcepub fn get_init_query_file(&self) -> &Option<String>
pub fn get_init_query_file(&self) -> &Option<String>
The query file for the Hive job run.
sourcepub fn parameters(self, input: impl Into<String>) -> Self
pub fn parameters(self, input: impl Into<String>) -> Self
The parameters for the Hive job run.
sourcepub fn set_parameters(self, input: Option<String>) -> Self
pub fn set_parameters(self, input: Option<String>) -> Self
The parameters for the Hive job run.
sourcepub fn get_parameters(&self) -> &Option<String>
pub fn get_parameters(&self) -> &Option<String>
The parameters for the Hive job run.
Trait Implementations§
source§impl Clone for HiveBuilder
impl Clone for HiveBuilder
source§fn clone(&self) -> HiveBuilder
fn clone(&self) -> HiveBuilder
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 Debug for HiveBuilder
impl Debug for HiveBuilder
source§impl Default for HiveBuilder
impl Default for HiveBuilder
source§fn default() -> HiveBuilder
fn default() -> HiveBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for HiveBuilder
impl PartialEq for HiveBuilder
source§fn eq(&self, other: &HiveBuilder) -> bool
fn eq(&self, other: &HiveBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HiveBuilder
Auto Trait Implementations§
impl Freeze for HiveBuilder
impl RefUnwindSafe for HiveBuilder
impl Send for HiveBuilder
impl Sync for HiveBuilder
impl Unpin for HiveBuilder
impl UnwindSafe for HiveBuilder
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.