pub struct DescribeFlowLogsRequest {
pub flow_log_ids: Vec<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Expand description
AWS API: ec2.v1.DescribeFlowLogsRequest
Reference: https://docs.aws.amazon.com/AWSEC2/latest/APIReference//DescribeFlowLogsRequest
§Coverage
3 of 5 fields included. Omitted fields:
DryRun— not selected in manifestFilter— not selected in manifest
Fields§
§flow_log_ids: Vec<String>One or more flow log IDs. Constraint: Maximum of 1000 flow log IDs.
next_token: Option<String>The token to request the next page of items. Pagination continues from the end of the items returned by the previous request.
max_results: Option<i32>The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.
Trait Implementations§
Source§impl Clone for DescribeFlowLogsRequest
impl Clone for DescribeFlowLogsRequest
Source§fn clone(&self) -> DescribeFlowLogsRequest
fn clone(&self) -> DescribeFlowLogsRequest
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 DescribeFlowLogsRequest
impl Debug for DescribeFlowLogsRequest
Source§impl Default for DescribeFlowLogsRequest
impl Default for DescribeFlowLogsRequest
Source§fn default() -> DescribeFlowLogsRequest
fn default() -> DescribeFlowLogsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeFlowLogsRequest
impl<'de> Deserialize<'de> for DescribeFlowLogsRequest
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 DescribeFlowLogsRequest
impl RefUnwindSafe for DescribeFlowLogsRequest
impl Send for DescribeFlowLogsRequest
impl Sync for DescribeFlowLogsRequest
impl Unpin for DescribeFlowLogsRequest
impl UnsafeUnpin for DescribeFlowLogsRequest
impl UnwindSafe for DescribeFlowLogsRequest
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