Struct aws_sdk_iotanalytics::types::builders::DatasetActionBuilder
source · #[non_exhaustive]pub struct DatasetActionBuilder { /* private fields */ }Expand description
A builder for DatasetAction.
Implementations§
source§impl DatasetActionBuilder
impl DatasetActionBuilder
sourcepub fn action_name(self, input: impl Into<String>) -> Self
pub fn action_name(self, input: impl Into<String>) -> Self
The name of the dataset action by which dataset contents are automatically created.
sourcepub fn set_action_name(self, input: Option<String>) -> Self
pub fn set_action_name(self, input: Option<String>) -> Self
The name of the dataset action by which dataset contents are automatically created.
sourcepub fn get_action_name(&self) -> &Option<String>
pub fn get_action_name(&self) -> &Option<String>
The name of the dataset action by which dataset contents are automatically created.
sourcepub fn query_action(self, input: SqlQueryDatasetAction) -> Self
pub fn query_action(self, input: SqlQueryDatasetAction) -> Self
An SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents.
sourcepub fn set_query_action(self, input: Option<SqlQueryDatasetAction>) -> Self
pub fn set_query_action(self, input: Option<SqlQueryDatasetAction>) -> Self
An SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents.
sourcepub fn get_query_action(&self) -> &Option<SqlQueryDatasetAction>
pub fn get_query_action(&self) -> &Option<SqlQueryDatasetAction>
An SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents.
sourcepub fn container_action(self, input: ContainerDatasetAction) -> Self
pub fn container_action(self, input: ContainerDatasetAction) -> Self
Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.
sourcepub fn set_container_action(self, input: Option<ContainerDatasetAction>) -> Self
pub fn set_container_action(self, input: Option<ContainerDatasetAction>) -> Self
Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.
sourcepub fn get_container_action(&self) -> &Option<ContainerDatasetAction>
pub fn get_container_action(&self) -> &Option<ContainerDatasetAction>
Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.
sourcepub fn build(self) -> DatasetAction
pub fn build(self) -> DatasetAction
Consumes the builder and constructs a DatasetAction.
Trait Implementations§
source§impl Clone for DatasetActionBuilder
impl Clone for DatasetActionBuilder
source§fn clone(&self) -> DatasetActionBuilder
fn clone(&self) -> DatasetActionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DatasetActionBuilder
impl Debug for DatasetActionBuilder
source§impl Default for DatasetActionBuilder
impl Default for DatasetActionBuilder
source§fn default() -> DatasetActionBuilder
fn default() -> DatasetActionBuilder
source§impl PartialEq for DatasetActionBuilder
impl PartialEq for DatasetActionBuilder
source§fn eq(&self, other: &DatasetActionBuilder) -> bool
fn eq(&self, other: &DatasetActionBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatasetActionBuilder
Auto Trait Implementations§
impl Freeze for DatasetActionBuilder
impl RefUnwindSafe for DatasetActionBuilder
impl Send for DatasetActionBuilder
impl Sync for DatasetActionBuilder
impl Unpin for DatasetActionBuilder
impl UnwindSafe for DatasetActionBuilder
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
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>
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>
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 more