[][src]Struct rusoto_guardduty::Action

pub struct Action {
    pub action_type: Option<String>,
    pub aws_api_call_action: Option<AwsApiCallAction>,
    pub dns_request_action: Option<DnsRequestAction>,
    pub network_connection_action: Option<NetworkConnectionAction>,
    pub port_probe_action: Option<PortProbeAction>,
}

Contains information about actions.

Fields

action_type: Option<String>

The GuardDuty finding activity type.

aws_api_call_action: Option<AwsApiCallAction>

Information about the AWS_API_CALL action described in this finding.

dns_request_action: Option<DnsRequestAction>

Information about the DNS_REQUEST action described in this finding.

network_connection_action: Option<NetworkConnectionAction>

Information about the NETWORK_CONNECTION action described in this finding.

port_probe_action: Option<PortProbeAction>

Information about the PORT_PROBE action described in this finding.

Trait Implementations

impl Clone for Action[src]

impl Debug for Action[src]

impl Default for Action[src]

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

impl PartialEq<Action> for Action[src]

impl StructuralPartialEq for Action[src]

Auto Trait Implementations

impl RefUnwindSafe for Action

impl Send for Action

impl Sync for Action

impl Unpin for Action

impl UnwindSafe for Action

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, 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> Sealed<T> for T where
    T: ?Sized

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.