aws_sdk_dataexchange/client/get_event_action.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetEventAction`](crate::operation::get_event_action::builders::GetEventActionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`event_action_id(impl Into<String>)`](crate::operation::get_event_action::builders::GetEventActionFluentBuilder::event_action_id) / [`set_event_action_id(Option<String>)`](crate::operation::get_event_action::builders::GetEventActionFluentBuilder::set_event_action_id):<br>required: **true**<br><p>The unique identifier for the event action.</p><br>
/// - On success, responds with [`GetEventActionOutput`](crate::operation::get_event_action::GetEventActionOutput) with field(s):
/// - [`action(Option<Action>)`](crate::operation::get_event_action::GetEventActionOutput::action): <p>What occurs after a certain event.</p>
/// - [`arn(Option<String>)`](crate::operation::get_event_action::GetEventActionOutput::arn): <p>The ARN for the event action.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::get_event_action::GetEventActionOutput::created_at): <p>The date and time that the event action was created, in ISO 8601 format.</p>
/// - [`event(Option<Event>)`](crate::operation::get_event_action::GetEventActionOutput::event): <p>What occurs to start an action.</p>
/// - [`id(Option<String>)`](crate::operation::get_event_action::GetEventActionOutput::id): <p>The unique identifier for the event action.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::get_event_action::GetEventActionOutput::updated_at): <p>The date and time that the event action was last updated, in ISO 8601 format.</p>
/// - On failure, responds with [`SdkError<GetEventActionError>`](crate::operation::get_event_action::GetEventActionError)
pub fn get_event_action(&self) -> crate::operation::get_event_action::builders::GetEventActionFluentBuilder {
crate::operation::get_event_action::builders::GetEventActionFluentBuilder::new(self.handle.clone())
}
}