1// Code generated by smithy-go-codegen DO NOT EDIT. 2 3package ses 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/ses/types" 10 "github.com/aws/smithy-go/middleware" 11 smithyhttp "github.com/aws/smithy-go/transport/http" 12) 13 14// Returns the details of the specified configuration set. For information about 15// using configuration sets, see the Amazon SES Developer Guide 16// (https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html). 17// You can execute this operation no more than once per second. 18func (c *Client) DescribeConfigurationSet(ctx context.Context, params *DescribeConfigurationSetInput, optFns ...func(*Options)) (*DescribeConfigurationSetOutput, error) { 19 if params == nil { 20 params = &DescribeConfigurationSetInput{} 21 } 22 23 result, metadata, err := c.invokeOperation(ctx, "DescribeConfigurationSet", params, optFns, addOperationDescribeConfigurationSetMiddlewares) 24 if err != nil { 25 return nil, err 26 } 27 28 out := result.(*DescribeConfigurationSetOutput) 29 out.ResultMetadata = metadata 30 return out, nil 31} 32 33// Represents a request to return the details of a configuration set. Configuration 34// sets enable you to publish email sending events. For information about using 35// configuration sets, see the Amazon SES Developer Guide 36// (https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html). 37type DescribeConfigurationSetInput struct { 38 39 // The name of the configuration set to describe. 40 // 41 // This member is required. 42 ConfigurationSetName *string 43 44 // A list of configuration set attributes to return. 45 ConfigurationSetAttributeNames []types.ConfigurationSetAttribute 46} 47 48// Represents the details of a configuration set. Configuration sets enable you to 49// publish email sending events. For information about using configuration sets, 50// see the Amazon SES Developer Guide 51// (https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html). 52type DescribeConfigurationSetOutput struct { 53 54 // The configuration set object associated with the specified configuration set. 55 ConfigurationSet *types.ConfigurationSet 56 57 // Specifies whether messages that use the configuration set are required to use 58 // Transport Layer Security (TLS). 59 DeliveryOptions *types.DeliveryOptions 60 61 // A list of event destinations associated with the configuration set. 62 EventDestinations []types.EventDestination 63 64 // An object that represents the reputation settings for the configuration set. 65 ReputationOptions *types.ReputationOptions 66 67 // The name of the custom open and click tracking domain associated with the 68 // configuration set. 69 TrackingOptions *types.TrackingOptions 70 71 // Metadata pertaining to the operation's result. 72 ResultMetadata middleware.Metadata 73} 74 75func addOperationDescribeConfigurationSetMiddlewares(stack *middleware.Stack, options Options) (err error) { 76 err = stack.Serialize.Add(&awsAwsquery_serializeOpDescribeConfigurationSet{}, middleware.After) 77 if err != nil { 78 return err 79 } 80 err = stack.Deserialize.Add(&awsAwsquery_deserializeOpDescribeConfigurationSet{}, middleware.After) 81 if err != nil { 82 return err 83 } 84 if err = addSetLoggerMiddleware(stack, options); err != nil { 85 return err 86 } 87 if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { 88 return err 89 } 90 if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { 91 return err 92 } 93 if err = addResolveEndpointMiddleware(stack, options); err != nil { 94 return err 95 } 96 if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { 97 return err 98 } 99 if err = addRetryMiddlewares(stack, options); err != nil { 100 return err 101 } 102 if err = addHTTPSignerV4Middleware(stack, options); err != nil { 103 return err 104 } 105 if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { 106 return err 107 } 108 if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { 109 return err 110 } 111 if err = addClientUserAgent(stack); err != nil { 112 return err 113 } 114 if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { 115 return err 116 } 117 if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { 118 return err 119 } 120 if err = addOpDescribeConfigurationSetValidationMiddleware(stack); err != nil { 121 return err 122 } 123 if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDescribeConfigurationSet(options.Region), middleware.Before); err != nil { 124 return err 125 } 126 if err = addRequestIDRetrieverMiddleware(stack); err != nil { 127 return err 128 } 129 if err = addResponseErrorMiddleware(stack); err != nil { 130 return err 131 } 132 if err = addRequestResponseLogging(stack, options); err != nil { 133 return err 134 } 135 return nil 136} 137 138func newServiceMetadataMiddleware_opDescribeConfigurationSet(region string) *awsmiddleware.RegisterServiceMetadata { 139 return &awsmiddleware.RegisterServiceMetadata{ 140 Region: region, 141 ServiceID: ServiceID, 142 SigningName: "ses", 143 OperationName: "DescribeConfigurationSet", 144 } 145} 146