pub struct ListLicenseSpecificationsForResourceRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub resource_arn: String,
}Fields§
§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.
resource_arn: StringAmazon Resource Name (ARN) of a resource that has an associated license configuration.
Trait Implementations§
Source§impl Clone for ListLicenseSpecificationsForResourceRequest
impl Clone for ListLicenseSpecificationsForResourceRequest
Source§fn clone(&self) -> ListLicenseSpecificationsForResourceRequest
fn clone(&self) -> ListLicenseSpecificationsForResourceRequest
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 ListLicenseSpecificationsForResourceRequest
impl Default for ListLicenseSpecificationsForResourceRequest
Source§fn default() -> ListLicenseSpecificationsForResourceRequest
fn default() -> ListLicenseSpecificationsForResourceRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListLicenseSpecificationsForResourceRequest
impl PartialEq for ListLicenseSpecificationsForResourceRequest
Source§fn eq(&self, other: &ListLicenseSpecificationsForResourceRequest) -> bool
fn eq(&self, other: &ListLicenseSpecificationsForResourceRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListLicenseSpecificationsForResourceRequest
Auto Trait Implementations§
impl Freeze for ListLicenseSpecificationsForResourceRequest
impl RefUnwindSafe for ListLicenseSpecificationsForResourceRequest
impl Send for ListLicenseSpecificationsForResourceRequest
impl Sync for ListLicenseSpecificationsForResourceRequest
impl Unpin for ListLicenseSpecificationsForResourceRequest
impl UnwindSafe for ListLicenseSpecificationsForResourceRequest
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