Struct aws_sdk_databasemigration::operation::describe_endpoint_settings::DescribeEndpointSettingsInput
source · #[non_exhaustive]pub struct DescribeEndpointSettingsInput {
pub engine_name: Option<String>,
pub max_records: Option<i32>,
pub marker: 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.engine_name: Option<String>
The database engine used for your source or target endpoint.
max_records: Option<i32>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
marker: Option<String>
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
Implementations§
source§impl DescribeEndpointSettingsInput
impl DescribeEndpointSettingsInput
sourcepub fn engine_name(&self) -> Option<&str>
pub fn engine_name(&self) -> Option<&str>
The database engine used for your source or target endpoint.
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
source§impl DescribeEndpointSettingsInput
impl DescribeEndpointSettingsInput
sourcepub fn builder() -> DescribeEndpointSettingsInputBuilder
pub fn builder() -> DescribeEndpointSettingsInputBuilder
Creates a new builder-style object to manufacture DescribeEndpointSettingsInput
.
Trait Implementations§
source§impl Clone for DescribeEndpointSettingsInput
impl Clone for DescribeEndpointSettingsInput
source§fn clone(&self) -> DescribeEndpointSettingsInput
fn clone(&self) -> DescribeEndpointSettingsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeEndpointSettingsInput
impl PartialEq for DescribeEndpointSettingsInput
source§fn eq(&self, other: &DescribeEndpointSettingsInput) -> bool
fn eq(&self, other: &DescribeEndpointSettingsInput) -> bool
self
and other
values to be equal, and is used
by ==
.