// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package securityhub import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" ) type GetEnabledStandardsInput struct { _ struct{} `type:"structure"` // The maximum number of results to return in the response. MaxResults *int64 `min:"1" type:"integer"` // The token that is required for pagination. On your first call to the GetEnabledStandards // operation, set the value of this parameter to NULL. // // For subsequent calls to the operation, to continue listing data, set the // value of this parameter to the value returned from the previous response. NextToken *string `type:"string"` // The list of the standards subscription ARNs for the standards to retrieve. StandardsSubscriptionArns []string `min:"1" type:"list"` } // String returns the string representation func (s GetEnabledStandardsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *GetEnabledStandardsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "GetEnabledStandardsInput"} if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(aws.NewErrParamMinValue("MaxResults", 1)) } if s.StandardsSubscriptionArns != nil && len(s.StandardsSubscriptionArns) < 1 { invalidParams.Add(aws.NewErrParamMinLen("StandardsSubscriptionArns", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetEnabledStandardsInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.MaxResults != nil { v := *s.MaxResults metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "MaxResults", protocol.Int64Value(v), metadata) } if s.NextToken != nil { v := *s.NextToken metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "NextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.StandardsSubscriptionArns != nil { v := s.StandardsSubscriptionArns metadata := protocol.Metadata{} ls0 := e.List(protocol.BodyTarget, "StandardsSubscriptionArns", metadata) ls0.Start() for _, v1 := range v { ls0.ListAddValue(protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v1)}) } ls0.End() } return nil } type GetEnabledStandardsOutput struct { _ struct{} `type:"structure"` // The pagination token to use to request the next page of results. NextToken *string `type:"string"` // The list of StandardsSubscriptions objects that include information about // the enabled standards. StandardsSubscriptions []StandardsSubscription `type:"list"` } // String returns the string representation func (s GetEnabledStandardsOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s GetEnabledStandardsOutput) MarshalFields(e protocol.FieldEncoder) error { if s.NextToken != nil { v := *s.NextToken metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "NextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.StandardsSubscriptions != nil { v := s.StandardsSubscriptions metadata := protocol.Metadata{} ls0 := e.List(protocol.BodyTarget, "StandardsSubscriptions", metadata) ls0.Start() for _, v1 := range v { ls0.ListAddFields(v1) } ls0.End() } return nil } const opGetEnabledStandards = "GetEnabledStandards" // GetEnabledStandardsRequest returns a request value for making API operation for // AWS SecurityHub. // // Returns a list of the standards that are currently enabled. // // // Example sending a request using GetEnabledStandardsRequest. // req := client.GetEnabledStandardsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetEnabledStandards func (c *Client) GetEnabledStandardsRequest(input *GetEnabledStandardsInput) GetEnabledStandardsRequest { op := &aws.Operation{ Name: opGetEnabledStandards, HTTPMethod: "POST", HTTPPath: "/standards/get", Paginator: &aws.Paginator{ InputTokens: []string{"NextToken"}, OutputTokens: []string{"NextToken"}, LimitToken: "MaxResults", TruncationToken: "", }, } if input == nil { input = &GetEnabledStandardsInput{} } req := c.newRequest(op, input, &GetEnabledStandardsOutput{}) return GetEnabledStandardsRequest{Request: req, Input: input, Copy: c.GetEnabledStandardsRequest} } // GetEnabledStandardsRequest is the request type for the // GetEnabledStandards API operation. type GetEnabledStandardsRequest struct { *aws.Request Input *GetEnabledStandardsInput Copy func(*GetEnabledStandardsInput) GetEnabledStandardsRequest } // Send marshals and sends the GetEnabledStandards API request. func (r GetEnabledStandardsRequest) Send(ctx context.Context) (*GetEnabledStandardsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &GetEnabledStandardsResponse{ GetEnabledStandardsOutput: r.Request.Data.(*GetEnabledStandardsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // NewGetEnabledStandardsRequestPaginator returns a paginator for GetEnabledStandards. // Use Next method to get the next page, and CurrentPage to get the current // response page from the paginator. Next will return false, if there are // no more pages, or an error was encountered. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over pages. // req := client.GetEnabledStandardsRequest(input) // p := securityhub.NewGetEnabledStandardsRequestPaginator(req) // // for p.Next(context.TODO()) { // page := p.CurrentPage() // } // // if err := p.Err(); err != nil { // return err // } // func NewGetEnabledStandardsPaginator(req GetEnabledStandardsRequest) GetEnabledStandardsPaginator { return GetEnabledStandardsPaginator{ Pager: aws.Pager{ NewRequest: func(ctx context.Context) (*aws.Request, error) { var inCpy *GetEnabledStandardsInput if req.Input != nil { tmp := *req.Input inCpy = &tmp } newReq := req.Copy(inCpy) newReq.SetContext(ctx) return newReq.Request, nil }, }, } } // GetEnabledStandardsPaginator is used to paginate the request. This can be done by // calling Next and CurrentPage. type GetEnabledStandardsPaginator struct { aws.Pager } func (p *GetEnabledStandardsPaginator) CurrentPage() *GetEnabledStandardsOutput { return p.Pager.CurrentPage().(*GetEnabledStandardsOutput) } // GetEnabledStandardsResponse is the response type for the // GetEnabledStandards API operation. type GetEnabledStandardsResponse struct { *GetEnabledStandardsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // GetEnabledStandards request. func (r *GetEnabledStandardsResponse) SDKResponseMetdata() *aws.Response { return r.response }