pub struct DescribeFlowLogsResponse {
pub flow_logs: Vec<FlowLog>,
pub next_token: Option<String>,
}Expand description
AWS API: ec2.v1.DescribeFlowLogsResult
Reference: https://docs.aws.amazon.com/AWSEC2/latest/APIReference//DescribeFlowLogsResult
Fields§
§flow_logs: Vec<FlowLog>Information about the flow logs.
next_token: Option<String>The token to request the next page of items. This value is null when there are no more items to return.
Trait Implementations§
Source§impl Clone for DescribeFlowLogsResponse
impl Clone for DescribeFlowLogsResponse
Source§fn clone(&self) -> DescribeFlowLogsResponse
fn clone(&self) -> DescribeFlowLogsResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescribeFlowLogsResponse
impl Debug for DescribeFlowLogsResponse
Source§impl Default for DescribeFlowLogsResponse
impl Default for DescribeFlowLogsResponse
Source§fn default() -> DescribeFlowLogsResponse
fn default() -> DescribeFlowLogsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeFlowLogsResponse
impl<'de> Deserialize<'de> for DescribeFlowLogsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DescribeFlowLogsResponse
impl RefUnwindSafe for DescribeFlowLogsResponse
impl Send for DescribeFlowLogsResponse
impl Sync for DescribeFlowLogsResponse
impl Unpin for DescribeFlowLogsResponse
impl UnsafeUnpin for DescribeFlowLogsResponse
impl UnwindSafe for DescribeFlowLogsResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more