Struct aws_sdk_scheduler::operation::get_schedule::GetScheduleInput
source · #[non_exhaustive]pub struct GetScheduleInput {
pub name: Option<String>,
pub group_name: 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.name: Option<String>The name of the schedule to retrieve.
group_name: Option<String>The name of the schedule group associated with this schedule. If you omit this, EventBridge Scheduler assumes that the schedule is associated with the default group.
Implementations§
source§impl GetScheduleInput
impl GetScheduleInput
sourcepub fn builder() -> GetScheduleInputBuilder
pub fn builder() -> GetScheduleInputBuilder
Creates a new builder-style object to manufacture GetScheduleInput.
Trait Implementations§
source§impl Clone for GetScheduleInput
impl Clone for GetScheduleInput
source§fn clone(&self) -> GetScheduleInput
fn clone(&self) -> GetScheduleInput
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 GetScheduleInput
impl Debug for GetScheduleInput
source§impl PartialEq for GetScheduleInput
impl PartialEq for GetScheduleInput
source§fn eq(&self, other: &GetScheduleInput) -> bool
fn eq(&self, other: &GetScheduleInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetScheduleInput
Auto Trait Implementations§
impl RefUnwindSafe for GetScheduleInput
impl Send for GetScheduleInput
impl Sync for GetScheduleInput
impl Unpin for GetScheduleInput
impl UnwindSafe for GetScheduleInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.