aws_sdk_appintegrations/client/get_event_integration.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 [`GetEventIntegration`](crate::operation::get_event_integration::builders::GetEventIntegrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::get_event_integration::builders::GetEventIntegrationFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_event_integration::builders::GetEventIntegrationFluentBuilder::set_name):<br>required: **true**<br><p>The name of the event integration.</p><br>
7 /// - On success, responds with [`GetEventIntegrationOutput`](crate::operation::get_event_integration::GetEventIntegrationOutput) with field(s):
8 /// - [`name(Option<String>)`](crate::operation::get_event_integration::GetEventIntegrationOutput::name): <p>The name of the event integration.</p>
9 /// - [`description(Option<String>)`](crate::operation::get_event_integration::GetEventIntegrationOutput::description): <p>The description of the event integration.</p>
10 /// - [`event_integration_arn(Option<String>)`](crate::operation::get_event_integration::GetEventIntegrationOutput::event_integration_arn): <p>The Amazon Resource Name (ARN) for the event integration.</p>
11 /// - [`event_bridge_bus(Option<String>)`](crate::operation::get_event_integration::GetEventIntegrationOutput::event_bridge_bus): <p>The EventBridge bus.</p>
12 /// - [`event_filter(Option<EventFilter>)`](crate::operation::get_event_integration::GetEventIntegrationOutput::event_filter): <p>The event filter.</p>
13 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_event_integration::GetEventIntegrationOutput::tags): <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
14 /// - On failure, responds with [`SdkError<GetEventIntegrationError>`](crate::operation::get_event_integration::GetEventIntegrationError)
15 pub fn get_event_integration(&self) -> crate::operation::get_event_integration::builders::GetEventIntegrationFluentBuilder {
16 crate::operation::get_event_integration::builders::GetEventIntegrationFluentBuilder::new(self.handle.clone())
17 }
18}