Struct aws_sdk_imagebuilder::operation::list_lifecycle_execution_resources::builders::ListLifecycleExecutionResourcesOutputBuilder
source · #[non_exhaustive]pub struct ListLifecycleExecutionResourcesOutputBuilder { /* private fields */ }
Expand description
A builder for ListLifecycleExecutionResourcesOutput
.
Implementations§
source§impl ListLifecycleExecutionResourcesOutputBuilder
impl ListLifecycleExecutionResourcesOutputBuilder
sourcepub fn lifecycle_execution_id(self, input: impl Into<String>) -> Self
pub fn lifecycle_execution_id(self, input: impl Into<String>) -> Self
Runtime details for the specified runtime instance of the lifecycle policy.
sourcepub fn set_lifecycle_execution_id(self, input: Option<String>) -> Self
pub fn set_lifecycle_execution_id(self, input: Option<String>) -> Self
Runtime details for the specified runtime instance of the lifecycle policy.
sourcepub fn get_lifecycle_execution_id(&self) -> &Option<String>
pub fn get_lifecycle_execution_id(&self) -> &Option<String>
Runtime details for the specified runtime instance of the lifecycle policy.
sourcepub fn lifecycle_execution_state(self, input: LifecycleExecutionState) -> Self
pub fn lifecycle_execution_state(self, input: LifecycleExecutionState) -> Self
The current state of the lifecycle runtime instance.
sourcepub fn set_lifecycle_execution_state(
self,
input: Option<LifecycleExecutionState>
) -> Self
pub fn set_lifecycle_execution_state( self, input: Option<LifecycleExecutionState> ) -> Self
The current state of the lifecycle runtime instance.
sourcepub fn get_lifecycle_execution_state(&self) -> &Option<LifecycleExecutionState>
pub fn get_lifecycle_execution_state(&self) -> &Option<LifecycleExecutionState>
The current state of the lifecycle runtime instance.
sourcepub fn resources(self, input: LifecycleExecutionResource) -> Self
pub fn resources(self, input: LifecycleExecutionResource) -> Self
Appends an item to resources
.
To override the contents of this collection use set_resources
.
A list of resources that were identified for lifecycle actions.
sourcepub fn set_resources(
self,
input: Option<Vec<LifecycleExecutionResource>>
) -> Self
pub fn set_resources( self, input: Option<Vec<LifecycleExecutionResource>> ) -> Self
A list of resources that were identified for lifecycle actions.
sourcepub fn get_resources(&self) -> &Option<Vec<LifecycleExecutionResource>>
pub fn get_resources(&self) -> &Option<Vec<LifecycleExecutionResource>>
A list of resources that were identified for lifecycle actions.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn build(self) -> ListLifecycleExecutionResourcesOutput
pub fn build(self) -> ListLifecycleExecutionResourcesOutput
Consumes the builder and constructs a ListLifecycleExecutionResourcesOutput
.
Trait Implementations§
source§impl Clone for ListLifecycleExecutionResourcesOutputBuilder
impl Clone for ListLifecycleExecutionResourcesOutputBuilder
source§fn clone(&self) -> ListLifecycleExecutionResourcesOutputBuilder
fn clone(&self) -> ListLifecycleExecutionResourcesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListLifecycleExecutionResourcesOutputBuilder
impl Default for ListLifecycleExecutionResourcesOutputBuilder
source§fn default() -> ListLifecycleExecutionResourcesOutputBuilder
fn default() -> ListLifecycleExecutionResourcesOutputBuilder
source§impl PartialEq for ListLifecycleExecutionResourcesOutputBuilder
impl PartialEq for ListLifecycleExecutionResourcesOutputBuilder
source§fn eq(&self, other: &ListLifecycleExecutionResourcesOutputBuilder) -> bool
fn eq(&self, other: &ListLifecycleExecutionResourcesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListLifecycleExecutionResourcesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListLifecycleExecutionResourcesOutputBuilder
impl RefUnwindSafe for ListLifecycleExecutionResourcesOutputBuilder
impl Send for ListLifecycleExecutionResourcesOutputBuilder
impl Sync for ListLifecycleExecutionResourcesOutputBuilder
impl Unpin for ListLifecycleExecutionResourcesOutputBuilder
impl UnwindSafe for ListLifecycleExecutionResourcesOutputBuilder
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