aws_sdk_dataexchange/client/
update_event_action.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateEventAction`](crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`UpdateEventActionOutput`](crate::operation::update_event_action::UpdateEventActionOutput) with field(s):
    ///   - [`action(Option<Action>)`](crate::operation::update_event_action::UpdateEventActionOutput::action): <p>What occurs after a certain event.</p>
    ///   - [`arn(Option<String>)`](crate::operation::update_event_action::UpdateEventActionOutput::arn): <p>The ARN for the event action.</p>
    ///   - [`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>
    ///   - [`event(Option<Event>)`](crate::operation::update_event_action::UpdateEventActionOutput::event): <p>What occurs to start an action.</p>
    ///   - [`id(Option<String>)`](crate::operation::update_event_action::UpdateEventActionOutput::id): <p>The unique identifier for the event action.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<UpdateEventActionError>`](crate::operation::update_event_action::UpdateEventActionError)
    pub fn update_event_action(&self) -> crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder {
        crate::operation::update_event_action::builders::UpdateEventActionFluentBuilder::new(self.handle.clone())
    }
}