service/cloudfront/api_op_AssociateDistributionWebACL.go (141 lines of code) (raw):
// Code generated by smithy-go-codegen DO NOT EDIT.
package cloudfront
import (
"context"
"fmt"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
)
// Associates the WAF web ACL with a distribution.
func (c *Client) AssociateDistributionWebACL(ctx context.Context, params *AssociateDistributionWebACLInput, optFns ...func(*Options)) (*AssociateDistributionWebACLOutput, error) {
if params == nil {
params = &AssociateDistributionWebACLInput{}
}
result, metadata, err := c.invokeOperation(ctx, "AssociateDistributionWebACL", params, optFns, c.addOperationAssociateDistributionWebACLMiddlewares)
if err != nil {
return nil, err
}
out := result.(*AssociateDistributionWebACLOutput)
out.ResultMetadata = metadata
return out, nil
}
type AssociateDistributionWebACLInput struct {
// The ID of the distribution.
//
// This member is required.
Id *string
// The Amazon Resource Name (ARN) of the WAF web ACL to associate.
//
// This member is required.
WebACLArn *string
// The value of the ETag header that you received when retrieving the distribution
// that you're associating with the WAF web ACL.
IfMatch *string
noSmithyDocumentSerde
}
type AssociateDistributionWebACLOutput struct {
// The current version of the distribution.
ETag *string
// The ID of the distribution.
Id *string
// The ARN of the WAF web ACL that you associated with the distribution.
WebACLArn *string
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationAssociateDistributionWebACLMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsRestxml_serializeOpAssociateDistributionWebACL{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsRestxml_deserializeOpAssociateDistributionWebACL{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "AssociateDistributionWebACL"); err != nil {
return fmt.Errorf("add protocol finalizers: %v", err)
}
if err = addlegacyEndpointContextSetter(stack, options); err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = addClientRequestID(stack); err != nil {
return err
}
if err = addComputeContentLength(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
}
if err = addComputePayloadSHA256(stack); err != nil {
return err
}
if err = addRetry(stack, options); err != nil {
return err
}
if err = addRawResponseToMetadata(stack); err != nil {
return err
}
if err = addRecordResponseTiming(stack); err != nil {
return err
}
if err = addSpanRetryLoop(stack, options); 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 = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil {
return err
}
if err = addTimeOffsetBuild(stack, c); err != nil {
return err
}
if err = addUserAgentRetryMode(stack, options); err != nil {
return err
}
if err = addCredentialSource(stack, options); err != nil {
return err
}
if err = addOpAssociateDistributionWebACLValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opAssociateDistributionWebACL(options.Region), middleware.Before); err != nil {
return err
}
if err = 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
}
if err = addDisableHTTPSMiddleware(stack, options); err != nil {
return err
}
if err = addSpanInitializeStart(stack); err != nil {
return err
}
if err = addSpanInitializeEnd(stack); err != nil {
return err
}
if err = addSpanBuildRequestStart(stack); err != nil {
return err
}
if err = addSpanBuildRequestEnd(stack); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opAssociateDistributionWebACL(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "AssociateDistributionWebACL",
}
}