pub struct UpdateBillingGroupRequest {
pub billing_group_name: String,
pub billing_group_properties: BillingGroupProperties,
pub expected_version: Option<i64>,
}Fields§
§billing_group_name: StringThe name of the billing group.
billing_group_properties: BillingGroupPropertiesThe properties of the billing group.
expected_version: Option<i64>The expected version of the billing group. If the version of the billing group does not match the expected version specified in the request, the UpdateBillingGroup request is rejected with a VersionConflictException.
Trait Implementations§
Source§impl Clone for UpdateBillingGroupRequest
impl Clone for UpdateBillingGroupRequest
Source§fn clone(&self) -> UpdateBillingGroupRequest
fn clone(&self) -> UpdateBillingGroupRequest
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 UpdateBillingGroupRequest
impl Debug for UpdateBillingGroupRequest
Source§impl Default for UpdateBillingGroupRequest
impl Default for UpdateBillingGroupRequest
Source§fn default() -> UpdateBillingGroupRequest
fn default() -> UpdateBillingGroupRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateBillingGroupRequest
Auto Trait Implementations§
impl Freeze for UpdateBillingGroupRequest
impl RefUnwindSafe for UpdateBillingGroupRequest
impl Send for UpdateBillingGroupRequest
impl Sync for UpdateBillingGroupRequest
impl Unpin for UpdateBillingGroupRequest
impl UnwindSafe for UpdateBillingGroupRequest
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