Struct rusoto_inspector::TelemetryMetadata[][src]

pub struct TelemetryMetadata {
    pub count: i64,
    pub data_size: Option<i64>,
    pub message_type: String,
}

The metadata about the Amazon Inspector application data metrics collected by the agent. This data type is used as the response element in the GetTelemetryMetadata action.

Fields

The count of messages that the agent sends to the Amazon Inspector service.

The data size of messages that the agent sends to the Amazon Inspector service.

A specific type of behavioral data that is collected by the agent.

Trait Implementations

impl Default for TelemetryMetadata
[src]

Returns the "default value" for a type. Read more

impl Debug for TelemetryMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for TelemetryMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TelemetryMetadata
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations