aws_sdk_ses/client/update_configuration_set_event_destination.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`UpdateConfigurationSetEventDestination`](crate::operation::update_configuration_set_event_destination::builders::UpdateConfigurationSetEventDestinationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`configuration_set_name(impl Into<String>)`](crate::operation::update_configuration_set_event_destination::builders::UpdateConfigurationSetEventDestinationFluentBuilder::configuration_set_name) / [`set_configuration_set_name(Option<String>)`](crate::operation::update_configuration_set_event_destination::builders::UpdateConfigurationSetEventDestinationFluentBuilder::set_configuration_set_name):<br>required: **true**<br><p>The name of the configuration set that contains the event destination.</p><br>
7 /// - [`event_destination(EventDestination)`](crate::operation::update_configuration_set_event_destination::builders::UpdateConfigurationSetEventDestinationFluentBuilder::event_destination) / [`set_event_destination(Option<EventDestination>)`](crate::operation::update_configuration_set_event_destination::builders::UpdateConfigurationSetEventDestinationFluentBuilder::set_event_destination):<br>required: **true**<br><p>The event destination object.</p><br>
8 /// - On success, responds with [`UpdateConfigurationSetEventDestinationOutput`](crate::operation::update_configuration_set_event_destination::UpdateConfigurationSetEventDestinationOutput)
9 /// - On failure, responds with [`SdkError<UpdateConfigurationSetEventDestinationError>`](crate::operation::update_configuration_set_event_destination::UpdateConfigurationSetEventDestinationError)
10 pub fn update_configuration_set_event_destination(
11 &self,
12 ) -> crate::operation::update_configuration_set_event_destination::builders::UpdateConfigurationSetEventDestinationFluentBuilder {
13 crate::operation::update_configuration_set_event_destination::builders::UpdateConfigurationSetEventDestinationFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}