Struct aws_sdk_ec2::model::instance_state_change::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for InstanceStateChange
.
Implementations§
source§impl Builder
impl Builder
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
.