#[non_exhaustive]pub struct InstanceEventWindowAssociationTargetBuilder { /* private fields */ }
Expand description
A builder for InstanceEventWindowAssociationTarget
.
Implementations§
source§impl InstanceEventWindowAssociationTargetBuilder
impl InstanceEventWindowAssociationTargetBuilder
sourcepub fn instance_ids(self, input: impl Into<String>) -> Self
pub fn instance_ids(self, input: impl Into<String>) -> Self
Appends an item to instance_ids
.
To override the contents of this collection use set_instance_ids
.
The IDs of the instances associated with the event window.
sourcepub fn set_instance_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_instance_ids(self, input: Option<Vec<String>>) -> Self
The IDs of the instances associated with the event window.
sourcepub fn get_instance_ids(&self) -> &Option<Vec<String>>
pub fn get_instance_ids(&self) -> &Option<Vec<String>>
The IDs of the instances associated with the event window.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The instance tags associated with the event window. Any instances associated with the tags will be associated with the event window.
The instance tags associated with the event window. Any instances associated with the tags will be associated with the event window.
The instance tags associated with the event window. Any instances associated with the tags will be associated with the event window.
sourcepub fn dedicated_host_ids(self, input: impl Into<String>) -> Self
pub fn dedicated_host_ids(self, input: impl Into<String>) -> Self
Appends an item to dedicated_host_ids
.
To override the contents of this collection use set_dedicated_host_ids
.
The IDs of the Dedicated Hosts associated with the event window.
sourcepub fn set_dedicated_host_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_dedicated_host_ids(self, input: Option<Vec<String>>) -> Self
The IDs of the Dedicated Hosts associated with the event window.
sourcepub fn get_dedicated_host_ids(&self) -> &Option<Vec<String>>
pub fn get_dedicated_host_ids(&self) -> &Option<Vec<String>>
The IDs of the Dedicated Hosts associated with the event window.
sourcepub fn build(self) -> InstanceEventWindowAssociationTarget
pub fn build(self) -> InstanceEventWindowAssociationTarget
Consumes the builder and constructs a InstanceEventWindowAssociationTarget
.
Trait Implementations§
source§impl Clone for InstanceEventWindowAssociationTargetBuilder
impl Clone for InstanceEventWindowAssociationTargetBuilder
source§fn clone(&self) -> InstanceEventWindowAssociationTargetBuilder
fn clone(&self) -> InstanceEventWindowAssociationTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for InstanceEventWindowAssociationTargetBuilder
impl Default for InstanceEventWindowAssociationTargetBuilder
source§fn default() -> InstanceEventWindowAssociationTargetBuilder
fn default() -> InstanceEventWindowAssociationTargetBuilder
source§impl PartialEq for InstanceEventWindowAssociationTargetBuilder
impl PartialEq for InstanceEventWindowAssociationTargetBuilder
source§fn eq(&self, other: &InstanceEventWindowAssociationTargetBuilder) -> bool
fn eq(&self, other: &InstanceEventWindowAssociationTargetBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InstanceEventWindowAssociationTargetBuilder
Auto Trait Implementations§
impl Freeze for InstanceEventWindowAssociationTargetBuilder
impl RefUnwindSafe for InstanceEventWindowAssociationTargetBuilder
impl Send for InstanceEventWindowAssociationTargetBuilder
impl Sync for InstanceEventWindowAssociationTargetBuilder
impl Unpin for InstanceEventWindowAssociationTargetBuilder
impl UnwindSafe for InstanceEventWindowAssociationTargetBuilder
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