aws_sdk_auditmanager/operation/get_insights/
_get_insights_input.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(missing_docs)] // documentation missing in model
3#[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct GetInsightsInput {}
6impl GetInsightsInput {
7    /// Creates a new builder-style object to manufacture [`GetInsightsInput`](crate::operation::get_insights::GetInsightsInput).
8    pub fn builder() -> crate::operation::get_insights::builders::GetInsightsInputBuilder {
9        crate::operation::get_insights::builders::GetInsightsInputBuilder::default()
10    }
11}
12
13/// A builder for [`GetInsightsInput`](crate::operation::get_insights::GetInsightsInput).
14#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
15#[non_exhaustive]
16pub struct GetInsightsInputBuilder {}
17impl GetInsightsInputBuilder {
18    /// Consumes the builder and constructs a [`GetInsightsInput`](crate::operation::get_insights::GetInsightsInput).
19    pub fn build(self) -> ::std::result::Result<crate::operation::get_insights::GetInsightsInput, ::aws_smithy_types::error::operation::BuildError> {
20        ::std::result::Result::Ok(crate::operation::get_insights::GetInsightsInput {})
21    }
22}