aws_sdk_sesv2/client/
get_configuration_set.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetConfigurationSet`](crate::operation::get_configuration_set::builders::GetConfigurationSetFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configuration_set_name(impl Into<String>)`](crate::operation::get_configuration_set::builders::GetConfigurationSetFluentBuilder::configuration_set_name) / [`set_configuration_set_name(Option<String>)`](crate::operation::get_configuration_set::builders::GetConfigurationSetFluentBuilder::set_configuration_set_name):<br>required: **true**<br><p>The name of the configuration set.</p><br>
7    /// - On success, responds with [`GetConfigurationSetOutput`](crate::operation::get_configuration_set::GetConfigurationSetOutput) with field(s):
8    ///   - [`configuration_set_name(Option<String>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::configuration_set_name): <p>The name of the configuration set.</p>
9    ///   - [`tracking_options(Option<TrackingOptions>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::tracking_options): <p>An object that defines the open and click tracking options for emails that you send using the configuration set.</p>
10    ///   - [`delivery_options(Option<DeliveryOptions>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::delivery_options): <p>An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.</p>
11    ///   - [`reputation_options(Option<ReputationOptions>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::reputation_options): <p>An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.</p>
12    ///   - [`sending_options(Option<SendingOptions>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::sending_options): <p>An object that defines whether or not Amazon SES can send email that you send using the configuration set.</p>
13    ///   - [`tags(Option<Vec::<Tag>>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::tags): <p>An array of objects that define the tags (keys and values) that are associated with the configuration set.</p>
14    ///   - [`suppression_options(Option<SuppressionOptions>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::suppression_options): <p>An object that contains information about the suppression list preferences for your account.</p>
15    ///   - [`vdm_options(Option<VdmOptions>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::vdm_options): <p>An object that contains information about the VDM preferences for your configuration set.</p>
16    ///   - [`archiving_options(Option<ArchivingOptions>)`](crate::operation::get_configuration_set::GetConfigurationSetOutput::archiving_options): <p>An object that defines the MailManager archive where sent emails are archived that you send using the configuration set.</p>
17    /// - On failure, responds with [`SdkError<GetConfigurationSetError>`](crate::operation::get_configuration_set::GetConfigurationSetError)
18    pub fn get_configuration_set(&self) -> crate::operation::get_configuration_set::builders::GetConfigurationSetFluentBuilder {
19        crate::operation::get_configuration_set::builders::GetConfigurationSetFluentBuilder::new(self.handle.clone())
20    }
21}