Struct aws_sdk_iotanalytics::types::DatasetAction
source · #[non_exhaustive]pub struct DatasetAction {
pub action_name: Option<String>,
pub query_action: Option<SqlQueryDatasetAction>,
pub container_action: Option<ContainerDatasetAction>,
}
Expand description
A DatasetAction
object that specifies how dataset contents are automatically created.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.action_name: Option<String>
The name of the dataset action by which dataset contents are automatically created.
query_action: Option<SqlQueryDatasetAction>
An SqlQueryDatasetAction
object that uses an SQL query to automatically create dataset contents.
container_action: 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.
Implementations§
source§impl DatasetAction
impl DatasetAction
sourcepub fn action_name(&self) -> Option<&str>
pub fn action_name(&self) -> Option<&str>
The name of the dataset action by which dataset contents are automatically created.
sourcepub fn query_action(&self) -> Option<&SqlQueryDatasetAction>
pub fn query_action(&self) -> Option<&SqlQueryDatasetAction>
An SqlQueryDatasetAction
object that uses an SQL query to automatically create dataset contents.
sourcepub fn container_action(&self) -> Option<&ContainerDatasetAction>
pub fn 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.
source§impl DatasetAction
impl DatasetAction
sourcepub fn builder() -> DatasetActionBuilder
pub fn builder() -> DatasetActionBuilder
Creates a new builder-style object to manufacture DatasetAction
.
Trait Implementations§
source§impl Clone for DatasetAction
impl Clone for DatasetAction
source§fn clone(&self) -> DatasetAction
fn clone(&self) -> DatasetAction
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DatasetAction
impl Debug for DatasetAction
source§impl PartialEq for DatasetAction
impl PartialEq for DatasetAction
source§fn eq(&self, other: &DatasetAction) -> bool
fn eq(&self, other: &DatasetAction) -> bool
self
and other
values to be equal, and is used
by ==
.