// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package configservice import ( "context" "fmt" "time" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type PutRemediationExceptionsInput struct { _ struct{} `type:"structure"` // The name of the AWS Config rule for which you want to create remediation // exception. // // ConfigRuleName is a required field ConfigRuleName *string `min:"1" type:"string" required:"true"` // The exception is automatically deleted after the expiration date. ExpirationTime *time.Time `type:"timestamp"` // The message contains an explanation of the exception. Message *string `min:"1" type:"string"` // An exception list of resource exception keys to be processed with the current // request. AWS Config adds exception for each resource key. For example, AWS // Config adds 3 exceptions for 3 resource keys. // // ResourceKeys is a required field ResourceKeys []RemediationExceptionResourceKey `min:"1" type:"list" required:"true"` } // String returns the string representation func (s PutRemediationExceptionsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *PutRemediationExceptionsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "PutRemediationExceptionsInput"} if s.ConfigRuleName == nil { invalidParams.Add(aws.NewErrParamRequired("ConfigRuleName")) } if s.ConfigRuleName != nil && len(*s.ConfigRuleName) < 1 { invalidParams.Add(aws.NewErrParamMinLen("ConfigRuleName", 1)) } if s.Message != nil && len(*s.Message) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Message", 1)) } if s.ResourceKeys == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceKeys")) } if s.ResourceKeys != nil && len(s.ResourceKeys) < 1 { invalidParams.Add(aws.NewErrParamMinLen("ResourceKeys", 1)) } if s.ResourceKeys != nil { for i, v := range s.ResourceKeys { if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "ResourceKeys", i), err.(aws.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } type PutRemediationExceptionsOutput struct { _ struct{} `type:"structure"` // Returns a list of failed remediation exceptions batch objects. Each object // in the batch consists of a list of failed items and failure messages. FailedBatches []FailedRemediationExceptionBatch `type:"list"` } // String returns the string representation func (s PutRemediationExceptionsOutput) String() string { return awsutil.Prettify(s) } const opPutRemediationExceptions = "PutRemediationExceptions" // PutRemediationExceptionsRequest returns a request value for making API operation for // AWS Config. // // A remediation exception is when a specific resource is no longer considered // for auto-remediation. This API adds a new exception or updates an exisiting // exception for a specific resource with a specific AWS Config rule. // // // Example sending a request using PutRemediationExceptionsRequest. // req := client.PutRemediationExceptionsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutRemediationExceptions func (c *Client) PutRemediationExceptionsRequest(input *PutRemediationExceptionsInput) PutRemediationExceptionsRequest { op := &aws.Operation{ Name: opPutRemediationExceptions, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutRemediationExceptionsInput{} } req := c.newRequest(op, input, &PutRemediationExceptionsOutput{}) return PutRemediationExceptionsRequest{Request: req, Input: input, Copy: c.PutRemediationExceptionsRequest} } // PutRemediationExceptionsRequest is the request type for the // PutRemediationExceptions API operation. type PutRemediationExceptionsRequest struct { *aws.Request Input *PutRemediationExceptionsInput Copy func(*PutRemediationExceptionsInput) PutRemediationExceptionsRequest } // Send marshals and sends the PutRemediationExceptions API request. func (r PutRemediationExceptionsRequest) Send(ctx context.Context) (*PutRemediationExceptionsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &PutRemediationExceptionsResponse{ PutRemediationExceptionsOutput: r.Request.Data.(*PutRemediationExceptionsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // PutRemediationExceptionsResponse is the response type for the // PutRemediationExceptions API operation. type PutRemediationExceptionsResponse struct { *PutRemediationExceptionsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // PutRemediationExceptions request. func (r *PutRemediationExceptionsResponse) SDKResponseMetdata() *aws.Response { return r.response }