[][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_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_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 PartialEq<FlowLog> for FlowLog[src]

impl Default for FlowLog[src]

impl Clone for FlowLog[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FlowLog[src]

Auto Trait Implementations

impl Send for FlowLog

impl Sync for FlowLog

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self