{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.WAFV2.DisassociateWebACL -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Disassociates the specified regional application resource from any -- existing web ACL association. A resource can have at most one web ACL -- association. A regional application can be an Application Load Balancer -- (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, or an -- Amazon Cognito user pool. -- -- For Amazon CloudFront, don\'t use this call. Instead, use your -- CloudFront distribution configuration. To disassociate a web ACL, -- provide an empty web ACL ID in the CloudFront call @UpdateDistribution@. -- For information, see -- . module Amazonka.WAFV2.DisassociateWebACL ( -- * Creating a Request DisassociateWebACL (..), newDisassociateWebACL, -- * Request Lenses disassociateWebACL_resourceArn, -- * Destructuring the Response DisassociateWebACLResponse (..), newDisassociateWebACLResponse, -- * Response Lenses disassociateWebACLResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.WAFV2.Types -- | /See:/ 'newDisassociateWebACL' smart constructor. data DisassociateWebACL = DisassociateWebACL' { -- | The Amazon Resource Name (ARN) of the resource to disassociate from the -- web ACL. -- -- The ARN must be in one of the following formats: -- -- - For an Application Load Balancer: -- @arn:aws:elasticloadbalancing:@/@region@/@:@/@account-id@/@:loadbalancer\/app\/@/@load-balancer-name@/@\/@/@load-balancer-id@/@ @ -- -- - For an Amazon API Gateway REST API: -- @arn:aws:apigateway:@/@region@/@::\/restapis\/@/@api-id@/@\/stages\/@/@stage-name@/@ @ -- -- - For an AppSync GraphQL API: -- @arn:aws:appsync:@/@region@/@:@/@account-id@/@:apis\/@/@GraphQLApiId@/@ @ -- -- - For an Amazon Cognito user pool: -- @arn:aws:cognito-idp:@/@region@/@:@/@account-id@/@:userpool\/@/@user-pool-id@/@ @ resourceArn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DisassociateWebACL' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'resourceArn', 'disassociateWebACL_resourceArn' - The Amazon Resource Name (ARN) of the resource to disassociate from the -- web ACL. -- -- The ARN must be in one of the following formats: -- -- - For an Application Load Balancer: -- @arn:aws:elasticloadbalancing:@/@region@/@:@/@account-id@/@:loadbalancer\/app\/@/@load-balancer-name@/@\/@/@load-balancer-id@/@ @ -- -- - For an Amazon API Gateway REST API: -- @arn:aws:apigateway:@/@region@/@::\/restapis\/@/@api-id@/@\/stages\/@/@stage-name@/@ @ -- -- - For an AppSync GraphQL API: -- @arn:aws:appsync:@/@region@/@:@/@account-id@/@:apis\/@/@GraphQLApiId@/@ @ -- -- - For an Amazon Cognito user pool: -- @arn:aws:cognito-idp:@/@region@/@:@/@account-id@/@:userpool\/@/@user-pool-id@/@ @ newDisassociateWebACL :: -- | 'resourceArn' Prelude.Text -> DisassociateWebACL newDisassociateWebACL pResourceArn_ = DisassociateWebACL' {resourceArn = pResourceArn_} -- | The Amazon Resource Name (ARN) of the resource to disassociate from the -- web ACL. -- -- The ARN must be in one of the following formats: -- -- - For an Application Load Balancer: -- @arn:aws:elasticloadbalancing:@/@region@/@:@/@account-id@/@:loadbalancer\/app\/@/@load-balancer-name@/@\/@/@load-balancer-id@/@ @ -- -- - For an Amazon API Gateway REST API: -- @arn:aws:apigateway:@/@region@/@::\/restapis\/@/@api-id@/@\/stages\/@/@stage-name@/@ @ -- -- - For an AppSync GraphQL API: -- @arn:aws:appsync:@/@region@/@:@/@account-id@/@:apis\/@/@GraphQLApiId@/@ @ -- -- - For an Amazon Cognito user pool: -- @arn:aws:cognito-idp:@/@region@/@:@/@account-id@/@:userpool\/@/@user-pool-id@/@ @ disassociateWebACL_resourceArn :: Lens.Lens' DisassociateWebACL Prelude.Text disassociateWebACL_resourceArn = Lens.lens (\DisassociateWebACL' {resourceArn} -> resourceArn) (\s@DisassociateWebACL' {} a -> s {resourceArn = a} :: DisassociateWebACL) instance Core.AWSRequest DisassociateWebACL where type AWSResponse DisassociateWebACL = DisassociateWebACLResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> DisassociateWebACLResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DisassociateWebACL where hashWithSalt _salt DisassociateWebACL' {..} = _salt `Prelude.hashWithSalt` resourceArn instance Prelude.NFData DisassociateWebACL where rnf DisassociateWebACL' {..} = Prelude.rnf resourceArn instance Data.ToHeaders DisassociateWebACL where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWSWAF_20190729.DisassociateWebACL" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DisassociateWebACL where toJSON DisassociateWebACL' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("ResourceArn" Data..= resourceArn)] ) instance Data.ToPath DisassociateWebACL where toPath = Prelude.const "/" instance Data.ToQuery DisassociateWebACL where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDisassociateWebACLResponse' smart constructor. data DisassociateWebACLResponse = DisassociateWebACLResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DisassociateWebACLResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'httpStatus', 'disassociateWebACLResponse_httpStatus' - The response's http status code. newDisassociateWebACLResponse :: -- | 'httpStatus' Prelude.Int -> DisassociateWebACLResponse newDisassociateWebACLResponse pHttpStatus_ = DisassociateWebACLResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. disassociateWebACLResponse_httpStatus :: Lens.Lens' DisassociateWebACLResponse Prelude.Int disassociateWebACLResponse_httpStatus = Lens.lens (\DisassociateWebACLResponse' {httpStatus} -> httpStatus) (\s@DisassociateWebACLResponse' {} a -> s {httpStatus = a} :: DisassociateWebACLResponse) instance Prelude.NFData DisassociateWebACLResponse where rnf DisassociateWebACLResponse' {..} = Prelude.rnf httpStatus