#[non_exhaustive]pub struct CreateDatasetInput { /* private fields */ }
Implementations§
source§impl CreateDatasetInput
impl CreateDatasetInput
sourcepub fn dataset_name(&self) -> Option<&str>
pub fn dataset_name(&self) -> Option<&str>
The name of the dataset.
sourcepub fn actions(&self) -> Option<&[DatasetAction]>
pub fn actions(&self) -> Option<&[DatasetAction]>
A list of actions that create the dataset contents.
sourcepub fn triggers(&self) -> Option<&[DatasetTrigger]>
pub fn triggers(&self) -> Option<&[DatasetTrigger]>
A list of triggers. A trigger causes dataset contents to be populated at a specified time interval or when another dataset's contents are created. The list of triggers can be empty or contain up to five DataSetTrigger
objects.
sourcepub fn content_delivery_rules(&self) -> Option<&[DatasetContentDeliveryRule]>
pub fn content_delivery_rules(&self) -> Option<&[DatasetContentDeliveryRule]>
When dataset contents are created, they are delivered to destinations specified here.
sourcepub fn retention_period(&self) -> Option<&RetentionPeriod>
pub fn retention_period(&self) -> Option<&RetentionPeriod>
Optional. How long, in days, versions of dataset contents are kept for the dataset. If not specified or set to null
, versions of dataset contents are retained for at most 90 days. The number of versions of dataset contents retained is determined by the versioningConfiguration
parameter. For more information, see Keeping Multiple Versions of IoT Analytics datasets in the IoT Analytics User Guide.
sourcepub fn versioning_configuration(&self) -> Option<&VersioningConfiguration>
pub fn versioning_configuration(&self) -> Option<&VersioningConfiguration>
Optional. How many versions of dataset contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the retentionPeriod
parameter. For more information, see Keeping Multiple Versions of IoT Analytics datasets in the IoT Analytics User Guide.
Metadata which can be used to manage the dataset.
sourcepub fn late_data_rules(&self) -> Option<&[LateDataRule]>
pub fn late_data_rules(&self) -> Option<&[LateDataRule]>
A list of data rules that send notifications to CloudWatch, when data arrives late. To specify lateDataRules
, the dataset must use a DeltaTimer filter.
source§impl CreateDatasetInput
impl CreateDatasetInput
sourcepub fn builder() -> CreateDatasetInputBuilder
pub fn builder() -> CreateDatasetInputBuilder
Creates a new builder-style object to manufacture CreateDatasetInput
.
source§impl CreateDatasetInput
impl CreateDatasetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDataset, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateDataset, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateDataset
>
Trait Implementations§
source§impl Clone for CreateDatasetInput
impl Clone for CreateDatasetInput
source§fn clone(&self) -> CreateDatasetInput
fn clone(&self) -> CreateDatasetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDatasetInput
impl Debug for CreateDatasetInput
source§impl PartialEq<CreateDatasetInput> for CreateDatasetInput
impl PartialEq<CreateDatasetInput> for CreateDatasetInput
source§fn eq(&self, other: &CreateDatasetInput) -> bool
fn eq(&self, other: &CreateDatasetInput) -> bool
self
and other
values to be equal, and is used
by ==
.