pub struct DescribeAcceleratorsRequest {
pub accelerator_ids: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§accelerator_ids: Option<Vec<String>>
The IDs of the accelerators to describe.
filters: Option<Vec<Filter>>
One or more filters. Filter names and values are case-sensitive. Valid filter names are: accelerator-types: can provide a list of accelerator type names to filter for. instance-id: can provide a list of EC2 instance ids to filter for.
max_results: Option<i64>
The total number of items to return in the command's output. If the total number of items available is more than the value specified, a NextToken is provided in the command's output. To resume pagination, provide the NextToken value in the starting-token argument of a subsequent command. Do not use the NextToken response element directly outside of the AWS CLI.
next_token: Option<String>
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
Trait Implementations§
Source§impl Clone for DescribeAcceleratorsRequest
impl Clone for DescribeAcceleratorsRequest
Source§fn clone(&self) -> DescribeAcceleratorsRequest
fn clone(&self) -> DescribeAcceleratorsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more