aws_sdk_dataexchange/client/delete_event_action.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 [`DeleteEventAction`](crate::operation::delete_event_action::builders::DeleteEventActionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`event_action_id(impl Into<String>)`](crate::operation::delete_event_action::builders::DeleteEventActionFluentBuilder::event_action_id) / [`set_event_action_id(Option<String>)`](crate::operation::delete_event_action::builders::DeleteEventActionFluentBuilder::set_event_action_id):<br>required: **true**<br><p>The unique identifier for the event action.</p><br>
7 /// - On success, responds with [`DeleteEventActionOutput`](crate::operation::delete_event_action::DeleteEventActionOutput)
8 /// - On failure, responds with [`SdkError<DeleteEventActionError>`](crate::operation::delete_event_action::DeleteEventActionError)
9 pub fn delete_event_action(&self) -> crate::operation::delete_event_action::builders::DeleteEventActionFluentBuilder {
10 crate::operation::delete_event_action::builders::DeleteEventActionFluentBuilder::new(self.handle.clone())
11 }
12}