Struct aws_sdk_imagebuilder::operation::list_lifecycle_execution_resources::ListLifecycleExecutionResourcesInput
source · #[non_exhaustive]pub struct ListLifecycleExecutionResourcesInput {
pub lifecycle_execution_id: Option<String>,
pub parent_resource_id: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.lifecycle_execution_id: Option<String>
Use the unique identifier for a runtime instance of the lifecycle policy to get runtime details.
parent_resource_id: Option<String>
You can leave this empty to get a list of Image Builder resources that were identified for lifecycle actions.
To get a list of associated resources that are impacted for an individual resource (the parent), specify its Amazon Resource Name (ARN). Associated resources are produced from your image and distributed when you run a build, such as AMIs or container images stored in ECR repositories.
max_results: Option<i32>
The maximum items to return in a request.
next_token: Option<String>
A token to specify where to start paginating. This is the nextToken from a previously truncated response.
Implementations§
source§impl ListLifecycleExecutionResourcesInput
impl ListLifecycleExecutionResourcesInput
sourcepub fn lifecycle_execution_id(&self) -> Option<&str>
pub fn lifecycle_execution_id(&self) -> Option<&str>
Use the unique identifier for a runtime instance of the lifecycle policy to get runtime details.
sourcepub fn parent_resource_id(&self) -> Option<&str>
pub fn parent_resource_id(&self) -> Option<&str>
You can leave this empty to get a list of Image Builder resources that were identified for lifecycle actions.
To get a list of associated resources that are impacted for an individual resource (the parent), specify its Amazon Resource Name (ARN). Associated resources are produced from your image and distributed when you run a build, such as AMIs or container images stored in ECR repositories.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum items to return in a request.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to specify where to start paginating. This is the nextToken from a previously truncated response.
source§impl ListLifecycleExecutionResourcesInput
impl ListLifecycleExecutionResourcesInput
sourcepub fn builder() -> ListLifecycleExecutionResourcesInputBuilder
pub fn builder() -> ListLifecycleExecutionResourcesInputBuilder
Creates a new builder-style object to manufacture ListLifecycleExecutionResourcesInput
.
Trait Implementations§
source§impl Clone for ListLifecycleExecutionResourcesInput
impl Clone for ListLifecycleExecutionResourcesInput
source§fn clone(&self) -> ListLifecycleExecutionResourcesInput
fn clone(&self) -> ListLifecycleExecutionResourcesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListLifecycleExecutionResourcesInput
impl PartialEq for ListLifecycleExecutionResourcesInput
source§fn eq(&self, other: &ListLifecycleExecutionResourcesInput) -> bool
fn eq(&self, other: &ListLifecycleExecutionResourcesInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListLifecycleExecutionResourcesInput
Auto Trait Implementations§
impl Freeze for ListLifecycleExecutionResourcesInput
impl RefUnwindSafe for ListLifecycleExecutionResourcesInput
impl Send for ListLifecycleExecutionResourcesInput
impl Sync for ListLifecycleExecutionResourcesInput
impl Unpin for ListLifecycleExecutionResourcesInput
impl UnwindSafe for ListLifecycleExecutionResourcesInput
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