#[non_exhaustive]pub struct InstanceEventWindowDisassociationRequestBuilder { /* private fields */ }
Expand description
A builder for InstanceEventWindowDisassociationRequest
.
Implementations§
source§impl InstanceEventWindowDisassociationRequestBuilder
impl InstanceEventWindowDisassociationRequestBuilder
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 to disassociate from 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 to disassociate from 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 to disassociate from the event window.
Appends an item to instance_tags
.
To override the contents of this collection use set_instance_tags
.
The instance tags to disassociate from the event window. Any instances associated with the tags will be disassociated from the event window.
The instance tags to disassociate from the event window. Any instances associated with the tags will be disassociated from the event window.
The instance tags to disassociate from the event window. Any instances associated with the tags will be disassociated from 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 to disassociate from 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 to disassociate from 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 to disassociate from the event window.
sourcepub fn build(self) -> InstanceEventWindowDisassociationRequest
pub fn build(self) -> InstanceEventWindowDisassociationRequest
Consumes the builder and constructs a InstanceEventWindowDisassociationRequest
.
Trait Implementations§
source§impl Clone for InstanceEventWindowDisassociationRequestBuilder
impl Clone for InstanceEventWindowDisassociationRequestBuilder
source§fn clone(&self) -> InstanceEventWindowDisassociationRequestBuilder
fn clone(&self) -> InstanceEventWindowDisassociationRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for InstanceEventWindowDisassociationRequestBuilder
impl Default for InstanceEventWindowDisassociationRequestBuilder
source§fn default() -> InstanceEventWindowDisassociationRequestBuilder
fn default() -> InstanceEventWindowDisassociationRequestBuilder
source§impl PartialEq for InstanceEventWindowDisassociationRequestBuilder
impl PartialEq for InstanceEventWindowDisassociationRequestBuilder
source§fn eq(&self, other: &InstanceEventWindowDisassociationRequestBuilder) -> bool
fn eq(&self, other: &InstanceEventWindowDisassociationRequestBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InstanceEventWindowDisassociationRequestBuilder
Auto Trait Implementations§
impl Freeze for InstanceEventWindowDisassociationRequestBuilder
impl RefUnwindSafe for InstanceEventWindowDisassociationRequestBuilder
impl Send for InstanceEventWindowDisassociationRequestBuilder
impl Sync for InstanceEventWindowDisassociationRequestBuilder
impl Unpin for InstanceEventWindowDisassociationRequestBuilder
impl UnwindSafe for InstanceEventWindowDisassociationRequestBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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