#[non_exhaustive]pub struct DescribeStoreImageTasksInput {
pub image_ids: Option<Vec<String>>,
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.image_ids: Option<Vec<String>>
The AMI IDs for which to show progress. Up to 20 AMI IDs can be included in a request.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
filters: Option<Vec<Filter>>
The filters.
-
task-state
- Returns tasks in a certain state (InProgress
|Completed
|Failed
) -
bucket
- Returns task information for tasks that targeted a specific bucket. For the filter value, specify the bucket name.
next_token: Option<String>
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
max_results: Option<i32>
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.
You cannot specify this parameter and the ImageIDs
parameter in the same call.
Implementations§
source§impl DescribeStoreImageTasksInput
impl DescribeStoreImageTasksInput
sourcepub fn image_ids(&self) -> Option<&[String]>
pub fn image_ids(&self) -> Option<&[String]>
The AMI IDs for which to show progress. Up to 20 AMI IDs can be included in a request.
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn filters(&self) -> Option<&[Filter]>
pub fn filters(&self) -> Option<&[Filter]>
The filters.
-
task-state
- Returns tasks in a certain state (InProgress
|Completed
|Failed
) -
bucket
- Returns task information for tasks that targeted a specific bucket. For the filter value, specify the bucket name.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.
You cannot specify this parameter and the ImageIDs
parameter in the same call.
source§impl DescribeStoreImageTasksInput
impl DescribeStoreImageTasksInput
sourcepub fn builder() -> DescribeStoreImageTasksInputBuilder
pub fn builder() -> DescribeStoreImageTasksInputBuilder
Creates a new builder-style object to manufacture DescribeStoreImageTasksInput
.
Trait Implementations§
source§impl Clone for DescribeStoreImageTasksInput
impl Clone for DescribeStoreImageTasksInput
source§fn clone(&self) -> DescribeStoreImageTasksInput
fn clone(&self) -> DescribeStoreImageTasksInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeStoreImageTasksInput
impl Debug for DescribeStoreImageTasksInput
source§impl PartialEq<DescribeStoreImageTasksInput> for DescribeStoreImageTasksInput
impl PartialEq<DescribeStoreImageTasksInput> for DescribeStoreImageTasksInput
source§fn eq(&self, other: &DescribeStoreImageTasksInput) -> bool
fn eq(&self, other: &DescribeStoreImageTasksInput) -> bool
self
and other
values to be equal, and is used
by ==
.