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 ==
.