aws_sdk_sesv2/client/put_deliverability_dashboard_option.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 [`PutDeliverabilityDashboardOption`](crate::operation::put_deliverability_dashboard_option::builders::PutDeliverabilityDashboardOptionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`dashboard_enabled(bool)`](crate::operation::put_deliverability_dashboard_option::builders::PutDeliverabilityDashboardOptionFluentBuilder::dashboard_enabled) / [`set_dashboard_enabled(Option<bool>)`](crate::operation::put_deliverability_dashboard_option::builders::PutDeliverabilityDashboardOptionFluentBuilder::set_dashboard_enabled):<br>required: **true**<br><p>Specifies whether to enable the Deliverability dashboard. To enable the dashboard, set this value to <code>true</code>.</p><br>
7 /// - [`subscribed_domains(DomainDeliverabilityTrackingOption)`](crate::operation::put_deliverability_dashboard_option::builders::PutDeliverabilityDashboardOptionFluentBuilder::subscribed_domains) / [`set_subscribed_domains(Option<Vec::<DomainDeliverabilityTrackingOption>>)`](crate::operation::put_deliverability_dashboard_option::builders::PutDeliverabilityDashboardOptionFluentBuilder::set_subscribed_domains):<br>required: **false**<br><p>An array of objects, one for each verified domain that you use to send email and enabled the Deliverability dashboard for.</p><br>
8 /// - On success, responds with [`PutDeliverabilityDashboardOptionOutput`](crate::operation::put_deliverability_dashboard_option::PutDeliverabilityDashboardOptionOutput)
9 /// - On failure, responds with [`SdkError<PutDeliverabilityDashboardOptionError>`](crate::operation::put_deliverability_dashboard_option::PutDeliverabilityDashboardOptionError)
10 pub fn put_deliverability_dashboard_option(
11 &self,
12 ) -> crate::operation::put_deliverability_dashboard_option::builders::PutDeliverabilityDashboardOptionFluentBuilder {
13 crate::operation::put_deliverability_dashboard_option::builders::PutDeliverabilityDashboardOptionFluentBuilder::new(self.handle.clone())
14 }
15}