[][src]Struct rusoto_xray::GroupSummary

pub struct GroupSummary {
    pub filter_expression: Option<String>,
    pub group_arn: Option<String>,
    pub group_name: Option<String>,
    pub insights_configuration: Option<InsightsConfiguration>,
}

Details for a group without metadata.

Fields

filter_expression: Option<String>

The filter expression defining the parameters to include traces.

group_arn: Option<String>

The ARN of the group generated based on the GroupName.

group_name: Option<String>

The unique case-sensitive name of the group.

insights_configuration: Option<InsightsConfiguration>

The structure containing configurations related to insights.

  • The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.

  • The NotificationsEnabled boolean can be set to true to enable insights notifications. Notifications can only be enabled on a group with InsightsEnabled set to true.

Trait Implementations

impl Clone for GroupSummary[src]

impl Debug for GroupSummary[src]

impl Default for GroupSummary[src]

impl<'de> Deserialize<'de> for GroupSummary[src]

impl PartialEq<GroupSummary> for GroupSummary[src]

impl StructuralPartialEq for GroupSummary[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.