aws_sdk_connectcases/client/
get_case_event_configuration.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetCaseEventConfiguration`](crate::operation::get_case_event_configuration::builders::GetCaseEventConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_id(impl Into<String>)`](crate::operation::get_case_event_configuration::builders::GetCaseEventConfigurationFluentBuilder::domain_id) / [`set_domain_id(Option<String>)`](crate::operation::get_case_event_configuration::builders::GetCaseEventConfigurationFluentBuilder::set_domain_id):<br>required: **true**<br><p>The unique identifier of the Cases domain.</p><br>
    /// - On success, responds with [`GetCaseEventConfigurationOutput`](crate::operation::get_case_event_configuration::GetCaseEventConfigurationOutput) with field(s):
    ///   - [`event_bridge(Option<EventBridgeConfiguration>)`](crate::operation::get_case_event_configuration::GetCaseEventConfigurationOutput::event_bridge): <p>Configuration to enable EventBridge case event delivery and determine what data is delivered.</p>
    /// - On failure, responds with [`SdkError<GetCaseEventConfigurationError>`](crate::operation::get_case_event_configuration::GetCaseEventConfigurationError)
    pub fn get_case_event_configuration(&self) -> crate::operation::get_case_event_configuration::builders::GetCaseEventConfigurationFluentBuilder {
        crate::operation::get_case_event_configuration::builders::GetCaseEventConfigurationFluentBuilder::new(self.handle.clone())
    }
}