Struct aws_sdk_ec2::types::builders::InstanceStateChangeBuilder
source · #[non_exhaustive]pub struct InstanceStateChangeBuilder { /* private fields */ }
Expand description
A builder for InstanceStateChange
.
Implementations§
source§impl InstanceStateChangeBuilder
impl InstanceStateChangeBuilder
sourcepub fn current_state(self, input: InstanceState) -> Self
pub fn current_state(self, input: InstanceState) -> Self
The current state of the instance.
sourcepub fn set_current_state(self, input: Option<InstanceState>) -> Self
pub fn set_current_state(self, input: Option<InstanceState>) -> Self
The current state of the instance.
sourcepub fn instance_id(self, input: impl Into<String>) -> Self
pub fn instance_id(self, input: impl Into<String>) -> Self
The ID of the instance.
sourcepub fn set_instance_id(self, input: Option<String>) -> Self
pub fn set_instance_id(self, input: Option<String>) -> Self
The ID of the instance.
sourcepub fn previous_state(self, input: InstanceState) -> Self
pub fn previous_state(self, input: InstanceState) -> Self
The previous state of the instance.
sourcepub fn set_previous_state(self, input: Option<InstanceState>) -> Self
pub fn set_previous_state(self, input: Option<InstanceState>) -> Self
The previous state of the instance.
sourcepub fn build(self) -> InstanceStateChange
pub fn build(self) -> InstanceStateChange
Consumes the builder and constructs a InstanceStateChange
.
Trait Implementations§
source§impl Clone for InstanceStateChangeBuilder
impl Clone for InstanceStateChangeBuilder
source§fn clone(&self) -> InstanceStateChangeBuilder
fn clone(&self) -> InstanceStateChangeBuilder
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 InstanceStateChangeBuilder
impl Debug for InstanceStateChangeBuilder
source§impl Default for InstanceStateChangeBuilder
impl Default for InstanceStateChangeBuilder
source§fn default() -> InstanceStateChangeBuilder
fn default() -> InstanceStateChangeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<InstanceStateChangeBuilder> for InstanceStateChangeBuilder
impl PartialEq<InstanceStateChangeBuilder> for InstanceStateChangeBuilder
source§fn eq(&self, other: &InstanceStateChangeBuilder) -> bool
fn eq(&self, other: &InstanceStateChangeBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.