pub struct PutAccountConfigurationRequest {
pub expiry_events: Option<ExpiryEventsConfiguration>,
pub idempotency_token: String,
}
Fields§
§expiry_events: Option<ExpiryEventsConfiguration>
Specifies expiration events associated with an account.
idempotency_token: String
Customer-chosen string used to distinguish between calls to PutAccountConfiguration
. Idempotency tokens time out after one hour. If you call PutAccountConfiguration
multiple times with the same unexpired idempotency token, ACM treats it as the same request and returns the original result. If you change the idempotency token for each call, ACM treats each call as a new request.
Trait Implementations§
Source§impl Clone for PutAccountConfigurationRequest
impl Clone for PutAccountConfigurationRequest
Source§fn clone(&self) -> PutAccountConfigurationRequest
fn clone(&self) -> PutAccountConfigurationRequest
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 PutAccountConfigurationRequest
impl Default for PutAccountConfigurationRequest
Source§fn default() -> PutAccountConfigurationRequest
fn default() -> PutAccountConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutAccountConfigurationRequest
impl PartialEq for PutAccountConfigurationRequest
Source§fn eq(&self, other: &PutAccountConfigurationRequest) -> bool
fn eq(&self, other: &PutAccountConfigurationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutAccountConfigurationRequest
Auto Trait Implementations§
impl Freeze for PutAccountConfigurationRequest
impl RefUnwindSafe for PutAccountConfigurationRequest
impl Send for PutAccountConfigurationRequest
impl Sync for PutAccountConfigurationRequest
impl Unpin for PutAccountConfigurationRequest
impl UnwindSafe for PutAccountConfigurationRequest
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