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 ==
.