[][src]Struct rusoto_guardduty::GetUsageStatisticsRequest

pub struct GetUsageStatisticsRequest {
    pub detector_id: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub unit: Option<String>,
    pub usage_criteria: UsageCriteria,
    pub usage_statistic_type: String,
}

Fields

detector_id: String

The ID of the detector that specifies the GuardDuty service whose usage statistics you want to retrieve.

max_results: Option<i64>

The maximum number of results to return in the response.

next_token: Option<String>

A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.

unit: Option<String>

The currency unit you would like to view your usage statistics in. Current valid values are USD.

usage_criteria: UsageCriteria

Represents the criteria used for querying usage.

usage_statistic_type: String

The type of usage statistics to retrieve.

Trait Implementations

impl Clone for GetUsageStatisticsRequest[src]

impl Debug for GetUsageStatisticsRequest[src]

impl Default for GetUsageStatisticsRequest[src]

impl PartialEq<GetUsageStatisticsRequest> for GetUsageStatisticsRequest[src]

impl Serialize for GetUsageStatisticsRequest[src]

impl StructuralPartialEq for GetUsageStatisticsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.