aws_sdk_sesv2/operation/get_account/
_get_account_input.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3/// <p>A request to obtain information about the email-sending capabilities of your Amazon SES account.</p>
4#[non_exhaustive]
5#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
6pub struct GetAccountInput {}
7impl GetAccountInput {
8    /// Creates a new builder-style object to manufacture [`GetAccountInput`](crate::operation::get_account::GetAccountInput).
9    pub fn builder() -> crate::operation::get_account::builders::GetAccountInputBuilder {
10        crate::operation::get_account::builders::GetAccountInputBuilder::default()
11    }
12}
13
14/// A builder for [`GetAccountInput`](crate::operation::get_account::GetAccountInput).
15#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
16#[non_exhaustive]
17pub struct GetAccountInputBuilder {}
18impl GetAccountInputBuilder {
19    /// Consumes the builder and constructs a [`GetAccountInput`](crate::operation::get_account::GetAccountInput).
20    pub fn build(self) -> ::std::result::Result<crate::operation::get_account::GetAccountInput, ::aws_smithy_types::error::operation::BuildError> {
21        ::std::result::Result::Ok(crate::operation::get_account::GetAccountInput {})
22    }
23}