[][src]Struct rusoto_ec2::FlowLog

pub struct FlowLog {
    pub creation_time: Option<String>,
    pub deliver_logs_error_message: Option<String>,
    pub deliver_logs_permission_arn: Option<String>,
    pub deliver_logs_status: Option<String>,
    pub flow_log_id: Option<String>,
    pub flow_log_status: Option<String>,
    pub log_destination: Option<String>,
    pub log_destination_type: Option<String>,
    pub log_format: Option<String>,
    pub log_group_name: Option<String>,
    pub max_aggregation_interval: Option<i64>,
    pub resource_id: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub traffic_type: Option<String>,
}

Describes a flow log.

Fields

creation_time: Option<String>

The date and time the flow log was created.

deliver_logs_error_message: Option<String>

Information about the error that occurred. Rate limited indicates that CloudWatch Logs throttling has been applied for one or more network interfaces, or that you've reached the limit on the number of log groups that you can create. Access error indicates that the IAM role associated with the flow log does not have sufficient permissions to publish to CloudWatch Logs. Unknown error indicates an internal error.

deliver_logs_permission_arn: Option<String>

The ARN of the IAM role that posts logs to CloudWatch Logs.

deliver_logs_status: Option<String>

The status of the logs delivery (SUCCESS | FAILED).

flow_log_id: Option<String>

The flow log ID.

flow_log_status: Option<String>

The status of the flow log (ACTIVE).

log_destination: Option<String>

Specifies the destination to which the flow log data is published. Flow log data can be published to an CloudWatch Logs log group or an Amazon S3 bucket. If the flow log publishes to CloudWatch Logs, this element indicates the Amazon Resource Name (ARN) of the CloudWatch Logs log group to which the data is published. If the flow log publishes to Amazon S3, this element indicates the ARN of the Amazon S3 bucket to which the data is published.

log_destination_type: Option<String>

Specifies the type of destination to which the flow log data is published. Flow log data can be published to CloudWatch Logs or Amazon S3.

log_format: Option<String>

The format of the flow log record.

log_group_name: Option<String>

The name of the flow log group.

max_aggregation_interval: Option<i64>

The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record.

When a network interface is attached to a Nitro-based instance, the aggregation interval is always 60 seconds (1 minute) or less, regardless of the specified value.

Valid Values: 60 | 600

resource_id: Option<String>

The ID of the resource on which the flow log was created.

tags: Option<Vec<Tag>>

The tags for the flow log.

traffic_type: Option<String>

The type of traffic captured for the flow log.

Trait Implementations

impl Clone for FlowLog[src]

impl Debug for FlowLog[src]

impl Default for FlowLog[src]

impl PartialEq<FlowLog> for FlowLog[src]

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