Struct aws_sdk_appflow::types::DataTransferApi
source · #[non_exhaustive]pub struct DataTransferApi {
pub name: Option<String>,
pub type: Option<DataTransferApiType>,
}
Expand description
The API of the connector application that Amazon AppFlow uses to transfer your data.
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.name: Option<String>
The name of the connector application API.
type: Option<DataTransferApiType>
You can specify one of the following types:
- AUTOMATIC
-
The default. Optimizes a flow for datasets that fluctuate in size from small to large. For each flow run, Amazon AppFlow chooses to use the SYNC or ASYNC API type based on the amount of data that the run transfers.
- SYNC
-
A synchronous API. This type of API optimizes a flow for small to medium-sized datasets.
- ASYNC
-
An asynchronous API. This type of API optimizes a flow for large datasets.
Implementations§
source§impl DataTransferApi
impl DataTransferApi
sourcepub fn type(&self) -> Option<&DataTransferApiType>
pub fn type(&self) -> Option<&DataTransferApiType>
You can specify one of the following types:
- AUTOMATIC
-
The default. Optimizes a flow for datasets that fluctuate in size from small to large. For each flow run, Amazon AppFlow chooses to use the SYNC or ASYNC API type based on the amount of data that the run transfers.
- SYNC
-
A synchronous API. This type of API optimizes a flow for small to medium-sized datasets.
- ASYNC
-
An asynchronous API. This type of API optimizes a flow for large datasets.
source§impl DataTransferApi
impl DataTransferApi
sourcepub fn builder() -> DataTransferApiBuilder
pub fn builder() -> DataTransferApiBuilder
Creates a new builder-style object to manufacture DataTransferApi
.
Trait Implementations§
source§impl Clone for DataTransferApi
impl Clone for DataTransferApi
source§fn clone(&self) -> DataTransferApi
fn clone(&self) -> DataTransferApi
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataTransferApi
impl Debug for DataTransferApi
source§impl PartialEq for DataTransferApi
impl PartialEq for DataTransferApi
source§fn eq(&self, other: &DataTransferApi) -> bool
fn eq(&self, other: &DataTransferApi) -> bool
self
and other
values to be equal, and is used
by ==
.