123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- // Code generated by smithy-go-codegen DO NOT EDIT.
- package cloudwatchlogs
- import (
- "context"
- awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
- "github.com/aws/aws-sdk-go-v2/aws/signer/v4"
- "github.com/aws/smithy-go/middleware"
- smithyhttp "github.com/aws/smithy-go/transport/http"
- )
- // Creates or updates a query definition for CloudWatch Logs Insights. For more
- // information, see Analyzing Log Data with CloudWatch Logs Insights
- // (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AnalyzingLogData.html).
- // To update a query definition, specify its queryDefinitionId in your request. The
- // values of name, queryString, and logGroupNames are changed to the values that
- // you specify in your update operation. No current values are retained from the
- // current query definition. For example, if you update a current query definition
- // that includes log groups, and you don't specify the logGroupNames parameter in
- // your update operation, the query definition changes to contain no log groups.
- // You must have the logs:PutQueryDefinition permission to be able to perform this
- // operation.
- func (c *Client) PutQueryDefinition(ctx context.Context, params *PutQueryDefinitionInput, optFns ...func(*Options)) (*PutQueryDefinitionOutput, error) {
- if params == nil {
- params = &PutQueryDefinitionInput{}
- }
- result, metadata, err := c.invokeOperation(ctx, "PutQueryDefinition", params, optFns, c.addOperationPutQueryDefinitionMiddlewares)
- if err != nil {
- return nil, err
- }
- out := result.(*PutQueryDefinitionOutput)
- out.ResultMetadata = metadata
- return out, nil
- }
- type PutQueryDefinitionInput struct {
- // A name for the query definition. If you are saving a lot of query definitions,
- // we recommend that you name them so that you can easily find the ones you want by
- // using the first part of the name as a filter in the queryDefinitionNamePrefix
- // parameter of DescribeQueryDefinitions
- // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html).
- //
- // This member is required.
- Name *string
- // The query string to use for this definition. For more information, see
- // CloudWatch Logs Insights Query Syntax
- // (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html).
- //
- // This member is required.
- QueryString *string
- // Use this parameter to include specific log groups as part of your query
- // definition. If you are updating a query definition and you omit this parameter,
- // then the updated definition will contain no log groups.
- LogGroupNames []string
- // If you are updating a query definition, use this parameter to specify the ID of
- // the query definition that you want to update. You can use
- // DescribeQueryDefinitions
- // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html)
- // to retrieve the IDs of your saved query definitions. If you are creating a query
- // definition, do not specify this parameter. CloudWatch generates a unique ID for
- // the new query definition and include it in the response to this operation.
- QueryDefinitionId *string
- noSmithyDocumentSerde
- }
- type PutQueryDefinitionOutput struct {
- // The ID of the query definition.
- QueryDefinitionId *string
- // Metadata pertaining to the operation's result.
- ResultMetadata middleware.Metadata
- noSmithyDocumentSerde
- }
- func (c *Client) addOperationPutQueryDefinitionMiddlewares(stack *middleware.Stack, options Options) (err error) {
- err = stack.Serialize.Add(&awsAwsjson11_serializeOpPutQueryDefinition{}, middleware.After)
- if err != nil {
- return err
- }
- err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpPutQueryDefinition{}, middleware.After)
- if err != nil {
- return err
- }
- if err = addSetLoggerMiddleware(stack, options); err != nil {
- return err
- }
- if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
- return err
- }
- if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
- return err
- }
- if err = addResolveEndpointMiddleware(stack, options); err != nil {
- return err
- }
- if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
- return err
- }
- if err = addRetryMiddlewares(stack, options); err != nil {
- return err
- }
- if err = addHTTPSignerV4Middleware(stack, options); err != nil {
- return err
- }
- if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
- return err
- }
- if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
- return err
- }
- if err = addClientUserAgent(stack); err != nil {
- return err
- }
- if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
- return err
- }
- if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
- return err
- }
- if err = addOpPutQueryDefinitionValidationMiddleware(stack); err != nil {
- return err
- }
- if err = stack.Initialize.Add(newServiceMetadataMiddleware_opPutQueryDefinition(options.Region), middleware.Before); 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
- }
- return nil
- }
- func newServiceMetadataMiddleware_opPutQueryDefinition(region string) *awsmiddleware.RegisterServiceMetadata {
- return &awsmiddleware.RegisterServiceMetadata{
- Region: region,
- ServiceID: ServiceID,
- SigningName: "logs",
- OperationName: "PutQueryDefinition",
- }
- }
|