[][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 resource_id: Option<String>,
    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.

resource_id: Option<String>

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

traffic_type: Option<String>

The type of traffic captured for the flow log.

Trait Implementations

impl Clone for FlowLog[src]

impl Default for FlowLog[src]

impl PartialEq<FlowLog> for FlowLog[src]

impl Debug for FlowLog[src]

Auto Trait Implementations

impl Send for FlowLog

impl Sync for FlowLog

impl Unpin for FlowLog

impl UnwindSafe for FlowLog

impl RefUnwindSafe for FlowLog

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self