aws-sdk-cloudwatchlogs 1.63.0

AWS SDK for Amazon CloudWatch Logs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListIntegrations`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`integration_name_prefix(impl Into<String>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::integration_name_prefix) / [`set_integration_name_prefix(Option<String>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::set_integration_name_prefix):<br>required: **false**<br><p>To limit the results to integrations that start with a certain name prefix, specify that name prefix here.</p><br>
    ///   - [`integration_type(IntegrationType)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::integration_type) / [`set_integration_type(Option<IntegrationType>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::set_integration_type):<br>required: **false**<br><p>To limit the results to integrations of a certain type, specify that type here.</p><br>
    ///   - [`integration_status(IntegrationStatus)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::integration_status) / [`set_integration_status(Option<IntegrationStatus>)`](crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::set_integration_status):<br>required: **false**<br><p>To limit the results to integrations with a certain status, specify that status here.</p><br>
    /// - On success, responds with [`ListIntegrationsOutput`](crate::operation::list_integrations::ListIntegrationsOutput) with field(s):
    ///   - [`integration_summaries(Option<Vec::<IntegrationSummary>>)`](crate::operation::list_integrations::ListIntegrationsOutput::integration_summaries): <p>An array, where each object in the array contains information about one CloudWatch Logs integration in this account.</p>
    /// - On failure, responds with [`SdkError<ListIntegrationsError>`](crate::operation::list_integrations::ListIntegrationsError)
    pub fn list_integrations(&self) -> crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder {
        crate::operation::list_integrations::builders::ListIntegrationsFluentBuilder::new(self.handle.clone())
    }
}