Struct aws_sdk_acm::input::put_account_configuration_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for PutAccountConfigurationInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn expiry_events(self, input: ExpiryEventsConfiguration) -> Self
pub fn expiry_events(self, input: ExpiryEventsConfiguration) -> Self
Specifies expiration events associated with an account.
sourcepub fn set_expiry_events(self, input: Option<ExpiryEventsConfiguration>) -> Self
pub fn set_expiry_events(self, input: Option<ExpiryEventsConfiguration>) -> Self
Specifies expiration events associated with an account.
sourcepub fn idempotency_token(self, input: impl Into<String>) -> Self
pub fn idempotency_token(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_idempotency_token(self, input: Option<String>) -> Self
pub fn set_idempotency_token(self, input: Option<String>) -> Self
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.
sourcepub fn build(self) -> Result<PutAccountConfigurationInput, BuildError>
pub fn build(self) -> Result<PutAccountConfigurationInput, BuildError>
Consumes the builder and constructs a PutAccountConfigurationInput
.