pub struct ListUsageForLicenseConfigurationRequest {
pub filters: Option<Vec<Filter>>,
pub license_configuration_arn: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§filters: Option<Vec<Filter>>Filters to scope the results. The following filters and logical operators are supported:
-
resourceArn- The ARN of the license configuration resource. Logical operators areEQUALS|NOTEQUALS. -
resourceType- The resource type (EC2INSTANCE | EC2HOST | EC2AMI | SYSTEMSMANAGERMANAGEDINSTANCE). Logical operators areEQUALS|NOTEQUALS. -
resourceAccount- The ID of the account that owns the resource. Logical operators areEQUALS|NOT_EQUALS.
license_configuration_arn: StringAmazon Resource Name (ARN) of the license configuration.
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 ListUsageForLicenseConfigurationRequest
impl Clone for ListUsageForLicenseConfigurationRequest
Source§fn clone(&self) -> ListUsageForLicenseConfigurationRequest
fn clone(&self) -> ListUsageForLicenseConfigurationRequest
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 Default for ListUsageForLicenseConfigurationRequest
impl Default for ListUsageForLicenseConfigurationRequest
Source§fn default() -> ListUsageForLicenseConfigurationRequest
fn default() -> ListUsageForLicenseConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListUsageForLicenseConfigurationRequest
impl PartialEq for ListUsageForLicenseConfigurationRequest
Source§fn eq(&self, other: &ListUsageForLicenseConfigurationRequest) -> bool
fn eq(&self, other: &ListUsageForLicenseConfigurationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListUsageForLicenseConfigurationRequest
Auto Trait Implementations§
impl Freeze for ListUsageForLicenseConfigurationRequest
impl RefUnwindSafe for ListUsageForLicenseConfigurationRequest
impl Send for ListUsageForLicenseConfigurationRequest
impl Sync for ListUsageForLicenseConfigurationRequest
impl Unpin for ListUsageForLicenseConfigurationRequest
impl UnwindSafe for ListUsageForLicenseConfigurationRequest
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