Struct aws_sdk_dynamodb::input::ImportTableInput
source · [−]#[non_exhaustive]pub struct ImportTableInput { /* private fields */ }
Implementations
sourceimpl ImportTableInput
impl ImportTableInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<ImportTable, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<ImportTable, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ImportTable
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImportTableInput
.
sourceimpl ImportTableInput
impl ImportTableInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Providing a ClientToken
makes the call to ImportTableInput
idempotent, meaning that multiple identical calls have the same effect as one single call.
A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent.
If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an IdempotentParameterMismatch
exception.
sourcepub fn s3_bucket_source(&self) -> Option<&S3BucketSource>
pub fn s3_bucket_source(&self) -> Option<&S3BucketSource>
The S3 bucket that provides the source for the import.
sourcepub fn input_format(&self) -> Option<&InputFormat>
pub fn input_format(&self) -> Option<&InputFormat>
The format of the source data. Valid values for ImportFormat
are CSV
, DYNAMODB_JSON
or ION
.
sourcepub fn input_format_options(&self) -> Option<&InputFormatOptions>
pub fn input_format_options(&self) -> Option<&InputFormatOptions>
Additional properties that specify how the input is formatted,
sourcepub fn input_compression_type(&self) -> Option<&InputCompressionType>
pub fn input_compression_type(&self) -> Option<&InputCompressionType>
Type of compression to be used on the input coming from the imported table.
sourcepub fn table_creation_parameters(&self) -> Option<&TableCreationParameters>
pub fn table_creation_parameters(&self) -> Option<&TableCreationParameters>
Parameters for the table to import the data into.
Trait Implementations
sourceimpl Clone for ImportTableInput
impl Clone for ImportTableInput
sourcefn clone(&self) -> ImportTableInput
fn clone(&self) -> ImportTableInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ImportTableInput
impl Debug for ImportTableInput
sourceimpl PartialEq<ImportTableInput> for ImportTableInput
impl PartialEq<ImportTableInput> for ImportTableInput
sourcefn eq(&self, other: &ImportTableInput) -> bool
fn eq(&self, other: &ImportTableInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for ImportTableInput
Auto Trait Implementations
impl RefUnwindSafe for ImportTableInput
impl Send for ImportTableInput
impl Sync for ImportTableInput
impl Unpin for ImportTableInput
impl UnwindSafe for ImportTableInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more