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
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.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) -> Option<&[InstanceEventWindowTimeRange]>
pub fn time_ranges(&self) -> Option<&[InstanceEventWindowTimeRange]>
One or more time ranges defined for the event window.
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.
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
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 InstanceEventWindow
impl Debug for InstanceEventWindow
source§impl PartialEq<InstanceEventWindow> for InstanceEventWindow
impl PartialEq<InstanceEventWindow> for InstanceEventWindow
source§fn eq(&self, other: &InstanceEventWindow) -> bool
fn eq(&self, other: &InstanceEventWindow) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InstanceEventWindow
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more