[][src]Struct rusoto_guardduty::AwsApiCallAction

pub struct AwsApiCallAction {
    pub api: Option<String>,
    pub caller_type: Option<String>,
    pub domain_details: Option<DomainDetails>,
    pub error_code: Option<String>,
    pub remote_ip_details: Option<RemoteIpDetails>,
    pub service_name: Option<String>,
}

Contains information about the API action.

Fields

api: Option<String>

The AWS API name.

caller_type: Option<String>

The AWS API caller type.

domain_details: Option<DomainDetails>

The domain information for the AWS API call.

error_code: Option<String>

The error code of the failed AWS API action.

remote_ip_details: Option<RemoteIpDetails>

The remote IP information of the connection that initiated the AWS API call.

service_name: Option<String>

The AWS service name whose API was invoked.

Trait Implementations

impl Clone for AwsApiCallAction[src]

impl Debug for AwsApiCallAction[src]

impl Default for AwsApiCallAction[src]

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

impl PartialEq<AwsApiCallAction> for AwsApiCallAction[src]

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