#[non_exhaustive]
pub struct NetworkFirewallInvalidRouteConfigurationViolation {
Show 16 fields pub affected_subnets: Option<Vec<String>>, pub route_table_id: Option<String>, pub is_route_table_used_in_different_az: bool, pub violating_route: Option<Route>, pub current_firewall_subnet_route_table: Option<String>, pub expected_firewall_endpoint: Option<String>, pub actual_firewall_endpoint: Option<String>, pub expected_firewall_subnet_id: Option<String>, pub actual_firewall_subnet_id: Option<String>, pub expected_firewall_subnet_routes: Option<Vec<ExpectedRoute>>, pub actual_firewall_subnet_routes: Option<Vec<Route>>, pub internet_gateway_id: Option<String>, pub current_internet_gateway_route_table: Option<String>, pub expected_internet_gateway_routes: Option<Vec<ExpectedRoute>>, pub actual_internet_gateway_routes: Option<Vec<Route>>, pub vpc_id: Option<String>,
}
Expand description

Violation detail for the improperly configured subnet route. It's possible there is a missing route table route, or a configuration that causes traffic to cross an Availability Zone boundary.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
affected_subnets: Option<Vec<String>>

The subnets that are affected.

route_table_id: Option<String>

The route table ID.

is_route_table_used_in_different_az: bool

Information about whether the route table is used in another Availability Zone.

violating_route: Option<Route>

The route that's in violation.

current_firewall_subnet_route_table: Option<String>

The subnet route table for the current firewall.

expected_firewall_endpoint: Option<String>

The firewall endpoint that's expected.

actual_firewall_endpoint: Option<String>

The actual firewall endpoint.

expected_firewall_subnet_id: Option<String>

The expected subnet ID for the firewall.

actual_firewall_subnet_id: Option<String>

The actual subnet ID for the firewall.

expected_firewall_subnet_routes: Option<Vec<ExpectedRoute>>

The firewall subnet routes that are expected.

actual_firewall_subnet_routes: Option<Vec<Route>>

The actual firewall subnet routes that are expected.

internet_gateway_id: Option<String>

The internet gateway ID.

current_internet_gateway_route_table: Option<String>

The route table for the current internet gateway.

expected_internet_gateway_routes: Option<Vec<ExpectedRoute>>

The expected routes for the internet gateway.

actual_internet_gateway_routes: Option<Vec<Route>>

The actual internet gateway routes.

vpc_id: Option<String>

Information about the VPC ID.

Implementations

The subnets that are affected.

The route table ID.

Information about whether the route table is used in another Availability Zone.

The route that's in violation.

The subnet route table for the current firewall.

The firewall endpoint that's expected.

The actual firewall endpoint.

The expected subnet ID for the firewall.

The actual subnet ID for the firewall.

The firewall subnet routes that are expected.

The actual firewall subnet routes that are expected.

The internet gateway ID.

The route table for the current internet gateway.

The expected routes for the internet gateway.

The actual internet gateway routes.

Information about the VPC ID.

Creates a new builder-style object to manufacture NetworkFirewallInvalidRouteConfigurationViolation

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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