1// Code generated by smithy-go-codegen DO NOT EDIT. 2 3package configservice 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/smithy-go/middleware" 10 smithyhttp "github.com/aws/smithy-go/transport/http" 11) 12 13// Deletes the specified organization config rule and all of its evaluation results 14// from all member accounts in that organization. Only a master account and a 15// delegated administrator account can delete an organization config rule. When 16// calling this API with a delegated administrator, you must ensure AWS 17// Organizations ListDelegatedAdministrator permissions are added. AWS Config sets 18// the state of a rule to DELETE_IN_PROGRESS until the deletion is complete. You 19// cannot update a rule while it is in this state. 20func (c *Client) DeleteOrganizationConfigRule(ctx context.Context, params *DeleteOrganizationConfigRuleInput, optFns ...func(*Options)) (*DeleteOrganizationConfigRuleOutput, error) { 21 if params == nil { 22 params = &DeleteOrganizationConfigRuleInput{} 23 } 24 25 result, metadata, err := c.invokeOperation(ctx, "DeleteOrganizationConfigRule", params, optFns, addOperationDeleteOrganizationConfigRuleMiddlewares) 26 if err != nil { 27 return nil, err 28 } 29 30 out := result.(*DeleteOrganizationConfigRuleOutput) 31 out.ResultMetadata = metadata 32 return out, nil 33} 34 35type DeleteOrganizationConfigRuleInput struct { 36 37 // The name of organization config rule that you want to delete. 38 // 39 // This member is required. 40 OrganizationConfigRuleName *string 41} 42 43type DeleteOrganizationConfigRuleOutput struct { 44 // Metadata pertaining to the operation's result. 45 ResultMetadata middleware.Metadata 46} 47 48func addOperationDeleteOrganizationConfigRuleMiddlewares(stack *middleware.Stack, options Options) (err error) { 49 err = stack.Serialize.Add(&awsAwsjson11_serializeOpDeleteOrganizationConfigRule{}, middleware.After) 50 if err != nil { 51 return err 52 } 53 err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpDeleteOrganizationConfigRule{}, middleware.After) 54 if err != nil { 55 return err 56 } 57 if err = addSetLoggerMiddleware(stack, options); err != nil { 58 return err 59 } 60 if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { 61 return err 62 } 63 if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { 64 return err 65 } 66 if err = addResolveEndpointMiddleware(stack, options); err != nil { 67 return err 68 } 69 if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { 70 return err 71 } 72 if err = addRetryMiddlewares(stack, options); err != nil { 73 return err 74 } 75 if err = addHTTPSignerV4Middleware(stack, options); err != nil { 76 return err 77 } 78 if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { 79 return err 80 } 81 if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { 82 return err 83 } 84 if err = addClientUserAgent(stack); err != nil { 85 return err 86 } 87 if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { 88 return err 89 } 90 if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { 91 return err 92 } 93 if err = addOpDeleteOrganizationConfigRuleValidationMiddleware(stack); err != nil { 94 return err 95 } 96 if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDeleteOrganizationConfigRule(options.Region), middleware.Before); err != nil { 97 return err 98 } 99 if err = addRequestIDRetrieverMiddleware(stack); err != nil { 100 return err 101 } 102 if err = addResponseErrorMiddleware(stack); err != nil { 103 return err 104 } 105 if err = addRequestResponseLogging(stack, options); err != nil { 106 return err 107 } 108 return nil 109} 110 111func newServiceMetadataMiddleware_opDeleteOrganizationConfigRule(region string) *awsmiddleware.RegisterServiceMetadata { 112 return &awsmiddleware.RegisterServiceMetadata{ 113 Region: region, 114 ServiceID: ServiceID, 115 SigningName: "config", 116 OperationName: "DeleteOrganizationConfigRule", 117 } 118} 119