Struct aws_sdk_ec2::input::DescribeFastLaunchImagesInput
source · [−]#[non_exhaustive]pub struct DescribeFastLaunchImagesInput {
pub image_ids: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub dry_run: Option<bool>,
}
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>>
Details for one or more Windows AMI image IDs.
filters: Option<Vec<Filter>>
Use the following filters to streamline results.
-
resource-type
- The resource type for pre-provisioning. -
launch-template
- The launch template that is associated with the pre-provisioned Windows AMI. -
owner-id
- The owner ID for the pre-provisioning resource. -
state
- The current state of fast launching for the Windows AMI.
max_results: Option<i32>
The maximum number of results to return in a single call. To retrieve the remaining results, make another request with the returned NextToken value. If this parameter is not specified, then all results are returned.
next_token: Option<String>
The token for the next set of results.
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
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeFastLaunchImages, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeFastLaunchImages, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeFastLaunchImages
>
Creates a new builder-style object to manufacture DescribeFastLaunchImagesInput
Use the following filters to streamline results.
-
resource-type
- The resource type for pre-provisioning. -
launch-template
- The launch template that is associated with the pre-provisioned Windows AMI. -
owner-id
- The owner ID for the pre-provisioning resource. -
state
- The current state of fast launching for the Windows AMI.
The maximum number of results to return in a single call. To retrieve the remaining results, make another request with the returned NextToken value. If this parameter is not specified, then all results are returned.
The token for the next set of results.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DescribeFastLaunchImagesInput
impl Sync for DescribeFastLaunchImagesInput
impl Unpin for DescribeFastLaunchImagesInput
impl UnwindSafe for DescribeFastLaunchImagesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more