aws_sdk_rds/client/
describe_event_categories.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeEventCategories`](crate::operation::describe_event_categories::builders::DescribeEventCategoriesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`source_type(impl Into<String>)`](crate::operation::describe_event_categories::builders::DescribeEventCategoriesFluentBuilder::source_type) / [`set_source_type(Option<String>)`](crate::operation::describe_event_categories::builders::DescribeEventCategoriesFluentBuilder::set_source_type):<br>required: **false**<br><p>The type of source that is generating the events. For RDS Proxy events, specify <code>db-proxy</code>.</p> <p>Valid Values: <code>db-instance</code> | <code>db-cluster</code> | <code>db-parameter-group</code> | <code>db-security-group</code> | <code>db-snapshot</code> | <code>db-cluster-snapshot</code> | <code>db-proxy</code></p><br>
    ///   - [`filters(Filter)`](crate::operation::describe_event_categories::builders::DescribeEventCategoriesFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_event_categories::builders::DescribeEventCategoriesFluentBuilder::set_filters):<br>required: **false**<br><p>This parameter isn't currently supported.</p><br>
    /// - On success, responds with [`DescribeEventCategoriesOutput`](crate::operation::describe_event_categories::DescribeEventCategoriesOutput) with field(s):
    ///   - [`event_categories_map_list(Option<Vec::<EventCategoriesMap>>)`](crate::operation::describe_event_categories::DescribeEventCategoriesOutput::event_categories_map_list): <p>A list of <code>EventCategoriesMap</code> data types.</p>
    /// - On failure, responds with [`SdkError<DescribeEventCategoriesError>`](crate::operation::describe_event_categories::DescribeEventCategoriesError)
    pub fn describe_event_categories(&self) -> crate::operation::describe_event_categories::builders::DescribeEventCategoriesFluentBuilder {
        crate::operation::describe_event_categories::builders::DescribeEventCategoriesFluentBuilder::new(self.handle.clone())
    }
}