Struct aws_sdk_appflow::types::SapoDataPaginationConfig
source · #[non_exhaustive]pub struct SapoDataPaginationConfig {
pub max_page_size: i32,
}
Expand description
Sets the page size for each concurrent process that transfers OData records from your SAP instance. A concurrent process is query that retrieves a batch of records as part of a flow run. Amazon AppFlow can run multiple concurrent processes in parallel to transfer data faster.
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.max_page_size: i32
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application. For transfers of OData records, the maximum page size is 3,000. For transfers of data that comes from an ODP provider, the maximum page size is 10,000.
Implementations§
source§impl SapoDataPaginationConfig
impl SapoDataPaginationConfig
sourcepub fn max_page_size(&self) -> i32
pub fn max_page_size(&self) -> i32
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application. For transfers of OData records, the maximum page size is 3,000. For transfers of data that comes from an ODP provider, the maximum page size is 10,000.
source§impl SapoDataPaginationConfig
impl SapoDataPaginationConfig
sourcepub fn builder() -> SapoDataPaginationConfigBuilder
pub fn builder() -> SapoDataPaginationConfigBuilder
Creates a new builder-style object to manufacture SapoDataPaginationConfig
.
Trait Implementations§
source§impl Clone for SapoDataPaginationConfig
impl Clone for SapoDataPaginationConfig
source§fn clone(&self) -> SapoDataPaginationConfig
fn clone(&self) -> SapoDataPaginationConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SapoDataPaginationConfig
impl Debug for SapoDataPaginationConfig
source§impl PartialEq for SapoDataPaginationConfig
impl PartialEq for SapoDataPaginationConfig
source§fn eq(&self, other: &SapoDataPaginationConfig) -> bool
fn eq(&self, other: &SapoDataPaginationConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SapoDataPaginationConfig
Auto Trait Implementations§
impl Freeze for SapoDataPaginationConfig
impl RefUnwindSafe for SapoDataPaginationConfig
impl Send for SapoDataPaginationConfig
impl Sync for SapoDataPaginationConfig
impl Unpin for SapoDataPaginationConfig
impl UnwindSafe for SapoDataPaginationConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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