Struct aws_sdk_ec2::model::FlowLog [−][src]
#[non_exhaustive]pub struct FlowLog {Show 15 fields
pub creation_time: Option<Instant>,
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_group_name: Option<String>,
pub resource_id: Option<String>,
pub traffic_type: Option<TrafficType>,
pub log_destination_type: Option<LogDestinationType>,
pub log_destination: Option<String>,
pub log_format: Option<String>,
pub tags: Option<Vec<Tag>>,
pub max_aggregation_interval: Option<i32>,
pub destination_options: Option<DestinationOptionsResponse>,
}
Expand description
Describes a flow log.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.creation_time: Option<Instant>
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_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<TrafficType>
The type of traffic captured for the flow log.
log_destination_type: Option<LogDestinationType>
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_destination: Option<String>
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_format: Option<String>
The format of the flow log record.
The tags for the flow log.
max_aggregation_interval: Option<i32>
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
destination_options: Option<DestinationOptionsResponse>
The destination options.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FlowLog
impl UnwindSafe for FlowLog
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more