[][src]Struct rusoto_xray::UpdateGroupRequest

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

Fields

filter_expression: Option<String>

The updated filter expression defining criteria by which to group traces.

group_arn: Option<String>

The ARN that was generated upon creation.

group_name: Option<String>

The 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 NotifcationsEnabled boolean can be set to true to enable insights notifications for the group. Notifications can only be enabled on a group with InsightsEnabled set to true.

Trait Implementations

impl Clone for UpdateGroupRequest[src]

impl Debug for UpdateGroupRequest[src]

impl Default for UpdateGroupRequest[src]

impl PartialEq<UpdateGroupRequest> for UpdateGroupRequest[src]

impl Serialize for UpdateGroupRequest[src]

impl StructuralPartialEq for UpdateGroupRequest[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.