#[non_exhaustive]pub struct GetAwsNetworkPerformanceDataInput { /* private fields */ }
Implementations§
source§impl GetAwsNetworkPerformanceDataInput
impl GetAwsNetworkPerformanceDataInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetAwsNetworkPerformanceData, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetAwsNetworkPerformanceData, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetAwsNetworkPerformanceData
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetAwsNetworkPerformanceDataInput
.
source§impl GetAwsNetworkPerformanceDataInput
impl GetAwsNetworkPerformanceDataInput
sourcepub fn data_queries(&self) -> Option<&[DataQuery]>
pub fn data_queries(&self) -> Option<&[DataQuery]>
A list of network performance data queries.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The starting time for the performance data request. The starting time must be formatted as yyyy-mm-ddThh:mm:ss
. For example, 2022-06-10T12:00:00.000Z
.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The ending time for the performance data request. The end time must be formatted as yyyy-mm-ddThh:mm:ss
. For example, 2022-06-12T12:00:00.000Z
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next page of results.
Trait Implementations§
source§impl Clone for GetAwsNetworkPerformanceDataInput
impl Clone for GetAwsNetworkPerformanceDataInput
source§fn clone(&self) -> GetAwsNetworkPerformanceDataInput
fn clone(&self) -> GetAwsNetworkPerformanceDataInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<GetAwsNetworkPerformanceDataInput> for GetAwsNetworkPerformanceDataInput
impl PartialEq<GetAwsNetworkPerformanceDataInput> for GetAwsNetworkPerformanceDataInput
source§fn eq(&self, other: &GetAwsNetworkPerformanceDataInput) -> bool
fn eq(&self, other: &GetAwsNetworkPerformanceDataInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.