aws_sdk_appintegrations/client/
update_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 [`UpdateEventIntegration`](crate::operation::update_event_integration::builders::UpdateEventIntegrationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::update_event_integration::builders::UpdateEventIntegrationFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_event_integration::builders::UpdateEventIntegrationFluentBuilder::set_name):<br>required: **true**<br><p>The name of the event integration.</p><br>
7    ///   - [`description(impl Into<String>)`](crate::operation::update_event_integration::builders::UpdateEventIntegrationFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_event_integration::builders::UpdateEventIntegrationFluentBuilder::set_description):<br>required: **false**<br><p>The description of the event integration.</p><br>
8    /// - On success, responds with [`UpdateEventIntegrationOutput`](crate::operation::update_event_integration::UpdateEventIntegrationOutput)
9    /// - On failure, responds with [`SdkError<UpdateEventIntegrationError>`](crate::operation::update_event_integration::UpdateEventIntegrationError)
10    pub fn update_event_integration(&self) -> crate::operation::update_event_integration::builders::UpdateEventIntegrationFluentBuilder {
11        crate::operation::update_event_integration::builders::UpdateEventIntegrationFluentBuilder::new(self.handle.clone())
12    }
13}