#[non_exhaustive]pub struct CreateDataSetImportTaskInput {
pub application_id: Option<String>,
pub import_config: Option<DataSetImportConfig>,
pub client_token: Option<String>,
}
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.application_id: Option<String>
The unique identifier of the application for which you want to import data sets.
import_config: Option<DataSetImportConfig>
The data set import task configuration.
client_token: Option<String>
Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a data set import. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.
Implementations§
source§impl CreateDataSetImportTaskInput
impl CreateDataSetImportTaskInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The unique identifier of the application for which you want to import data sets.
sourcepub fn import_config(&self) -> Option<&DataSetImportConfig>
pub fn import_config(&self) -> Option<&DataSetImportConfig>
The data set import task configuration.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a data set import. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.
source§impl CreateDataSetImportTaskInput
impl CreateDataSetImportTaskInput
sourcepub fn builder() -> CreateDataSetImportTaskInputBuilder
pub fn builder() -> CreateDataSetImportTaskInputBuilder
Creates a new builder-style object to manufacture CreateDataSetImportTaskInput
.
Trait Implementations§
source§impl Clone for CreateDataSetImportTaskInput
impl Clone for CreateDataSetImportTaskInput
source§fn clone(&self) -> CreateDataSetImportTaskInput
fn clone(&self) -> CreateDataSetImportTaskInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDataSetImportTaskInput
impl Debug for CreateDataSetImportTaskInput
source§impl PartialEq for CreateDataSetImportTaskInput
impl PartialEq for CreateDataSetImportTaskInput
source§fn eq(&self, other: &CreateDataSetImportTaskInput) -> bool
fn eq(&self, other: &CreateDataSetImportTaskInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateDataSetImportTaskInput
Auto Trait Implementations§
impl Freeze for CreateDataSetImportTaskInput
impl RefUnwindSafe for CreateDataSetImportTaskInput
impl Send for CreateDataSetImportTaskInput
impl Sync for CreateDataSetImportTaskInput
impl Unpin for CreateDataSetImportTaskInput
impl UnwindSafe for CreateDataSetImportTaskInput
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