Struct aws_sdk_databasemigration::operation::describe_fleet_advisor_databases::DescribeFleetAdvisorDatabasesInput
source · #[non_exhaustive]pub struct DescribeFleetAdvisorDatabasesInput {
pub filters: Option<Vec<Filter>>,
pub max_records: Option<i32>,
pub next_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.filters: Option<Vec<Filter>>
If you specify any of the following filters, the output includes information for only those databases that meet the filter criteria:
-
database-id
– The ID of the database. -
database-name
– The name of the database. -
database-engine
– The name of the database engine. -
server-ip-address
– The IP address of the database server. -
database-ip-address
– The IP address of the database. -
collector-name
– The name of the associated Fleet Advisor collector.
An example is: describe-fleet-advisor-databases --filter Name="database-id",Values="45"
max_records: Option<i32>
Sets the maximum number of records returned in the response.
next_token: Option<String>
If NextToken
is returned by a previous response, there are more results available. The value of NextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Implementations§
source§impl DescribeFleetAdvisorDatabasesInput
impl DescribeFleetAdvisorDatabasesInput
sourcepub fn filters(&self) -> &[Filter]
pub fn filters(&self) -> &[Filter]
If you specify any of the following filters, the output includes information for only those databases that meet the filter criteria:
-
database-id
– The ID of the database. -
database-name
– The name of the database. -
database-engine
– The name of the database engine. -
server-ip-address
– The IP address of the database server. -
database-ip-address
– The IP address of the database. -
collector-name
– The name of the associated Fleet Advisor collector.
An example is: describe-fleet-advisor-databases --filter Name="database-id",Values="45"
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none()
.
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
Sets the maximum number of records returned in the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If NextToken
is returned by a previous response, there are more results available. The value of NextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
source§impl DescribeFleetAdvisorDatabasesInput
impl DescribeFleetAdvisorDatabasesInput
sourcepub fn builder() -> DescribeFleetAdvisorDatabasesInputBuilder
pub fn builder() -> DescribeFleetAdvisorDatabasesInputBuilder
Creates a new builder-style object to manufacture DescribeFleetAdvisorDatabasesInput
.
Trait Implementations§
source§impl Clone for DescribeFleetAdvisorDatabasesInput
impl Clone for DescribeFleetAdvisorDatabasesInput
source§fn clone(&self) -> DescribeFleetAdvisorDatabasesInput
fn clone(&self) -> DescribeFleetAdvisorDatabasesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeFleetAdvisorDatabasesInput
impl PartialEq for DescribeFleetAdvisorDatabasesInput
source§fn eq(&self, other: &DescribeFleetAdvisorDatabasesInput) -> bool
fn eq(&self, other: &DescribeFleetAdvisorDatabasesInput) -> bool
self
and other
values to be equal, and is used
by ==
.