// Code generated by smithy-go-codegen DO NOT EDIT. package pinpointemail import ( "context" awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware" "github.com/aws/aws-sdk-go-v2/aws/signer/v4" "github.com/aws/aws-sdk-go-v2/service/pinpointemail/types" "github.com/aws/smithy-go/middleware" smithyhttp "github.com/aws/smithy-go/transport/http" "time" ) // Retrieve information about the status of the Deliverability dashboard for your // Amazon Pinpoint account. When the Deliverability dashboard is enabled, you gain // access to reputation, deliverability, and other metrics for the domains that you // use to send email using Amazon Pinpoint. You also gain the ability to perform // predictive inbox placement tests. When you use the Deliverability dashboard, you // pay a monthly subscription charge, in addition to any other fees that you accrue // by using Amazon Pinpoint. For more information about the features and cost of a // Deliverability dashboard subscription, see Amazon Pinpoint Pricing (http://aws.amazon.com/pinpoint/pricing/) // . func (c *Client) GetDeliverabilityDashboardOptions(ctx context.Context, params *GetDeliverabilityDashboardOptionsInput, optFns ...func(*Options)) (*GetDeliverabilityDashboardOptionsOutput, error) { if params == nil { params = &GetDeliverabilityDashboardOptionsInput{} } result, metadata, err := c.invokeOperation(ctx, "GetDeliverabilityDashboardOptions", params, optFns, c.addOperationGetDeliverabilityDashboardOptionsMiddlewares) if err != nil { return nil, err } out := result.(*GetDeliverabilityDashboardOptionsOutput) out.ResultMetadata = metadata return out, nil } // Retrieve information about the status of the Deliverability dashboard for your // Amazon Pinpoint account. When the Deliverability dashboard is enabled, you gain // access to reputation, deliverability, and other metrics for the domains that you // use to send email using Amazon Pinpoint. You also gain the ability to perform // predictive inbox placement tests. When you use the Deliverability dashboard, you // pay a monthly subscription charge, in addition to any other fees that you accrue // by using Amazon Pinpoint. For more information about the features and cost of a // Deliverability dashboard subscription, see Amazon Pinpoint Pricing (http://aws.amazon.com/pinpoint/pricing/) // . type GetDeliverabilityDashboardOptionsInput struct { noSmithyDocumentSerde } // An object that shows the status of the Deliverability dashboard for your Amazon // Pinpoint account. type GetDeliverabilityDashboardOptionsOutput struct { // Specifies whether the Deliverability dashboard is enabled for your Amazon // Pinpoint account. If this value is true , the dashboard is enabled. // // This member is required. DashboardEnabled bool // The current status of your Deliverability dashboard subscription. If this value // is PENDING_EXPIRATION , your subscription is scheduled to expire at the end of // the current calendar month. AccountStatus types.DeliverabilityDashboardAccountStatus // An array of objects, one for each verified domain that you use to send email // and currently has an active Deliverability dashboard subscription that isn’t // scheduled to expire at the end of the current calendar month. ActiveSubscribedDomains []types.DomainDeliverabilityTrackingOption // An array of objects, one for each verified domain that you use to send email // and currently has an active Deliverability dashboard subscription that's // scheduled to expire at the end of the current calendar month. PendingExpirationSubscribedDomains []types.DomainDeliverabilityTrackingOption // The date, in Unix time format, when your current subscription to the // Deliverability dashboard is scheduled to expire, if your subscription is // scheduled to expire at the end of the current calendar month. This value is null // if you have an active subscription that isn’t due to expire at the end of the // month. SubscriptionExpiryDate *time.Time // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata noSmithyDocumentSerde } func (c *Client) addOperationGetDeliverabilityDashboardOptionsMiddlewares(stack *middleware.Stack, options Options) (err error) { err = stack.Serialize.Add(&awsRestjson1_serializeOpGetDeliverabilityDashboardOptions{}, middleware.After) if err != nil { return err } err = stack.Deserialize.Add(&awsRestjson1_deserializeOpGetDeliverabilityDashboardOptions{}, middleware.After) if err != nil { return err } if err = addSetLoggerMiddleware(stack, options); err != nil { return err } if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { return err } if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { return err } if err = addResolveEndpointMiddleware(stack, options); err != nil { return err } if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { return err } if err = addRetryMiddlewares(stack, options); err != nil { return err } if err = addHTTPSignerV4Middleware(stack, options); err != nil { return err } if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { return err } if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { return err } if err = addClientUserAgent(stack, options); err != nil { return err } if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { return err } if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { return err } if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetDeliverabilityDashboardOptions(options.Region), middleware.Before); err != nil { return err } if err = awsmiddleware.AddRecursionDetection(stack); err != nil { return err } if err = addRequestIDRetrieverMiddleware(stack); err != nil { return err } if err = addResponseErrorMiddleware(stack); err != nil { return err } if err = addRequestResponseLogging(stack, options); err != nil { return err } return nil } func newServiceMetadataMiddleware_opGetDeliverabilityDashboardOptions(region string) *awsmiddleware.RegisterServiceMetadata { return &awsmiddleware.RegisterServiceMetadata{ Region: region, ServiceID: ServiceID, SigningName: "ses", OperationName: "GetDeliverabilityDashboardOptions", } }