Struct aws_sdk_xray::input::GetInsightSummariesInput
source · [−]#[non_exhaustive]pub struct GetInsightSummariesInput {
pub states: Option<Vec<InsightState>>,
pub group_arn: Option<String>,
pub group_name: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub max_results: 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.states: Option<Vec<InsightState>>
The list of insight states.
group_arn: Option<String>
The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided.
group_name: Option<String>
The name of the group. Required if the GroupARN isn't provided.
start_time: Option<DateTime>
The beginning of the time frame in which the insights started. The start time can't be more than 30 days old.
end_time: Option<DateTime>
The end of the time frame in which the insights ended. The end time can't be more than 30 days old.
max_results: Option<i32>
The maximum number of results to display.
next_token: Option<String>
Pagination token.
Implementations
sourceimpl GetInsightSummariesInput
impl GetInsightSummariesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetInsightSummaries, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetInsightSummaries, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetInsightSummaries
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetInsightSummariesInput
sourceimpl GetInsightSummariesInput
impl GetInsightSummariesInput
sourcepub fn states(&self) -> Option<&[InsightState]>
pub fn states(&self) -> Option<&[InsightState]>
The list of insight states.
sourcepub fn group_arn(&self) -> Option<&str>
pub fn group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided.
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
The name of the group. Required if the GroupARN isn't provided.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The beginning of the time frame in which the insights started. The start time can't be more than 30 days old.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The end of the time frame in which the insights ended. The end time can't be more than 30 days old.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to display.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token.
Trait Implementations
sourceimpl Clone for GetInsightSummariesInput
impl Clone for GetInsightSummariesInput
sourcefn clone(&self) -> GetInsightSummariesInput
fn clone(&self) -> GetInsightSummariesInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetInsightSummariesInput
impl Debug for GetInsightSummariesInput
sourceimpl PartialEq<GetInsightSummariesInput> for GetInsightSummariesInput
impl PartialEq<GetInsightSummariesInput> for GetInsightSummariesInput
sourcefn eq(&self, other: &GetInsightSummariesInput) -> bool
fn eq(&self, other: &GetInsightSummariesInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetInsightSummariesInput) -> bool
fn ne(&self, other: &GetInsightSummariesInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GetInsightSummariesInput
Auto Trait Implementations
impl RefUnwindSafe for GetInsightSummariesInput
impl Send for GetInsightSummariesInput
impl Sync for GetInsightSummariesInput
impl Unpin for GetInsightSummariesInput
impl UnwindSafe for GetInsightSummariesInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more