Struct aws_sdk_personalize::operation::create_dataset_import_job::CreateDatasetImportJobInput
source · #[non_exhaustive]pub struct CreateDatasetImportJobInput {
pub job_name: Option<String>,
pub dataset_arn: Option<String>,
pub data_source: Option<DataSource>,
pub role_arn: Option<String>,
pub tags: Option<Vec<Tag>>,
pub import_mode: Option<ImportMode>,
pub publish_attribution_metrics_to_s3: Option<bool>,
}
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.job_name: Option<String>
The name for the dataset import job.
dataset_arn: Option<String>
The ARN of the dataset that receives the imported data.
data_source: Option<DataSource>
The Amazon S3 bucket that contains the training data to import.
role_arn: Option<String>
The ARN of the IAM role that has permissions to read from the Amazon S3 data source.
A list of tags to apply to the dataset import job.
import_mode: Option<ImportMode>
Specify how to add the new records to an existing dataset. The default import mode is FULL
. If you haven't imported bulk records into the dataset previously, you can only specify FULL
.
-
Specify
FULL
to overwrite all existing bulk data in your dataset. Data you imported individually is not replaced. -
Specify
INCREMENTAL
to append the new records to the existing data in your dataset. Amazon Personalize replaces any record with the same ID with the new one.
publish_attribution_metrics_to_s3: Option<bool>
If you created a metric attribution, specify whether to publish metrics for this import job to Amazon S3
Implementations§
source§impl CreateDatasetImportJobInput
impl CreateDatasetImportJobInput
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The ARN of the dataset that receives the imported data.
sourcepub fn data_source(&self) -> Option<&DataSource>
pub fn data_source(&self) -> Option<&DataSource>
The Amazon S3 bucket that contains the training data to import.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The ARN of the IAM role that has permissions to read from the Amazon S3 data source.
A list of tags to apply to the dataset import job.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
sourcepub fn import_mode(&self) -> Option<&ImportMode>
pub fn import_mode(&self) -> Option<&ImportMode>
Specify how to add the new records to an existing dataset. The default import mode is FULL
. If you haven't imported bulk records into the dataset previously, you can only specify FULL
.
-
Specify
FULL
to overwrite all existing bulk data in your dataset. Data you imported individually is not replaced. -
Specify
INCREMENTAL
to append the new records to the existing data in your dataset. Amazon Personalize replaces any record with the same ID with the new one.
sourcepub fn publish_attribution_metrics_to_s3(&self) -> Option<bool>
pub fn publish_attribution_metrics_to_s3(&self) -> Option<bool>
If you created a metric attribution, specify whether to publish metrics for this import job to Amazon S3
source§impl CreateDatasetImportJobInput
impl CreateDatasetImportJobInput
sourcepub fn builder() -> CreateDatasetImportJobInputBuilder
pub fn builder() -> CreateDatasetImportJobInputBuilder
Creates a new builder-style object to manufacture CreateDatasetImportJobInput
.
Trait Implementations§
source§impl Clone for CreateDatasetImportJobInput
impl Clone for CreateDatasetImportJobInput
source§fn clone(&self) -> CreateDatasetImportJobInput
fn clone(&self) -> CreateDatasetImportJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDatasetImportJobInput
impl Debug for CreateDatasetImportJobInput
source§impl PartialEq for CreateDatasetImportJobInput
impl PartialEq for CreateDatasetImportJobInput
source§fn eq(&self, other: &CreateDatasetImportJobInput) -> bool
fn eq(&self, other: &CreateDatasetImportJobInput) -> bool
self
and other
values to be equal, and is used
by ==
.