#[non_exhaustive]pub struct CreateDatasetInput { /* private fields */ }Implementations§
source§impl CreateDatasetInput
impl CreateDatasetInput
sourcepub fn flywheel_arn(&self) -> Option<&str>
pub fn flywheel_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the flywheel of the flywheel to receive the data.
sourcepub fn dataset_name(&self) -> Option<&str>
pub fn dataset_name(&self) -> Option<&str>
Name of the dataset.
sourcepub fn dataset_type(&self) -> Option<&DatasetType>
pub fn dataset_type(&self) -> Option<&DatasetType>
The dataset type. You can specify that the data in a dataset is for training the model or for testing the model.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the dataset.
sourcepub fn input_data_config(&self) -> Option<&DatasetInputDataConfig>
pub fn input_data_config(&self) -> Option<&DatasetInputDataConfig>
Information about the input data configuration. The type of input data varies based on the format of the input and whether the data is for a classifier model or an entity recognition model.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.
Tags for the dataset.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateDatasetInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateDatasetInput
impl Send for CreateDatasetInput
impl Sync for CreateDatasetInput
impl Unpin for CreateDatasetInput
impl UnwindSafe for CreateDatasetInput
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
Mutably borrows from an owned value. Read more