pub struct DeleteFlowLogsRequest {
pub dry_run: Option<bool>,
pub flow_log_ids: Vec<String>,
}Fields§
§dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
flow_log_ids: Vec<String>One or more flow log IDs.
Constraint: Maximum of 1000 flow log IDs.
Trait Implementations§
Source§impl Clone for DeleteFlowLogsRequest
impl Clone for DeleteFlowLogsRequest
Source§fn clone(&self) -> DeleteFlowLogsRequest
fn clone(&self) -> DeleteFlowLogsRequest
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 DeleteFlowLogsRequest
impl Debug for DeleteFlowLogsRequest
Source§impl Default for DeleteFlowLogsRequest
impl Default for DeleteFlowLogsRequest
Source§fn default() -> DeleteFlowLogsRequest
fn default() -> DeleteFlowLogsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteFlowLogsRequest
impl PartialEq for DeleteFlowLogsRequest
impl StructuralPartialEq for DeleteFlowLogsRequest
Auto Trait Implementations§
impl Freeze for DeleteFlowLogsRequest
impl RefUnwindSafe for DeleteFlowLogsRequest
impl Send for DeleteFlowLogsRequest
impl Sync for DeleteFlowLogsRequest
impl Unpin for DeleteFlowLogsRequest
impl UnwindSafe for DeleteFlowLogsRequest
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