aws_sdk_pinpointemail/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 that you want to obtain more information about.</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 Pinpoint 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 Pinpoint 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    /// - On failure, responds with [`SdkError<GetConfigurationSetError>`](crate::operation::get_configuration_set::GetConfigurationSetError)
15    pub fn get_configuration_set(&self) -> crate::operation::get_configuration_set::builders::GetConfigurationSetFluentBuilder {
16        crate::operation::get_configuration_set::builders::GetConfigurationSetFluentBuilder::new(self.handle.clone())
17    }
18}