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 ==
.