#[non_exhaustive]pub struct UpdateSubscriptionInput { /* private fields */ }Implementations§
source§impl UpdateSubscriptionInput
impl UpdateSubscriptionInput
sourcepub fn auto_renew(&self) -> Option<&AutoRenew>
pub fn auto_renew(&self) -> Option<&AutoRenew>
When you initally create a subscription, AutoRenew is set to ENABLED. If ENABLED, the subscription will be automatically renewed at the end of the existing subscription period. You can change this by submitting an UpdateSubscription request. If the UpdateSubscription request does not included a value for AutoRenew, the existing value for AutoRenew remains unchanged.
source§impl UpdateSubscriptionInput
impl UpdateSubscriptionInput
sourcepub fn builder() -> UpdateSubscriptionInputBuilder
pub fn builder() -> UpdateSubscriptionInputBuilder
Creates a new builder-style object to manufacture UpdateSubscriptionInput.
source§impl UpdateSubscriptionInput
impl UpdateSubscriptionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSubscription, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateSubscription, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSubscription>
Trait Implementations§
source§impl Clone for UpdateSubscriptionInput
impl Clone for UpdateSubscriptionInput
source§fn clone(&self) -> UpdateSubscriptionInput
fn clone(&self) -> UpdateSubscriptionInput
Returns a copy 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 UpdateSubscriptionInput
impl Debug for UpdateSubscriptionInput
source§impl PartialEq<UpdateSubscriptionInput> for UpdateSubscriptionInput
impl PartialEq<UpdateSubscriptionInput> for UpdateSubscriptionInput
source§fn eq(&self, other: &UpdateSubscriptionInput) -> bool
fn eq(&self, other: &UpdateSubscriptionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSubscriptionInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateSubscriptionInput
impl Send for UpdateSubscriptionInput
impl Sync for UpdateSubscriptionInput
impl Unpin for UpdateSubscriptionInput
impl UnwindSafe for UpdateSubscriptionInput
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