pub struct SubscriptionUpdateCMKRequest {
pub subscription_id: Option<i32>,
pub command_type: Option<String>,
pub deletion_grace_period: Option<String>,
pub customer_managed_keys: Vec<CustomerManagedKey>,
pub extra: Value,
}
Expand description
Subscription update request message
Fields§
§subscription_id: Option<i32>
§command_type: Option<String>
§deletion_grace_period: Option<String>
Optional. The grace period for deleting the subscription. If not set, will default to immediate deletion grace period.
customer_managed_keys: Vec<CustomerManagedKey>
The customer managed keys (CMK) to use for this subscription. If is active-active subscription, must set a key for each region.
extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for SubscriptionUpdateCMKRequest
impl Clone for SubscriptionUpdateCMKRequest
Source§fn clone(&self) -> SubscriptionUpdateCMKRequest
fn clone(&self) -> SubscriptionUpdateCMKRequest
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 SubscriptionUpdateCMKRequest
impl Debug for SubscriptionUpdateCMKRequest
Source§impl<'de> Deserialize<'de> for SubscriptionUpdateCMKRequest
impl<'de> Deserialize<'de> for SubscriptionUpdateCMKRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SubscriptionUpdateCMKRequest
impl RefUnwindSafe for SubscriptionUpdateCMKRequest
impl Send for SubscriptionUpdateCMKRequest
impl Sync for SubscriptionUpdateCMKRequest
impl Unpin for SubscriptionUpdateCMKRequest
impl UnwindSafe for SubscriptionUpdateCMKRequest
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