1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package sesv2
4
5import (
6	"context"
7	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
8	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
9	"github.com/aws/aws-sdk-go-v2/service/sesv2/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Enable or disable the Deliverability dashboard. When you enable the
15// Deliverability dashboard, you gain access to reputation, deliverability, and
16// other metrics for the domains that you use to send email. You also gain the
17// ability to perform predictive inbox placement tests. When you use the
18// Deliverability dashboard, you pay a monthly subscription charge, in addition to
19// any other fees that you accrue by using Amazon SES and other AWS services. For
20// more information about the features and cost of a Deliverability dashboard
21// subscription, see Amazon SES Pricing (http://aws.amazon.com/ses/pricing/).
22func (c *Client) PutDeliverabilityDashboardOption(ctx context.Context, params *PutDeliverabilityDashboardOptionInput, optFns ...func(*Options)) (*PutDeliverabilityDashboardOptionOutput, error) {
23	if params == nil {
24		params = &PutDeliverabilityDashboardOptionInput{}
25	}
26
27	result, metadata, err := c.invokeOperation(ctx, "PutDeliverabilityDashboardOption", params, optFns, addOperationPutDeliverabilityDashboardOptionMiddlewares)
28	if err != nil {
29		return nil, err
30	}
31
32	out := result.(*PutDeliverabilityDashboardOptionOutput)
33	out.ResultMetadata = metadata
34	return out, nil
35}
36
37// Enable or disable the Deliverability dashboard. When you enable the
38// Deliverability dashboard, you gain access to reputation, deliverability, and
39// other metrics for the domains that you use to send email using Amazon SES API
40// v2. You also gain the ability to perform predictive inbox placement tests. When
41// you use the Deliverability dashboard, you pay a monthly subscription charge, in
42// addition to any other fees that you accrue by using Amazon SES and other AWS
43// services. For more information about the features and cost of a Deliverability
44// dashboard subscription, see Amazon Pinpoint Pricing
45// (http://aws.amazon.com/pinpoint/pricing/).
46type PutDeliverabilityDashboardOptionInput struct {
47
48	// Specifies whether to enable the Deliverability dashboard. To enable the
49	// dashboard, set this value to true.
50	//
51	// This member is required.
52	DashboardEnabled bool
53
54	// An array of objects, one for each verified domain that you use to send email and
55	// enabled the Deliverability dashboard for.
56	SubscribedDomains []types.DomainDeliverabilityTrackingOption
57}
58
59// A response that indicates whether the Deliverability dashboard is enabled.
60type PutDeliverabilityDashboardOptionOutput struct {
61	// Metadata pertaining to the operation's result.
62	ResultMetadata middleware.Metadata
63}
64
65func addOperationPutDeliverabilityDashboardOptionMiddlewares(stack *middleware.Stack, options Options) (err error) {
66	err = stack.Serialize.Add(&awsRestjson1_serializeOpPutDeliverabilityDashboardOption{}, middleware.After)
67	if err != nil {
68		return err
69	}
70	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpPutDeliverabilityDashboardOption{}, middleware.After)
71	if err != nil {
72		return err
73	}
74	if err = addSetLoggerMiddleware(stack, options); err != nil {
75		return err
76	}
77	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
78		return err
79	}
80	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
81		return err
82	}
83	if err = addResolveEndpointMiddleware(stack, options); err != nil {
84		return err
85	}
86	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
87		return err
88	}
89	if err = addRetryMiddlewares(stack, options); err != nil {
90		return err
91	}
92	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
93		return err
94	}
95	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
96		return err
97	}
98	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
99		return err
100	}
101	if err = addClientUserAgent(stack); err != nil {
102		return err
103	}
104	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
105		return err
106	}
107	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
108		return err
109	}
110	if err = addOpPutDeliverabilityDashboardOptionValidationMiddleware(stack); err != nil {
111		return err
112	}
113	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opPutDeliverabilityDashboardOption(options.Region), middleware.Before); err != nil {
114		return err
115	}
116	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
117		return err
118	}
119	if err = addResponseErrorMiddleware(stack); err != nil {
120		return err
121	}
122	if err = addRequestResponseLogging(stack, options); err != nil {
123		return err
124	}
125	return nil
126}
127
128func newServiceMetadataMiddleware_opPutDeliverabilityDashboardOption(region string) *awsmiddleware.RegisterServiceMetadata {
129	return &awsmiddleware.RegisterServiceMetadata{
130		Region:        region,
131		ServiceID:     ServiceID,
132		SigningName:   "ses",
133		OperationName: "PutDeliverabilityDashboardOption",
134	}
135}
136