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 ==
.impl StructuralPartialEq for DatasetAction
Auto Trait Implementations§
impl Freeze for DatasetAction
impl RefUnwindSafe for DatasetAction
impl Send for DatasetAction
impl Sync for DatasetAction
impl Unpin for DatasetAction
impl UnwindSafe for DatasetAction
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