pub struct GetConsoleOutputRequest {
pub dry_run: Option<bool>,
pub instance_id: String,
pub latest: Option<bool>,
}
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
.
instance_id: String
The ID of the instance.
latest: Option<bool>
When enabled, retrieves the latest console output for the instance.
Default: disabled (false
)
Trait Implementations§
Source§impl Clone for GetConsoleOutputRequest
impl Clone for GetConsoleOutputRequest
Source§fn clone(&self) -> GetConsoleOutputRequest
fn clone(&self) -> GetConsoleOutputRequest
Returns a copy 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 GetConsoleOutputRequest
impl Debug for GetConsoleOutputRequest
Source§impl Default for GetConsoleOutputRequest
impl Default for GetConsoleOutputRequest
Source§fn default() -> GetConsoleOutputRequest
fn default() -> GetConsoleOutputRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetConsoleOutputRequest
impl PartialEq for GetConsoleOutputRequest
impl StructuralPartialEq for GetConsoleOutputRequest
Auto Trait Implementations§
impl Freeze for GetConsoleOutputRequest
impl RefUnwindSafe for GetConsoleOutputRequest
impl Send for GetConsoleOutputRequest
impl Sync for GetConsoleOutputRequest
impl Unpin for GetConsoleOutputRequest
impl UnwindSafe for GetConsoleOutputRequest
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