#[non_exhaustive]pub struct MaintenanceWindowIdentityForTarget {
pub window_id: Option<String>,
pub name: Option<String>,
}
Expand description
The maintenance window to which the specified target belongs.
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.window_id: Option<String>
The ID of the maintenance window.
name: Option<String>
The name of the maintenance window.
Implementations§
source§impl MaintenanceWindowIdentityForTarget
impl MaintenanceWindowIdentityForTarget
sourcepub fn builder() -> MaintenanceWindowIdentityForTargetBuilder
pub fn builder() -> MaintenanceWindowIdentityForTargetBuilder
Creates a new builder-style object to manufacture MaintenanceWindowIdentityForTarget
.
Trait Implementations§
source§impl Clone for MaintenanceWindowIdentityForTarget
impl Clone for MaintenanceWindowIdentityForTarget
source§fn clone(&self) -> MaintenanceWindowIdentityForTarget
fn clone(&self) -> MaintenanceWindowIdentityForTarget
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 PartialEq for MaintenanceWindowIdentityForTarget
impl PartialEq for MaintenanceWindowIdentityForTarget
source§fn eq(&self, other: &MaintenanceWindowIdentityForTarget) -> bool
fn eq(&self, other: &MaintenanceWindowIdentityForTarget) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MaintenanceWindowIdentityForTarget
Auto Trait Implementations§
impl RefUnwindSafe for MaintenanceWindowIdentityForTarget
impl Send for MaintenanceWindowIdentityForTarget
impl Sync for MaintenanceWindowIdentityForTarget
impl Unpin for MaintenanceWindowIdentityForTarget
impl UnwindSafe for MaintenanceWindowIdentityForTarget
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