Struct aws_sdk_glue::operation::stop_session::StopSessionInput
source · #[non_exhaustive]pub struct StopSessionInput {
pub id: Option<String>,
pub request_origin: Option<String>,
}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.id: Option<String>The ID of the session to be stopped.
request_origin: Option<String>The origin of the request.
Implementations§
source§impl StopSessionInput
impl StopSessionInput
sourcepub fn builder() -> StopSessionInputBuilder
pub fn builder() -> StopSessionInputBuilder
Creates a new builder-style object to manufacture StopSessionInput.
Trait Implementations§
source§impl Clone for StopSessionInput
impl Clone for StopSessionInput
source§fn clone(&self) -> StopSessionInput
fn clone(&self) -> StopSessionInput
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 StopSessionInput
impl Debug for StopSessionInput
source§impl PartialEq<StopSessionInput> for StopSessionInput
impl PartialEq<StopSessionInput> for StopSessionInput
source§fn eq(&self, other: &StopSessionInput) -> bool
fn eq(&self, other: &StopSessionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StopSessionInput
Auto Trait Implementations§
impl RefUnwindSafe for StopSessionInput
impl Send for StopSessionInput
impl Sync for StopSessionInput
impl Unpin for StopSessionInput
impl UnwindSafe for StopSessionInput
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