aws_sdk_dataexchange/client/update_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 [`UpdateEventAction`](crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`action(Action)`](crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder::action) / [`set_action(Option<Action>)`](crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder::set_action):<br>required: **false**<br><p>What occurs after a certain event.</p><br>
7 /// - [`event_action_id(impl Into<String>)`](crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder::event_action_id) / [`set_event_action_id(Option<String>)`](crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder::set_event_action_id):<br>required: **true**<br><p>The unique identifier for the event action.</p><br>
8 /// - On success, responds with [`UpdateEventActionOutput`](crate::operation::update_event_action::UpdateEventActionOutput) with field(s):
9 /// - [`action(Option<Action>)`](crate::operation::update_event_action::UpdateEventActionOutput::action): <p>What occurs after a certain event.</p>
10 /// - [`arn(Option<String>)`](crate::operation::update_event_action::UpdateEventActionOutput::arn): <p>The ARN for the event action.</p>
11 /// - [`created_at(Option<DateTime>)`](crate::operation::update_event_action::UpdateEventActionOutput::created_at): <p>The date and time that the event action was created, in ISO 8601 format.</p>
12 /// - [`event(Option<Event>)`](crate::operation::update_event_action::UpdateEventActionOutput::event): <p>What occurs to start an action.</p>
13 /// - [`id(Option<String>)`](crate::operation::update_event_action::UpdateEventActionOutput::id): <p>The unique identifier for the event action.</p>
14 /// - [`updated_at(Option<DateTime>)`](crate::operation::update_event_action::UpdateEventActionOutput::updated_at): <p>The date and time that the event action was last updated, in ISO 8601 format.</p>
15 /// - On failure, responds with [`SdkError<UpdateEventActionError>`](crate::operation::update_event_action::UpdateEventActionError)
16 pub fn update_event_action(&self) -> crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder {
17 crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder::new(self.handle.clone())
18 }
19}