Struct aws_sdk_ec2::types::InstanceEventWindow
source · #[non_exhaustive]pub struct InstanceEventWindow {
pub instance_event_window_id: Option<String>,
pub time_ranges: Option<Vec<InstanceEventWindowTimeRange>>,
pub name: Option<String>,
pub cron_expression: Option<String>,
pub association_target: Option<InstanceEventWindowAssociationTarget>,
pub state: Option<InstanceEventWindowState>,
pub tags: Option<Vec<Tag>>,
}
Expand description
The event window.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.instance_event_window_id: Option<String>
The ID of the event window.
time_ranges: Option<Vec<InstanceEventWindowTimeRange>>
One or more time ranges defined for the event window.
name: Option<String>
The name of the event window.
cron_expression: Option<String>
The cron expression defined for the event window.
association_target: Option<InstanceEventWindowAssociationTarget>
One or more targets associated with the event window.
state: Option<InstanceEventWindowState>
The current state of the event window.
The instance tags associated with the event window.
Implementations§
source§impl InstanceEventWindow
impl InstanceEventWindow
sourcepub fn instance_event_window_id(&self) -> Option<&str>
pub fn instance_event_window_id(&self) -> Option<&str>
The ID of the event window.
sourcepub fn time_ranges(&self) -> &[InstanceEventWindowTimeRange]
pub fn time_ranges(&self) -> &[InstanceEventWindowTimeRange]
One or more time ranges defined for the event window.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .time_ranges.is_none()
.
sourcepub fn cron_expression(&self) -> Option<&str>
pub fn cron_expression(&self) -> Option<&str>
The cron expression defined for the event window.
sourcepub fn association_target(
&self
) -> Option<&InstanceEventWindowAssociationTarget>
pub fn association_target( &self ) -> Option<&InstanceEventWindowAssociationTarget>
One or more targets associated with the event window.
sourcepub fn state(&self) -> Option<&InstanceEventWindowState>
pub fn state(&self) -> Option<&InstanceEventWindowState>
The current state of the event window.
The instance tags associated with the event window.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl InstanceEventWindow
impl InstanceEventWindow
sourcepub fn builder() -> InstanceEventWindowBuilder
pub fn builder() -> InstanceEventWindowBuilder
Creates a new builder-style object to manufacture InstanceEventWindow
.
Trait Implementations§
source§impl Clone for InstanceEventWindow
impl Clone for InstanceEventWindow
source§fn clone(&self) -> InstanceEventWindow
fn clone(&self) -> InstanceEventWindow
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InstanceEventWindow
impl Debug for InstanceEventWindow
source§impl PartialEq for InstanceEventWindow
impl PartialEq for InstanceEventWindow
source§fn eq(&self, other: &InstanceEventWindow) -> bool
fn eq(&self, other: &InstanceEventWindow) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InstanceEventWindow
Auto Trait Implementations§
impl Freeze for InstanceEventWindow
impl RefUnwindSafe for InstanceEventWindow
impl Send for InstanceEventWindow
impl Sync for InstanceEventWindow
impl Unpin for InstanceEventWindow
impl UnwindSafe for InstanceEventWindow
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more