pub struct ListResourceInventoryRequest {
pub filters: Option<Vec<InventoryFilter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§filters: Option<Vec<InventoryFilter>>Filters to scope the results. The following filters and logical operators are supported:
-
accountid- The ID of the AWS account that owns the resource. Logical operators areEQUALS|NOTEQUALS. -
applicationname- The name of the application. Logical operators areEQUALS|BEGINSWITH. -
licenseincluded- The type of license included. Logical operators areEQUALS|NOTEQUALS. Possible values aresql-server-enterprise|sql-server-standard|sql-server-web|windows-server-datacenter. -
platform- The platform of the resource. Logical operators areEQUALS|BEGINSWITH. -
resourceid- The ID of the resource. Logical operators areEQUALS|NOT_EQUALS.
max_results: Option<i64>Maximum number of results to return in a single call.
next_token: Option<String>Token for the next set of results.
Trait Implementations§
Source§impl Clone for ListResourceInventoryRequest
impl Clone for ListResourceInventoryRequest
Source§fn clone(&self) -> ListResourceInventoryRequest
fn clone(&self) -> ListResourceInventoryRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListResourceInventoryRequest
impl Debug for ListResourceInventoryRequest
Source§impl Default for ListResourceInventoryRequest
impl Default for ListResourceInventoryRequest
Source§fn default() -> ListResourceInventoryRequest
fn default() -> ListResourceInventoryRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListResourceInventoryRequest
impl PartialEq for ListResourceInventoryRequest
Source§fn eq(&self, other: &ListResourceInventoryRequest) -> bool
fn eq(&self, other: &ListResourceInventoryRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListResourceInventoryRequest
Auto Trait Implementations§
impl Freeze for ListResourceInventoryRequest
impl RefUnwindSafe for ListResourceInventoryRequest
impl Send for ListResourceInventoryRequest
impl Sync for ListResourceInventoryRequest
impl Unpin for ListResourceInventoryRequest
impl UnwindSafe for ListResourceInventoryRequest
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
Mutably borrows from an owned value. Read more