pub struct UpdateLicenseSpecificationsForResourceRequest {
pub add_license_specifications: Option<Vec<LicenseSpecification>>,
pub remove_license_specifications: Option<Vec<LicenseSpecification>>,
pub resource_arn: String,
}Fields§
§add_license_specifications: Option<Vec<LicenseSpecification>>ARNs of the license configurations to add.
remove_license_specifications: Option<Vec<LicenseSpecification>>ARNs of the license configurations to remove.
resource_arn: StringAmazon Resource Name (ARN) of the AWS resource.
Trait Implementations§
Source§impl Clone for UpdateLicenseSpecificationsForResourceRequest
impl Clone for UpdateLicenseSpecificationsForResourceRequest
Source§fn clone(&self) -> UpdateLicenseSpecificationsForResourceRequest
fn clone(&self) -> UpdateLicenseSpecificationsForResourceRequest
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 UpdateLicenseSpecificationsForResourceRequest
impl Default for UpdateLicenseSpecificationsForResourceRequest
Source§fn default() -> UpdateLicenseSpecificationsForResourceRequest
fn default() -> UpdateLicenseSpecificationsForResourceRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateLicenseSpecificationsForResourceRequest
impl PartialEq for UpdateLicenseSpecificationsForResourceRequest
Source§fn eq(&self, other: &UpdateLicenseSpecificationsForResourceRequest) -> bool
fn eq(&self, other: &UpdateLicenseSpecificationsForResourceRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateLicenseSpecificationsForResourceRequest
Auto Trait Implementations§
impl Freeze for UpdateLicenseSpecificationsForResourceRequest
impl RefUnwindSafe for UpdateLicenseSpecificationsForResourceRequest
impl Send for UpdateLicenseSpecificationsForResourceRequest
impl Sync for UpdateLicenseSpecificationsForResourceRequest
impl Unpin for UpdateLicenseSpecificationsForResourceRequest
impl UnwindSafe for UpdateLicenseSpecificationsForResourceRequest
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