// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package cloudwatchlogs import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awsutil" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/private/protocol" "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" ) const opAssociateKmsKey = "AssociateKmsKey" // AssociateKmsKeyRequest generates a "aws/request.Request" representing the // client's request for the AssociateKmsKey operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See AssociateKmsKey for more information on using the AssociateKmsKey // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the AssociateKmsKeyRequest method. // req, resp := client.AssociateKmsKeyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/AssociateKmsKey func (c *CloudWatchLogs) AssociateKmsKeyRequest(input *AssociateKmsKeyInput) (req *request.Request, output *AssociateKmsKeyOutput) { op := &request.Operation{ Name: opAssociateKmsKey, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &AssociateKmsKeyInput{} } output = &AssociateKmsKeyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // AssociateKmsKey API operation for Amazon CloudWatch Logs. // // Associates the specified KMS key with either one log group in the account, // or with all stored CloudWatch Logs query insights results in the account. // // When you use AssociateKmsKey, you specify either the logGroupName parameter // or the resourceIdentifier parameter. You can't specify both of those parameters // in the same operation. // // - Specify the logGroupName parameter to cause all log events stored in // the log group to be encrypted with that key. Only the log events ingested // after the key is associated are encrypted with that key. Associating a // KMS key with a log group overrides any existing associations between the // log group and a KMS key. After a KMS key is associated with a log group, // all newly ingested data for the log group is encrypted using the KMS key. // This association is stored as long as the data encrypted with the KMS // key is still within CloudWatch Logs. This enables CloudWatch Logs to decrypt // this data whenever it is requested. Associating a key with a log group // does not cause the results of queries of that log group to be encrypted // with that key. To have query results encrypted with a KMS key, you must // use an AssociateKmsKey operation with the resourceIdentifier parameter // that specifies a query-result resource. // // - Specify the resourceIdentifier parameter with a query-result resource, // to use that key to encrypt the stored results of all future StartQuery // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html) // operations in the account. The response from a GetQueryResults (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html) // operation will still return the query results in plain text. Even if you // have not associated a key with your query results, the query results are // encrypted when stored, using the default CloudWatch Logs method. If you // run a query from a monitoring account that queries logs in a source account, // the query results key from the monitoring account, if any, is used. // // If you delete the key that is used to encrypt log events or log group query // results, then all the associated stored log events or query results that // were encrypted with that key will be unencryptable and unusable. // // CloudWatch Logs supports only symmetric KMS keys. Do not use an associate // an asymmetric KMS key with your log group or query results. For more information, // see Using Symmetric and Asymmetric Keys (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html). // // It can take up to 5 minutes for this operation to take effect. // // If you attempt to associate a KMS key with a log group but the KMS key does // not exist or the KMS key is disabled, you receive an InvalidParameterException // error. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation AssociateKmsKey for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/AssociateKmsKey func (c *CloudWatchLogs) AssociateKmsKey(input *AssociateKmsKeyInput) (*AssociateKmsKeyOutput, error) { req, out := c.AssociateKmsKeyRequest(input) return out, req.Send() } // AssociateKmsKeyWithContext is the same as AssociateKmsKey with the addition of // the ability to pass a context and additional request options. // // See AssociateKmsKey for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) AssociateKmsKeyWithContext(ctx aws.Context, input *AssociateKmsKeyInput, opts ...request.Option) (*AssociateKmsKeyOutput, error) { req, out := c.AssociateKmsKeyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCancelExportTask = "CancelExportTask" // CancelExportTaskRequest generates a "aws/request.Request" representing the // client's request for the CancelExportTask operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CancelExportTask for more information on using the CancelExportTask // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CancelExportTaskRequest method. // req, resp := client.CancelExportTaskRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CancelExportTask func (c *CloudWatchLogs) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput) { op := &request.Operation{ Name: opCancelExportTask, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CancelExportTaskInput{} } output = &CancelExportTaskOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // CancelExportTask API operation for Amazon CloudWatch Logs. // // Cancels the specified export task. // // The task must be in the PENDING or RUNNING state. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation CancelExportTask for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - InvalidOperationException // The operation is not valid on the specified resource. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CancelExportTask func (c *CloudWatchLogs) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error) { req, out := c.CancelExportTaskRequest(input) return out, req.Send() } // CancelExportTaskWithContext is the same as CancelExportTask with the addition of // the ability to pass a context and additional request options. // // See CancelExportTask for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) CancelExportTaskWithContext(ctx aws.Context, input *CancelExportTaskInput, opts ...request.Option) (*CancelExportTaskOutput, error) { req, out := c.CancelExportTaskRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateExportTask = "CreateExportTask" // CreateExportTaskRequest generates a "aws/request.Request" representing the // client's request for the CreateExportTask operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateExportTask for more information on using the CreateExportTask // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateExportTaskRequest method. // req, resp := client.CreateExportTaskRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateExportTask func (c *CloudWatchLogs) CreateExportTaskRequest(input *CreateExportTaskInput) (req *request.Request, output *CreateExportTaskOutput) { op := &request.Operation{ Name: opCreateExportTask, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateExportTaskInput{} } output = &CreateExportTaskOutput{} req = c.newRequest(op, input, output) return } // CreateExportTask API operation for Amazon CloudWatch Logs. // // Creates an export task so that you can efficiently export data from a log // group to an Amazon S3 bucket. When you perform a CreateExportTask operation, // you must use credentials that have permission to write to the S3 bucket that // you specify as the destination. // // Exporting log data to S3 buckets that are encrypted by KMS is supported. // Exporting log data to Amazon S3 buckets that have S3 Object Lock enabled // with a retention period is also supported. // // Exporting to S3 buckets that are encrypted with AES-256 is supported. // // This is an asynchronous call. If all the required information is provided, // this operation initiates an export task and responds with the ID of the task. // After the task has started, you can use DescribeExportTasks (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeExportTasks.html) // to get the status of the export task. Each account can only have one active // (RUNNING or PENDING) export task at a time. To cancel an export task, use // CancelExportTask (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_CancelExportTask.html). // // You can export logs from multiple log groups or multiple time ranges to the // same S3 bucket. To separate log data for each export task, specify a prefix // to be used as the Amazon S3 key prefix for all exported objects. // // Time-based sorting on chunks of log data inside an exported file is not guaranteed. // You can sort the exported log field data by using Linux utilities. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation CreateExportTask for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // - ResourceNotFoundException // The specified resource does not exist. // // - ResourceAlreadyExistsException // The specified resource already exists. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateExportTask func (c *CloudWatchLogs) CreateExportTask(input *CreateExportTaskInput) (*CreateExportTaskOutput, error) { req, out := c.CreateExportTaskRequest(input) return out, req.Send() } // CreateExportTaskWithContext is the same as CreateExportTask with the addition of // the ability to pass a context and additional request options. // // See CreateExportTask for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) CreateExportTaskWithContext(ctx aws.Context, input *CreateExportTaskInput, opts ...request.Option) (*CreateExportTaskOutput, error) { req, out := c.CreateExportTaskRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateLogGroup = "CreateLogGroup" // CreateLogGroupRequest generates a "aws/request.Request" representing the // client's request for the CreateLogGroup operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateLogGroup for more information on using the CreateLogGroup // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateLogGroupRequest method. // req, resp := client.CreateLogGroupRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogGroup func (c *CloudWatchLogs) CreateLogGroupRequest(input *CreateLogGroupInput) (req *request.Request, output *CreateLogGroupOutput) { op := &request.Operation{ Name: opCreateLogGroup, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateLogGroupInput{} } output = &CreateLogGroupOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // CreateLogGroup API operation for Amazon CloudWatch Logs. // // Creates a log group with the specified name. You can create up to 20,000 // log groups per account. // // You must use the following guidelines when naming a log group: // // - Log group names must be unique within a Region for an Amazon Web Services // account. // // - Log group names can be between 1 and 512 characters long. // // - Log group names consist of the following characters: a-z, A-Z, 0-9, // '_' (underscore), '-' (hyphen), '/' (forward slash), '.' (period), and // '#' (number sign) // // When you create a log group, by default the log events in the log group do // not expire. To set a retention policy so that events expire and are deleted // after a specified time, use PutRetentionPolicy (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutRetentionPolicy.html). // // If you associate an KMS key with the log group, ingested data is encrypted // using the KMS key. This association is stored as long as the data encrypted // with the KMS key is still within CloudWatch Logs. This enables CloudWatch // Logs to decrypt this data whenever it is requested. // // If you attempt to associate a KMS key with the log group but the KMS key // does not exist or the KMS key is disabled, you receive an InvalidParameterException // error. // // CloudWatch Logs supports only symmetric KMS keys. Do not associate an asymmetric // KMS key with your log group. For more information, see Using Symmetric and // Asymmetric Keys (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation CreateLogGroup for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceAlreadyExistsException // The specified resource already exists. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogGroup func (c *CloudWatchLogs) CreateLogGroup(input *CreateLogGroupInput) (*CreateLogGroupOutput, error) { req, out := c.CreateLogGroupRequest(input) return out, req.Send() } // CreateLogGroupWithContext is the same as CreateLogGroup with the addition of // the ability to pass a context and additional request options. // // See CreateLogGroup for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) CreateLogGroupWithContext(ctx aws.Context, input *CreateLogGroupInput, opts ...request.Option) (*CreateLogGroupOutput, error) { req, out := c.CreateLogGroupRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opCreateLogStream = "CreateLogStream" // CreateLogStreamRequest generates a "aws/request.Request" representing the // client's request for the CreateLogStream operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See CreateLogStream for more information on using the CreateLogStream // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the CreateLogStreamRequest method. // req, resp := client.CreateLogStreamRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogStream func (c *CloudWatchLogs) CreateLogStreamRequest(input *CreateLogStreamInput) (req *request.Request, output *CreateLogStreamOutput) { op := &request.Operation{ Name: opCreateLogStream, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateLogStreamInput{} } output = &CreateLogStreamOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // CreateLogStream API operation for Amazon CloudWatch Logs. // // Creates a log stream for the specified log group. A log stream is a sequence // of log events that originate from a single source, such as an application // instance or a resource that is being monitored. // // There is no limit on the number of log streams that you can create for a // log group. There is a limit of 50 TPS on CreateLogStream operations, after // which transactions are throttled. // // You must use the following guidelines when naming a log stream: // // - Log stream names must be unique within the log group. // // - Log stream names can be between 1 and 512 characters long. // // - Don't use ':' (colon) or '*' (asterisk) characters. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation CreateLogStream for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceAlreadyExistsException // The specified resource already exists. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogStream func (c *CloudWatchLogs) CreateLogStream(input *CreateLogStreamInput) (*CreateLogStreamOutput, error) { req, out := c.CreateLogStreamRequest(input) return out, req.Send() } // CreateLogStreamWithContext is the same as CreateLogStream with the addition of // the ability to pass a context and additional request options. // // See CreateLogStream for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) CreateLogStreamWithContext(ctx aws.Context, input *CreateLogStreamInput, opts ...request.Option) (*CreateLogStreamOutput, error) { req, out := c.CreateLogStreamRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteAccountPolicy = "DeleteAccountPolicy" // DeleteAccountPolicyRequest generates a "aws/request.Request" representing the // client's request for the DeleteAccountPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteAccountPolicy for more information on using the DeleteAccountPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteAccountPolicyRequest method. // req, resp := client.DeleteAccountPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteAccountPolicy func (c *CloudWatchLogs) DeleteAccountPolicyRequest(input *DeleteAccountPolicyInput) (req *request.Request, output *DeleteAccountPolicyOutput) { op := &request.Operation{ Name: opDeleteAccountPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteAccountPolicyInput{} } output = &DeleteAccountPolicyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteAccountPolicy API operation for Amazon CloudWatch Logs. // // Deletes a CloudWatch Logs account policy. // // To use this operation, you must be signed on with the logs:DeleteDataProtectionPolicy // and logs:DeleteAccountPolicy permissions. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteAccountPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteAccountPolicy func (c *CloudWatchLogs) DeleteAccountPolicy(input *DeleteAccountPolicyInput) (*DeleteAccountPolicyOutput, error) { req, out := c.DeleteAccountPolicyRequest(input) return out, req.Send() } // DeleteAccountPolicyWithContext is the same as DeleteAccountPolicy with the addition of // the ability to pass a context and additional request options. // // See DeleteAccountPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteAccountPolicyWithContext(ctx aws.Context, input *DeleteAccountPolicyInput, opts ...request.Option) (*DeleteAccountPolicyOutput, error) { req, out := c.DeleteAccountPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteDataProtectionPolicy = "DeleteDataProtectionPolicy" // DeleteDataProtectionPolicyRequest generates a "aws/request.Request" representing the // client's request for the DeleteDataProtectionPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteDataProtectionPolicy for more information on using the DeleteDataProtectionPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteDataProtectionPolicyRequest method. // req, resp := client.DeleteDataProtectionPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDataProtectionPolicy func (c *CloudWatchLogs) DeleteDataProtectionPolicyRequest(input *DeleteDataProtectionPolicyInput) (req *request.Request, output *DeleteDataProtectionPolicyOutput) { op := &request.Operation{ Name: opDeleteDataProtectionPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteDataProtectionPolicyInput{} } output = &DeleteDataProtectionPolicyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteDataProtectionPolicy API operation for Amazon CloudWatch Logs. // // Deletes the data protection policy from the specified log group. // // For more information about data protection policies, see PutDataProtectionPolicy // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDataProtectionPolicy.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteDataProtectionPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDataProtectionPolicy func (c *CloudWatchLogs) DeleteDataProtectionPolicy(input *DeleteDataProtectionPolicyInput) (*DeleteDataProtectionPolicyOutput, error) { req, out := c.DeleteDataProtectionPolicyRequest(input) return out, req.Send() } // DeleteDataProtectionPolicyWithContext is the same as DeleteDataProtectionPolicy with the addition of // the ability to pass a context and additional request options. // // See DeleteDataProtectionPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteDataProtectionPolicyWithContext(ctx aws.Context, input *DeleteDataProtectionPolicyInput, opts ...request.Option) (*DeleteDataProtectionPolicyOutput, error) { req, out := c.DeleteDataProtectionPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteDestination = "DeleteDestination" // DeleteDestinationRequest generates a "aws/request.Request" representing the // client's request for the DeleteDestination operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteDestination for more information on using the DeleteDestination // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteDestinationRequest method. // req, resp := client.DeleteDestinationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDestination func (c *CloudWatchLogs) DeleteDestinationRequest(input *DeleteDestinationInput) (req *request.Request, output *DeleteDestinationOutput) { op := &request.Operation{ Name: opDeleteDestination, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteDestinationInput{} } output = &DeleteDestinationOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteDestination API operation for Amazon CloudWatch Logs. // // Deletes the specified destination, and eventually disables all the subscription // filters that publish to it. This operation does not delete the physical resource // encapsulated by the destination. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteDestination for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDestination func (c *CloudWatchLogs) DeleteDestination(input *DeleteDestinationInput) (*DeleteDestinationOutput, error) { req, out := c.DeleteDestinationRequest(input) return out, req.Send() } // DeleteDestinationWithContext is the same as DeleteDestination with the addition of // the ability to pass a context and additional request options. // // See DeleteDestination for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteDestinationWithContext(ctx aws.Context, input *DeleteDestinationInput, opts ...request.Option) (*DeleteDestinationOutput, error) { req, out := c.DeleteDestinationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteLogGroup = "DeleteLogGroup" // DeleteLogGroupRequest generates a "aws/request.Request" representing the // client's request for the DeleteLogGroup operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteLogGroup for more information on using the DeleteLogGroup // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteLogGroupRequest method. // req, resp := client.DeleteLogGroupRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogGroup func (c *CloudWatchLogs) DeleteLogGroupRequest(input *DeleteLogGroupInput) (req *request.Request, output *DeleteLogGroupOutput) { op := &request.Operation{ Name: opDeleteLogGroup, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteLogGroupInput{} } output = &DeleteLogGroupOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteLogGroup API operation for Amazon CloudWatch Logs. // // Deletes the specified log group and permanently deletes all the archived // log events associated with the log group. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteLogGroup for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogGroup func (c *CloudWatchLogs) DeleteLogGroup(input *DeleteLogGroupInput) (*DeleteLogGroupOutput, error) { req, out := c.DeleteLogGroupRequest(input) return out, req.Send() } // DeleteLogGroupWithContext is the same as DeleteLogGroup with the addition of // the ability to pass a context and additional request options. // // See DeleteLogGroup for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteLogGroupWithContext(ctx aws.Context, input *DeleteLogGroupInput, opts ...request.Option) (*DeleteLogGroupOutput, error) { req, out := c.DeleteLogGroupRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteLogStream = "DeleteLogStream" // DeleteLogStreamRequest generates a "aws/request.Request" representing the // client's request for the DeleteLogStream operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteLogStream for more information on using the DeleteLogStream // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteLogStreamRequest method. // req, resp := client.DeleteLogStreamRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogStream func (c *CloudWatchLogs) DeleteLogStreamRequest(input *DeleteLogStreamInput) (req *request.Request, output *DeleteLogStreamOutput) { op := &request.Operation{ Name: opDeleteLogStream, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteLogStreamInput{} } output = &DeleteLogStreamOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteLogStream API operation for Amazon CloudWatch Logs. // // Deletes the specified log stream and permanently deletes all the archived // log events associated with the log stream. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteLogStream for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogStream func (c *CloudWatchLogs) DeleteLogStream(input *DeleteLogStreamInput) (*DeleteLogStreamOutput, error) { req, out := c.DeleteLogStreamRequest(input) return out, req.Send() } // DeleteLogStreamWithContext is the same as DeleteLogStream with the addition of // the ability to pass a context and additional request options. // // See DeleteLogStream for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteLogStreamWithContext(ctx aws.Context, input *DeleteLogStreamInput, opts ...request.Option) (*DeleteLogStreamOutput, error) { req, out := c.DeleteLogStreamRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteMetricFilter = "DeleteMetricFilter" // DeleteMetricFilterRequest generates a "aws/request.Request" representing the // client's request for the DeleteMetricFilter operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteMetricFilter for more information on using the DeleteMetricFilter // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteMetricFilterRequest method. // req, resp := client.DeleteMetricFilterRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteMetricFilter func (c *CloudWatchLogs) DeleteMetricFilterRequest(input *DeleteMetricFilterInput) (req *request.Request, output *DeleteMetricFilterOutput) { op := &request.Operation{ Name: opDeleteMetricFilter, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteMetricFilterInput{} } output = &DeleteMetricFilterOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteMetricFilter API operation for Amazon CloudWatch Logs. // // Deletes the specified metric filter. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteMetricFilter for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteMetricFilter func (c *CloudWatchLogs) DeleteMetricFilter(input *DeleteMetricFilterInput) (*DeleteMetricFilterOutput, error) { req, out := c.DeleteMetricFilterRequest(input) return out, req.Send() } // DeleteMetricFilterWithContext is the same as DeleteMetricFilter with the addition of // the ability to pass a context and additional request options. // // See DeleteMetricFilter for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteMetricFilterWithContext(ctx aws.Context, input *DeleteMetricFilterInput, opts ...request.Option) (*DeleteMetricFilterOutput, error) { req, out := c.DeleteMetricFilterRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteQueryDefinition = "DeleteQueryDefinition" // DeleteQueryDefinitionRequest generates a "aws/request.Request" representing the // client's request for the DeleteQueryDefinition operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteQueryDefinition for more information on using the DeleteQueryDefinition // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteQueryDefinitionRequest method. // req, resp := client.DeleteQueryDefinitionRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteQueryDefinition func (c *CloudWatchLogs) DeleteQueryDefinitionRequest(input *DeleteQueryDefinitionInput) (req *request.Request, output *DeleteQueryDefinitionOutput) { op := &request.Operation{ Name: opDeleteQueryDefinition, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteQueryDefinitionInput{} } output = &DeleteQueryDefinitionOutput{} req = c.newRequest(op, input, output) return } // DeleteQueryDefinition API operation for Amazon CloudWatch Logs. // // Deletes a saved CloudWatch Logs Insights query definition. A query definition // contains details about a saved CloudWatch Logs Insights query. // // Each DeleteQueryDefinition operation can delete one query definition. // // You must have the logs:DeleteQueryDefinition permission to be able to perform // this operation. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteQueryDefinition for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteQueryDefinition func (c *CloudWatchLogs) DeleteQueryDefinition(input *DeleteQueryDefinitionInput) (*DeleteQueryDefinitionOutput, error) { req, out := c.DeleteQueryDefinitionRequest(input) return out, req.Send() } // DeleteQueryDefinitionWithContext is the same as DeleteQueryDefinition with the addition of // the ability to pass a context and additional request options. // // See DeleteQueryDefinition for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteQueryDefinitionWithContext(ctx aws.Context, input *DeleteQueryDefinitionInput, opts ...request.Option) (*DeleteQueryDefinitionOutput, error) { req, out := c.DeleteQueryDefinitionRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteResourcePolicy = "DeleteResourcePolicy" // DeleteResourcePolicyRequest generates a "aws/request.Request" representing the // client's request for the DeleteResourcePolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteResourcePolicy for more information on using the DeleteResourcePolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteResourcePolicyRequest method. // req, resp := client.DeleteResourcePolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteResourcePolicy func (c *CloudWatchLogs) DeleteResourcePolicyRequest(input *DeleteResourcePolicyInput) (req *request.Request, output *DeleteResourcePolicyOutput) { op := &request.Operation{ Name: opDeleteResourcePolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteResourcePolicyInput{} } output = &DeleteResourcePolicyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteResourcePolicy API operation for Amazon CloudWatch Logs. // // Deletes a resource policy from this account. This revokes the access of the // identities in that policy to put log events to this account. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteResourcePolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteResourcePolicy func (c *CloudWatchLogs) DeleteResourcePolicy(input *DeleteResourcePolicyInput) (*DeleteResourcePolicyOutput, error) { req, out := c.DeleteResourcePolicyRequest(input) return out, req.Send() } // DeleteResourcePolicyWithContext is the same as DeleteResourcePolicy with the addition of // the ability to pass a context and additional request options. // // See DeleteResourcePolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteResourcePolicyWithContext(ctx aws.Context, input *DeleteResourcePolicyInput, opts ...request.Option) (*DeleteResourcePolicyOutput, error) { req, out := c.DeleteResourcePolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteRetentionPolicy = "DeleteRetentionPolicy" // DeleteRetentionPolicyRequest generates a "aws/request.Request" representing the // client's request for the DeleteRetentionPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteRetentionPolicy for more information on using the DeleteRetentionPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteRetentionPolicyRequest method. // req, resp := client.DeleteRetentionPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteRetentionPolicy func (c *CloudWatchLogs) DeleteRetentionPolicyRequest(input *DeleteRetentionPolicyInput) (req *request.Request, output *DeleteRetentionPolicyOutput) { op := &request.Operation{ Name: opDeleteRetentionPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteRetentionPolicyInput{} } output = &DeleteRetentionPolicyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteRetentionPolicy API operation for Amazon CloudWatch Logs. // // Deletes the specified retention policy. // // Log events do not expire if they belong to log groups without a retention // policy. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteRetentionPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteRetentionPolicy func (c *CloudWatchLogs) DeleteRetentionPolicy(input *DeleteRetentionPolicyInput) (*DeleteRetentionPolicyOutput, error) { req, out := c.DeleteRetentionPolicyRequest(input) return out, req.Send() } // DeleteRetentionPolicyWithContext is the same as DeleteRetentionPolicy with the addition of // the ability to pass a context and additional request options. // // See DeleteRetentionPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteRetentionPolicyWithContext(ctx aws.Context, input *DeleteRetentionPolicyInput, opts ...request.Option) (*DeleteRetentionPolicyOutput, error) { req, out := c.DeleteRetentionPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDeleteSubscriptionFilter = "DeleteSubscriptionFilter" // DeleteSubscriptionFilterRequest generates a "aws/request.Request" representing the // client's request for the DeleteSubscriptionFilter operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DeleteSubscriptionFilter for more information on using the DeleteSubscriptionFilter // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DeleteSubscriptionFilterRequest method. // req, resp := client.DeleteSubscriptionFilterRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteSubscriptionFilter func (c *CloudWatchLogs) DeleteSubscriptionFilterRequest(input *DeleteSubscriptionFilterInput) (req *request.Request, output *DeleteSubscriptionFilterOutput) { op := &request.Operation{ Name: opDeleteSubscriptionFilter, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteSubscriptionFilterInput{} } output = &DeleteSubscriptionFilterOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DeleteSubscriptionFilter API operation for Amazon CloudWatch Logs. // // Deletes the specified subscription filter. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DeleteSubscriptionFilter for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteSubscriptionFilter func (c *CloudWatchLogs) DeleteSubscriptionFilter(input *DeleteSubscriptionFilterInput) (*DeleteSubscriptionFilterOutput, error) { req, out := c.DeleteSubscriptionFilterRequest(input) return out, req.Send() } // DeleteSubscriptionFilterWithContext is the same as DeleteSubscriptionFilter with the addition of // the ability to pass a context and additional request options. // // See DeleteSubscriptionFilter for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DeleteSubscriptionFilterWithContext(ctx aws.Context, input *DeleteSubscriptionFilterInput, opts ...request.Option) (*DeleteSubscriptionFilterOutput, error) { req, out := c.DeleteSubscriptionFilterRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeAccountPolicies = "DescribeAccountPolicies" // DescribeAccountPoliciesRequest generates a "aws/request.Request" representing the // client's request for the DescribeAccountPolicies operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeAccountPolicies for more information on using the DescribeAccountPolicies // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeAccountPoliciesRequest method. // req, resp := client.DescribeAccountPoliciesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeAccountPolicies func (c *CloudWatchLogs) DescribeAccountPoliciesRequest(input *DescribeAccountPoliciesInput) (req *request.Request, output *DescribeAccountPoliciesOutput) { op := &request.Operation{ Name: opDescribeAccountPolicies, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeAccountPoliciesInput{} } output = &DescribeAccountPoliciesOutput{} req = c.newRequest(op, input, output) return } // DescribeAccountPolicies API operation for Amazon CloudWatch Logs. // // Returns a list of all CloudWatch Logs account policies in the account. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeAccountPolicies for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeAccountPolicies func (c *CloudWatchLogs) DescribeAccountPolicies(input *DescribeAccountPoliciesInput) (*DescribeAccountPoliciesOutput, error) { req, out := c.DescribeAccountPoliciesRequest(input) return out, req.Send() } // DescribeAccountPoliciesWithContext is the same as DescribeAccountPolicies with the addition of // the ability to pass a context and additional request options. // // See DescribeAccountPolicies for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeAccountPoliciesWithContext(ctx aws.Context, input *DescribeAccountPoliciesInput, opts ...request.Option) (*DescribeAccountPoliciesOutput, error) { req, out := c.DescribeAccountPoliciesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeDestinations = "DescribeDestinations" // DescribeDestinationsRequest generates a "aws/request.Request" representing the // client's request for the DescribeDestinations operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeDestinations for more information on using the DescribeDestinations // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeDestinationsRequest method. // req, resp := client.DescribeDestinationsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeDestinations func (c *CloudWatchLogs) DescribeDestinationsRequest(input *DescribeDestinationsInput) (req *request.Request, output *DescribeDestinationsOutput) { op := &request.Operation{ Name: opDescribeDestinations, HTTPMethod: "POST", HTTPPath: "/", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "limit", TruncationToken: "", }, } if input == nil { input = &DescribeDestinationsInput{} } output = &DescribeDestinationsOutput{} req = c.newRequest(op, input, output) return } // DescribeDestinations API operation for Amazon CloudWatch Logs. // // Lists all your destinations. The results are ASCII-sorted by destination // name. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeDestinations for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeDestinations func (c *CloudWatchLogs) DescribeDestinations(input *DescribeDestinationsInput) (*DescribeDestinationsOutput, error) { req, out := c.DescribeDestinationsRequest(input) return out, req.Send() } // DescribeDestinationsWithContext is the same as DescribeDestinations with the addition of // the ability to pass a context and additional request options. // // See DescribeDestinations for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeDestinationsWithContext(ctx aws.Context, input *DescribeDestinationsInput, opts ...request.Option) (*DescribeDestinationsOutput, error) { req, out := c.DescribeDestinationsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // DescribeDestinationsPages iterates over the pages of a DescribeDestinations operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See DescribeDestinations method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a DescribeDestinations operation. // pageNum := 0 // err := client.DescribeDestinationsPages(params, // func(page *cloudwatchlogs.DescribeDestinationsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CloudWatchLogs) DescribeDestinationsPages(input *DescribeDestinationsInput, fn func(*DescribeDestinationsOutput, bool) bool) error { return c.DescribeDestinationsPagesWithContext(aws.BackgroundContext(), input, fn) } // DescribeDestinationsPagesWithContext same as DescribeDestinationsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeDestinationsPagesWithContext(ctx aws.Context, input *DescribeDestinationsInput, fn func(*DescribeDestinationsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ EndPageOnSameToken: true, NewRequest: func() (*request.Request, error) { var inCpy *DescribeDestinationsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.DescribeDestinationsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*DescribeDestinationsOutput), !p.HasNextPage()) { break } } return p.Err() } const opDescribeExportTasks = "DescribeExportTasks" // DescribeExportTasksRequest generates a "aws/request.Request" representing the // client's request for the DescribeExportTasks operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeExportTasks for more information on using the DescribeExportTasks // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeExportTasksRequest method. // req, resp := client.DescribeExportTasksRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeExportTasks func (c *CloudWatchLogs) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput) { op := &request.Operation{ Name: opDescribeExportTasks, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeExportTasksInput{} } output = &DescribeExportTasksOutput{} req = c.newRequest(op, input, output) return } // DescribeExportTasks API operation for Amazon CloudWatch Logs. // // Lists the specified export tasks. You can list all your export tasks or filter // the results based on task ID or task status. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeExportTasks for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeExportTasks func (c *CloudWatchLogs) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error) { req, out := c.DescribeExportTasksRequest(input) return out, req.Send() } // DescribeExportTasksWithContext is the same as DescribeExportTasks with the addition of // the ability to pass a context and additional request options. // // See DescribeExportTasks for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeExportTasksWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.Option) (*DescribeExportTasksOutput, error) { req, out := c.DescribeExportTasksRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeLogGroups = "DescribeLogGroups" // DescribeLogGroupsRequest generates a "aws/request.Request" representing the // client's request for the DescribeLogGroups operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeLogGroups for more information on using the DescribeLogGroups // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeLogGroupsRequest method. // req, resp := client.DescribeLogGroupsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogGroups func (c *CloudWatchLogs) DescribeLogGroupsRequest(input *DescribeLogGroupsInput) (req *request.Request, output *DescribeLogGroupsOutput) { op := &request.Operation{ Name: opDescribeLogGroups, HTTPMethod: "POST", HTTPPath: "/", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "limit", TruncationToken: "", }, } if input == nil { input = &DescribeLogGroupsInput{} } output = &DescribeLogGroupsOutput{} req = c.newRequest(op, input, output) return } // DescribeLogGroups API operation for Amazon CloudWatch Logs. // // Lists the specified log groups. You can list all your log groups or filter // the results by prefix. The results are ASCII-sorted by log group name. // // CloudWatch Logs doesn’t support IAM policies that control access to the // DescribeLogGroups action by using the aws:ResourceTag/key-name condition // key. Other CloudWatch Logs actions do support the use of the aws:ResourceTag/key-name // condition key to control access. For more information about using tags to // control access, see Controlling access to Amazon Web Services resources using // tags (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html). // // If you are using CloudWatch cross-account observability, you can use this // operation in a monitoring account and view data from the linked source accounts. // For more information, see CloudWatch cross-account observability (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeLogGroups for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogGroups func (c *CloudWatchLogs) DescribeLogGroups(input *DescribeLogGroupsInput) (*DescribeLogGroupsOutput, error) { req, out := c.DescribeLogGroupsRequest(input) return out, req.Send() } // DescribeLogGroupsWithContext is the same as DescribeLogGroups with the addition of // the ability to pass a context and additional request options. // // See DescribeLogGroups for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeLogGroupsWithContext(ctx aws.Context, input *DescribeLogGroupsInput, opts ...request.Option) (*DescribeLogGroupsOutput, error) { req, out := c.DescribeLogGroupsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // DescribeLogGroupsPages iterates over the pages of a DescribeLogGroups operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See DescribeLogGroups method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a DescribeLogGroups operation. // pageNum := 0 // err := client.DescribeLogGroupsPages(params, // func(page *cloudwatchlogs.DescribeLogGroupsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CloudWatchLogs) DescribeLogGroupsPages(input *DescribeLogGroupsInput, fn func(*DescribeLogGroupsOutput, bool) bool) error { return c.DescribeLogGroupsPagesWithContext(aws.BackgroundContext(), input, fn) } // DescribeLogGroupsPagesWithContext same as DescribeLogGroupsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeLogGroupsPagesWithContext(ctx aws.Context, input *DescribeLogGroupsInput, fn func(*DescribeLogGroupsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ EndPageOnSameToken: true, NewRequest: func() (*request.Request, error) { var inCpy *DescribeLogGroupsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.DescribeLogGroupsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*DescribeLogGroupsOutput), !p.HasNextPage()) { break } } return p.Err() } const opDescribeLogStreams = "DescribeLogStreams" // DescribeLogStreamsRequest generates a "aws/request.Request" representing the // client's request for the DescribeLogStreams operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeLogStreams for more information on using the DescribeLogStreams // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeLogStreamsRequest method. // req, resp := client.DescribeLogStreamsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogStreams func (c *CloudWatchLogs) DescribeLogStreamsRequest(input *DescribeLogStreamsInput) (req *request.Request, output *DescribeLogStreamsOutput) { op := &request.Operation{ Name: opDescribeLogStreams, HTTPMethod: "POST", HTTPPath: "/", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "limit", TruncationToken: "", }, } if input == nil { input = &DescribeLogStreamsInput{} } output = &DescribeLogStreamsOutput{} req = c.newRequest(op, input, output) return } // DescribeLogStreams API operation for Amazon CloudWatch Logs. // // Lists the log streams for the specified log group. You can list all the log // streams or filter the results by prefix. You can also control how the results // are ordered. // // You can specify the log group to search by using either logGroupIdentifier // or logGroupName. You must include one of these two parameters, but you can't // include both. // // This operation has a limit of five transactions per second, after which transactions // are throttled. // // If you are using CloudWatch cross-account observability, you can use this // operation in a monitoring account and view data from the linked source accounts. // For more information, see CloudWatch cross-account observability (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeLogStreams for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogStreams func (c *CloudWatchLogs) DescribeLogStreams(input *DescribeLogStreamsInput) (*DescribeLogStreamsOutput, error) { req, out := c.DescribeLogStreamsRequest(input) return out, req.Send() } // DescribeLogStreamsWithContext is the same as DescribeLogStreams with the addition of // the ability to pass a context and additional request options. // // See DescribeLogStreams for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeLogStreamsWithContext(ctx aws.Context, input *DescribeLogStreamsInput, opts ...request.Option) (*DescribeLogStreamsOutput, error) { req, out := c.DescribeLogStreamsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // DescribeLogStreamsPages iterates over the pages of a DescribeLogStreams operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See DescribeLogStreams method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a DescribeLogStreams operation. // pageNum := 0 // err := client.DescribeLogStreamsPages(params, // func(page *cloudwatchlogs.DescribeLogStreamsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CloudWatchLogs) DescribeLogStreamsPages(input *DescribeLogStreamsInput, fn func(*DescribeLogStreamsOutput, bool) bool) error { return c.DescribeLogStreamsPagesWithContext(aws.BackgroundContext(), input, fn) } // DescribeLogStreamsPagesWithContext same as DescribeLogStreamsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeLogStreamsPagesWithContext(ctx aws.Context, input *DescribeLogStreamsInput, fn func(*DescribeLogStreamsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ EndPageOnSameToken: true, NewRequest: func() (*request.Request, error) { var inCpy *DescribeLogStreamsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.DescribeLogStreamsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*DescribeLogStreamsOutput), !p.HasNextPage()) { break } } return p.Err() } const opDescribeMetricFilters = "DescribeMetricFilters" // DescribeMetricFiltersRequest generates a "aws/request.Request" representing the // client's request for the DescribeMetricFilters operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeMetricFilters for more information on using the DescribeMetricFilters // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeMetricFiltersRequest method. // req, resp := client.DescribeMetricFiltersRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeMetricFilters func (c *CloudWatchLogs) DescribeMetricFiltersRequest(input *DescribeMetricFiltersInput) (req *request.Request, output *DescribeMetricFiltersOutput) { op := &request.Operation{ Name: opDescribeMetricFilters, HTTPMethod: "POST", HTTPPath: "/", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "limit", TruncationToken: "", }, } if input == nil { input = &DescribeMetricFiltersInput{} } output = &DescribeMetricFiltersOutput{} req = c.newRequest(op, input, output) return } // DescribeMetricFilters API operation for Amazon CloudWatch Logs. // // Lists the specified metric filters. You can list all of the metric filters // or filter the results by log name, prefix, metric name, or metric namespace. // The results are ASCII-sorted by filter name. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeMetricFilters for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeMetricFilters func (c *CloudWatchLogs) DescribeMetricFilters(input *DescribeMetricFiltersInput) (*DescribeMetricFiltersOutput, error) { req, out := c.DescribeMetricFiltersRequest(input) return out, req.Send() } // DescribeMetricFiltersWithContext is the same as DescribeMetricFilters with the addition of // the ability to pass a context and additional request options. // // See DescribeMetricFilters for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeMetricFiltersWithContext(ctx aws.Context, input *DescribeMetricFiltersInput, opts ...request.Option) (*DescribeMetricFiltersOutput, error) { req, out := c.DescribeMetricFiltersRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // DescribeMetricFiltersPages iterates over the pages of a DescribeMetricFilters operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See DescribeMetricFilters method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a DescribeMetricFilters operation. // pageNum := 0 // err := client.DescribeMetricFiltersPages(params, // func(page *cloudwatchlogs.DescribeMetricFiltersOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CloudWatchLogs) DescribeMetricFiltersPages(input *DescribeMetricFiltersInput, fn func(*DescribeMetricFiltersOutput, bool) bool) error { return c.DescribeMetricFiltersPagesWithContext(aws.BackgroundContext(), input, fn) } // DescribeMetricFiltersPagesWithContext same as DescribeMetricFiltersPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeMetricFiltersPagesWithContext(ctx aws.Context, input *DescribeMetricFiltersInput, fn func(*DescribeMetricFiltersOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ EndPageOnSameToken: true, NewRequest: func() (*request.Request, error) { var inCpy *DescribeMetricFiltersInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.DescribeMetricFiltersRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*DescribeMetricFiltersOutput), !p.HasNextPage()) { break } } return p.Err() } const opDescribeQueries = "DescribeQueries" // DescribeQueriesRequest generates a "aws/request.Request" representing the // client's request for the DescribeQueries operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeQueries for more information on using the DescribeQueries // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeQueriesRequest method. // req, resp := client.DescribeQueriesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeQueries func (c *CloudWatchLogs) DescribeQueriesRequest(input *DescribeQueriesInput) (req *request.Request, output *DescribeQueriesOutput) { op := &request.Operation{ Name: opDescribeQueries, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeQueriesInput{} } output = &DescribeQueriesOutput{} req = c.newRequest(op, input, output) return } // DescribeQueries API operation for Amazon CloudWatch Logs. // // Returns a list of CloudWatch Logs Insights queries that are scheduled, running, // or have been run recently in this account. You can request all queries or // limit it to queries of a specific log group or queries with a certain status. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeQueries for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeQueries func (c *CloudWatchLogs) DescribeQueries(input *DescribeQueriesInput) (*DescribeQueriesOutput, error) { req, out := c.DescribeQueriesRequest(input) return out, req.Send() } // DescribeQueriesWithContext is the same as DescribeQueries with the addition of // the ability to pass a context and additional request options. // // See DescribeQueries for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeQueriesWithContext(ctx aws.Context, input *DescribeQueriesInput, opts ...request.Option) (*DescribeQueriesOutput, error) { req, out := c.DescribeQueriesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeQueryDefinitions = "DescribeQueryDefinitions" // DescribeQueryDefinitionsRequest generates a "aws/request.Request" representing the // client's request for the DescribeQueryDefinitions operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeQueryDefinitions for more information on using the DescribeQueryDefinitions // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeQueryDefinitionsRequest method. // req, resp := client.DescribeQueryDefinitionsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeQueryDefinitions func (c *CloudWatchLogs) DescribeQueryDefinitionsRequest(input *DescribeQueryDefinitionsInput) (req *request.Request, output *DescribeQueryDefinitionsOutput) { op := &request.Operation{ Name: opDescribeQueryDefinitions, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeQueryDefinitionsInput{} } output = &DescribeQueryDefinitionsOutput{} req = c.newRequest(op, input, output) return } // DescribeQueryDefinitions API operation for Amazon CloudWatch Logs. // // This operation returns a paginated list of your saved CloudWatch Logs Insights // query definitions. // // You can use the queryDefinitionNamePrefix parameter to limit the results // to only the query definitions that have names that start with a certain string. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeQueryDefinitions for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeQueryDefinitions func (c *CloudWatchLogs) DescribeQueryDefinitions(input *DescribeQueryDefinitionsInput) (*DescribeQueryDefinitionsOutput, error) { req, out := c.DescribeQueryDefinitionsRequest(input) return out, req.Send() } // DescribeQueryDefinitionsWithContext is the same as DescribeQueryDefinitions with the addition of // the ability to pass a context and additional request options. // // See DescribeQueryDefinitions for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeQueryDefinitionsWithContext(ctx aws.Context, input *DescribeQueryDefinitionsInput, opts ...request.Option) (*DescribeQueryDefinitionsOutput, error) { req, out := c.DescribeQueryDefinitionsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeResourcePolicies = "DescribeResourcePolicies" // DescribeResourcePoliciesRequest generates a "aws/request.Request" representing the // client's request for the DescribeResourcePolicies operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeResourcePolicies for more information on using the DescribeResourcePolicies // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeResourcePoliciesRequest method. // req, resp := client.DescribeResourcePoliciesRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeResourcePolicies func (c *CloudWatchLogs) DescribeResourcePoliciesRequest(input *DescribeResourcePoliciesInput) (req *request.Request, output *DescribeResourcePoliciesOutput) { op := &request.Operation{ Name: opDescribeResourcePolicies, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DescribeResourcePoliciesInput{} } output = &DescribeResourcePoliciesOutput{} req = c.newRequest(op, input, output) return } // DescribeResourcePolicies API operation for Amazon CloudWatch Logs. // // Lists the resource policies in this account. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeResourcePolicies for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeResourcePolicies func (c *CloudWatchLogs) DescribeResourcePolicies(input *DescribeResourcePoliciesInput) (*DescribeResourcePoliciesOutput, error) { req, out := c.DescribeResourcePoliciesRequest(input) return out, req.Send() } // DescribeResourcePoliciesWithContext is the same as DescribeResourcePolicies with the addition of // the ability to pass a context and additional request options. // // See DescribeResourcePolicies for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeResourcePoliciesWithContext(ctx aws.Context, input *DescribeResourcePoliciesInput, opts ...request.Option) (*DescribeResourcePoliciesOutput, error) { req, out := c.DescribeResourcePoliciesRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opDescribeSubscriptionFilters = "DescribeSubscriptionFilters" // DescribeSubscriptionFiltersRequest generates a "aws/request.Request" representing the // client's request for the DescribeSubscriptionFilters operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DescribeSubscriptionFilters for more information on using the DescribeSubscriptionFilters // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DescribeSubscriptionFiltersRequest method. // req, resp := client.DescribeSubscriptionFiltersRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeSubscriptionFilters func (c *CloudWatchLogs) DescribeSubscriptionFiltersRequest(input *DescribeSubscriptionFiltersInput) (req *request.Request, output *DescribeSubscriptionFiltersOutput) { op := &request.Operation{ Name: opDescribeSubscriptionFilters, HTTPMethod: "POST", HTTPPath: "/", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "limit", TruncationToken: "", }, } if input == nil { input = &DescribeSubscriptionFiltersInput{} } output = &DescribeSubscriptionFiltersOutput{} req = c.newRequest(op, input, output) return } // DescribeSubscriptionFilters API operation for Amazon CloudWatch Logs. // // Lists the subscription filters for the specified log group. You can list // all the subscription filters or filter the results by prefix. The results // are ASCII-sorted by filter name. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DescribeSubscriptionFilters for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeSubscriptionFilters func (c *CloudWatchLogs) DescribeSubscriptionFilters(input *DescribeSubscriptionFiltersInput) (*DescribeSubscriptionFiltersOutput, error) { req, out := c.DescribeSubscriptionFiltersRequest(input) return out, req.Send() } // DescribeSubscriptionFiltersWithContext is the same as DescribeSubscriptionFilters with the addition of // the ability to pass a context and additional request options. // // See DescribeSubscriptionFilters for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeSubscriptionFiltersWithContext(ctx aws.Context, input *DescribeSubscriptionFiltersInput, opts ...request.Option) (*DescribeSubscriptionFiltersOutput, error) { req, out := c.DescribeSubscriptionFiltersRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // DescribeSubscriptionFiltersPages iterates over the pages of a DescribeSubscriptionFilters operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See DescribeSubscriptionFilters method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a DescribeSubscriptionFilters operation. // pageNum := 0 // err := client.DescribeSubscriptionFiltersPages(params, // func(page *cloudwatchlogs.DescribeSubscriptionFiltersOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CloudWatchLogs) DescribeSubscriptionFiltersPages(input *DescribeSubscriptionFiltersInput, fn func(*DescribeSubscriptionFiltersOutput, bool) bool) error { return c.DescribeSubscriptionFiltersPagesWithContext(aws.BackgroundContext(), input, fn) } // DescribeSubscriptionFiltersPagesWithContext same as DescribeSubscriptionFiltersPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DescribeSubscriptionFiltersPagesWithContext(ctx aws.Context, input *DescribeSubscriptionFiltersInput, fn func(*DescribeSubscriptionFiltersOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ EndPageOnSameToken: true, NewRequest: func() (*request.Request, error) { var inCpy *DescribeSubscriptionFiltersInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.DescribeSubscriptionFiltersRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*DescribeSubscriptionFiltersOutput), !p.HasNextPage()) { break } } return p.Err() } const opDisassociateKmsKey = "DisassociateKmsKey" // DisassociateKmsKeyRequest generates a "aws/request.Request" representing the // client's request for the DisassociateKmsKey operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See DisassociateKmsKey for more information on using the DisassociateKmsKey // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the DisassociateKmsKeyRequest method. // req, resp := client.DisassociateKmsKeyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DisassociateKmsKey func (c *CloudWatchLogs) DisassociateKmsKeyRequest(input *DisassociateKmsKeyInput) (req *request.Request, output *DisassociateKmsKeyOutput) { op := &request.Operation{ Name: opDisassociateKmsKey, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DisassociateKmsKeyInput{} } output = &DisassociateKmsKeyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // DisassociateKmsKey API operation for Amazon CloudWatch Logs. // // Disassociates the specified KMS key from the specified log group or from // all CloudWatch Logs Insights query results in the account. // // When you use DisassociateKmsKey, you specify either the logGroupName parameter // or the resourceIdentifier parameter. You can't specify both of those parameters // in the same operation. // // - Specify the logGroupName parameter to stop using the KMS key to encrypt // future log events ingested and stored in the log group. Instead, they // will be encrypted with the default CloudWatch Logs method. The log events // that were ingested while the key was associated with the log group are // still encrypted with that key. Therefore, CloudWatch Logs will need permissions // for the key whenever that data is accessed. // // - Specify the resourceIdentifier parameter with the query-result resource // to stop using the KMS key to encrypt the results of all future StartQuery // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html) // operations in the account. They will instead be encrypted with the default // CloudWatch Logs method. The results from queries that ran while the key // was associated with the account are still encrypted with that key. Therefore, // CloudWatch Logs will need permissions for the key whenever that data is // accessed. // // It can take up to 5 minutes for this operation to take effect. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation DisassociateKmsKey for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DisassociateKmsKey func (c *CloudWatchLogs) DisassociateKmsKey(input *DisassociateKmsKeyInput) (*DisassociateKmsKeyOutput, error) { req, out := c.DisassociateKmsKeyRequest(input) return out, req.Send() } // DisassociateKmsKeyWithContext is the same as DisassociateKmsKey with the addition of // the ability to pass a context and additional request options. // // See DisassociateKmsKey for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) DisassociateKmsKeyWithContext(ctx aws.Context, input *DisassociateKmsKeyInput, opts ...request.Option) (*DisassociateKmsKeyOutput, error) { req, out := c.DisassociateKmsKeyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opFilterLogEvents = "FilterLogEvents" // FilterLogEventsRequest generates a "aws/request.Request" representing the // client's request for the FilterLogEvents operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See FilterLogEvents for more information on using the FilterLogEvents // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the FilterLogEventsRequest method. // req, resp := client.FilterLogEventsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/FilterLogEvents func (c *CloudWatchLogs) FilterLogEventsRequest(input *FilterLogEventsInput) (req *request.Request, output *FilterLogEventsOutput) { op := &request.Operation{ Name: opFilterLogEvents, HTTPMethod: "POST", HTTPPath: "/", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "limit", TruncationToken: "", }, } if input == nil { input = &FilterLogEventsInput{} } output = &FilterLogEventsOutput{} req = c.newRequest(op, input, output) return } // FilterLogEvents API operation for Amazon CloudWatch Logs. // // Lists log events from the specified log group. You can list all the log events // or filter the results using a filter pattern, a time range, and the name // of the log stream. // // You must have the logs:FilterLogEvents permission to perform this operation. // // You can specify the log group to search by using either logGroupIdentifier // or logGroupName. You must include one of these two parameters, but you can't // include both. // // By default, this operation returns as many log events as can fit in 1 MB // (up to 10,000 log events) or all the events found within the specified time // range. If the results include a token, that means there are more log events // available. You can get additional results by specifying the token in a subsequent // call. This operation can return empty results while there are more log events // available through the token. // // The returned log events are sorted by event timestamp, the timestamp when // the event was ingested by CloudWatch Logs, and the ID of the PutLogEvents // request. // // If you are using CloudWatch cross-account observability, you can use this // operation in a monitoring account and view data from the linked source accounts. // For more information, see CloudWatch cross-account observability (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation FilterLogEvents for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/FilterLogEvents func (c *CloudWatchLogs) FilterLogEvents(input *FilterLogEventsInput) (*FilterLogEventsOutput, error) { req, out := c.FilterLogEventsRequest(input) return out, req.Send() } // FilterLogEventsWithContext is the same as FilterLogEvents with the addition of // the ability to pass a context and additional request options. // // See FilterLogEvents for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) FilterLogEventsWithContext(ctx aws.Context, input *FilterLogEventsInput, opts ...request.Option) (*FilterLogEventsOutput, error) { req, out := c.FilterLogEventsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // FilterLogEventsPages iterates over the pages of a FilterLogEvents operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See FilterLogEvents method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a FilterLogEvents operation. // pageNum := 0 // err := client.FilterLogEventsPages(params, // func(page *cloudwatchlogs.FilterLogEventsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CloudWatchLogs) FilterLogEventsPages(input *FilterLogEventsInput, fn func(*FilterLogEventsOutput, bool) bool) error { return c.FilterLogEventsPagesWithContext(aws.BackgroundContext(), input, fn) } // FilterLogEventsPagesWithContext same as FilterLogEventsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) FilterLogEventsPagesWithContext(ctx aws.Context, input *FilterLogEventsInput, fn func(*FilterLogEventsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ EndPageOnSameToken: true, NewRequest: func() (*request.Request, error) { var inCpy *FilterLogEventsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.FilterLogEventsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*FilterLogEventsOutput), !p.HasNextPage()) { break } } return p.Err() } const opGetDataProtectionPolicy = "GetDataProtectionPolicy" // GetDataProtectionPolicyRequest generates a "aws/request.Request" representing the // client's request for the GetDataProtectionPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetDataProtectionPolicy for more information on using the GetDataProtectionPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetDataProtectionPolicyRequest method. // req, resp := client.GetDataProtectionPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetDataProtectionPolicy func (c *CloudWatchLogs) GetDataProtectionPolicyRequest(input *GetDataProtectionPolicyInput) (req *request.Request, output *GetDataProtectionPolicyOutput) { op := &request.Operation{ Name: opGetDataProtectionPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &GetDataProtectionPolicyInput{} } output = &GetDataProtectionPolicyOutput{} req = c.newRequest(op, input, output) return } // GetDataProtectionPolicy API operation for Amazon CloudWatch Logs. // // Returns information about a log group data protection policy. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation GetDataProtectionPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetDataProtectionPolicy func (c *CloudWatchLogs) GetDataProtectionPolicy(input *GetDataProtectionPolicyInput) (*GetDataProtectionPolicyOutput, error) { req, out := c.GetDataProtectionPolicyRequest(input) return out, req.Send() } // GetDataProtectionPolicyWithContext is the same as GetDataProtectionPolicy with the addition of // the ability to pass a context and additional request options. // // See GetDataProtectionPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) GetDataProtectionPolicyWithContext(ctx aws.Context, input *GetDataProtectionPolicyInput, opts ...request.Option) (*GetDataProtectionPolicyOutput, error) { req, out := c.GetDataProtectionPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetLogEvents = "GetLogEvents" // GetLogEventsRequest generates a "aws/request.Request" representing the // client's request for the GetLogEvents operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetLogEvents for more information on using the GetLogEvents // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetLogEventsRequest method. // req, resp := client.GetLogEventsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogEvents func (c *CloudWatchLogs) GetLogEventsRequest(input *GetLogEventsInput) (req *request.Request, output *GetLogEventsOutput) { op := &request.Operation{ Name: opGetLogEvents, HTTPMethod: "POST", HTTPPath: "/", Paginator: &request.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextForwardToken"}, LimitToken: "limit", TruncationToken: "", }, } if input == nil { input = &GetLogEventsInput{} } output = &GetLogEventsOutput{} req = c.newRequest(op, input, output) return } // GetLogEvents API operation for Amazon CloudWatch Logs. // // Lists log events from the specified log stream. You can list all of the log // events or filter using a time range. // // By default, this operation returns as many log events as can fit in a response // size of 1MB (up to 10,000 log events). You can get additional log events // by specifying one of the tokens in a subsequent call. This operation can // return empty results while there are more log events available through the // token. // // If you are using CloudWatch cross-account observability, you can use this // operation in a monitoring account and view data from the linked source accounts. // For more information, see CloudWatch cross-account observability (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html). // // You can specify the log group to search by using either logGroupIdentifier // or logGroupName. You must include one of these two parameters, but you can't // include both. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation GetLogEvents for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogEvents func (c *CloudWatchLogs) GetLogEvents(input *GetLogEventsInput) (*GetLogEventsOutput, error) { req, out := c.GetLogEventsRequest(input) return out, req.Send() } // GetLogEventsWithContext is the same as GetLogEvents with the addition of // the ability to pass a context and additional request options. // // See GetLogEvents for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) GetLogEventsWithContext(ctx aws.Context, input *GetLogEventsInput, opts ...request.Option) (*GetLogEventsOutput, error) { req, out := c.GetLogEventsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // GetLogEventsPages iterates over the pages of a GetLogEvents operation, // calling the "fn" function with the response data for each page. To stop // iterating, return false from the fn function. // // See GetLogEvents method for more information on how to use this operation. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over at most 3 pages of a GetLogEvents operation. // pageNum := 0 // err := client.GetLogEventsPages(params, // func(page *cloudwatchlogs.GetLogEventsOutput, lastPage bool) bool { // pageNum++ // fmt.Println(page) // return pageNum <= 3 // }) func (c *CloudWatchLogs) GetLogEventsPages(input *GetLogEventsInput, fn func(*GetLogEventsOutput, bool) bool) error { return c.GetLogEventsPagesWithContext(aws.BackgroundContext(), input, fn) } // GetLogEventsPagesWithContext same as GetLogEventsPages except // it takes a Context and allows setting request options on the pages. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) GetLogEventsPagesWithContext(ctx aws.Context, input *GetLogEventsInput, fn func(*GetLogEventsOutput, bool) bool, opts ...request.Option) error { p := request.Pagination{ EndPageOnSameToken: true, NewRequest: func() (*request.Request, error) { var inCpy *GetLogEventsInput if input != nil { tmp := *input inCpy = &tmp } req, _ := c.GetLogEventsRequest(inCpy) req.SetContext(ctx) req.ApplyOptions(opts...) return req, nil }, } for p.Next() { if !fn(p.Page().(*GetLogEventsOutput), !p.HasNextPage()) { break } } return p.Err() } const opGetLogGroupFields = "GetLogGroupFields" // GetLogGroupFieldsRequest generates a "aws/request.Request" representing the // client's request for the GetLogGroupFields operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetLogGroupFields for more information on using the GetLogGroupFields // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetLogGroupFieldsRequest method. // req, resp := client.GetLogGroupFieldsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogGroupFields func (c *CloudWatchLogs) GetLogGroupFieldsRequest(input *GetLogGroupFieldsInput) (req *request.Request, output *GetLogGroupFieldsOutput) { op := &request.Operation{ Name: opGetLogGroupFields, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &GetLogGroupFieldsInput{} } output = &GetLogGroupFieldsOutput{} req = c.newRequest(op, input, output) return } // GetLogGroupFields API operation for Amazon CloudWatch Logs. // // Returns a list of the fields that are included in log events in the specified // log group. Includes the percentage of log events that contain each field. // The search is limited to a time period that you specify. // // You can specify the log group to search by using either logGroupIdentifier // or logGroupName. You must specify one of these parameters, but you can't // specify both. // // In the results, fields that start with @ are fields generated by CloudWatch // Logs. For example, @timestamp is the timestamp of each log event. For more // information about the fields that are generated by CloudWatch logs, see Supported // Logs and Discovered Fields (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_AnalyzeLogData-discoverable-fields.html). // // The response results are sorted by the frequency percentage, starting with // the highest percentage. // // If you are using CloudWatch cross-account observability, you can use this // operation in a monitoring account and view data from the linked source accounts. // For more information, see CloudWatch cross-account observability (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation GetLogGroupFields for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogGroupFields func (c *CloudWatchLogs) GetLogGroupFields(input *GetLogGroupFieldsInput) (*GetLogGroupFieldsOutput, error) { req, out := c.GetLogGroupFieldsRequest(input) return out, req.Send() } // GetLogGroupFieldsWithContext is the same as GetLogGroupFields with the addition of // the ability to pass a context and additional request options. // // See GetLogGroupFields for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) GetLogGroupFieldsWithContext(ctx aws.Context, input *GetLogGroupFieldsInput, opts ...request.Option) (*GetLogGroupFieldsOutput, error) { req, out := c.GetLogGroupFieldsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetLogRecord = "GetLogRecord" // GetLogRecordRequest generates a "aws/request.Request" representing the // client's request for the GetLogRecord operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetLogRecord for more information on using the GetLogRecord // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetLogRecordRequest method. // req, resp := client.GetLogRecordRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogRecord func (c *CloudWatchLogs) GetLogRecordRequest(input *GetLogRecordInput) (req *request.Request, output *GetLogRecordOutput) { op := &request.Operation{ Name: opGetLogRecord, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &GetLogRecordInput{} } output = &GetLogRecordOutput{} req = c.newRequest(op, input, output) return } // GetLogRecord API operation for Amazon CloudWatch Logs. // // Retrieves all of the fields and values of a single log event. All fields // are retrieved, even if the original query that produced the logRecordPointer // retrieved only a subset of fields. Fields are returned as field name/field // value pairs. // // The full unparsed log event is returned within @message. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation GetLogRecord for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogRecord func (c *CloudWatchLogs) GetLogRecord(input *GetLogRecordInput) (*GetLogRecordOutput, error) { req, out := c.GetLogRecordRequest(input) return out, req.Send() } // GetLogRecordWithContext is the same as GetLogRecord with the addition of // the ability to pass a context and additional request options. // // See GetLogRecord for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) GetLogRecordWithContext(ctx aws.Context, input *GetLogRecordInput, opts ...request.Option) (*GetLogRecordOutput, error) { req, out := c.GetLogRecordRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opGetQueryResults = "GetQueryResults" // GetQueryResultsRequest generates a "aws/request.Request" representing the // client's request for the GetQueryResults operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See GetQueryResults for more information on using the GetQueryResults // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the GetQueryResultsRequest method. // req, resp := client.GetQueryResultsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResults func (c *CloudWatchLogs) GetQueryResultsRequest(input *GetQueryResultsInput) (req *request.Request, output *GetQueryResultsOutput) { op := &request.Operation{ Name: opGetQueryResults, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &GetQueryResultsInput{} } output = &GetQueryResultsOutput{} req = c.newRequest(op, input, output) return } // GetQueryResults API operation for Amazon CloudWatch Logs. // // Returns the results from the specified query. // // Only the fields requested in the query are returned, along with a @ptr field, // which is the identifier for the log record. You can use the value of @ptr // in a GetLogRecord (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogRecord.html) // operation to get the full log record. // // GetQueryResults does not start running a query. To run a query, use StartQuery // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html). // // If the value of the Status field in the output is Running, this operation // returns only partial results. If you see a value of Scheduled or Running // for the status, you can retry the operation later to see the final results. // // If you are using CloudWatch cross-account observability, you can use this // operation in a monitoring account to start queries in linked source accounts. // For more information, see CloudWatch cross-account observability (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation GetQueryResults for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResults func (c *CloudWatchLogs) GetQueryResults(input *GetQueryResultsInput) (*GetQueryResultsOutput, error) { req, out := c.GetQueryResultsRequest(input) return out, req.Send() } // GetQueryResultsWithContext is the same as GetQueryResults with the addition of // the ability to pass a context and additional request options. // // See GetQueryResults for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) GetQueryResultsWithContext(ctx aws.Context, input *GetQueryResultsInput, opts ...request.Option) (*GetQueryResultsOutput, error) { req, out := c.GetQueryResultsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opListTagsForResource = "ListTagsForResource" // ListTagsForResourceRequest generates a "aws/request.Request" representing the // client's request for the ListTagsForResource operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListTagsForResource for more information on using the ListTagsForResource // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListTagsForResourceRequest method. // req, resp := client.ListTagsForResourceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsForResource func (c *CloudWatchLogs) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput) { op := &request.Operation{ Name: opListTagsForResource, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &ListTagsForResourceInput{} } output = &ListTagsForResourceOutput{} req = c.newRequest(op, input, output) return } // ListTagsForResource API operation for Amazon CloudWatch Logs. // // Displays the tags associated with a CloudWatch Logs resource. Currently, // log groups and destinations support tagging. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation ListTagsForResource for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsForResource func (c *CloudWatchLogs) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) { req, out := c.ListTagsForResourceRequest(input) return out, req.Send() } // ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of // the ability to pass a context and additional request options. // // See ListTagsForResource for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error) { req, out := c.ListTagsForResourceRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opListTagsLogGroup = "ListTagsLogGroup" // ListTagsLogGroupRequest generates a "aws/request.Request" representing the // client's request for the ListTagsLogGroup operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See ListTagsLogGroup for more information on using the ListTagsLogGroup // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the ListTagsLogGroupRequest method. // req, resp := client.ListTagsLogGroupRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsLogGroup // // Deprecated: Please use the generic tagging API ListTagsForResource func (c *CloudWatchLogs) ListTagsLogGroupRequest(input *ListTagsLogGroupInput) (req *request.Request, output *ListTagsLogGroupOutput) { if c.Client.Config.Logger != nil { c.Client.Config.Logger.Log("This operation, ListTagsLogGroup, has been deprecated") } op := &request.Operation{ Name: opListTagsLogGroup, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &ListTagsLogGroupInput{} } output = &ListTagsLogGroupOutput{} req = c.newRequest(op, input, output) return } // ListTagsLogGroup API operation for Amazon CloudWatch Logs. // // The ListTagsLogGroup operation is on the path to deprecation. We recommend // that you use ListTagsForResource (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_ListTagsForResource.html) // instead. // // Lists the tags for the specified log group. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation ListTagsLogGroup for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsLogGroup // // Deprecated: Please use the generic tagging API ListTagsForResource func (c *CloudWatchLogs) ListTagsLogGroup(input *ListTagsLogGroupInput) (*ListTagsLogGroupOutput, error) { req, out := c.ListTagsLogGroupRequest(input) return out, req.Send() } // ListTagsLogGroupWithContext is the same as ListTagsLogGroup with the addition of // the ability to pass a context and additional request options. // // See ListTagsLogGroup for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. // // Deprecated: Please use the generic tagging API ListTagsForResource func (c *CloudWatchLogs) ListTagsLogGroupWithContext(ctx aws.Context, input *ListTagsLogGroupInput, opts ...request.Option) (*ListTagsLogGroupOutput, error) { req, out := c.ListTagsLogGroupRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutAccountPolicy = "PutAccountPolicy" // PutAccountPolicyRequest generates a "aws/request.Request" representing the // client's request for the PutAccountPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutAccountPolicy for more information on using the PutAccountPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutAccountPolicyRequest method. // req, resp := client.PutAccountPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutAccountPolicy func (c *CloudWatchLogs) PutAccountPolicyRequest(input *PutAccountPolicyInput) (req *request.Request, output *PutAccountPolicyOutput) { op := &request.Operation{ Name: opPutAccountPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutAccountPolicyInput{} } output = &PutAccountPolicyOutput{} req = c.newRequest(op, input, output) return } // PutAccountPolicy API operation for Amazon CloudWatch Logs. // // Creates an account-level data protection policy that applies to all log groups // in the account. A data protection policy can help safeguard sensitive data // that's ingested by your log groups by auditing and masking the sensitive // log data. Each account can have only one account-level policy. // // Sensitive data is detected and masked when it is ingested into a log group. // When you set a data protection policy, log events ingested into the log groups // before that time are not masked. // // If you use PutAccountPolicy to create a data protection policy for your whole // account, it applies to both existing log groups and all log groups that are // created later in this account. The account policy is applied to existing // log groups with eventual consistency. It might take up to 5 minutes before // sensitive data in existing log groups begins to be masked. // // By default, when a user views a log event that includes masked data, the // sensitive data is replaced by asterisks. A user who has the logs:Unmask permission // can use a GetLogEvents (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html) // or FilterLogEvents (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_FilterLogEvents.html) // operation with the unmask parameter set to true to view the unmasked log // events. Users with the logs:Unmask can also view unmasked data in the CloudWatch // Logs console by running a CloudWatch Logs Insights query with the unmask // query command. // // For more information, including a list of types of data that can be audited // and masked, see Protect sensitive log data with masking (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/mask-sensitive-log-data.html). // // To use the PutAccountPolicy operation, you must be signed on with the logs:PutDataProtectionPolicy // and logs:PutAccountPolicy permissions. // // The PutAccountPolicy operation applies to all log groups in the account. // You can also use PutDataProtectionPolicy (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDataProtectionPolicy.html) // to create a data protection policy that applies to just one log group. If // a log group has its own data protection policy and the account also has an // account-level data protection policy, then the two policies are cumulative. // Any sensitive term specified in either policy is masked. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutAccountPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutAccountPolicy func (c *CloudWatchLogs) PutAccountPolicy(input *PutAccountPolicyInput) (*PutAccountPolicyOutput, error) { req, out := c.PutAccountPolicyRequest(input) return out, req.Send() } // PutAccountPolicyWithContext is the same as PutAccountPolicy with the addition of // the ability to pass a context and additional request options. // // See PutAccountPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutAccountPolicyWithContext(ctx aws.Context, input *PutAccountPolicyInput, opts ...request.Option) (*PutAccountPolicyOutput, error) { req, out := c.PutAccountPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutDataProtectionPolicy = "PutDataProtectionPolicy" // PutDataProtectionPolicyRequest generates a "aws/request.Request" representing the // client's request for the PutDataProtectionPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutDataProtectionPolicy for more information on using the PutDataProtectionPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutDataProtectionPolicyRequest method. // req, resp := client.PutDataProtectionPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDataProtectionPolicy func (c *CloudWatchLogs) PutDataProtectionPolicyRequest(input *PutDataProtectionPolicyInput) (req *request.Request, output *PutDataProtectionPolicyOutput) { op := &request.Operation{ Name: opPutDataProtectionPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutDataProtectionPolicyInput{} } output = &PutDataProtectionPolicyOutput{} req = c.newRequest(op, input, output) return } // PutDataProtectionPolicy API operation for Amazon CloudWatch Logs. // // Creates a data protection policy for the specified log group. A data protection // policy can help safeguard sensitive data that's ingested by the log group // by auditing and masking the sensitive log data. // // Sensitive data is detected and masked when it is ingested into the log group. // When you set a data protection policy, log events ingested into the log group // before that time are not masked. // // By default, when a user views a log event that includes masked data, the // sensitive data is replaced by asterisks. A user who has the logs:Unmask permission // can use a GetLogEvents (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html) // or FilterLogEvents (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_FilterLogEvents.html) // operation with the unmask parameter set to true to view the unmasked log // events. Users with the logs:Unmask can also view unmasked data in the CloudWatch // Logs console by running a CloudWatch Logs Insights query with the unmask // query command. // // For more information, including a list of types of data that can be audited // and masked, see Protect sensitive log data with masking (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/mask-sensitive-log-data.html). // // The PutDataProtectionPolicy operation applies to only the specified log group. // You can also use PutAccountPolicy (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutAccountPolicy.html) // to create an account-level data protection policy that applies to all log // groups in the account, including both existing log groups and log groups // that are created level. If a log group has its own data protection policy // and the account also has an account-level data protection policy, then the // two policies are cumulative. Any sensitive term specified in either policy // is masked. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutDataProtectionPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDataProtectionPolicy func (c *CloudWatchLogs) PutDataProtectionPolicy(input *PutDataProtectionPolicyInput) (*PutDataProtectionPolicyOutput, error) { req, out := c.PutDataProtectionPolicyRequest(input) return out, req.Send() } // PutDataProtectionPolicyWithContext is the same as PutDataProtectionPolicy with the addition of // the ability to pass a context and additional request options. // // See PutDataProtectionPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutDataProtectionPolicyWithContext(ctx aws.Context, input *PutDataProtectionPolicyInput, opts ...request.Option) (*PutDataProtectionPolicyOutput, error) { req, out := c.PutDataProtectionPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutDestination = "PutDestination" // PutDestinationRequest generates a "aws/request.Request" representing the // client's request for the PutDestination operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutDestination for more information on using the PutDestination // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutDestinationRequest method. // req, resp := client.PutDestinationRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestination func (c *CloudWatchLogs) PutDestinationRequest(input *PutDestinationInput) (req *request.Request, output *PutDestinationOutput) { op := &request.Operation{ Name: opPutDestination, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutDestinationInput{} } output = &PutDestinationOutput{} req = c.newRequest(op, input, output) return } // PutDestination API operation for Amazon CloudWatch Logs. // // Creates or updates a destination. This operation is used only to create destinations // for cross-account subscriptions. // // A destination encapsulates a physical resource (such as an Amazon Kinesis // stream). With a destination, you can subscribe to a real-time stream of log // events for a different account, ingested using PutLogEvents (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutLogEvents.html). // // Through an access policy, a destination controls what is written to it. By // default, PutDestination does not set any access policy with the destination, // which means a cross-account user cannot call PutSubscriptionFilter (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutSubscriptionFilter.html) // against this destination. To enable this, the destination owner must call // PutDestinationPolicy (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDestinationPolicy.html) // after PutDestination. // // To perform a PutDestination operation, you must also have the iam:PassRole // permission. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutDestination for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestination func (c *CloudWatchLogs) PutDestination(input *PutDestinationInput) (*PutDestinationOutput, error) { req, out := c.PutDestinationRequest(input) return out, req.Send() } // PutDestinationWithContext is the same as PutDestination with the addition of // the ability to pass a context and additional request options. // // See PutDestination for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutDestinationWithContext(ctx aws.Context, input *PutDestinationInput, opts ...request.Option) (*PutDestinationOutput, error) { req, out := c.PutDestinationRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutDestinationPolicy = "PutDestinationPolicy" // PutDestinationPolicyRequest generates a "aws/request.Request" representing the // client's request for the PutDestinationPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutDestinationPolicy for more information on using the PutDestinationPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutDestinationPolicyRequest method. // req, resp := client.PutDestinationPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationPolicy func (c *CloudWatchLogs) PutDestinationPolicyRequest(input *PutDestinationPolicyInput) (req *request.Request, output *PutDestinationPolicyOutput) { op := &request.Operation{ Name: opPutDestinationPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutDestinationPolicyInput{} } output = &PutDestinationPolicyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // PutDestinationPolicy API operation for Amazon CloudWatch Logs. // // Creates or updates an access policy associated with an existing destination. // An access policy is an IAM policy document (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies_overview.html) // that is used to authorize claims to register a subscription filter against // a given destination. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutDestinationPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationPolicy func (c *CloudWatchLogs) PutDestinationPolicy(input *PutDestinationPolicyInput) (*PutDestinationPolicyOutput, error) { req, out := c.PutDestinationPolicyRequest(input) return out, req.Send() } // PutDestinationPolicyWithContext is the same as PutDestinationPolicy with the addition of // the ability to pass a context and additional request options. // // See PutDestinationPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutDestinationPolicyWithContext(ctx aws.Context, input *PutDestinationPolicyInput, opts ...request.Option) (*PutDestinationPolicyOutput, error) { req, out := c.PutDestinationPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutLogEvents = "PutLogEvents" // PutLogEventsRequest generates a "aws/request.Request" representing the // client's request for the PutLogEvents operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutLogEvents for more information on using the PutLogEvents // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutLogEventsRequest method. // req, resp := client.PutLogEventsRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutLogEvents func (c *CloudWatchLogs) PutLogEventsRequest(input *PutLogEventsInput) (req *request.Request, output *PutLogEventsOutput) { op := &request.Operation{ Name: opPutLogEvents, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutLogEventsInput{} } output = &PutLogEventsOutput{} req = c.newRequest(op, input, output) return } // PutLogEvents API operation for Amazon CloudWatch Logs. // // Uploads a batch of log events to the specified log stream. // // The sequence token is now ignored in PutLogEvents actions. PutLogEvents actions // are always accepted and never return InvalidSequenceTokenException or DataAlreadyAcceptedException // even if the sequence token is not valid. You can use parallel PutLogEvents // actions on the same log stream. // // The batch of events must satisfy the following constraints: // // - The maximum batch size is 1,048,576 bytes. This size is calculated as // the sum of all event messages in UTF-8, plus 26 bytes for each log event. // // - None of the log events in the batch can be more than 2 hours in the // future. // // - None of the log events in the batch can be more than 14 days in the // past. Also, none of the log events can be from earlier than the retention // period of the log group. // // - The log events in the batch must be in chronological order by their // timestamp. The timestamp is the time that the event occurred, expressed // as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. (In Amazon // Web Services Tools for PowerShell and the Amazon Web Services SDK for // .NET, the timestamp is specified in .NET format: yyyy-mm-ddThh:mm:ss. // For example, 2017-09-15T13:45:30.) // // - A batch of log events in a single request cannot span more than 24 hours. // Otherwise, the operation fails. // // - Each log event can be no larger than 256 KB. // // - The maximum number of log events in a batch is 10,000. // // - The quota of five requests per second per log stream has been removed. // Instead, PutLogEvents actions are throttled based on a per-second per-account // quota. You can request an increase to the per-second throttling quota // by using the Service Quotas service. // // If a call to PutLogEvents returns "UnrecognizedClientException" the most // likely cause is a non-valid Amazon Web Services access key ID or secret key. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutLogEvents for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - InvalidSequenceTokenException // The sequence token is not valid. You can get the correct sequence token in // the expectedSequenceToken field in the InvalidSequenceTokenException message. // // PutLogEvents actions are now always accepted and never return InvalidSequenceTokenException // regardless of receiving an invalid sequence token. // // - DataAlreadyAcceptedException // The event was already logged. // // PutLogEvents actions are now always accepted and never return DataAlreadyAcceptedException // regardless of whether a given batch of log events has already been accepted. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // - UnrecognizedClientException // The most likely cause is an Amazon Web Services access key ID or secret key // that's not valid. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutLogEvents func (c *CloudWatchLogs) PutLogEvents(input *PutLogEventsInput) (*PutLogEventsOutput, error) { req, out := c.PutLogEventsRequest(input) return out, req.Send() } // PutLogEventsWithContext is the same as PutLogEvents with the addition of // the ability to pass a context and additional request options. // // See PutLogEvents for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutLogEventsWithContext(ctx aws.Context, input *PutLogEventsInput, opts ...request.Option) (*PutLogEventsOutput, error) { req, out := c.PutLogEventsRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutMetricFilter = "PutMetricFilter" // PutMetricFilterRequest generates a "aws/request.Request" representing the // client's request for the PutMetricFilter operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutMetricFilter for more information on using the PutMetricFilter // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutMetricFilterRequest method. // req, resp := client.PutMetricFilterRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutMetricFilter func (c *CloudWatchLogs) PutMetricFilterRequest(input *PutMetricFilterInput) (req *request.Request, output *PutMetricFilterOutput) { op := &request.Operation{ Name: opPutMetricFilter, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutMetricFilterInput{} } output = &PutMetricFilterOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // PutMetricFilter API operation for Amazon CloudWatch Logs. // // Creates or updates a metric filter and associates it with the specified log // group. With metric filters, you can configure rules to extract metric data // from log events ingested through PutLogEvents (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutLogEvents.html). // // The maximum number of metric filters that can be associated with a log group // is 100. // // When you create a metric filter, you can also optionally assign a unit and // dimensions to the metric that is created. // // Metrics extracted from log events are charged as custom metrics. To prevent // unexpected high charges, do not specify high-cardinality fields such as IPAddress // or requestID as dimensions. Each different value found for a dimension is // treated as a separate metric and accrues charges as a separate custom metric. // // CloudWatch Logs disables a metric filter if it generates 1,000 different // name/value pairs for your specified dimensions within a certain amount of // time. This helps to prevent accidental high charges. // // You can also set up a billing alarm to alert you if your charges are higher // than expected. For more information, see Creating a Billing Alarm to Monitor // Your Estimated Amazon Web Services Charges (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/monitor_estimated_charges_with_cloudwatch.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutMetricFilter for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutMetricFilter func (c *CloudWatchLogs) PutMetricFilter(input *PutMetricFilterInput) (*PutMetricFilterOutput, error) { req, out := c.PutMetricFilterRequest(input) return out, req.Send() } // PutMetricFilterWithContext is the same as PutMetricFilter with the addition of // the ability to pass a context and additional request options. // // See PutMetricFilter for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutMetricFilterWithContext(ctx aws.Context, input *PutMetricFilterInput, opts ...request.Option) (*PutMetricFilterOutput, error) { req, out := c.PutMetricFilterRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutQueryDefinition = "PutQueryDefinition" // PutQueryDefinitionRequest generates a "aws/request.Request" representing the // client's request for the PutQueryDefinition operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutQueryDefinition for more information on using the PutQueryDefinition // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutQueryDefinitionRequest method. // req, resp := client.PutQueryDefinitionRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutQueryDefinition func (c *CloudWatchLogs) PutQueryDefinitionRequest(input *PutQueryDefinitionInput) (req *request.Request, output *PutQueryDefinitionOutput) { op := &request.Operation{ Name: opPutQueryDefinition, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutQueryDefinitionInput{} } output = &PutQueryDefinitionOutput{} req = c.newRequest(op, input, output) return } // PutQueryDefinition API operation for Amazon CloudWatch Logs. // // 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, imagine updating a current // query definition that includes log groups. If 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. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutQueryDefinition for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutQueryDefinition func (c *CloudWatchLogs) PutQueryDefinition(input *PutQueryDefinitionInput) (*PutQueryDefinitionOutput, error) { req, out := c.PutQueryDefinitionRequest(input) return out, req.Send() } // PutQueryDefinitionWithContext is the same as PutQueryDefinition with the addition of // the ability to pass a context and additional request options. // // See PutQueryDefinition for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutQueryDefinitionWithContext(ctx aws.Context, input *PutQueryDefinitionInput, opts ...request.Option) (*PutQueryDefinitionOutput, error) { req, out := c.PutQueryDefinitionRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutResourcePolicy = "PutResourcePolicy" // PutResourcePolicyRequest generates a "aws/request.Request" representing the // client's request for the PutResourcePolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutResourcePolicy for more information on using the PutResourcePolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutResourcePolicyRequest method. // req, resp := client.PutResourcePolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutResourcePolicy func (c *CloudWatchLogs) PutResourcePolicyRequest(input *PutResourcePolicyInput) (req *request.Request, output *PutResourcePolicyOutput) { op := &request.Operation{ Name: opPutResourcePolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutResourcePolicyInput{} } output = &PutResourcePolicyOutput{} req = c.newRequest(op, input, output) return } // PutResourcePolicy API operation for Amazon CloudWatch Logs. // // Creates or updates a resource policy allowing other Amazon Web Services services // to put log events to this account, such as Amazon Route 53. An account can // have up to 10 resource policies per Amazon Web Services Region. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutResourcePolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutResourcePolicy func (c *CloudWatchLogs) PutResourcePolicy(input *PutResourcePolicyInput) (*PutResourcePolicyOutput, error) { req, out := c.PutResourcePolicyRequest(input) return out, req.Send() } // PutResourcePolicyWithContext is the same as PutResourcePolicy with the addition of // the ability to pass a context and additional request options. // // See PutResourcePolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutResourcePolicyWithContext(ctx aws.Context, input *PutResourcePolicyInput, opts ...request.Option) (*PutResourcePolicyOutput, error) { req, out := c.PutResourcePolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutRetentionPolicy = "PutRetentionPolicy" // PutRetentionPolicyRequest generates a "aws/request.Request" representing the // client's request for the PutRetentionPolicy operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutRetentionPolicy for more information on using the PutRetentionPolicy // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutRetentionPolicyRequest method. // req, resp := client.PutRetentionPolicyRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutRetentionPolicy func (c *CloudWatchLogs) PutRetentionPolicyRequest(input *PutRetentionPolicyInput) (req *request.Request, output *PutRetentionPolicyOutput) { op := &request.Operation{ Name: opPutRetentionPolicy, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutRetentionPolicyInput{} } output = &PutRetentionPolicyOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // PutRetentionPolicy API operation for Amazon CloudWatch Logs. // // Sets the retention of the specified log group. With a retention policy, you // can configure the number of days for which to retain log events in the specified // log group. // // CloudWatch Logs doesn’t immediately delete log events when they reach their // retention setting. It typically takes up to 72 hours after that before log // events are deleted, but in rare situations might take longer. // // To illustrate, imagine that you change a log group to have a longer retention // setting when it contains log events that are past the expiration date, but // haven’t been deleted. Those log events will take up to 72 hours to be deleted // after the new retention date is reached. To make sure that log data is deleted // permanently, keep a log group at its lower retention setting until 72 hours // after the previous retention period ends. Alternatively, wait to change the // retention setting until you confirm that the earlier log events are deleted. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutRetentionPolicy for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutRetentionPolicy func (c *CloudWatchLogs) PutRetentionPolicy(input *PutRetentionPolicyInput) (*PutRetentionPolicyOutput, error) { req, out := c.PutRetentionPolicyRequest(input) return out, req.Send() } // PutRetentionPolicyWithContext is the same as PutRetentionPolicy with the addition of // the ability to pass a context and additional request options. // // See PutRetentionPolicy for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutRetentionPolicyWithContext(ctx aws.Context, input *PutRetentionPolicyInput, opts ...request.Option) (*PutRetentionPolicyOutput, error) { req, out := c.PutRetentionPolicyRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opPutSubscriptionFilter = "PutSubscriptionFilter" // PutSubscriptionFilterRequest generates a "aws/request.Request" representing the // client's request for the PutSubscriptionFilter operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See PutSubscriptionFilter for more information on using the PutSubscriptionFilter // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the PutSubscriptionFilterRequest method. // req, resp := client.PutSubscriptionFilterRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutSubscriptionFilter func (c *CloudWatchLogs) PutSubscriptionFilterRequest(input *PutSubscriptionFilterInput) (req *request.Request, output *PutSubscriptionFilterOutput) { op := &request.Operation{ Name: opPutSubscriptionFilter, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &PutSubscriptionFilterInput{} } output = &PutSubscriptionFilterOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // PutSubscriptionFilter API operation for Amazon CloudWatch Logs. // // Creates or updates a subscription filter and associates it with the specified // log group. With subscription filters, you can subscribe to a real-time stream // of log events ingested through PutLogEvents (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutLogEvents.html) // and have them delivered to a specific destination. When log events are sent // to the receiving service, they are Base64 encoded and compressed with the // GZIP format. // // The following destinations are supported for subscription filters: // // - An Amazon Kinesis data stream belonging to the same account as the subscription // filter, for same-account delivery. // // - A logical destination created with PutDestination (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDestination.html) // that belongs to a different account, for cross-account delivery. We currently // support Kinesis Data Streams and Kinesis Data Firehose as logical destinations. // // - An Amazon Kinesis Data Firehose delivery stream that belongs to the // same account as the subscription filter, for same-account delivery. // // - An Lambda function that belongs to the same account as the subscription // filter, for same-account delivery. // // Each log group can have up to two subscription filters associated with it. // If you are updating an existing filter, you must specify the correct name // in filterName. // // To perform a PutSubscriptionFilter operation for any destination except a // Lambda function, you must also have the iam:PassRole permission. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation PutSubscriptionFilter for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - OperationAbortedException // Multiple concurrent requests to update the same resource were in conflict. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutSubscriptionFilter func (c *CloudWatchLogs) PutSubscriptionFilter(input *PutSubscriptionFilterInput) (*PutSubscriptionFilterOutput, error) { req, out := c.PutSubscriptionFilterRequest(input) return out, req.Send() } // PutSubscriptionFilterWithContext is the same as PutSubscriptionFilter with the addition of // the ability to pass a context and additional request options. // // See PutSubscriptionFilter for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) PutSubscriptionFilterWithContext(ctx aws.Context, input *PutSubscriptionFilterInput, opts ...request.Option) (*PutSubscriptionFilterOutput, error) { req, out := c.PutSubscriptionFilterRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opStartQuery = "StartQuery" // StartQueryRequest generates a "aws/request.Request" representing the // client's request for the StartQuery operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See StartQuery for more information on using the StartQuery // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the StartQueryRequest method. // req, resp := client.StartQueryRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/StartQuery func (c *CloudWatchLogs) StartQueryRequest(input *StartQueryInput) (req *request.Request, output *StartQueryOutput) { op := &request.Operation{ Name: opStartQuery, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &StartQueryInput{} } output = &StartQueryOutput{} req = c.newRequest(op, input, output) return } // StartQuery API operation for Amazon CloudWatch Logs. // // Schedules a query of a log group using CloudWatch Logs Insights. You specify // the log group and time range to query and the query string to use. // // For more information, see CloudWatch Logs Insights Query Syntax (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html). // // After you run a query using StartQuery, the query results are stored by CloudWatch // Logs. You can use GetQueryResults (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html) // to retrieve the results of a query, using the queryId that StartQuery returns. // // If you have associated a KMS key with the query results in this account, // then StartQuery (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html) // uses that key to encrypt the results when it stores them. If no key is associated // with query results, the query results are encrypted with the default CloudWatch // Logs encryption method. // // Queries time out after 60 minutes of runtime. If your queries are timing // out, reduce the time range being searched or partition your query into a // number of queries. // // If you are using CloudWatch cross-account observability, you can use this // operation in a monitoring account to start a query in a linked source account. // For more information, see CloudWatch cross-account observability (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html). // For a cross-account StartQuery operation, the query definition must be defined // in the monitoring account. // // You can have up to 30 concurrent CloudWatch Logs insights queries, including // queries that have been added to dashboards. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation StartQuery for usage and error information. // // Returned Error Types: // // - MalformedQueryException // The query string is not valid. Details about this error are displayed in // a QueryCompileError object. For more information, see QueryCompileError (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_QueryCompileError.html). // // For more information about valid query syntax, see CloudWatch Logs Insights // Query Syntax (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html). // // - InvalidParameterException // A parameter is specified incorrectly. // // - LimitExceededException // You have reached the maximum number of resources that can be created. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/StartQuery func (c *CloudWatchLogs) StartQuery(input *StartQueryInput) (*StartQueryOutput, error) { req, out := c.StartQueryRequest(input) return out, req.Send() } // StartQueryWithContext is the same as StartQuery with the addition of // the ability to pass a context and additional request options. // // See StartQuery for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) StartQueryWithContext(ctx aws.Context, input *StartQueryInput, opts ...request.Option) (*StartQueryOutput, error) { req, out := c.StartQueryRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opStopQuery = "StopQuery" // StopQueryRequest generates a "aws/request.Request" representing the // client's request for the StopQuery operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See StopQuery for more information on using the StopQuery // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the StopQueryRequest method. // req, resp := client.StopQueryRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/StopQuery func (c *CloudWatchLogs) StopQueryRequest(input *StopQueryInput) (req *request.Request, output *StopQueryOutput) { op := &request.Operation{ Name: opStopQuery, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &StopQueryInput{} } output = &StopQueryOutput{} req = c.newRequest(op, input, output) return } // StopQuery API operation for Amazon CloudWatch Logs. // // Stops a CloudWatch Logs Insights query that is in progress. If the query // has already ended, the operation returns an error indicating that the specified // query is not running. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation StopQuery for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/StopQuery func (c *CloudWatchLogs) StopQuery(input *StopQueryInput) (*StopQueryOutput, error) { req, out := c.StopQueryRequest(input) return out, req.Send() } // StopQueryWithContext is the same as StopQuery with the addition of // the ability to pass a context and additional request options. // // See StopQuery for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) StopQueryWithContext(ctx aws.Context, input *StopQueryInput, opts ...request.Option) (*StopQueryOutput, error) { req, out := c.StopQueryRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opTagLogGroup = "TagLogGroup" // TagLogGroupRequest generates a "aws/request.Request" representing the // client's request for the TagLogGroup operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See TagLogGroup for more information on using the TagLogGroup // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the TagLogGroupRequest method. // req, resp := client.TagLogGroupRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagLogGroup // // Deprecated: Please use the generic tagging API TagResource func (c *CloudWatchLogs) TagLogGroupRequest(input *TagLogGroupInput) (req *request.Request, output *TagLogGroupOutput) { if c.Client.Config.Logger != nil { c.Client.Config.Logger.Log("This operation, TagLogGroup, has been deprecated") } op := &request.Operation{ Name: opTagLogGroup, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &TagLogGroupInput{} } output = &TagLogGroupOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // TagLogGroup API operation for Amazon CloudWatch Logs. // // The TagLogGroup operation is on the path to deprecation. We recommend that // you use TagResource (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_TagResource.html) // instead. // // Adds or updates the specified tags for the specified log group. // // To list the tags for a log group, use ListTagsForResource (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_ListTagsForResource.html). // To remove tags, use UntagResource (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_UntagResource.html). // // For more information about tags, see Tag Log Groups in Amazon CloudWatch // Logs (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html#log-group-tagging) // in the Amazon CloudWatch Logs User Guide. // // CloudWatch Logs doesn’t support IAM policies that prevent users from assigning // specified tags to log groups using the aws:Resource/key-name or aws:TagKeys // condition keys. For more information about using tags to control access, // see Controlling access to Amazon Web Services resources using tags (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation TagLogGroup for usage and error information. // // Returned Error Types: // // - ResourceNotFoundException // The specified resource does not exist. // // - InvalidParameterException // A parameter is specified incorrectly. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagLogGroup // // Deprecated: Please use the generic tagging API TagResource func (c *CloudWatchLogs) TagLogGroup(input *TagLogGroupInput) (*TagLogGroupOutput, error) { req, out := c.TagLogGroupRequest(input) return out, req.Send() } // TagLogGroupWithContext is the same as TagLogGroup with the addition of // the ability to pass a context and additional request options. // // See TagLogGroup for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. // // Deprecated: Please use the generic tagging API TagResource func (c *CloudWatchLogs) TagLogGroupWithContext(ctx aws.Context, input *TagLogGroupInput, opts ...request.Option) (*TagLogGroupOutput, error) { req, out := c.TagLogGroupRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opTagResource = "TagResource" // TagResourceRequest generates a "aws/request.Request" representing the // client's request for the TagResource operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See TagResource for more information on using the TagResource // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the TagResourceRequest method. // req, resp := client.TagResourceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagResource func (c *CloudWatchLogs) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput) { op := &request.Operation{ Name: opTagResource, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &TagResourceInput{} } output = &TagResourceOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // TagResource API operation for Amazon CloudWatch Logs. // // Assigns one or more tags (key-value pairs) to the specified CloudWatch Logs // resource. Currently, the only CloudWatch Logs resources that can be tagged // are log groups and destinations. // // Tags can help you organize and categorize your resources. You can also use // them to scope user permissions by granting a user permission to access or // change only resources with certain tag values. // // Tags don't have any semantic meaning to Amazon Web Services and are interpreted // strictly as strings of characters. // // You can use the TagResource action with a resource that already has tags. // If you specify a new tag key for the alarm, this tag is appended to the list // of tags associated with the alarm. If you specify a tag key that is already // associated with the alarm, the new tag value that you specify replaces the // previous value for that tag. // // You can associate as many as 50 tags with a CloudWatch Logs resource. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation TagResource for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // - TooManyTagsException // A resource can have no more than 50 tags. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagResource func (c *CloudWatchLogs) TagResource(input *TagResourceInput) (*TagResourceOutput, error) { req, out := c.TagResourceRequest(input) return out, req.Send() } // TagResourceWithContext is the same as TagResource with the addition of // the ability to pass a context and additional request options. // // See TagResource for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error) { req, out := c.TagResourceRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opTestMetricFilter = "TestMetricFilter" // TestMetricFilterRequest generates a "aws/request.Request" representing the // client's request for the TestMetricFilter operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See TestMetricFilter for more information on using the TestMetricFilter // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the TestMetricFilterRequest method. // req, resp := client.TestMetricFilterRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TestMetricFilter func (c *CloudWatchLogs) TestMetricFilterRequest(input *TestMetricFilterInput) (req *request.Request, output *TestMetricFilterOutput) { op := &request.Operation{ Name: opTestMetricFilter, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &TestMetricFilterInput{} } output = &TestMetricFilterOutput{} req = c.newRequest(op, input, output) return } // TestMetricFilter API operation for Amazon CloudWatch Logs. // // Tests the filter pattern of a metric filter against a sample of log event // messages. You can use this operation to validate the correctness of a metric // filter pattern. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation TestMetricFilter for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TestMetricFilter func (c *CloudWatchLogs) TestMetricFilter(input *TestMetricFilterInput) (*TestMetricFilterOutput, error) { req, out := c.TestMetricFilterRequest(input) return out, req.Send() } // TestMetricFilterWithContext is the same as TestMetricFilter with the addition of // the ability to pass a context and additional request options. // // See TestMetricFilter for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) TestMetricFilterWithContext(ctx aws.Context, input *TestMetricFilterInput, opts ...request.Option) (*TestMetricFilterOutput, error) { req, out := c.TestMetricFilterRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUntagLogGroup = "UntagLogGroup" // UntagLogGroupRequest generates a "aws/request.Request" representing the // client's request for the UntagLogGroup operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UntagLogGroup for more information on using the UntagLogGroup // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UntagLogGroupRequest method. // req, resp := client.UntagLogGroupRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagLogGroup // // Deprecated: Please use the generic tagging API UntagResource func (c *CloudWatchLogs) UntagLogGroupRequest(input *UntagLogGroupInput) (req *request.Request, output *UntagLogGroupOutput) { if c.Client.Config.Logger != nil { c.Client.Config.Logger.Log("This operation, UntagLogGroup, has been deprecated") } op := &request.Operation{ Name: opUntagLogGroup, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &UntagLogGroupInput{} } output = &UntagLogGroupOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // UntagLogGroup API operation for Amazon CloudWatch Logs. // // The UntagLogGroup operation is on the path to deprecation. We recommend that // you use UntagResource (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_UntagResource.html) // instead. // // Removes the specified tags from the specified log group. // // To list the tags for a log group, use ListTagsForResource (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_ListTagsForResource.html). // To add tags, use TagResource (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_TagResource.html). // // CloudWatch Logs doesn’t support IAM policies that prevent users from assigning // specified tags to log groups using the aws:Resource/key-name or aws:TagKeys // condition keys. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation UntagLogGroup for usage and error information. // // Returned Error Types: // - ResourceNotFoundException // The specified resource does not exist. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagLogGroup // // Deprecated: Please use the generic tagging API UntagResource func (c *CloudWatchLogs) UntagLogGroup(input *UntagLogGroupInput) (*UntagLogGroupOutput, error) { req, out := c.UntagLogGroupRequest(input) return out, req.Send() } // UntagLogGroupWithContext is the same as UntagLogGroup with the addition of // the ability to pass a context and additional request options. // // See UntagLogGroup for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. // // Deprecated: Please use the generic tagging API UntagResource func (c *CloudWatchLogs) UntagLogGroupWithContext(ctx aws.Context, input *UntagLogGroupInput, opts ...request.Option) (*UntagLogGroupOutput, error) { req, out := c.UntagLogGroupRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } const opUntagResource = "UntagResource" // UntagResourceRequest generates a "aws/request.Request" representing the // client's request for the UntagResource operation. The "output" return // value will be populated with the request's response once the request completes // successfully. // // Use "Send" method on the returned Request to send the API call to the service. // the "output" return value is not valid until after Send returns without error. // // See UntagResource for more information on using the UntagResource // API call, and error handling. // // This method is useful when you want to inject custom logic or configuration // into the SDK's request lifecycle. Such as custom headers, or retry logic. // // // Example sending a request using the UntagResourceRequest method. // req, resp := client.UntagResourceRequest(params) // // err := req.Send() // if err == nil { // resp is now filled // fmt.Println(resp) // } // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagResource func (c *CloudWatchLogs) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput) { op := &request.Operation{ Name: opUntagResource, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &UntagResourceInput{} } output = &UntagResourceOutput{} req = c.newRequest(op, input, output) req.Handlers.Unmarshal.Swap(jsonrpc.UnmarshalHandler.Name, protocol.UnmarshalDiscardBodyHandler) return } // UntagResource API operation for Amazon CloudWatch Logs. // // Removes one or more tags from the specified resource. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. // // See the AWS API reference guide for Amazon CloudWatch Logs's // API operation UntagResource for usage and error information. // // Returned Error Types: // // - InvalidParameterException // A parameter is specified incorrectly. // // - ResourceNotFoundException // The specified resource does not exist. // // - ServiceUnavailableException // The service cannot complete the request. // // See also, https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagResource func (c *CloudWatchLogs) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error) { req, out := c.UntagResourceRequest(input) return out, req.Send() } // UntagResourceWithContext is the same as UntagResource with the addition of // the ability to pass a context and additional request options. // // See UntagResource for details on how to use this API operation. // // The context must be non-nil and will be used for request cancellation. If // the context is nil a panic will occur. In the future the SDK may create // sub-contexts for http.Requests. See https://golang.org/pkg/context/ // for more information on using Contexts. func (c *CloudWatchLogs) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error) { req, out := c.UntagResourceRequest(input) req.SetContext(ctx) req.ApplyOptions(opts...) return out, req.Send() } // A structure that contains information about one CloudWatch Logs account policy. type AccountPolicy struct { _ struct{} `type:"structure"` // The Amazon Web Services account ID that the policy applies to. AccountId *string `locationName:"accountId" min:"12" type:"string"` // The date and time that this policy was most recently updated. LastUpdatedTime *int64 `locationName:"lastUpdatedTime" type:"long"` // The policy document for this account policy. // // The JSON specified in policyDocument can be up to 30,720 characters. PolicyDocument *string `locationName:"policyDocument" type:"string"` // The name of the account policy. PolicyName *string `locationName:"policyName" type:"string"` // The type of policy for this account policy. PolicyType *string `locationName:"policyType" type:"string" enum:"PolicyType"` // The scope of the account policy. Scope *string `locationName:"scope" type:"string" enum:"Scope"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AccountPolicy) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AccountPolicy) GoString() string { return s.String() } // SetAccountId sets the AccountId field's value. func (s *AccountPolicy) SetAccountId(v string) *AccountPolicy { s.AccountId = &v return s } // SetLastUpdatedTime sets the LastUpdatedTime field's value. func (s *AccountPolicy) SetLastUpdatedTime(v int64) *AccountPolicy { s.LastUpdatedTime = &v return s } // SetPolicyDocument sets the PolicyDocument field's value. func (s *AccountPolicy) SetPolicyDocument(v string) *AccountPolicy { s.PolicyDocument = &v return s } // SetPolicyName sets the PolicyName field's value. func (s *AccountPolicy) SetPolicyName(v string) *AccountPolicy { s.PolicyName = &v return s } // SetPolicyType sets the PolicyType field's value. func (s *AccountPolicy) SetPolicyType(v string) *AccountPolicy { s.PolicyType = &v return s } // SetScope sets the Scope field's value. func (s *AccountPolicy) SetScope(v string) *AccountPolicy { s.Scope = &v return s } type AssociateKmsKeyInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the KMS key to use when encrypting log // data. This must be a symmetric KMS key. For more information, see Amazon // Resource Names (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms) // and Using Symmetric and Asymmetric Keys (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html). // // KmsKeyId is a required field KmsKeyId *string `locationName:"kmsKeyId" type:"string" required:"true"` // The name of the log group. // // In your AssociateKmsKey operation, you must specify either the resourceIdentifier // parameter or the logGroup parameter, but you can't specify both. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // Specifies the target for this operation. You must specify one of the following: // // * Specify the following ARN to have future GetQueryResults (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html) // operations in this account encrypt the results with the specified KMS // key. Replace REGION and ACCOUNT_ID with your Region and account ID. arn:aws:logs:REGION:ACCOUNT_ID:query-result:* // // * Specify the ARN of a log group to have CloudWatch Logs use the KMS key // to encrypt log events that are ingested and stored by that log group. // The log group ARN must be in the following format. Replace REGION and // ACCOUNT_ID with your Region and account ID. arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME // // In your AssociateKmsKey operation, you must specify either the resourceIdentifier // parameter or the logGroup parameter, but you can't specify both. ResourceIdentifier *string `locationName:"resourceIdentifier" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AssociateKmsKeyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AssociateKmsKeyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *AssociateKmsKeyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "AssociateKmsKeyInput"} if s.KmsKeyId == nil { invalidParams.Add(request.NewErrParamRequired("KmsKeyId")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.ResourceIdentifier != nil && len(*s.ResourceIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceIdentifier", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetKmsKeyId sets the KmsKeyId field's value. func (s *AssociateKmsKeyInput) SetKmsKeyId(v string) *AssociateKmsKeyInput { s.KmsKeyId = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *AssociateKmsKeyInput) SetLogGroupName(v string) *AssociateKmsKeyInput { s.LogGroupName = &v return s } // SetResourceIdentifier sets the ResourceIdentifier field's value. func (s *AssociateKmsKeyInput) SetResourceIdentifier(v string) *AssociateKmsKeyInput { s.ResourceIdentifier = &v return s } type AssociateKmsKeyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AssociateKmsKeyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s AssociateKmsKeyOutput) GoString() string { return s.String() } type CancelExportTaskInput struct { _ struct{} `type:"structure"` // The ID of the export task. // // TaskId is a required field TaskId *string `locationName:"taskId" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CancelExportTaskInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CancelExportTaskInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CancelExportTaskInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CancelExportTaskInput"} if s.TaskId == nil { invalidParams.Add(request.NewErrParamRequired("TaskId")) } if s.TaskId != nil && len(*s.TaskId) < 1 { invalidParams.Add(request.NewErrParamMinLen("TaskId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetTaskId sets the TaskId field's value. func (s *CancelExportTaskInput) SetTaskId(v string) *CancelExportTaskInput { s.TaskId = &v return s } type CancelExportTaskOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CancelExportTaskOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CancelExportTaskOutput) GoString() string { return s.String() } type CreateExportTaskInput struct { _ struct{} `type:"structure"` // The name of S3 bucket for the exported log data. The bucket must be in the // same Amazon Web Services Region. // // Destination is a required field Destination *string `locationName:"destination" min:"1" type:"string" required:"true"` // The prefix used as the start of the key for every object exported. If you // don't specify a value, the default is exportedlogs. DestinationPrefix *string `locationName:"destinationPrefix" type:"string"` // The start time of the range for the request, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. Events with a timestamp earlier than this // time are not exported. // // From is a required field From *int64 `locationName:"from" type:"long" required:"true"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // Export only log streams that match the provided prefix. If you don't specify // a value, no prefix filter is applied. LogStreamNamePrefix *string `locationName:"logStreamNamePrefix" min:"1" type:"string"` // The name of the export task. TaskName *string `locationName:"taskName" min:"1" type:"string"` // The end time of the range for the request, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time // are not exported. // // You must specify a time that is not earlier than when this log group was // created. // // To is a required field To *int64 `locationName:"to" type:"long" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateExportTaskInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateExportTaskInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateExportTaskInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateExportTaskInput"} if s.Destination == nil { invalidParams.Add(request.NewErrParamRequired("Destination")) } if s.Destination != nil && len(*s.Destination) < 1 { invalidParams.Add(request.NewErrParamMinLen("Destination", 1)) } if s.From == nil { invalidParams.Add(request.NewErrParamRequired("From")) } if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.LogStreamNamePrefix != nil && len(*s.LogStreamNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamNamePrefix", 1)) } if s.TaskName != nil && len(*s.TaskName) < 1 { invalidParams.Add(request.NewErrParamMinLen("TaskName", 1)) } if s.To == nil { invalidParams.Add(request.NewErrParamRequired("To")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDestination sets the Destination field's value. func (s *CreateExportTaskInput) SetDestination(v string) *CreateExportTaskInput { s.Destination = &v return s } // SetDestinationPrefix sets the DestinationPrefix field's value. func (s *CreateExportTaskInput) SetDestinationPrefix(v string) *CreateExportTaskInput { s.DestinationPrefix = &v return s } // SetFrom sets the From field's value. func (s *CreateExportTaskInput) SetFrom(v int64) *CreateExportTaskInput { s.From = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *CreateExportTaskInput) SetLogGroupName(v string) *CreateExportTaskInput { s.LogGroupName = &v return s } // SetLogStreamNamePrefix sets the LogStreamNamePrefix field's value. func (s *CreateExportTaskInput) SetLogStreamNamePrefix(v string) *CreateExportTaskInput { s.LogStreamNamePrefix = &v return s } // SetTaskName sets the TaskName field's value. func (s *CreateExportTaskInput) SetTaskName(v string) *CreateExportTaskInput { s.TaskName = &v return s } // SetTo sets the To field's value. func (s *CreateExportTaskInput) SetTo(v int64) *CreateExportTaskInput { s.To = &v return s } type CreateExportTaskOutput struct { _ struct{} `type:"structure"` // The ID of the export task. TaskId *string `locationName:"taskId" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateExportTaskOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateExportTaskOutput) GoString() string { return s.String() } // SetTaskId sets the TaskId field's value. func (s *CreateExportTaskOutput) SetTaskId(v string) *CreateExportTaskOutput { s.TaskId = &v return s } type CreateLogGroupInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the KMS key to use when encrypting log // data. For more information, see Amazon Resource Names (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms). KmsKeyId *string `locationName:"kmsKeyId" type:"string"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The key-value pairs to use for the tags. // // You can grant users access to certain log groups while preventing them from // accessing other log groups. To do so, tag your groups and use IAM policies // that refer to those tags. To assign tags when you create a log group, you // must have either the logs:TagResource or logs:TagLogGroup permission. For // more information about tagging, see Tagging Amazon Web Services resources // (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html). For more // information about using tags to control access, see Controlling access to // Amazon Web Services resources using tags (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html). Tags map[string]*string `locationName:"tags" min:"1" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogGroupInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogGroupInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateLogGroupInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateLogGroupInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(request.NewErrParamMinLen("Tags", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetKmsKeyId sets the KmsKeyId field's value. func (s *CreateLogGroupInput) SetKmsKeyId(v string) *CreateLogGroupInput { s.KmsKeyId = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *CreateLogGroupInput) SetLogGroupName(v string) *CreateLogGroupInput { s.LogGroupName = &v return s } // SetTags sets the Tags field's value. func (s *CreateLogGroupInput) SetTags(v map[string]*string) *CreateLogGroupInput { s.Tags = v return s } type CreateLogGroupOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogGroupOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogGroupOutput) GoString() string { return s.String() } type CreateLogStreamInput struct { _ struct{} `type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The name of the log stream. // // LogStreamName is a required field LogStreamName *string `locationName:"logStreamName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogStreamInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogStreamInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateLogStreamInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "CreateLogStreamInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.LogStreamName == nil { invalidParams.Add(request.NewErrParamRequired("LogStreamName")) } if s.LogStreamName != nil && len(*s.LogStreamName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *CreateLogStreamInput) SetLogGroupName(v string) *CreateLogStreamInput { s.LogGroupName = &v return s } // SetLogStreamName sets the LogStreamName field's value. func (s *CreateLogStreamInput) SetLogStreamName(v string) *CreateLogStreamInput { s.LogStreamName = &v return s } type CreateLogStreamOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogStreamOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s CreateLogStreamOutput) GoString() string { return s.String() } // The event was already logged. // // PutLogEvents actions are now always accepted and never return DataAlreadyAcceptedException // regardless of whether a given batch of log events has already been accepted. type DataAlreadyAcceptedException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` ExpectedSequenceToken *string `locationName:"expectedSequenceToken" min:"1" type:"string"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DataAlreadyAcceptedException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DataAlreadyAcceptedException) GoString() string { return s.String() } func newErrorDataAlreadyAcceptedException(v protocol.ResponseMetadata) error { return &DataAlreadyAcceptedException{ RespMetadata: v, } } // Code returns the exception type name. func (s *DataAlreadyAcceptedException) Code() string { return "DataAlreadyAcceptedException" } // Message returns the exception's message. func (s *DataAlreadyAcceptedException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *DataAlreadyAcceptedException) OrigErr() error { return nil } func (s *DataAlreadyAcceptedException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *DataAlreadyAcceptedException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *DataAlreadyAcceptedException) RequestID() string { return s.RespMetadata.RequestID } type DeleteAccountPolicyInput struct { _ struct{} `type:"structure"` // The name of the policy to delete. // // PolicyName is a required field PolicyName *string `locationName:"policyName" type:"string" required:"true"` // The type of policy to delete. Currently, the only valid value is DATA_PROTECTION_POLICY. // // PolicyType is a required field PolicyType *string `locationName:"policyType" type:"string" required:"true" enum:"PolicyType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteAccountPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteAccountPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteAccountPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteAccountPolicyInput"} if s.PolicyName == nil { invalidParams.Add(request.NewErrParamRequired("PolicyName")) } if s.PolicyType == nil { invalidParams.Add(request.NewErrParamRequired("PolicyType")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetPolicyName sets the PolicyName field's value. func (s *DeleteAccountPolicyInput) SetPolicyName(v string) *DeleteAccountPolicyInput { s.PolicyName = &v return s } // SetPolicyType sets the PolicyType field's value. func (s *DeleteAccountPolicyInput) SetPolicyType(v string) *DeleteAccountPolicyInput { s.PolicyType = &v return s } type DeleteAccountPolicyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteAccountPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteAccountPolicyOutput) GoString() string { return s.String() } type DeleteDataProtectionPolicyInput struct { _ struct{} `type:"structure"` // The name or ARN of the log group that you want to delete the data protection // policy for. // // LogGroupIdentifier is a required field LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDataProtectionPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDataProtectionPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteDataProtectionPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteDataProtectionPolicyInput"} if s.LogGroupIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupIdentifier")) } if s.LogGroupIdentifier != nil && len(*s.LogGroupIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupIdentifier", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *DeleteDataProtectionPolicyInput) SetLogGroupIdentifier(v string) *DeleteDataProtectionPolicyInput { s.LogGroupIdentifier = &v return s } type DeleteDataProtectionPolicyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDataProtectionPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDataProtectionPolicyOutput) GoString() string { return s.String() } type DeleteDestinationInput struct { _ struct{} `type:"structure"` // The name of the destination. // // DestinationName is a required field DestinationName *string `locationName:"destinationName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDestinationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDestinationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteDestinationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteDestinationInput"} if s.DestinationName == nil { invalidParams.Add(request.NewErrParamRequired("DestinationName")) } if s.DestinationName != nil && len(*s.DestinationName) < 1 { invalidParams.Add(request.NewErrParamMinLen("DestinationName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDestinationName sets the DestinationName field's value. func (s *DeleteDestinationInput) SetDestinationName(v string) *DeleteDestinationInput { s.DestinationName = &v return s } type DeleteDestinationOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDestinationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteDestinationOutput) GoString() string { return s.String() } type DeleteLogGroupInput struct { _ struct{} `type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogGroupInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogGroupInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteLogGroupInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteLogGroupInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *DeleteLogGroupInput) SetLogGroupName(v string) *DeleteLogGroupInput { s.LogGroupName = &v return s } type DeleteLogGroupOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogGroupOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogGroupOutput) GoString() string { return s.String() } type DeleteLogStreamInput struct { _ struct{} `type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The name of the log stream. // // LogStreamName is a required field LogStreamName *string `locationName:"logStreamName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogStreamInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogStreamInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteLogStreamInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteLogStreamInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.LogStreamName == nil { invalidParams.Add(request.NewErrParamRequired("LogStreamName")) } if s.LogStreamName != nil && len(*s.LogStreamName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *DeleteLogStreamInput) SetLogGroupName(v string) *DeleteLogStreamInput { s.LogGroupName = &v return s } // SetLogStreamName sets the LogStreamName field's value. func (s *DeleteLogStreamInput) SetLogStreamName(v string) *DeleteLogStreamInput { s.LogStreamName = &v return s } type DeleteLogStreamOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogStreamOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteLogStreamOutput) GoString() string { return s.String() } type DeleteMetricFilterInput struct { _ struct{} `type:"structure"` // The name of the metric filter. // // FilterName is a required field FilterName *string `locationName:"filterName" min:"1" type:"string" required:"true"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMetricFilterInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMetricFilterInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteMetricFilterInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteMetricFilterInput"} if s.FilterName == nil { invalidParams.Add(request.NewErrParamRequired("FilterName")) } if s.FilterName != nil && len(*s.FilterName) < 1 { invalidParams.Add(request.NewErrParamMinLen("FilterName", 1)) } if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetFilterName sets the FilterName field's value. func (s *DeleteMetricFilterInput) SetFilterName(v string) *DeleteMetricFilterInput { s.FilterName = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *DeleteMetricFilterInput) SetLogGroupName(v string) *DeleteMetricFilterInput { s.LogGroupName = &v return s } type DeleteMetricFilterOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMetricFilterOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteMetricFilterOutput) GoString() string { return s.String() } type DeleteQueryDefinitionInput struct { _ struct{} `type:"structure"` // The ID of the query definition that you want to delete. You can use DescribeQueryDefinitions // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeQueryDefinitions.html) // to retrieve the IDs of your saved query definitions. // // QueryDefinitionId is a required field QueryDefinitionId *string `locationName:"queryDefinitionId" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteQueryDefinitionInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteQueryDefinitionInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteQueryDefinitionInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteQueryDefinitionInput"} if s.QueryDefinitionId == nil { invalidParams.Add(request.NewErrParamRequired("QueryDefinitionId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetQueryDefinitionId sets the QueryDefinitionId field's value. func (s *DeleteQueryDefinitionInput) SetQueryDefinitionId(v string) *DeleteQueryDefinitionInput { s.QueryDefinitionId = &v return s } type DeleteQueryDefinitionOutput struct { _ struct{} `type:"structure"` // A value of TRUE indicates that the operation succeeded. FALSE indicates that // the operation failed. Success *bool `locationName:"success" type:"boolean"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteQueryDefinitionOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteQueryDefinitionOutput) GoString() string { return s.String() } // SetSuccess sets the Success field's value. func (s *DeleteQueryDefinitionOutput) SetSuccess(v bool) *DeleteQueryDefinitionOutput { s.Success = &v return s } type DeleteResourcePolicyInput struct { _ struct{} `type:"structure"` // The name of the policy to be revoked. This parameter is required. PolicyName *string `locationName:"policyName" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteResourcePolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteResourcePolicyInput) GoString() string { return s.String() } // SetPolicyName sets the PolicyName field's value. func (s *DeleteResourcePolicyInput) SetPolicyName(v string) *DeleteResourcePolicyInput { s.PolicyName = &v return s } type DeleteResourcePolicyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteResourcePolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteResourcePolicyOutput) GoString() string { return s.String() } type DeleteRetentionPolicyInput struct { _ struct{} `type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteRetentionPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteRetentionPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteRetentionPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteRetentionPolicyInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *DeleteRetentionPolicyInput) SetLogGroupName(v string) *DeleteRetentionPolicyInput { s.LogGroupName = &v return s } type DeleteRetentionPolicyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteRetentionPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteRetentionPolicyOutput) GoString() string { return s.String() } type DeleteSubscriptionFilterInput struct { _ struct{} `type:"structure"` // The name of the subscription filter. // // FilterName is a required field FilterName *string `locationName:"filterName" min:"1" type:"string" required:"true"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteSubscriptionFilterInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteSubscriptionFilterInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteSubscriptionFilterInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DeleteSubscriptionFilterInput"} if s.FilterName == nil { invalidParams.Add(request.NewErrParamRequired("FilterName")) } if s.FilterName != nil && len(*s.FilterName) < 1 { invalidParams.Add(request.NewErrParamMinLen("FilterName", 1)) } if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetFilterName sets the FilterName field's value. func (s *DeleteSubscriptionFilterInput) SetFilterName(v string) *DeleteSubscriptionFilterInput { s.FilterName = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *DeleteSubscriptionFilterInput) SetLogGroupName(v string) *DeleteSubscriptionFilterInput { s.LogGroupName = &v return s } type DeleteSubscriptionFilterOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteSubscriptionFilterOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DeleteSubscriptionFilterOutput) GoString() string { return s.String() } type DescribeAccountPoliciesInput struct { _ struct{} `type:"structure"` // If you are using an account that is set up as a monitoring account for CloudWatch // unified cross-account observability, you can use this to specify the account // ID of a source account. If you do, the operation returns the account policy // for the specified account. Currently, you can specify only one account ID // in this parameter. // // If you omit this parameter, only the policy in the current account is returned. AccountIdentifiers []*string `locationName:"accountIdentifiers" type:"list"` // Use this parameter to limit the returned policies to only the policy with // the name that you specify. PolicyName *string `locationName:"policyName" type:"string"` // Use this parameter to limit the returned policies to only the policies that // match the policy type that you specify. Currently, the only valid value is // DATA_PROTECTION_POLICY. // // PolicyType is a required field PolicyType *string `locationName:"policyType" type:"string" required:"true" enum:"PolicyType"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeAccountPoliciesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeAccountPoliciesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeAccountPoliciesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeAccountPoliciesInput"} if s.PolicyType == nil { invalidParams.Add(request.NewErrParamRequired("PolicyType")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAccountIdentifiers sets the AccountIdentifiers field's value. func (s *DescribeAccountPoliciesInput) SetAccountIdentifiers(v []*string) *DescribeAccountPoliciesInput { s.AccountIdentifiers = v return s } // SetPolicyName sets the PolicyName field's value. func (s *DescribeAccountPoliciesInput) SetPolicyName(v string) *DescribeAccountPoliciesInput { s.PolicyName = &v return s } // SetPolicyType sets the PolicyType field's value. func (s *DescribeAccountPoliciesInput) SetPolicyType(v string) *DescribeAccountPoliciesInput { s.PolicyType = &v return s } type DescribeAccountPoliciesOutput struct { _ struct{} `type:"structure"` // An array of structures that contain information about the CloudWatch Logs // account policies that match the specified filters. AccountPolicies []*AccountPolicy `locationName:"accountPolicies" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeAccountPoliciesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeAccountPoliciesOutput) GoString() string { return s.String() } // SetAccountPolicies sets the AccountPolicies field's value. func (s *DescribeAccountPoliciesOutput) SetAccountPolicies(v []*AccountPolicy) *DescribeAccountPoliciesOutput { s.AccountPolicies = v return s } type DescribeDestinationsInput struct { _ struct{} `type:"structure"` // The prefix to match. If you don't specify a value, no prefix filter is applied. DestinationNamePrefix *string `min:"1" type:"string"` // The maximum number of items returned. If you don't specify a value, the default // maximum value of 50 items is used. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // The token for the next set of items to return. (You received this token from // a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeDestinationsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeDestinationsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeDestinationsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeDestinationsInput"} if s.DestinationNamePrefix != nil && len(*s.DestinationNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("DestinationNamePrefix", 1)) } if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDestinationNamePrefix sets the DestinationNamePrefix field's value. func (s *DescribeDestinationsInput) SetDestinationNamePrefix(v string) *DescribeDestinationsInput { s.DestinationNamePrefix = &v return s } // SetLimit sets the Limit field's value. func (s *DescribeDestinationsInput) SetLimit(v int64) *DescribeDestinationsInput { s.Limit = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeDestinationsInput) SetNextToken(v string) *DescribeDestinationsInput { s.NextToken = &v return s } type DescribeDestinationsOutput struct { _ struct{} `type:"structure"` // The destinations. Destinations []*Destination `locationName:"destinations" type:"list"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeDestinationsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeDestinationsOutput) GoString() string { return s.String() } // SetDestinations sets the Destinations field's value. func (s *DescribeDestinationsOutput) SetDestinations(v []*Destination) *DescribeDestinationsOutput { s.Destinations = v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeDestinationsOutput) SetNextToken(v string) *DescribeDestinationsOutput { s.NextToken = &v return s } type DescribeExportTasksInput struct { _ struct{} `type:"structure"` // The maximum number of items returned. If you don't specify a value, the default // is up to 50 items. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // The token for the next set of items to return. (You received this token from // a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The status code of the export task. Specifying a status code filters the // results to zero or more export tasks. StatusCode *string `locationName:"statusCode" type:"string" enum:"ExportTaskStatusCode"` // The ID of the export task. Specifying a task ID filters the results to one // or zero export tasks. TaskId *string `locationName:"taskId" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeExportTasksInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeExportTasksInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeExportTasksInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeExportTasksInput"} if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if s.TaskId != nil && len(*s.TaskId) < 1 { invalidParams.Add(request.NewErrParamMinLen("TaskId", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLimit sets the Limit field's value. func (s *DescribeExportTasksInput) SetLimit(v int64) *DescribeExportTasksInput { s.Limit = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeExportTasksInput) SetNextToken(v string) *DescribeExportTasksInput { s.NextToken = &v return s } // SetStatusCode sets the StatusCode field's value. func (s *DescribeExportTasksInput) SetStatusCode(v string) *DescribeExportTasksInput { s.StatusCode = &v return s } // SetTaskId sets the TaskId field's value. func (s *DescribeExportTasksInput) SetTaskId(v string) *DescribeExportTasksInput { s.TaskId = &v return s } type DescribeExportTasksOutput struct { _ struct{} `type:"structure"` // The export tasks. ExportTasks []*ExportTask `locationName:"exportTasks" type:"list"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeExportTasksOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeExportTasksOutput) GoString() string { return s.String() } // SetExportTasks sets the ExportTasks field's value. func (s *DescribeExportTasksOutput) SetExportTasks(v []*ExportTask) *DescribeExportTasksOutput { s.ExportTasks = v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeExportTasksOutput) SetNextToken(v string) *DescribeExportTasksOutput { s.NextToken = &v return s } type DescribeLogGroupsInput struct { _ struct{} `type:"structure"` // When includeLinkedAccounts is set to True, use this parameter to specify // the list of accounts to search. You can specify as many as 20 account IDs // in the array. AccountIdentifiers []*string `locationName:"accountIdentifiers" type:"list"` // If you are using a monitoring account, set this to True to have the operation // return log groups in the accounts listed in accountIdentifiers. // // If this parameter is set to true and accountIdentifiers contains a null value, // the operation returns all log groups in the monitoring account and all log // groups in all source accounts that are linked to the monitoring account. IncludeLinkedAccounts *bool `locationName:"includeLinkedAccounts" type:"boolean"` // The maximum number of items returned. If you don't specify a value, the default // is up to 50 items. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // If you specify a string for this parameter, the operation returns only log // groups that have names that match the string based on a case-sensitive substring // search. For example, if you specify Foo, log groups named FooBar, aws/Foo, // and GroupFoo would match, but foo, F/o/o and Froo would not match. // // If you specify logGroupNamePattern in your request, then only arn, creationTime, // and logGroupName are included in the response. // // logGroupNamePattern and logGroupNamePrefix are mutually exclusive. Only one // of these parameters can be passed. LogGroupNamePattern *string `locationName:"logGroupNamePattern" type:"string"` // The prefix to match. // // logGroupNamePrefix and logGroupNamePattern are mutually exclusive. Only one // of these parameters can be passed. LogGroupNamePrefix *string `locationName:"logGroupNamePrefix" min:"1" type:"string"` // The token for the next set of items to return. (You received this token from // a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogGroupsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogGroupsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeLogGroupsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeLogGroupsInput"} if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.LogGroupNamePrefix != nil && len(*s.LogGroupNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupNamePrefix", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAccountIdentifiers sets the AccountIdentifiers field's value. func (s *DescribeLogGroupsInput) SetAccountIdentifiers(v []*string) *DescribeLogGroupsInput { s.AccountIdentifiers = v return s } // SetIncludeLinkedAccounts sets the IncludeLinkedAccounts field's value. func (s *DescribeLogGroupsInput) SetIncludeLinkedAccounts(v bool) *DescribeLogGroupsInput { s.IncludeLinkedAccounts = &v return s } // SetLimit sets the Limit field's value. func (s *DescribeLogGroupsInput) SetLimit(v int64) *DescribeLogGroupsInput { s.Limit = &v return s } // SetLogGroupNamePattern sets the LogGroupNamePattern field's value. func (s *DescribeLogGroupsInput) SetLogGroupNamePattern(v string) *DescribeLogGroupsInput { s.LogGroupNamePattern = &v return s } // SetLogGroupNamePrefix sets the LogGroupNamePrefix field's value. func (s *DescribeLogGroupsInput) SetLogGroupNamePrefix(v string) *DescribeLogGroupsInput { s.LogGroupNamePrefix = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeLogGroupsInput) SetNextToken(v string) *DescribeLogGroupsInput { s.NextToken = &v return s } type DescribeLogGroupsOutput struct { _ struct{} `type:"structure"` // The log groups. // // If the retentionInDays value is not included for a log group, then that log // group's events do not expire. LogGroups []*LogGroup `locationName:"logGroups" type:"list"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogGroupsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogGroupsOutput) GoString() string { return s.String() } // SetLogGroups sets the LogGroups field's value. func (s *DescribeLogGroupsOutput) SetLogGroups(v []*LogGroup) *DescribeLogGroupsOutput { s.LogGroups = v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeLogGroupsOutput) SetNextToken(v string) *DescribeLogGroupsOutput { s.NextToken = &v return s } type DescribeLogStreamsInput struct { _ struct{} `type:"structure"` // If the value is true, results are returned in descending order. If the value // is to false, results are returned in ascending order. The default value is // false. Descending *bool `locationName:"descending" type:"boolean"` // The maximum number of items returned. If you don't specify a value, the default // is up to 50 items. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // Specify either the name or ARN of the log group to view. If the log group // is in a source account and you are using a monitoring account, you must use // the log group ARN. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string"` // The name of the log group. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The prefix to match. // // If orderBy is LastEventTime, you cannot specify this parameter. LogStreamNamePrefix *string `locationName:"logStreamNamePrefix" min:"1" type:"string"` // The token for the next set of items to return. (You received this token from // a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` // If the value is LogStreamName, the results are ordered by log stream name. // If the value is LastEventTime, the results are ordered by the event time. // The default value is LogStreamName. // // If you order the results by event time, you cannot specify the logStreamNamePrefix // parameter. // // lastEventTimestamp represents the time of the most recent log event in the // log stream in CloudWatch Logs. This number is expressed as the number of // milliseconds after Jan 1, 1970 00:00:00 UTC. lastEventTimestamp updates on // an eventual consistency basis. It typically updates in less than an hour // from ingestion, but in rare situations might take longer. OrderBy *string `locationName:"orderBy" type:"string" enum:"OrderBy"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogStreamsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogStreamsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeLogStreamsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeLogStreamsInput"} if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.LogGroupIdentifier != nil && len(*s.LogGroupIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupIdentifier", 1)) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.LogStreamNamePrefix != nil && len(*s.LogStreamNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamNamePrefix", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDescending sets the Descending field's value. func (s *DescribeLogStreamsInput) SetDescending(v bool) *DescribeLogStreamsInput { s.Descending = &v return s } // SetLimit sets the Limit field's value. func (s *DescribeLogStreamsInput) SetLimit(v int64) *DescribeLogStreamsInput { s.Limit = &v return s } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *DescribeLogStreamsInput) SetLogGroupIdentifier(v string) *DescribeLogStreamsInput { s.LogGroupIdentifier = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *DescribeLogStreamsInput) SetLogGroupName(v string) *DescribeLogStreamsInput { s.LogGroupName = &v return s } // SetLogStreamNamePrefix sets the LogStreamNamePrefix field's value. func (s *DescribeLogStreamsInput) SetLogStreamNamePrefix(v string) *DescribeLogStreamsInput { s.LogStreamNamePrefix = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeLogStreamsInput) SetNextToken(v string) *DescribeLogStreamsInput { s.NextToken = &v return s } // SetOrderBy sets the OrderBy field's value. func (s *DescribeLogStreamsInput) SetOrderBy(v string) *DescribeLogStreamsInput { s.OrderBy = &v return s } type DescribeLogStreamsOutput struct { _ struct{} `type:"structure"` // The log streams. LogStreams []*LogStream `locationName:"logStreams" type:"list"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogStreamsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeLogStreamsOutput) GoString() string { return s.String() } // SetLogStreams sets the LogStreams field's value. func (s *DescribeLogStreamsOutput) SetLogStreams(v []*LogStream) *DescribeLogStreamsOutput { s.LogStreams = v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeLogStreamsOutput) SetNextToken(v string) *DescribeLogStreamsOutput { s.NextToken = &v return s } type DescribeMetricFiltersInput struct { _ struct{} `type:"structure"` // The prefix to match. CloudWatch Logs uses the value that you set here only // if you also include the logGroupName parameter in your request. FilterNamePrefix *string `locationName:"filterNamePrefix" min:"1" type:"string"` // The maximum number of items returned. If you don't specify a value, the default // is up to 50 items. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // The name of the log group. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // Filters results to include only those with the specified metric name. If // you include this parameter in your request, you must also include the metricNamespace // parameter. MetricName *string `locationName:"metricName" type:"string"` // Filters results to include only those in the specified namespace. If you // include this parameter in your request, you must also include the metricName // parameter. MetricNamespace *string `locationName:"metricNamespace" type:"string"` // The token for the next set of items to return. (You received this token from // a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeMetricFiltersInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeMetricFiltersInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeMetricFiltersInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeMetricFiltersInput"} if s.FilterNamePrefix != nil && len(*s.FilterNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("FilterNamePrefix", 1)) } if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetFilterNamePrefix sets the FilterNamePrefix field's value. func (s *DescribeMetricFiltersInput) SetFilterNamePrefix(v string) *DescribeMetricFiltersInput { s.FilterNamePrefix = &v return s } // SetLimit sets the Limit field's value. func (s *DescribeMetricFiltersInput) SetLimit(v int64) *DescribeMetricFiltersInput { s.Limit = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *DescribeMetricFiltersInput) SetLogGroupName(v string) *DescribeMetricFiltersInput { s.LogGroupName = &v return s } // SetMetricName sets the MetricName field's value. func (s *DescribeMetricFiltersInput) SetMetricName(v string) *DescribeMetricFiltersInput { s.MetricName = &v return s } // SetMetricNamespace sets the MetricNamespace field's value. func (s *DescribeMetricFiltersInput) SetMetricNamespace(v string) *DescribeMetricFiltersInput { s.MetricNamespace = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeMetricFiltersInput) SetNextToken(v string) *DescribeMetricFiltersInput { s.NextToken = &v return s } type DescribeMetricFiltersOutput struct { _ struct{} `type:"structure"` // The metric filters. MetricFilters []*MetricFilter `locationName:"metricFilters" type:"list"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeMetricFiltersOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeMetricFiltersOutput) GoString() string { return s.String() } // SetMetricFilters sets the MetricFilters field's value. func (s *DescribeMetricFiltersOutput) SetMetricFilters(v []*MetricFilter) *DescribeMetricFiltersOutput { s.MetricFilters = v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeMetricFiltersOutput) SetNextToken(v string) *DescribeMetricFiltersOutput { s.NextToken = &v return s } type DescribeQueriesInput struct { _ struct{} `type:"structure"` // Limits the returned queries to only those for the specified log group. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // Limits the number of returned queries to the specified number. MaxResults *int64 `locationName:"maxResults" min:"1" type:"integer"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // Limits the returned queries to only those that have the specified status. // Valid values are Cancelled, Complete, Failed, Running, and Scheduled. Status *string `locationName:"status" type:"string" enum:"QueryStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueriesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueriesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeQueriesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeQueriesInput"} if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *DescribeQueriesInput) SetLogGroupName(v string) *DescribeQueriesInput { s.LogGroupName = &v return s } // SetMaxResults sets the MaxResults field's value. func (s *DescribeQueriesInput) SetMaxResults(v int64) *DescribeQueriesInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeQueriesInput) SetNextToken(v string) *DescribeQueriesInput { s.NextToken = &v return s } // SetStatus sets the Status field's value. func (s *DescribeQueriesInput) SetStatus(v string) *DescribeQueriesInput { s.Status = &v return s } type DescribeQueriesOutput struct { _ struct{} `type:"structure"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The list of queries that match the request. Queries []*QueryInfo `locationName:"queries" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueriesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueriesOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *DescribeQueriesOutput) SetNextToken(v string) *DescribeQueriesOutput { s.NextToken = &v return s } // SetQueries sets the Queries field's value. func (s *DescribeQueriesOutput) SetQueries(v []*QueryInfo) *DescribeQueriesOutput { s.Queries = v return s } type DescribeQueryDefinitionsInput struct { _ struct{} `type:"structure"` // Limits the number of returned query definitions to the specified number. MaxResults *int64 `locationName:"maxResults" min:"1" type:"integer"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // Use this parameter to filter your results to only the query definitions that // have names that start with the prefix you specify. QueryDefinitionNamePrefix *string `locationName:"queryDefinitionNamePrefix" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueryDefinitionsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueryDefinitionsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeQueryDefinitionsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeQueryDefinitionsInput"} if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if s.QueryDefinitionNamePrefix != nil && len(*s.QueryDefinitionNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("QueryDefinitionNamePrefix", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMaxResults sets the MaxResults field's value. func (s *DescribeQueryDefinitionsInput) SetMaxResults(v int64) *DescribeQueryDefinitionsInput { s.MaxResults = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeQueryDefinitionsInput) SetNextToken(v string) *DescribeQueryDefinitionsInput { s.NextToken = &v return s } // SetQueryDefinitionNamePrefix sets the QueryDefinitionNamePrefix field's value. func (s *DescribeQueryDefinitionsInput) SetQueryDefinitionNamePrefix(v string) *DescribeQueryDefinitionsInput { s.QueryDefinitionNamePrefix = &v return s } type DescribeQueryDefinitionsOutput struct { _ struct{} `type:"structure"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The list of query definitions that match your request. QueryDefinitions []*QueryDefinition `locationName:"queryDefinitions" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueryDefinitionsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeQueryDefinitionsOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *DescribeQueryDefinitionsOutput) SetNextToken(v string) *DescribeQueryDefinitionsOutput { s.NextToken = &v return s } // SetQueryDefinitions sets the QueryDefinitions field's value. func (s *DescribeQueryDefinitionsOutput) SetQueryDefinitions(v []*QueryDefinition) *DescribeQueryDefinitionsOutput { s.QueryDefinitions = v return s } type DescribeResourcePoliciesInput struct { _ struct{} `type:"structure"` // The maximum number of resource policies to be displayed with one call of // this API. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeResourcePoliciesInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeResourcePoliciesInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeResourcePoliciesInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeResourcePoliciesInput"} if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLimit sets the Limit field's value. func (s *DescribeResourcePoliciesInput) SetLimit(v int64) *DescribeResourcePoliciesInput { s.Limit = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeResourcePoliciesInput) SetNextToken(v string) *DescribeResourcePoliciesInput { s.NextToken = &v return s } type DescribeResourcePoliciesOutput struct { _ struct{} `type:"structure"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The resource policies that exist in this account. ResourcePolicies []*ResourcePolicy `locationName:"resourcePolicies" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeResourcePoliciesOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeResourcePoliciesOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *DescribeResourcePoliciesOutput) SetNextToken(v string) *DescribeResourcePoliciesOutput { s.NextToken = &v return s } // SetResourcePolicies sets the ResourcePolicies field's value. func (s *DescribeResourcePoliciesOutput) SetResourcePolicies(v []*ResourcePolicy) *DescribeResourcePoliciesOutput { s.ResourcePolicies = v return s } type DescribeSubscriptionFiltersInput struct { _ struct{} `type:"structure"` // The prefix to match. If you don't specify a value, no prefix filter is applied. FilterNamePrefix *string `locationName:"filterNamePrefix" min:"1" type:"string"` // The maximum number of items returned. If you don't specify a value, the default // is up to 50 items. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The token for the next set of items to return. (You received this token from // a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeSubscriptionFiltersInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeSubscriptionFiltersInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DescribeSubscriptionFiltersInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DescribeSubscriptionFiltersInput"} if s.FilterNamePrefix != nil && len(*s.FilterNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("FilterNamePrefix", 1)) } if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetFilterNamePrefix sets the FilterNamePrefix field's value. func (s *DescribeSubscriptionFiltersInput) SetFilterNamePrefix(v string) *DescribeSubscriptionFiltersInput { s.FilterNamePrefix = &v return s } // SetLimit sets the Limit field's value. func (s *DescribeSubscriptionFiltersInput) SetLimit(v int64) *DescribeSubscriptionFiltersInput { s.Limit = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *DescribeSubscriptionFiltersInput) SetLogGroupName(v string) *DescribeSubscriptionFiltersInput { s.LogGroupName = &v return s } // SetNextToken sets the NextToken field's value. func (s *DescribeSubscriptionFiltersInput) SetNextToken(v string) *DescribeSubscriptionFiltersInput { s.NextToken = &v return s } type DescribeSubscriptionFiltersOutput struct { _ struct{} `type:"structure"` // The token for the next set of items to return. The token expires after 24 // hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The subscription filters. SubscriptionFilters []*SubscriptionFilter `locationName:"subscriptionFilters" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeSubscriptionFiltersOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DescribeSubscriptionFiltersOutput) GoString() string { return s.String() } // SetNextToken sets the NextToken field's value. func (s *DescribeSubscriptionFiltersOutput) SetNextToken(v string) *DescribeSubscriptionFiltersOutput { s.NextToken = &v return s } // SetSubscriptionFilters sets the SubscriptionFilters field's value. func (s *DescribeSubscriptionFiltersOutput) SetSubscriptionFilters(v []*SubscriptionFilter) *DescribeSubscriptionFiltersOutput { s.SubscriptionFilters = v return s } // Represents a cross-account destination that receives subscription log events. type Destination struct { _ struct{} `type:"structure"` // An IAM policy document that governs which Amazon Web Services accounts can // create subscription filters against this destination. AccessPolicy *string `locationName:"accessPolicy" min:"1" type:"string"` // The ARN of this destination. Arn *string `locationName:"arn" type:"string"` // The creation time of the destination, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. CreationTime *int64 `locationName:"creationTime" type:"long"` // The name of the destination. DestinationName *string `locationName:"destinationName" min:"1" type:"string"` // A role for impersonation, used when delivering log events to the target. RoleArn *string `locationName:"roleArn" min:"1" type:"string"` // The Amazon Resource Name (ARN) of the physical target where the log events // are delivered (for example, a Kinesis stream). TargetArn *string `locationName:"targetArn" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Destination) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s Destination) GoString() string { return s.String() } // SetAccessPolicy sets the AccessPolicy field's value. func (s *Destination) SetAccessPolicy(v string) *Destination { s.AccessPolicy = &v return s } // SetArn sets the Arn field's value. func (s *Destination) SetArn(v string) *Destination { s.Arn = &v return s } // SetCreationTime sets the CreationTime field's value. func (s *Destination) SetCreationTime(v int64) *Destination { s.CreationTime = &v return s } // SetDestinationName sets the DestinationName field's value. func (s *Destination) SetDestinationName(v string) *Destination { s.DestinationName = &v return s } // SetRoleArn sets the RoleArn field's value. func (s *Destination) SetRoleArn(v string) *Destination { s.RoleArn = &v return s } // SetTargetArn sets the TargetArn field's value. func (s *Destination) SetTargetArn(v string) *Destination { s.TargetArn = &v return s } type DisassociateKmsKeyInput struct { _ struct{} `type:"structure"` // The name of the log group. // // In your DisassociateKmsKey operation, you must specify either the resourceIdentifier // parameter or the logGroup parameter, but you can't specify both. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // Specifies the target for this operation. You must specify one of the following: // // * Specify the ARN of a log group to stop having CloudWatch Logs use the // KMS key to encrypt log events that are ingested and stored by that log // group. After you run this operation, CloudWatch Logs encrypts ingested // log events with the default CloudWatch Logs method. The log group ARN // must be in the following format. Replace REGION and ACCOUNT_ID with your // Region and account ID. arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME // // * Specify the following ARN to stop using this key to encrypt the results // of future StartQuery (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html) // operations in this account. Replace REGION and ACCOUNT_ID with your Region // and account ID. arn:aws:logs:REGION:ACCOUNT_ID:query-result:* // // In your DisssociateKmsKey operation, you must specify either the resourceIdentifier // parameter or the logGroup parameter, but you can't specify both. ResourceIdentifier *string `locationName:"resourceIdentifier" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DisassociateKmsKeyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DisassociateKmsKeyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *DisassociateKmsKeyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "DisassociateKmsKeyInput"} if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.ResourceIdentifier != nil && len(*s.ResourceIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceIdentifier", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *DisassociateKmsKeyInput) SetLogGroupName(v string) *DisassociateKmsKeyInput { s.LogGroupName = &v return s } // SetResourceIdentifier sets the ResourceIdentifier field's value. func (s *DisassociateKmsKeyInput) SetResourceIdentifier(v string) *DisassociateKmsKeyInput { s.ResourceIdentifier = &v return s } type DisassociateKmsKeyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DisassociateKmsKeyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s DisassociateKmsKeyOutput) GoString() string { return s.String() } // Represents an export task. type ExportTask struct { _ struct{} `type:"structure"` // The name of the S3 bucket to which the log data was exported. Destination *string `locationName:"destination" min:"1" type:"string"` // The prefix that was used as the start of Amazon S3 key for every object exported. DestinationPrefix *string `locationName:"destinationPrefix" type:"string"` // Execution information about the export task. ExecutionInfo *ExportTaskExecutionInfo `locationName:"executionInfo" type:"structure"` // The start time, expressed as the number of milliseconds after Jan 1, 1970 // 00:00:00 UTC. Events with a timestamp before this time are not exported. From *int64 `locationName:"from" type:"long"` // The name of the log group from which logs data was exported. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The status of the export task. Status *ExportTaskStatus `locationName:"status" type:"structure"` // The ID of the export task. TaskId *string `locationName:"taskId" min:"1" type:"string"` // The name of the export task. TaskName *string `locationName:"taskName" min:"1" type:"string"` // The end time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 // UTC. Events with a timestamp later than this time are not exported. To *int64 `locationName:"to" type:"long"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ExportTask) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ExportTask) GoString() string { return s.String() } // SetDestination sets the Destination field's value. func (s *ExportTask) SetDestination(v string) *ExportTask { s.Destination = &v return s } // SetDestinationPrefix sets the DestinationPrefix field's value. func (s *ExportTask) SetDestinationPrefix(v string) *ExportTask { s.DestinationPrefix = &v return s } // SetExecutionInfo sets the ExecutionInfo field's value. func (s *ExportTask) SetExecutionInfo(v *ExportTaskExecutionInfo) *ExportTask { s.ExecutionInfo = v return s } // SetFrom sets the From field's value. func (s *ExportTask) SetFrom(v int64) *ExportTask { s.From = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *ExportTask) SetLogGroupName(v string) *ExportTask { s.LogGroupName = &v return s } // SetStatus sets the Status field's value. func (s *ExportTask) SetStatus(v *ExportTaskStatus) *ExportTask { s.Status = v return s } // SetTaskId sets the TaskId field's value. func (s *ExportTask) SetTaskId(v string) *ExportTask { s.TaskId = &v return s } // SetTaskName sets the TaskName field's value. func (s *ExportTask) SetTaskName(v string) *ExportTask { s.TaskName = &v return s } // SetTo sets the To field's value. func (s *ExportTask) SetTo(v int64) *ExportTask { s.To = &v return s } // Represents the status of an export task. type ExportTaskExecutionInfo struct { _ struct{} `type:"structure"` // The completion time of the export task, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. CompletionTime *int64 `locationName:"completionTime" type:"long"` // The creation time of the export task, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. CreationTime *int64 `locationName:"creationTime" type:"long"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ExportTaskExecutionInfo) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ExportTaskExecutionInfo) GoString() string { return s.String() } // SetCompletionTime sets the CompletionTime field's value. func (s *ExportTaskExecutionInfo) SetCompletionTime(v int64) *ExportTaskExecutionInfo { s.CompletionTime = &v return s } // SetCreationTime sets the CreationTime field's value. func (s *ExportTaskExecutionInfo) SetCreationTime(v int64) *ExportTaskExecutionInfo { s.CreationTime = &v return s } // Represents the status of an export task. type ExportTaskStatus struct { _ struct{} `type:"structure"` // The status code of the export task. Code *string `locationName:"code" type:"string" enum:"ExportTaskStatusCode"` // The status message related to the status code. Message *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ExportTaskStatus) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ExportTaskStatus) GoString() string { return s.String() } // SetCode sets the Code field's value. func (s *ExportTaskStatus) SetCode(v string) *ExportTaskStatus { s.Code = &v return s } // SetMessage sets the Message field's value. func (s *ExportTaskStatus) SetMessage(v string) *ExportTaskStatus { s.Message = &v return s } type FilterLogEventsInput struct { _ struct{} `type:"structure"` // The end of the time range, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are // not returned. EndTime *int64 `locationName:"endTime" type:"long"` // The filter pattern to use. For more information, see Filter and Pattern Syntax // (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/FilterAndPatternSyntax.html). // // If not provided, all the events are matched. FilterPattern *string `locationName:"filterPattern" type:"string"` // If the value is true, the operation attempts to provide responses that contain // events from multiple log streams within the log group, interleaved in a single // response. If the value is false, all the matched log events in the first // log stream are searched first, then those in the next log stream, and so // on. // // Important As of June 17, 2019, this parameter is ignored and the value is // assumed to be true. The response from this operation always interleaves events // from multiple log streams within a log group. // // Deprecated: Starting on June 17, 2019, this parameter will be ignored and the value will be assumed to be true. The response from this operation will always interleave events from multiple log streams within a log group. Interleaved *bool `locationName:"interleaved" deprecated:"true" type:"boolean"` // The maximum number of events to return. The default is 10,000 events. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // Specify either the name or ARN of the log group to view log events from. // If the log group is in a source account and you are using a monitoring account, // you must use the log group ARN. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string"` // The name of the log group to search. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // Filters the results to include only events from log streams that have names // starting with this prefix. // // If you specify a value for both logStreamNamePrefix and logStreamNames, but // the value for logStreamNamePrefix does not match any log stream names specified // in logStreamNames, the action returns an InvalidParameterException error. LogStreamNamePrefix *string `locationName:"logStreamNamePrefix" min:"1" type:"string"` // Filters the results to only logs from the log streams in this list. // // If you specify a value for both logStreamNamePrefix and logStreamNames, the // action returns an InvalidParameterException error. LogStreamNames []*string `locationName:"logStreamNames" min:"1" type:"list"` // The token for the next set of events to return. (You received this token // from a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The start of the time range, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. Events with a timestamp before this time are not // returned. StartTime *int64 `locationName:"startTime" type:"long"` // Specify true to display the log event fields with all sensitive data unmasked // and visible. The default is false. // // To use this operation with this parameter, you must be signed into an account // with the logs:Unmask permission. Unmask *bool `locationName:"unmask" type:"boolean"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s FilterLogEventsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s FilterLogEventsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *FilterLogEventsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "FilterLogEventsInput"} if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.LogGroupIdentifier != nil && len(*s.LogGroupIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupIdentifier", 1)) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.LogStreamNamePrefix != nil && len(*s.LogStreamNamePrefix) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamNamePrefix", 1)) } if s.LogStreamNames != nil && len(s.LogStreamNames) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamNames", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetEndTime sets the EndTime field's value. func (s *FilterLogEventsInput) SetEndTime(v int64) *FilterLogEventsInput { s.EndTime = &v return s } // SetFilterPattern sets the FilterPattern field's value. func (s *FilterLogEventsInput) SetFilterPattern(v string) *FilterLogEventsInput { s.FilterPattern = &v return s } // SetInterleaved sets the Interleaved field's value. func (s *FilterLogEventsInput) SetInterleaved(v bool) *FilterLogEventsInput { s.Interleaved = &v return s } // SetLimit sets the Limit field's value. func (s *FilterLogEventsInput) SetLimit(v int64) *FilterLogEventsInput { s.Limit = &v return s } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *FilterLogEventsInput) SetLogGroupIdentifier(v string) *FilterLogEventsInput { s.LogGroupIdentifier = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *FilterLogEventsInput) SetLogGroupName(v string) *FilterLogEventsInput { s.LogGroupName = &v return s } // SetLogStreamNamePrefix sets the LogStreamNamePrefix field's value. func (s *FilterLogEventsInput) SetLogStreamNamePrefix(v string) *FilterLogEventsInput { s.LogStreamNamePrefix = &v return s } // SetLogStreamNames sets the LogStreamNames field's value. func (s *FilterLogEventsInput) SetLogStreamNames(v []*string) *FilterLogEventsInput { s.LogStreamNames = v return s } // SetNextToken sets the NextToken field's value. func (s *FilterLogEventsInput) SetNextToken(v string) *FilterLogEventsInput { s.NextToken = &v return s } // SetStartTime sets the StartTime field's value. func (s *FilterLogEventsInput) SetStartTime(v int64) *FilterLogEventsInput { s.StartTime = &v return s } // SetUnmask sets the Unmask field's value. func (s *FilterLogEventsInput) SetUnmask(v bool) *FilterLogEventsInput { s.Unmask = &v return s } type FilterLogEventsOutput struct { _ struct{} `type:"structure"` // The matched events. Events []*FilteredLogEvent `locationName:"events" type:"list"` // The token to use when requesting the next set of items. The token expires // after 24 hours. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // Important As of May 15, 2020, this parameter is no longer supported. This // parameter returns an empty list. // // Indicates which log streams have been searched and whether each has been // searched completely. SearchedLogStreams []*SearchedLogStream `locationName:"searchedLogStreams" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s FilterLogEventsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s FilterLogEventsOutput) GoString() string { return s.String() } // SetEvents sets the Events field's value. func (s *FilterLogEventsOutput) SetEvents(v []*FilteredLogEvent) *FilterLogEventsOutput { s.Events = v return s } // SetNextToken sets the NextToken field's value. func (s *FilterLogEventsOutput) SetNextToken(v string) *FilterLogEventsOutput { s.NextToken = &v return s } // SetSearchedLogStreams sets the SearchedLogStreams field's value. func (s *FilterLogEventsOutput) SetSearchedLogStreams(v []*SearchedLogStream) *FilterLogEventsOutput { s.SearchedLogStreams = v return s } // Represents a matched event. type FilteredLogEvent struct { _ struct{} `type:"structure"` // The ID of the event. EventId *string `locationName:"eventId" type:"string"` // The time the event was ingested, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. IngestionTime *int64 `locationName:"ingestionTime" type:"long"` // The name of the log stream to which this event belongs. LogStreamName *string `locationName:"logStreamName" min:"1" type:"string"` // The data contained in the log event. Message *string `locationName:"message" min:"1" type:"string"` // The time the event occurred, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. Timestamp *int64 `locationName:"timestamp" type:"long"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s FilteredLogEvent) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s FilteredLogEvent) GoString() string { return s.String() } // SetEventId sets the EventId field's value. func (s *FilteredLogEvent) SetEventId(v string) *FilteredLogEvent { s.EventId = &v return s } // SetIngestionTime sets the IngestionTime field's value. func (s *FilteredLogEvent) SetIngestionTime(v int64) *FilteredLogEvent { s.IngestionTime = &v return s } // SetLogStreamName sets the LogStreamName field's value. func (s *FilteredLogEvent) SetLogStreamName(v string) *FilteredLogEvent { s.LogStreamName = &v return s } // SetMessage sets the Message field's value. func (s *FilteredLogEvent) SetMessage(v string) *FilteredLogEvent { s.Message = &v return s } // SetTimestamp sets the Timestamp field's value. func (s *FilteredLogEvent) SetTimestamp(v int64) *FilteredLogEvent { s.Timestamp = &v return s } type GetDataProtectionPolicyInput struct { _ struct{} `type:"structure"` // The name or ARN of the log group that contains the data protection policy // that you want to see. // // LogGroupIdentifier is a required field LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetDataProtectionPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetDataProtectionPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetDataProtectionPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetDataProtectionPolicyInput"} if s.LogGroupIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupIdentifier")) } if s.LogGroupIdentifier != nil && len(*s.LogGroupIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupIdentifier", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *GetDataProtectionPolicyInput) SetLogGroupIdentifier(v string) *GetDataProtectionPolicyInput { s.LogGroupIdentifier = &v return s } type GetDataProtectionPolicyOutput struct { _ struct{} `type:"structure"` // The date and time that this policy was most recently updated. LastUpdatedTime *int64 `locationName:"lastUpdatedTime" type:"long"` // The log group name or ARN that you specified in your request. LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string"` // The data protection policy document for this log group. PolicyDocument *string `locationName:"policyDocument" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetDataProtectionPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetDataProtectionPolicyOutput) GoString() string { return s.String() } // SetLastUpdatedTime sets the LastUpdatedTime field's value. func (s *GetDataProtectionPolicyOutput) SetLastUpdatedTime(v int64) *GetDataProtectionPolicyOutput { s.LastUpdatedTime = &v return s } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *GetDataProtectionPolicyOutput) SetLogGroupIdentifier(v string) *GetDataProtectionPolicyOutput { s.LogGroupIdentifier = &v return s } // SetPolicyDocument sets the PolicyDocument field's value. func (s *GetDataProtectionPolicyOutput) SetPolicyDocument(v string) *GetDataProtectionPolicyOutput { s.PolicyDocument = &v return s } type GetLogEventsInput struct { _ struct{} `type:"structure"` // The end of the time range, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to or later than // this time are not included. EndTime *int64 `locationName:"endTime" type:"long"` // The maximum number of log events returned. If you don't specify a limit, // the default is as many log events as can fit in a response size of 1 MB (up // to 10,000 log events). Limit *int64 `locationName:"limit" min:"1" type:"integer"` // Specify either the name or ARN of the log group to view events from. If the // log group is in a source account and you are using a monitoring account, // you must use the log group ARN. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string"` // The name of the log group. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The name of the log stream. // // LogStreamName is a required field LogStreamName *string `locationName:"logStreamName" min:"1" type:"string" required:"true"` // The token for the next set of items to return. (You received this token from // a previous call.) NextToken *string `locationName:"nextToken" min:"1" type:"string"` // If the value is true, the earliest log events are returned first. If the // value is false, the latest log events are returned first. The default value // is false. // // If you are using a previous nextForwardToken value as the nextToken in this // operation, you must specify true for startFromHead. StartFromHead *bool `locationName:"startFromHead" type:"boolean"` // The start of the time range, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to this time or later // than this time are included. Events with a timestamp earlier than this time // are not included. StartTime *int64 `locationName:"startTime" type:"long"` // Specify true to display the log event fields with all sensitive data unmasked // and visible. The default is false. // // To use this operation with this parameter, you must be signed into an account // with the logs:Unmask permission. Unmask *bool `locationName:"unmask" type:"boolean"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogEventsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogEventsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetLogEventsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetLogEventsInput"} if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.LogGroupIdentifier != nil && len(*s.LogGroupIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupIdentifier", 1)) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.LogStreamName == nil { invalidParams.Add(request.NewErrParamRequired("LogStreamName")) } if s.LogStreamName != nil && len(*s.LogStreamName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamName", 1)) } if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetEndTime sets the EndTime field's value. func (s *GetLogEventsInput) SetEndTime(v int64) *GetLogEventsInput { s.EndTime = &v return s } // SetLimit sets the Limit field's value. func (s *GetLogEventsInput) SetLimit(v int64) *GetLogEventsInput { s.Limit = &v return s } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *GetLogEventsInput) SetLogGroupIdentifier(v string) *GetLogEventsInput { s.LogGroupIdentifier = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *GetLogEventsInput) SetLogGroupName(v string) *GetLogEventsInput { s.LogGroupName = &v return s } // SetLogStreamName sets the LogStreamName field's value. func (s *GetLogEventsInput) SetLogStreamName(v string) *GetLogEventsInput { s.LogStreamName = &v return s } // SetNextToken sets the NextToken field's value. func (s *GetLogEventsInput) SetNextToken(v string) *GetLogEventsInput { s.NextToken = &v return s } // SetStartFromHead sets the StartFromHead field's value. func (s *GetLogEventsInput) SetStartFromHead(v bool) *GetLogEventsInput { s.StartFromHead = &v return s } // SetStartTime sets the StartTime field's value. func (s *GetLogEventsInput) SetStartTime(v int64) *GetLogEventsInput { s.StartTime = &v return s } // SetUnmask sets the Unmask field's value. func (s *GetLogEventsInput) SetUnmask(v bool) *GetLogEventsInput { s.Unmask = &v return s } type GetLogEventsOutput struct { _ struct{} `type:"structure"` // The events. Events []*OutputLogEvent `locationName:"events" type:"list"` // The token for the next set of items in the backward direction. The token // expires after 24 hours. This token is not null. If you have reached the end // of the stream, it returns the same token you passed in. NextBackwardToken *string `locationName:"nextBackwardToken" min:"1" type:"string"` // The token for the next set of items in the forward direction. The token expires // after 24 hours. If you have reached the end of the stream, it returns the // same token you passed in. NextForwardToken *string `locationName:"nextForwardToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogEventsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogEventsOutput) GoString() string { return s.String() } // SetEvents sets the Events field's value. func (s *GetLogEventsOutput) SetEvents(v []*OutputLogEvent) *GetLogEventsOutput { s.Events = v return s } // SetNextBackwardToken sets the NextBackwardToken field's value. func (s *GetLogEventsOutput) SetNextBackwardToken(v string) *GetLogEventsOutput { s.NextBackwardToken = &v return s } // SetNextForwardToken sets the NextForwardToken field's value. func (s *GetLogEventsOutput) SetNextForwardToken(v string) *GetLogEventsOutput { s.NextForwardToken = &v return s } type GetLogGroupFieldsInput struct { _ struct{} `type:"structure"` // Specify either the name or ARN of the log group to view. If the log group // is in a source account and you are using a monitoring account, you must specify // the ARN. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string"` // The name of the log group to search. // // You must include either logGroupIdentifier or logGroupName, but not both. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The time to set as the center of the query. If you specify time, the 8 minutes // before and 8 minutes after this time are searched. If you omit time, the // most recent 15 minutes up to the current time are searched. // // The time value is specified as epoch time, which is the number of seconds // since January 1, 1970, 00:00:00 UTC. Time *int64 `locationName:"time" type:"long"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogGroupFieldsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogGroupFieldsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetLogGroupFieldsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetLogGroupFieldsInput"} if s.LogGroupIdentifier != nil && len(*s.LogGroupIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupIdentifier", 1)) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *GetLogGroupFieldsInput) SetLogGroupIdentifier(v string) *GetLogGroupFieldsInput { s.LogGroupIdentifier = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *GetLogGroupFieldsInput) SetLogGroupName(v string) *GetLogGroupFieldsInput { s.LogGroupName = &v return s } // SetTime sets the Time field's value. func (s *GetLogGroupFieldsInput) SetTime(v int64) *GetLogGroupFieldsInput { s.Time = &v return s } type GetLogGroupFieldsOutput struct { _ struct{} `type:"structure"` // The array of fields found in the query. Each object in the array contains // the name of the field, along with the percentage of time it appeared in the // log events that were queried. LogGroupFields []*LogGroupField `locationName:"logGroupFields" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogGroupFieldsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogGroupFieldsOutput) GoString() string { return s.String() } // SetLogGroupFields sets the LogGroupFields field's value. func (s *GetLogGroupFieldsOutput) SetLogGroupFields(v []*LogGroupField) *GetLogGroupFieldsOutput { s.LogGroupFields = v return s } type GetLogRecordInput struct { _ struct{} `type:"structure"` // The pointer corresponding to the log event record you want to retrieve. You // get this from the response of a GetQueryResults operation. In that response, // the value of the @ptr field for a log event is the value to use as logRecordPointer // to retrieve that complete log event record. // // LogRecordPointer is a required field LogRecordPointer *string `locationName:"logRecordPointer" type:"string" required:"true"` // Specify true to display the log event fields with all sensitive data unmasked // and visible. The default is false. // // To use this operation with this parameter, you must be signed into an account // with the logs:Unmask permission. Unmask *bool `locationName:"unmask" type:"boolean"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogRecordInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogRecordInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetLogRecordInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetLogRecordInput"} if s.LogRecordPointer == nil { invalidParams.Add(request.NewErrParamRequired("LogRecordPointer")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogRecordPointer sets the LogRecordPointer field's value. func (s *GetLogRecordInput) SetLogRecordPointer(v string) *GetLogRecordInput { s.LogRecordPointer = &v return s } // SetUnmask sets the Unmask field's value. func (s *GetLogRecordInput) SetUnmask(v bool) *GetLogRecordInput { s.Unmask = &v return s } type GetLogRecordOutput struct { _ struct{} `type:"structure"` // The requested log event, as a JSON string. LogRecord map[string]*string `locationName:"logRecord" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogRecordOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetLogRecordOutput) GoString() string { return s.String() } // SetLogRecord sets the LogRecord field's value. func (s *GetLogRecordOutput) SetLogRecord(v map[string]*string) *GetLogRecordOutput { s.LogRecord = v return s } type GetQueryResultsInput struct { _ struct{} `type:"structure"` // The ID number of the query. // // QueryId is a required field QueryId *string `locationName:"queryId" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetQueryResultsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetQueryResultsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *GetQueryResultsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "GetQueryResultsInput"} if s.QueryId == nil { invalidParams.Add(request.NewErrParamRequired("QueryId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetQueryId sets the QueryId field's value. func (s *GetQueryResultsInput) SetQueryId(v string) *GetQueryResultsInput { s.QueryId = &v return s } type GetQueryResultsOutput struct { _ struct{} `type:"structure"` // If you associated an KMS key with the CloudWatch Logs Insights query results // in this account, this field displays the ARN of the key that's used to encrypt // the query results when StartQuery (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html) // stores them. EncryptionKey *string `locationName:"encryptionKey" type:"string"` // The log events that matched the query criteria during the most recent time // it ran. // // The results value is an array of arrays. Each log event is one object in // the top-level array. Each of these log event objects is an array of field/value // pairs. Results [][]*ResultField `locationName:"results" type:"list"` // Includes the number of log events scanned by the query, the number of log // events that matched the query criteria, and the total number of bytes in // the scanned log events. These values reflect the full raw results of the // query. Statistics *QueryStatistics `locationName:"statistics" type:"structure"` // The status of the most recent running of the query. Possible values are Cancelled, // Complete, Failed, Running, Scheduled, Timeout, and Unknown. // // Queries time out after 60 minutes of runtime. To avoid having your queries // time out, reduce the time range being searched or partition your query into // a number of queries. Status *string `locationName:"status" type:"string" enum:"QueryStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetQueryResultsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s GetQueryResultsOutput) GoString() string { return s.String() } // SetEncryptionKey sets the EncryptionKey field's value. func (s *GetQueryResultsOutput) SetEncryptionKey(v string) *GetQueryResultsOutput { s.EncryptionKey = &v return s } // SetResults sets the Results field's value. func (s *GetQueryResultsOutput) SetResults(v [][]*ResultField) *GetQueryResultsOutput { s.Results = v return s } // SetStatistics sets the Statistics field's value. func (s *GetQueryResultsOutput) SetStatistics(v *QueryStatistics) *GetQueryResultsOutput { s.Statistics = v return s } // SetStatus sets the Status field's value. func (s *GetQueryResultsOutput) SetStatus(v string) *GetQueryResultsOutput { s.Status = &v return s } // Represents a log event, which is a record of activity that was recorded by // the application or resource being monitored. type InputLogEvent struct { _ struct{} `type:"structure"` // The raw event message. Each log event can be no larger than 256 KB. // // Message is a required field Message *string `locationName:"message" min:"1" type:"string" required:"true"` // The time the event occurred, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. // // Timestamp is a required field Timestamp *int64 `locationName:"timestamp" type:"long" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InputLogEvent) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InputLogEvent) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *InputLogEvent) Validate() error { invalidParams := request.ErrInvalidParams{Context: "InputLogEvent"} if s.Message == nil { invalidParams.Add(request.NewErrParamRequired("Message")) } if s.Message != nil && len(*s.Message) < 1 { invalidParams.Add(request.NewErrParamMinLen("Message", 1)) } if s.Timestamp == nil { invalidParams.Add(request.NewErrParamRequired("Timestamp")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetMessage sets the Message field's value. func (s *InputLogEvent) SetMessage(v string) *InputLogEvent { s.Message = &v return s } // SetTimestamp sets the Timestamp field's value. func (s *InputLogEvent) SetTimestamp(v int64) *InputLogEvent { s.Timestamp = &v return s } // The operation is not valid on the specified resource. type InvalidOperationException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InvalidOperationException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InvalidOperationException) GoString() string { return s.String() } func newErrorInvalidOperationException(v protocol.ResponseMetadata) error { return &InvalidOperationException{ RespMetadata: v, } } // Code returns the exception type name. func (s *InvalidOperationException) Code() string { return "InvalidOperationException" } // Message returns the exception's message. func (s *InvalidOperationException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *InvalidOperationException) OrigErr() error { return nil } func (s *InvalidOperationException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *InvalidOperationException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *InvalidOperationException) RequestID() string { return s.RespMetadata.RequestID } // A parameter is specified incorrectly. type InvalidParameterException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InvalidParameterException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InvalidParameterException) GoString() string { return s.String() } func newErrorInvalidParameterException(v protocol.ResponseMetadata) error { return &InvalidParameterException{ RespMetadata: v, } } // Code returns the exception type name. func (s *InvalidParameterException) Code() string { return "InvalidParameterException" } // Message returns the exception's message. func (s *InvalidParameterException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *InvalidParameterException) OrigErr() error { return nil } func (s *InvalidParameterException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *InvalidParameterException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *InvalidParameterException) RequestID() string { return s.RespMetadata.RequestID } // The sequence token is not valid. You can get the correct sequence token in // the expectedSequenceToken field in the InvalidSequenceTokenException message. // // PutLogEvents actions are now always accepted and never return InvalidSequenceTokenException // regardless of receiving an invalid sequence token. type InvalidSequenceTokenException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` ExpectedSequenceToken *string `locationName:"expectedSequenceToken" min:"1" type:"string"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InvalidSequenceTokenException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s InvalidSequenceTokenException) GoString() string { return s.String() } func newErrorInvalidSequenceTokenException(v protocol.ResponseMetadata) error { return &InvalidSequenceTokenException{ RespMetadata: v, } } // Code returns the exception type name. func (s *InvalidSequenceTokenException) Code() string { return "InvalidSequenceTokenException" } // Message returns the exception's message. func (s *InvalidSequenceTokenException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *InvalidSequenceTokenException) OrigErr() error { return nil } func (s *InvalidSequenceTokenException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *InvalidSequenceTokenException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *InvalidSequenceTokenException) RequestID() string { return s.RespMetadata.RequestID } // You have reached the maximum number of resources that can be created. type LimitExceededException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LimitExceededException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LimitExceededException) GoString() string { return s.String() } func newErrorLimitExceededException(v protocol.ResponseMetadata) error { return &LimitExceededException{ RespMetadata: v, } } // Code returns the exception type name. func (s *LimitExceededException) Code() string { return "LimitExceededException" } // Message returns the exception's message. func (s *LimitExceededException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *LimitExceededException) OrigErr() error { return nil } func (s *LimitExceededException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *LimitExceededException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *LimitExceededException) RequestID() string { return s.RespMetadata.RequestID } type ListTagsForResourceInput struct { _ struct{} `type:"structure"` // The ARN of the resource that you want to view tags for. // // The ARN format of a log group is arn:aws:logs:Region:account-id:log-group:log-group-name // // The ARN format of a destination is arn:aws:logs:Region:account-id:destination:destination-name // // For more information about ARN format, see CloudWatch Logs resources and // operations (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html). // // ResourceArn is a required field ResourceArn *string `locationName:"resourceArn" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListTagsForResourceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListTagsForResourceInput"} if s.ResourceArn == nil { invalidParams.Add(request.NewErrParamRequired("ResourceArn")) } if s.ResourceArn != nil && len(*s.ResourceArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceArn", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetResourceArn sets the ResourceArn field's value. func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput { s.ResourceArn = &v return s } type ListTagsForResourceOutput struct { _ struct{} `type:"structure"` // The list of tags associated with the requested resource.> Tags map[string]*string `locationName:"tags" min:"1" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsForResourceOutput) GoString() string { return s.String() } // SetTags sets the Tags field's value. func (s *ListTagsForResourceOutput) SetTags(v map[string]*string) *ListTagsForResourceOutput { s.Tags = v return s } // Deprecated: Please use the generic tagging API model ListTagsForResourceRequest and ListTagsForResourceResponse type ListTagsLogGroupInput struct { _ struct{} `deprecated:"true" type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsLogGroupInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsLogGroupInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *ListTagsLogGroupInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "ListTagsLogGroupInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *ListTagsLogGroupInput) SetLogGroupName(v string) *ListTagsLogGroupInput { s.LogGroupName = &v return s } // Deprecated: Please use the generic tagging API model ListTagsForResourceRequest and ListTagsForResourceResponse type ListTagsLogGroupOutput struct { _ struct{} `deprecated:"true" type:"structure"` // The tags for the log group. Tags map[string]*string `locationName:"tags" min:"1" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsLogGroupOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ListTagsLogGroupOutput) GoString() string { return s.String() } // SetTags sets the Tags field's value. func (s *ListTagsLogGroupOutput) SetTags(v map[string]*string) *ListTagsLogGroupOutput { s.Tags = v return s } // Represents a log group. type LogGroup struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the log group. Arn *string `locationName:"arn" type:"string"` // The creation time of the log group, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. CreationTime *int64 `locationName:"creationTime" type:"long"` // Displays whether this log group has a protection policy, or whether it had // one in the past. For more information, see PutDataProtectionPolicy (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDataProtectionPolicy.html). DataProtectionStatus *string `locationName:"dataProtectionStatus" type:"string" enum:"DataProtectionStatus"` // Displays all the properties that this log group has inherited from account-level // settings. InheritedProperties []*string `locationName:"inheritedProperties" type:"list" enum:"InheritedProperty"` // The Amazon Resource Name (ARN) of the KMS key to use when encrypting log // data. KmsKeyId *string `locationName:"kmsKeyId" type:"string"` // The name of the log group. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The number of metric filters. MetricFilterCount *int64 `locationName:"metricFilterCount" type:"integer"` // The number of days to retain the log events in the specified log group. Possible // values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, // 1096, 1827, 2192, 2557, 2922, 3288, and 3653. // // To set a log group so that its log events do not expire, use DeleteRetentionPolicy // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteRetentionPolicy.html). RetentionInDays *int64 `locationName:"retentionInDays" type:"integer"` // The number of bytes stored. StoredBytes *int64 `locationName:"storedBytes" type:"long"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LogGroup) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LogGroup) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *LogGroup) SetArn(v string) *LogGroup { s.Arn = &v return s } // SetCreationTime sets the CreationTime field's value. func (s *LogGroup) SetCreationTime(v int64) *LogGroup { s.CreationTime = &v return s } // SetDataProtectionStatus sets the DataProtectionStatus field's value. func (s *LogGroup) SetDataProtectionStatus(v string) *LogGroup { s.DataProtectionStatus = &v return s } // SetInheritedProperties sets the InheritedProperties field's value. func (s *LogGroup) SetInheritedProperties(v []*string) *LogGroup { s.InheritedProperties = v return s } // SetKmsKeyId sets the KmsKeyId field's value. func (s *LogGroup) SetKmsKeyId(v string) *LogGroup { s.KmsKeyId = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *LogGroup) SetLogGroupName(v string) *LogGroup { s.LogGroupName = &v return s } // SetMetricFilterCount sets the MetricFilterCount field's value. func (s *LogGroup) SetMetricFilterCount(v int64) *LogGroup { s.MetricFilterCount = &v return s } // SetRetentionInDays sets the RetentionInDays field's value. func (s *LogGroup) SetRetentionInDays(v int64) *LogGroup { s.RetentionInDays = &v return s } // SetStoredBytes sets the StoredBytes field's value. func (s *LogGroup) SetStoredBytes(v int64) *LogGroup { s.StoredBytes = &v return s } // The fields contained in log events found by a GetLogGroupFields operation, // along with the percentage of queried log events in which each field appears. type LogGroupField struct { _ struct{} `type:"structure"` // The name of a log field. Name *string `locationName:"name" type:"string"` // The percentage of log events queried that contained the field. Percent *int64 `locationName:"percent" type:"integer"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LogGroupField) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LogGroupField) GoString() string { return s.String() } // SetName sets the Name field's value. func (s *LogGroupField) SetName(v string) *LogGroupField { s.Name = &v return s } // SetPercent sets the Percent field's value. func (s *LogGroupField) SetPercent(v int64) *LogGroupField { s.Percent = &v return s } // Represents a log stream, which is a sequence of log events from a single // emitter of logs. type LogStream struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the log stream. Arn *string `locationName:"arn" type:"string"` // The creation time of the stream, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. CreationTime *int64 `locationName:"creationTime" type:"long"` // The time of the first event, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. FirstEventTimestamp *int64 `locationName:"firstEventTimestamp" type:"long"` // The time of the most recent log event in the log stream in CloudWatch Logs. // This number is expressed as the number of milliseconds after Jan 1, 1970 // 00:00:00 UTC. The lastEventTime value updates on an eventual consistency // basis. It typically updates in less than an hour from ingestion, but in rare // situations might take longer. LastEventTimestamp *int64 `locationName:"lastEventTimestamp" type:"long"` // The ingestion time, expressed as the number of milliseconds after Jan 1, // 1970 00:00:00 UTC The lastIngestionTime value updates on an eventual consistency // basis. It typically updates in less than an hour after ingestion, but in // rare situations might take longer. LastIngestionTime *int64 `locationName:"lastIngestionTime" type:"long"` // The name of the log stream. LogStreamName *string `locationName:"logStreamName" min:"1" type:"string"` // The number of bytes stored. // // Important: As of June 17, 2019, this parameter is no longer supported for // log streams, and is always reported as zero. This change applies only to // log streams. The storedBytes parameter for log groups is not affected. // // Deprecated: Starting on June 17, 2019, this parameter will be deprecated for log streams, and will be reported as zero. This change applies only to log streams. The storedBytes parameter for log groups is not affected. StoredBytes *int64 `locationName:"storedBytes" deprecated:"true" type:"long"` // The sequence token. // // The sequence token is now ignored in PutLogEvents actions. PutLogEvents actions // are always accepted regardless of receiving an invalid sequence token. You // don't need to obtain uploadSequenceToken to use a PutLogEvents action. UploadSequenceToken *string `locationName:"uploadSequenceToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LogStream) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s LogStream) GoString() string { return s.String() } // SetArn sets the Arn field's value. func (s *LogStream) SetArn(v string) *LogStream { s.Arn = &v return s } // SetCreationTime sets the CreationTime field's value. func (s *LogStream) SetCreationTime(v int64) *LogStream { s.CreationTime = &v return s } // SetFirstEventTimestamp sets the FirstEventTimestamp field's value. func (s *LogStream) SetFirstEventTimestamp(v int64) *LogStream { s.FirstEventTimestamp = &v return s } // SetLastEventTimestamp sets the LastEventTimestamp field's value. func (s *LogStream) SetLastEventTimestamp(v int64) *LogStream { s.LastEventTimestamp = &v return s } // SetLastIngestionTime sets the LastIngestionTime field's value. func (s *LogStream) SetLastIngestionTime(v int64) *LogStream { s.LastIngestionTime = &v return s } // SetLogStreamName sets the LogStreamName field's value. func (s *LogStream) SetLogStreamName(v string) *LogStream { s.LogStreamName = &v return s } // SetStoredBytes sets the StoredBytes field's value. func (s *LogStream) SetStoredBytes(v int64) *LogStream { s.StoredBytes = &v return s } // SetUploadSequenceToken sets the UploadSequenceToken field's value. func (s *LogStream) SetUploadSequenceToken(v string) *LogStream { s.UploadSequenceToken = &v return s } // The query string is not valid. Details about this error are displayed in // a QueryCompileError object. For more information, see QueryCompileError (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_QueryCompileError.html). // // For more information about valid query syntax, see CloudWatch Logs Insights // Query Syntax (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html). type MalformedQueryException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // Reserved. QueryCompileError *QueryCompileError `locationName:"queryCompileError" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MalformedQueryException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MalformedQueryException) GoString() string { return s.String() } func newErrorMalformedQueryException(v protocol.ResponseMetadata) error { return &MalformedQueryException{ RespMetadata: v, } } // Code returns the exception type name. func (s *MalformedQueryException) Code() string { return "MalformedQueryException" } // Message returns the exception's message. func (s *MalformedQueryException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *MalformedQueryException) OrigErr() error { return nil } func (s *MalformedQueryException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *MalformedQueryException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *MalformedQueryException) RequestID() string { return s.RespMetadata.RequestID } // Metric filters express how CloudWatch Logs would extract metric observations // from ingested log events and transform them into metric data in a CloudWatch // metric. type MetricFilter struct { _ struct{} `type:"structure"` // The creation time of the metric filter, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. CreationTime *int64 `locationName:"creationTime" type:"long"` // The name of the metric filter. FilterName *string `locationName:"filterName" min:"1" type:"string"` // A symbolic description of how CloudWatch Logs should interpret the data in // each log event. For example, a log event can contain timestamps, IP addresses, // strings, and so on. You use the filter pattern to specify what to look for // in the log event message. FilterPattern *string `locationName:"filterPattern" type:"string"` // The name of the log group. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The metric transformations. MetricTransformations []*MetricTransformation `locationName:"metricTransformations" min:"1" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MetricFilter) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MetricFilter) GoString() string { return s.String() } // SetCreationTime sets the CreationTime field's value. func (s *MetricFilter) SetCreationTime(v int64) *MetricFilter { s.CreationTime = &v return s } // SetFilterName sets the FilterName field's value. func (s *MetricFilter) SetFilterName(v string) *MetricFilter { s.FilterName = &v return s } // SetFilterPattern sets the FilterPattern field's value. func (s *MetricFilter) SetFilterPattern(v string) *MetricFilter { s.FilterPattern = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *MetricFilter) SetLogGroupName(v string) *MetricFilter { s.LogGroupName = &v return s } // SetMetricTransformations sets the MetricTransformations field's value. func (s *MetricFilter) SetMetricTransformations(v []*MetricTransformation) *MetricFilter { s.MetricTransformations = v return s } // Represents a matched event. type MetricFilterMatchRecord struct { _ struct{} `type:"structure"` // The raw event data. EventMessage *string `locationName:"eventMessage" min:"1" type:"string"` // The event number. EventNumber *int64 `locationName:"eventNumber" type:"long"` // The values extracted from the event data by the filter. ExtractedValues map[string]*string `locationName:"extractedValues" type:"map"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MetricFilterMatchRecord) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MetricFilterMatchRecord) GoString() string { return s.String() } // SetEventMessage sets the EventMessage field's value. func (s *MetricFilterMatchRecord) SetEventMessage(v string) *MetricFilterMatchRecord { s.EventMessage = &v return s } // SetEventNumber sets the EventNumber field's value. func (s *MetricFilterMatchRecord) SetEventNumber(v int64) *MetricFilterMatchRecord { s.EventNumber = &v return s } // SetExtractedValues sets the ExtractedValues field's value. func (s *MetricFilterMatchRecord) SetExtractedValues(v map[string]*string) *MetricFilterMatchRecord { s.ExtractedValues = v return s } // Indicates how to transform ingested log events to metric data in a CloudWatch // metric. type MetricTransformation struct { _ struct{} `type:"structure"` // (Optional) The value to emit when a filter pattern does not match a log event. // This value can be null. DefaultValue *float64 `locationName:"defaultValue" type:"double"` // The fields to use as dimensions for the metric. One metric filter can include // as many as three dimensions. // // Metrics extracted from log events are charged as custom metrics. To prevent // unexpected high charges, do not specify high-cardinality fields such as IPAddress // or requestID as dimensions. Each different value found for a dimension is // treated as a separate metric and accrues charges as a separate custom metric. // // CloudWatch Logs disables a metric filter if it generates 1000 different name/value // pairs for your specified dimensions within a certain amount of time. This // helps to prevent accidental high charges. // // You can also set up a billing alarm to alert you if your charges are higher // than expected. For more information, see Creating a Billing Alarm to Monitor // Your Estimated Amazon Web Services Charges (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/monitor_estimated_charges_with_cloudwatch.html). Dimensions map[string]*string `locationName:"dimensions" type:"map"` // The name of the CloudWatch metric. // // MetricName is a required field MetricName *string `locationName:"metricName" type:"string" required:"true"` // A custom namespace to contain your metric in CloudWatch. Use namespaces to // group together metrics that are similar. For more information, see Namespaces // (https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace). // // MetricNamespace is a required field MetricNamespace *string `locationName:"metricNamespace" type:"string" required:"true"` // The value to publish to the CloudWatch metric when a filter pattern matches // a log event. // // MetricValue is a required field MetricValue *string `locationName:"metricValue" type:"string" required:"true"` // The unit to assign to the metric. If you omit this, the unit is set as None. Unit *string `locationName:"unit" type:"string" enum:"StandardUnit"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MetricTransformation) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s MetricTransformation) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *MetricTransformation) Validate() error { invalidParams := request.ErrInvalidParams{Context: "MetricTransformation"} if s.MetricName == nil { invalidParams.Add(request.NewErrParamRequired("MetricName")) } if s.MetricNamespace == nil { invalidParams.Add(request.NewErrParamRequired("MetricNamespace")) } if s.MetricValue == nil { invalidParams.Add(request.NewErrParamRequired("MetricValue")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDefaultValue sets the DefaultValue field's value. func (s *MetricTransformation) SetDefaultValue(v float64) *MetricTransformation { s.DefaultValue = &v return s } // SetDimensions sets the Dimensions field's value. func (s *MetricTransformation) SetDimensions(v map[string]*string) *MetricTransformation { s.Dimensions = v return s } // SetMetricName sets the MetricName field's value. func (s *MetricTransformation) SetMetricName(v string) *MetricTransformation { s.MetricName = &v return s } // SetMetricNamespace sets the MetricNamespace field's value. func (s *MetricTransformation) SetMetricNamespace(v string) *MetricTransformation { s.MetricNamespace = &v return s } // SetMetricValue sets the MetricValue field's value. func (s *MetricTransformation) SetMetricValue(v string) *MetricTransformation { s.MetricValue = &v return s } // SetUnit sets the Unit field's value. func (s *MetricTransformation) SetUnit(v string) *MetricTransformation { s.Unit = &v return s } // Multiple concurrent requests to update the same resource were in conflict. type OperationAbortedException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s OperationAbortedException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s OperationAbortedException) GoString() string { return s.String() } func newErrorOperationAbortedException(v protocol.ResponseMetadata) error { return &OperationAbortedException{ RespMetadata: v, } } // Code returns the exception type name. func (s *OperationAbortedException) Code() string { return "OperationAbortedException" } // Message returns the exception's message. func (s *OperationAbortedException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *OperationAbortedException) OrigErr() error { return nil } func (s *OperationAbortedException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *OperationAbortedException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *OperationAbortedException) RequestID() string { return s.RespMetadata.RequestID } // Represents a log event. type OutputLogEvent struct { _ struct{} `type:"structure"` // The time the event was ingested, expressed as the number of milliseconds // after Jan 1, 1970 00:00:00 UTC. IngestionTime *int64 `locationName:"ingestionTime" type:"long"` // The data contained in the log event. Message *string `locationName:"message" min:"1" type:"string"` // The time the event occurred, expressed as the number of milliseconds after // Jan 1, 1970 00:00:00 UTC. Timestamp *int64 `locationName:"timestamp" type:"long"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s OutputLogEvent) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s OutputLogEvent) GoString() string { return s.String() } // SetIngestionTime sets the IngestionTime field's value. func (s *OutputLogEvent) SetIngestionTime(v int64) *OutputLogEvent { s.IngestionTime = &v return s } // SetMessage sets the Message field's value. func (s *OutputLogEvent) SetMessage(v string) *OutputLogEvent { s.Message = &v return s } // SetTimestamp sets the Timestamp field's value. func (s *OutputLogEvent) SetTimestamp(v int64) *OutputLogEvent { s.Timestamp = &v return s } type PutAccountPolicyInput struct { _ struct{} `type:"structure"` // Specify the data protection policy, in JSON. // // This policy must include two JSON blocks: // // * The first block must include both a DataIdentifer array and an Operation // property with an Audit action. The DataIdentifer array lists the types // of sensitive data that you want to mask. For more information about the // available options, see Types of data that you can mask (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/mask-sensitive-log-data-types.html). // The Operation property with an Audit action is required to find the sensitive // data terms. This Audit action must contain a FindingsDestination object. // You can optionally use that FindingsDestination object to list one or // more destinations to send audit findings to. If you specify destinations // such as log groups, Kinesis Data Firehose streams, and S3 buckets, they // must already exist. // // * The second block must include both a DataIdentifer array and an Operation // property with an Deidentify action. The DataIdentifer array must exactly // match the DataIdentifer array in the first block of the policy. The Operation // property with the Deidentify action is what actually masks the data, and // it must contain the "MaskConfig": {} object. The "MaskConfig": {} object // must be empty. // // For an example data protection policy, see the Examples section on this page. // // The contents of the two DataIdentifer arrays must match exactly. // // In addition to the two JSON blocks, the policyDocument can also include Name, // Description, and Version fields. The Name is different than the operation's // policyName parameter, and is used as a dimension when CloudWatch Logs reports // audit findings metrics to CloudWatch. // // The JSON specified in policyDocument can be up to 30,720 characters. // // PolicyDocument is a required field PolicyDocument *string `locationName:"policyDocument" type:"string" required:"true"` // A name for the policy. This must be unique within the account. // // PolicyName is a required field PolicyName *string `locationName:"policyName" type:"string" required:"true"` // Currently the only valid value for this parameter is DATA_PROTECTION_POLICY. // // PolicyType is a required field PolicyType *string `locationName:"policyType" type:"string" required:"true" enum:"PolicyType"` // Currently the only valid value for this parameter is ALL, which specifies // that the data protection policy applies to all log groups in the account. // If you omit this parameter, the default of ALL is used. Scope *string `locationName:"scope" type:"string" enum:"Scope"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutAccountPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutAccountPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutAccountPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutAccountPolicyInput"} if s.PolicyDocument == nil { invalidParams.Add(request.NewErrParamRequired("PolicyDocument")) } if s.PolicyName == nil { invalidParams.Add(request.NewErrParamRequired("PolicyName")) } if s.PolicyType == nil { invalidParams.Add(request.NewErrParamRequired("PolicyType")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetPolicyDocument sets the PolicyDocument field's value. func (s *PutAccountPolicyInput) SetPolicyDocument(v string) *PutAccountPolicyInput { s.PolicyDocument = &v return s } // SetPolicyName sets the PolicyName field's value. func (s *PutAccountPolicyInput) SetPolicyName(v string) *PutAccountPolicyInput { s.PolicyName = &v return s } // SetPolicyType sets the PolicyType field's value. func (s *PutAccountPolicyInput) SetPolicyType(v string) *PutAccountPolicyInput { s.PolicyType = &v return s } // SetScope sets the Scope field's value. func (s *PutAccountPolicyInput) SetScope(v string) *PutAccountPolicyInput { s.Scope = &v return s } type PutAccountPolicyOutput struct { _ struct{} `type:"structure"` // The account policy that you created. AccountPolicy *AccountPolicy `locationName:"accountPolicy" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutAccountPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutAccountPolicyOutput) GoString() string { return s.String() } // SetAccountPolicy sets the AccountPolicy field's value. func (s *PutAccountPolicyOutput) SetAccountPolicy(v *AccountPolicy) *PutAccountPolicyOutput { s.AccountPolicy = v return s } type PutDataProtectionPolicyInput struct { _ struct{} `type:"structure"` // Specify either the log group name or log group ARN. // // LogGroupIdentifier is a required field LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string" required:"true"` // Specify the data protection policy, in JSON. // // This policy must include two JSON blocks: // // * The first block must include both a DataIdentifer array and an Operation // property with an Audit action. The DataIdentifer array lists the types // of sensitive data that you want to mask. For more information about the // available options, see Types of data that you can mask (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/mask-sensitive-log-data-types.html). // The Operation property with an Audit action is required to find the sensitive // data terms. This Audit action must contain a FindingsDestination object. // You can optionally use that FindingsDestination object to list one or // more destinations to send audit findings to. If you specify destinations // such as log groups, Kinesis Data Firehose streams, and S3 buckets, they // must already exist. // // * The second block must include both a DataIdentifer array and an Operation // property with an Deidentify action. The DataIdentifer array must exactly // match the DataIdentifer array in the first block of the policy. The Operation // property with the Deidentify action is what actually masks the data, and // it must contain the "MaskConfig": {} object. The "MaskConfig": {} object // must be empty. // // For an example data protection policy, see the Examples section on this page. // // The contents of the two DataIdentifer arrays must match exactly. // // In addition to the two JSON blocks, the policyDocument can also include Name, // Description, and Version fields. The Name is used as a dimension when CloudWatch // Logs reports audit findings metrics to CloudWatch. // // The JSON specified in policyDocument can be up to 30,720 characters. // // PolicyDocument is a required field PolicyDocument *string `locationName:"policyDocument" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDataProtectionPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDataProtectionPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutDataProtectionPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutDataProtectionPolicyInput"} if s.LogGroupIdentifier == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupIdentifier")) } if s.LogGroupIdentifier != nil && len(*s.LogGroupIdentifier) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupIdentifier", 1)) } if s.PolicyDocument == nil { invalidParams.Add(request.NewErrParamRequired("PolicyDocument")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *PutDataProtectionPolicyInput) SetLogGroupIdentifier(v string) *PutDataProtectionPolicyInput { s.LogGroupIdentifier = &v return s } // SetPolicyDocument sets the PolicyDocument field's value. func (s *PutDataProtectionPolicyInput) SetPolicyDocument(v string) *PutDataProtectionPolicyInput { s.PolicyDocument = &v return s } type PutDataProtectionPolicyOutput struct { _ struct{} `type:"structure"` // The date and time that this policy was most recently updated. LastUpdatedTime *int64 `locationName:"lastUpdatedTime" type:"long"` // The log group name or ARN that you specified in your request. LogGroupIdentifier *string `locationName:"logGroupIdentifier" min:"1" type:"string"` // The data protection policy used for this log group. PolicyDocument *string `locationName:"policyDocument" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDataProtectionPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDataProtectionPolicyOutput) GoString() string { return s.String() } // SetLastUpdatedTime sets the LastUpdatedTime field's value. func (s *PutDataProtectionPolicyOutput) SetLastUpdatedTime(v int64) *PutDataProtectionPolicyOutput { s.LastUpdatedTime = &v return s } // SetLogGroupIdentifier sets the LogGroupIdentifier field's value. func (s *PutDataProtectionPolicyOutput) SetLogGroupIdentifier(v string) *PutDataProtectionPolicyOutput { s.LogGroupIdentifier = &v return s } // SetPolicyDocument sets the PolicyDocument field's value. func (s *PutDataProtectionPolicyOutput) SetPolicyDocument(v string) *PutDataProtectionPolicyOutput { s.PolicyDocument = &v return s } type PutDestinationInput struct { _ struct{} `type:"structure"` // A name for the destination. // // DestinationName is a required field DestinationName *string `locationName:"destinationName" min:"1" type:"string" required:"true"` // The ARN of an IAM role that grants CloudWatch Logs permissions to call the // Amazon Kinesis PutRecord operation on the destination stream. // // RoleArn is a required field RoleArn *string `locationName:"roleArn" min:"1" type:"string" required:"true"` // An optional list of key-value pairs to associate with the resource. // // For more information about tagging, see Tagging Amazon Web Services resources // (https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) Tags map[string]*string `locationName:"tags" min:"1" type:"map"` // The ARN of an Amazon Kinesis stream to which to deliver matching log events. // // TargetArn is a required field TargetArn *string `locationName:"targetArn" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutDestinationInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutDestinationInput"} if s.DestinationName == nil { invalidParams.Add(request.NewErrParamRequired("DestinationName")) } if s.DestinationName != nil && len(*s.DestinationName) < 1 { invalidParams.Add(request.NewErrParamMinLen("DestinationName", 1)) } if s.RoleArn == nil { invalidParams.Add(request.NewErrParamRequired("RoleArn")) } if s.RoleArn != nil && len(*s.RoleArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("RoleArn", 1)) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(request.NewErrParamMinLen("Tags", 1)) } if s.TargetArn == nil { invalidParams.Add(request.NewErrParamRequired("TargetArn")) } if s.TargetArn != nil && len(*s.TargetArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("TargetArn", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDestinationName sets the DestinationName field's value. func (s *PutDestinationInput) SetDestinationName(v string) *PutDestinationInput { s.DestinationName = &v return s } // SetRoleArn sets the RoleArn field's value. func (s *PutDestinationInput) SetRoleArn(v string) *PutDestinationInput { s.RoleArn = &v return s } // SetTags sets the Tags field's value. func (s *PutDestinationInput) SetTags(v map[string]*string) *PutDestinationInput { s.Tags = v return s } // SetTargetArn sets the TargetArn field's value. func (s *PutDestinationInput) SetTargetArn(v string) *PutDestinationInput { s.TargetArn = &v return s } type PutDestinationOutput struct { _ struct{} `type:"structure"` // The destination. Destination *Destination `locationName:"destination" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationOutput) GoString() string { return s.String() } // SetDestination sets the Destination field's value. func (s *PutDestinationOutput) SetDestination(v *Destination) *PutDestinationOutput { s.Destination = v return s } type PutDestinationPolicyInput struct { _ struct{} `type:"structure"` // An IAM policy document that authorizes cross-account users to deliver their // log events to the associated destination. This can be up to 5120 bytes. // // AccessPolicy is a required field AccessPolicy *string `locationName:"accessPolicy" min:"1" type:"string" required:"true"` // A name for an existing destination. // // DestinationName is a required field DestinationName *string `locationName:"destinationName" min:"1" type:"string" required:"true"` // Specify true if you are updating an existing destination policy to grant // permission to an organization ID instead of granting permission to individual // Amazon Web Services accounts. Before you update a destination policy this // way, you must first update the subscription filters in the accounts that // send logs to this destination. If you do not, the subscription filters might // stop working. By specifying true for forceUpdate, you are affirming that // you have already updated the subscription filters. For more information, // see Updating an existing cross-account subscription (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Cross-Account-Log_Subscription-Update.html) // // If you omit this parameter, the default of false is used. ForceUpdate *bool `locationName:"forceUpdate" type:"boolean"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutDestinationPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutDestinationPolicyInput"} if s.AccessPolicy == nil { invalidParams.Add(request.NewErrParamRequired("AccessPolicy")) } if s.AccessPolicy != nil && len(*s.AccessPolicy) < 1 { invalidParams.Add(request.NewErrParamMinLen("AccessPolicy", 1)) } if s.DestinationName == nil { invalidParams.Add(request.NewErrParamRequired("DestinationName")) } if s.DestinationName != nil && len(*s.DestinationName) < 1 { invalidParams.Add(request.NewErrParamMinLen("DestinationName", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetAccessPolicy sets the AccessPolicy field's value. func (s *PutDestinationPolicyInput) SetAccessPolicy(v string) *PutDestinationPolicyInput { s.AccessPolicy = &v return s } // SetDestinationName sets the DestinationName field's value. func (s *PutDestinationPolicyInput) SetDestinationName(v string) *PutDestinationPolicyInput { s.DestinationName = &v return s } // SetForceUpdate sets the ForceUpdate field's value. func (s *PutDestinationPolicyInput) SetForceUpdate(v bool) *PutDestinationPolicyInput { s.ForceUpdate = &v return s } type PutDestinationPolicyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutDestinationPolicyOutput) GoString() string { return s.String() } type PutLogEventsInput struct { _ struct{} `type:"structure"` // The log events. // // LogEvents is a required field LogEvents []*InputLogEvent `locationName:"logEvents" min:"1" type:"list" required:"true"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The name of the log stream. // // LogStreamName is a required field LogStreamName *string `locationName:"logStreamName" min:"1" type:"string" required:"true"` // The sequence token obtained from the response of the previous PutLogEvents // call. // // The sequenceToken parameter is now ignored in PutLogEvents actions. PutLogEvents // actions are now accepted and never return InvalidSequenceTokenException or // DataAlreadyAcceptedException even if the sequence token is not valid. SequenceToken *string `locationName:"sequenceToken" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutLogEventsInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutLogEventsInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutLogEventsInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutLogEventsInput"} if s.LogEvents == nil { invalidParams.Add(request.NewErrParamRequired("LogEvents")) } if s.LogEvents != nil && len(s.LogEvents) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogEvents", 1)) } if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.LogStreamName == nil { invalidParams.Add(request.NewErrParamRequired("LogStreamName")) } if s.LogStreamName != nil && len(*s.LogStreamName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogStreamName", 1)) } if s.SequenceToken != nil && len(*s.SequenceToken) < 1 { invalidParams.Add(request.NewErrParamMinLen("SequenceToken", 1)) } if s.LogEvents != nil { for i, v := range s.LogEvents { if v == nil { continue } if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "LogEvents", i), err.(request.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogEvents sets the LogEvents field's value. func (s *PutLogEventsInput) SetLogEvents(v []*InputLogEvent) *PutLogEventsInput { s.LogEvents = v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *PutLogEventsInput) SetLogGroupName(v string) *PutLogEventsInput { s.LogGroupName = &v return s } // SetLogStreamName sets the LogStreamName field's value. func (s *PutLogEventsInput) SetLogStreamName(v string) *PutLogEventsInput { s.LogStreamName = &v return s } // SetSequenceToken sets the SequenceToken field's value. func (s *PutLogEventsInput) SetSequenceToken(v string) *PutLogEventsInput { s.SequenceToken = &v return s } type PutLogEventsOutput struct { _ struct{} `type:"structure"` // The next sequence token. // // This field has been deprecated. // // The sequence token is now ignored in PutLogEvents actions. PutLogEvents actions // are always accepted even if the sequence token is not valid. You can use // parallel PutLogEvents actions on the same log stream and you do not need // to wait for the response of a previous PutLogEvents action to obtain the // nextSequenceToken value. NextSequenceToken *string `locationName:"nextSequenceToken" min:"1" type:"string"` // The rejected events. RejectedLogEventsInfo *RejectedLogEventsInfo `locationName:"rejectedLogEventsInfo" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutLogEventsOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutLogEventsOutput) GoString() string { return s.String() } // SetNextSequenceToken sets the NextSequenceToken field's value. func (s *PutLogEventsOutput) SetNextSequenceToken(v string) *PutLogEventsOutput { s.NextSequenceToken = &v return s } // SetRejectedLogEventsInfo sets the RejectedLogEventsInfo field's value. func (s *PutLogEventsOutput) SetRejectedLogEventsInfo(v *RejectedLogEventsInfo) *PutLogEventsOutput { s.RejectedLogEventsInfo = v return s } type PutMetricFilterInput struct { _ struct{} `type:"structure"` // A name for the metric filter. // // FilterName is a required field FilterName *string `locationName:"filterName" min:"1" type:"string" required:"true"` // A filter pattern for extracting metric data out of ingested log events. // // FilterPattern is a required field FilterPattern *string `locationName:"filterPattern" type:"string" required:"true"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // A collection of information that defines how metric data gets emitted. // // MetricTransformations is a required field MetricTransformations []*MetricTransformation `locationName:"metricTransformations" min:"1" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutMetricFilterInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutMetricFilterInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutMetricFilterInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutMetricFilterInput"} if s.FilterName == nil { invalidParams.Add(request.NewErrParamRequired("FilterName")) } if s.FilterName != nil && len(*s.FilterName) < 1 { invalidParams.Add(request.NewErrParamMinLen("FilterName", 1)) } if s.FilterPattern == nil { invalidParams.Add(request.NewErrParamRequired("FilterPattern")) } if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.MetricTransformations == nil { invalidParams.Add(request.NewErrParamRequired("MetricTransformations")) } if s.MetricTransformations != nil && len(s.MetricTransformations) < 1 { invalidParams.Add(request.NewErrParamMinLen("MetricTransformations", 1)) } if s.MetricTransformations != nil { for i, v := range s.MetricTransformations { if v == nil { continue } if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "MetricTransformations", i), err.(request.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetFilterName sets the FilterName field's value. func (s *PutMetricFilterInput) SetFilterName(v string) *PutMetricFilterInput { s.FilterName = &v return s } // SetFilterPattern sets the FilterPattern field's value. func (s *PutMetricFilterInput) SetFilterPattern(v string) *PutMetricFilterInput { s.FilterPattern = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *PutMetricFilterInput) SetLogGroupName(v string) *PutMetricFilterInput { s.LogGroupName = &v return s } // SetMetricTransformations sets the MetricTransformations field's value. func (s *PutMetricFilterInput) SetMetricTransformations(v []*MetricTransformation) *PutMetricFilterInput { s.MetricTransformations = v return s } type PutMetricFilterOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutMetricFilterOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutMetricFilterOutput) GoString() string { return s.String() } type PutQueryDefinitionInput struct { _ struct{} `type:"structure"` // 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 `locationName:"logGroupNames" type:"list"` // A name for the query definition. If you are saving numerous query definitions, // we recommend that you name them. This way, you can 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). // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // 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 `locationName:"queryDefinitionId" type:"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). // // QueryString is a required field QueryString *string `locationName:"queryString" min:"1" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutQueryDefinitionInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutQueryDefinitionInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutQueryDefinitionInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutQueryDefinitionInput"} if s.Name == nil { invalidParams.Add(request.NewErrParamRequired("Name")) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(request.NewErrParamMinLen("Name", 1)) } if s.QueryString == nil { invalidParams.Add(request.NewErrParamRequired("QueryString")) } if s.QueryString != nil && len(*s.QueryString) < 1 { invalidParams.Add(request.NewErrParamMinLen("QueryString", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupNames sets the LogGroupNames field's value. func (s *PutQueryDefinitionInput) SetLogGroupNames(v []*string) *PutQueryDefinitionInput { s.LogGroupNames = v return s } // SetName sets the Name field's value. func (s *PutQueryDefinitionInput) SetName(v string) *PutQueryDefinitionInput { s.Name = &v return s } // SetQueryDefinitionId sets the QueryDefinitionId field's value. func (s *PutQueryDefinitionInput) SetQueryDefinitionId(v string) *PutQueryDefinitionInput { s.QueryDefinitionId = &v return s } // SetQueryString sets the QueryString field's value. func (s *PutQueryDefinitionInput) SetQueryString(v string) *PutQueryDefinitionInput { s.QueryString = &v return s } type PutQueryDefinitionOutput struct { _ struct{} `type:"structure"` // The ID of the query definition. QueryDefinitionId *string `locationName:"queryDefinitionId" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutQueryDefinitionOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutQueryDefinitionOutput) GoString() string { return s.String() } // SetQueryDefinitionId sets the QueryDefinitionId field's value. func (s *PutQueryDefinitionOutput) SetQueryDefinitionId(v string) *PutQueryDefinitionOutput { s.QueryDefinitionId = &v return s } type PutResourcePolicyInput struct { _ struct{} `type:"structure"` // Details of the new policy, including the identity of the principal that is // enabled to put logs to this account. This is formatted as a JSON string. // This parameter is required. // // The following example creates a resource policy enabling the Route 53 service // to put DNS query logs in to the specified log group. Replace "logArn" with // the ARN of your CloudWatch Logs resource, such as a log group or log stream. // // CloudWatch Logs also supports aws:SourceArn (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-sourcearn) // and aws:SourceAccount (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-sourceaccount) // condition context keys. // // In the example resource policy, you would replace the value of SourceArn // with the resource making the call from Route 53 to CloudWatch Logs. You would // also replace the value of SourceAccount with the Amazon Web Services account // ID making that call. // // { "Version": "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", // "Effect": "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] // }, "Action": "logs:PutLogEvents", "Resource": "logArn", "Condition": { "ArnLike": // { "aws:SourceArn": "myRoute53ResourceArn" }, "StringEquals": { "aws:SourceAccount": // "myAwsAccountId" } } } ] } PolicyDocument *string `locationName:"policyDocument" min:"1" type:"string"` // Name of the new policy. This parameter is required. PolicyName *string `locationName:"policyName" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutResourcePolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutResourcePolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutResourcePolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutResourcePolicyInput"} if s.PolicyDocument != nil && len(*s.PolicyDocument) < 1 { invalidParams.Add(request.NewErrParamMinLen("PolicyDocument", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetPolicyDocument sets the PolicyDocument field's value. func (s *PutResourcePolicyInput) SetPolicyDocument(v string) *PutResourcePolicyInput { s.PolicyDocument = &v return s } // SetPolicyName sets the PolicyName field's value. func (s *PutResourcePolicyInput) SetPolicyName(v string) *PutResourcePolicyInput { s.PolicyName = &v return s } type PutResourcePolicyOutput struct { _ struct{} `type:"structure"` // The new policy. ResourcePolicy *ResourcePolicy `locationName:"resourcePolicy" type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutResourcePolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutResourcePolicyOutput) GoString() string { return s.String() } // SetResourcePolicy sets the ResourcePolicy field's value. func (s *PutResourcePolicyOutput) SetResourcePolicy(v *ResourcePolicy) *PutResourcePolicyOutput { s.ResourcePolicy = v return s } type PutRetentionPolicyInput struct { _ struct{} `type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The number of days to retain the log events in the specified log group. Possible // values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, // 1096, 1827, 2192, 2557, 2922, 3288, and 3653. // // To set a log group so that its log events do not expire, use DeleteRetentionPolicy // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteRetentionPolicy.html). // // RetentionInDays is a required field RetentionInDays *int64 `locationName:"retentionInDays" type:"integer" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutRetentionPolicyInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutRetentionPolicyInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutRetentionPolicyInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutRetentionPolicyInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.RetentionInDays == nil { invalidParams.Add(request.NewErrParamRequired("RetentionInDays")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *PutRetentionPolicyInput) SetLogGroupName(v string) *PutRetentionPolicyInput { s.LogGroupName = &v return s } // SetRetentionInDays sets the RetentionInDays field's value. func (s *PutRetentionPolicyInput) SetRetentionInDays(v int64) *PutRetentionPolicyInput { s.RetentionInDays = &v return s } type PutRetentionPolicyOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutRetentionPolicyOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutRetentionPolicyOutput) GoString() string { return s.String() } type PutSubscriptionFilterInput struct { _ struct{} `type:"structure"` // The ARN of the destination to deliver matching log events to. Currently, // the supported destinations are: // // * An Amazon Kinesis stream belonging to the same account as the subscription // filter, for same-account delivery. // // * A logical destination (specified using an ARN) belonging to a different // account, for cross-account delivery. If you're setting up a cross-account // subscription, the destination must have an IAM policy associated with // it. The IAM policy must allow the sender to send logs to the destination. // For more information, see PutDestinationPolicy (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDestinationPolicy.html). // // * A Kinesis Data Firehose delivery stream belonging to the same account // as the subscription filter, for same-account delivery. // // * A Lambda function belonging to the same account as the subscription // filter, for same-account delivery. // // DestinationArn is a required field DestinationArn *string `locationName:"destinationArn" min:"1" type:"string" required:"true"` // The method used to distribute log data to the destination. By default, log // data is grouped by log stream, but the grouping can be set to random for // a more even distribution. This property is only applicable when the destination // is an Amazon Kinesis data stream. Distribution *string `locationName:"distribution" type:"string" enum:"Distribution"` // A name for the subscription filter. If you are updating an existing filter, // you must specify the correct name in filterName. To find the name of the // filter currently associated with a log group, use DescribeSubscriptionFilters // (https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeSubscriptionFilters.html). // // FilterName is a required field FilterName *string `locationName:"filterName" min:"1" type:"string" required:"true"` // A filter pattern for subscribing to a filtered stream of log events. // // FilterPattern is a required field FilterPattern *string `locationName:"filterPattern" type:"string" required:"true"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The ARN of an IAM role that grants CloudWatch Logs permissions to deliver // ingested log events to the destination stream. You don't need to provide // the ARN when you are working with a logical destination for cross-account // delivery. RoleArn *string `locationName:"roleArn" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutSubscriptionFilterInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutSubscriptionFilterInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *PutSubscriptionFilterInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "PutSubscriptionFilterInput"} if s.DestinationArn == nil { invalidParams.Add(request.NewErrParamRequired("DestinationArn")) } if s.DestinationArn != nil && len(*s.DestinationArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("DestinationArn", 1)) } if s.FilterName == nil { invalidParams.Add(request.NewErrParamRequired("FilterName")) } if s.FilterName != nil && len(*s.FilterName) < 1 { invalidParams.Add(request.NewErrParamMinLen("FilterName", 1)) } if s.FilterPattern == nil { invalidParams.Add(request.NewErrParamRequired("FilterPattern")) } if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.RoleArn != nil && len(*s.RoleArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("RoleArn", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetDestinationArn sets the DestinationArn field's value. func (s *PutSubscriptionFilterInput) SetDestinationArn(v string) *PutSubscriptionFilterInput { s.DestinationArn = &v return s } // SetDistribution sets the Distribution field's value. func (s *PutSubscriptionFilterInput) SetDistribution(v string) *PutSubscriptionFilterInput { s.Distribution = &v return s } // SetFilterName sets the FilterName field's value. func (s *PutSubscriptionFilterInput) SetFilterName(v string) *PutSubscriptionFilterInput { s.FilterName = &v return s } // SetFilterPattern sets the FilterPattern field's value. func (s *PutSubscriptionFilterInput) SetFilterPattern(v string) *PutSubscriptionFilterInput { s.FilterPattern = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *PutSubscriptionFilterInput) SetLogGroupName(v string) *PutSubscriptionFilterInput { s.LogGroupName = &v return s } // SetRoleArn sets the RoleArn field's value. func (s *PutSubscriptionFilterInput) SetRoleArn(v string) *PutSubscriptionFilterInput { s.RoleArn = &v return s } type PutSubscriptionFilterOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutSubscriptionFilterOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s PutSubscriptionFilterOutput) GoString() string { return s.String() } // Reserved. type QueryCompileError struct { _ struct{} `type:"structure"` // Reserved. Location *QueryCompileErrorLocation `locationName:"location" type:"structure"` // Reserved. Message *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryCompileError) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryCompileError) GoString() string { return s.String() } // SetLocation sets the Location field's value. func (s *QueryCompileError) SetLocation(v *QueryCompileErrorLocation) *QueryCompileError { s.Location = v return s } // SetMessage sets the Message field's value. func (s *QueryCompileError) SetMessage(v string) *QueryCompileError { s.Message = &v return s } // Reserved. type QueryCompileErrorLocation struct { _ struct{} `type:"structure"` // Reserved. EndCharOffset *int64 `locationName:"endCharOffset" type:"integer"` // Reserved. StartCharOffset *int64 `locationName:"startCharOffset" type:"integer"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryCompileErrorLocation) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryCompileErrorLocation) GoString() string { return s.String() } // SetEndCharOffset sets the EndCharOffset field's value. func (s *QueryCompileErrorLocation) SetEndCharOffset(v int64) *QueryCompileErrorLocation { s.EndCharOffset = &v return s } // SetStartCharOffset sets the StartCharOffset field's value. func (s *QueryCompileErrorLocation) SetStartCharOffset(v int64) *QueryCompileErrorLocation { s.StartCharOffset = &v return s } // This structure contains details about a saved CloudWatch Logs Insights query // definition. type QueryDefinition struct { _ struct{} `type:"structure"` // The date that the query definition was most recently modified. LastModified *int64 `locationName:"lastModified" type:"long"` // If this query definition contains a list of log groups that it is limited // to, that list appears here. LogGroupNames []*string `locationName:"logGroupNames" type:"list"` // The name of the query definition. Name *string `locationName:"name" min:"1" type:"string"` // The unique ID of the query definition. QueryDefinitionId *string `locationName:"queryDefinitionId" type:"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). QueryString *string `locationName:"queryString" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryDefinition) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryDefinition) GoString() string { return s.String() } // SetLastModified sets the LastModified field's value. func (s *QueryDefinition) SetLastModified(v int64) *QueryDefinition { s.LastModified = &v return s } // SetLogGroupNames sets the LogGroupNames field's value. func (s *QueryDefinition) SetLogGroupNames(v []*string) *QueryDefinition { s.LogGroupNames = v return s } // SetName sets the Name field's value. func (s *QueryDefinition) SetName(v string) *QueryDefinition { s.Name = &v return s } // SetQueryDefinitionId sets the QueryDefinitionId field's value. func (s *QueryDefinition) SetQueryDefinitionId(v string) *QueryDefinition { s.QueryDefinitionId = &v return s } // SetQueryString sets the QueryString field's value. func (s *QueryDefinition) SetQueryString(v string) *QueryDefinition { s.QueryString = &v return s } // Information about one CloudWatch Logs Insights query that matches the request // in a DescribeQueries operation. type QueryInfo struct { _ struct{} `type:"structure"` // The date and time that this query was created. CreateTime *int64 `locationName:"createTime" type:"long"` // The name of the log group scanned by this query. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The unique ID number of this query. QueryId *string `locationName:"queryId" type:"string"` // The query string used in this query. QueryString *string `locationName:"queryString" type:"string"` // The status of this query. Possible values are Cancelled, Complete, Failed, // Running, Scheduled, and Unknown. Status *string `locationName:"status" type:"string" enum:"QueryStatus"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryInfo) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryInfo) GoString() string { return s.String() } // SetCreateTime sets the CreateTime field's value. func (s *QueryInfo) SetCreateTime(v int64) *QueryInfo { s.CreateTime = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *QueryInfo) SetLogGroupName(v string) *QueryInfo { s.LogGroupName = &v return s } // SetQueryId sets the QueryId field's value. func (s *QueryInfo) SetQueryId(v string) *QueryInfo { s.QueryId = &v return s } // SetQueryString sets the QueryString field's value. func (s *QueryInfo) SetQueryString(v string) *QueryInfo { s.QueryString = &v return s } // SetStatus sets the Status field's value. func (s *QueryInfo) SetStatus(v string) *QueryInfo { s.Status = &v return s } // Contains the number of log events scanned by the query, the number of log // events that matched the query criteria, and the total number of bytes in // the log events that were scanned. type QueryStatistics struct { _ struct{} `type:"structure"` // The total number of bytes in the log events scanned during the query. BytesScanned *float64 `locationName:"bytesScanned" type:"double"` // The number of log events that matched the query string. RecordsMatched *float64 `locationName:"recordsMatched" type:"double"` // The total number of log events scanned during the query. RecordsScanned *float64 `locationName:"recordsScanned" type:"double"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryStatistics) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s QueryStatistics) GoString() string { return s.String() } // SetBytesScanned sets the BytesScanned field's value. func (s *QueryStatistics) SetBytesScanned(v float64) *QueryStatistics { s.BytesScanned = &v return s } // SetRecordsMatched sets the RecordsMatched field's value. func (s *QueryStatistics) SetRecordsMatched(v float64) *QueryStatistics { s.RecordsMatched = &v return s } // SetRecordsScanned sets the RecordsScanned field's value. func (s *QueryStatistics) SetRecordsScanned(v float64) *QueryStatistics { s.RecordsScanned = &v return s } // Represents the rejected events. type RejectedLogEventsInfo struct { _ struct{} `type:"structure"` // The expired log events. ExpiredLogEventEndIndex *int64 `locationName:"expiredLogEventEndIndex" type:"integer"` // The log events that are too new. TooNewLogEventStartIndex *int64 `locationName:"tooNewLogEventStartIndex" type:"integer"` // The log events that are dated too far in the past. TooOldLogEventEndIndex *int64 `locationName:"tooOldLogEventEndIndex" type:"integer"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s RejectedLogEventsInfo) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s RejectedLogEventsInfo) GoString() string { return s.String() } // SetExpiredLogEventEndIndex sets the ExpiredLogEventEndIndex field's value. func (s *RejectedLogEventsInfo) SetExpiredLogEventEndIndex(v int64) *RejectedLogEventsInfo { s.ExpiredLogEventEndIndex = &v return s } // SetTooNewLogEventStartIndex sets the TooNewLogEventStartIndex field's value. func (s *RejectedLogEventsInfo) SetTooNewLogEventStartIndex(v int64) *RejectedLogEventsInfo { s.TooNewLogEventStartIndex = &v return s } // SetTooOldLogEventEndIndex sets the TooOldLogEventEndIndex field's value. func (s *RejectedLogEventsInfo) SetTooOldLogEventEndIndex(v int64) *RejectedLogEventsInfo { s.TooOldLogEventEndIndex = &v return s } // The specified resource already exists. type ResourceAlreadyExistsException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourceAlreadyExistsException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourceAlreadyExistsException) GoString() string { return s.String() } func newErrorResourceAlreadyExistsException(v protocol.ResponseMetadata) error { return &ResourceAlreadyExistsException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ResourceAlreadyExistsException) Code() string { return "ResourceAlreadyExistsException" } // Message returns the exception's message. func (s *ResourceAlreadyExistsException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ResourceAlreadyExistsException) OrigErr() error { return nil } func (s *ResourceAlreadyExistsException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *ResourceAlreadyExistsException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ResourceAlreadyExistsException) RequestID() string { return s.RespMetadata.RequestID } // The specified resource does not exist. type ResourceNotFoundException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourceNotFoundException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourceNotFoundException) GoString() string { return s.String() } func newErrorResourceNotFoundException(v protocol.ResponseMetadata) error { return &ResourceNotFoundException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ResourceNotFoundException) Code() string { return "ResourceNotFoundException" } // Message returns the exception's message. func (s *ResourceNotFoundException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ResourceNotFoundException) OrigErr() error { return nil } func (s *ResourceNotFoundException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *ResourceNotFoundException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ResourceNotFoundException) RequestID() string { return s.RespMetadata.RequestID } // A policy enabling one or more entities to put logs to a log group in this // account. type ResourcePolicy struct { _ struct{} `type:"structure"` // Timestamp showing when this policy was last updated, expressed as the number // of milliseconds after Jan 1, 1970 00:00:00 UTC. LastUpdatedTime *int64 `locationName:"lastUpdatedTime" type:"long"` // The details of the policy. PolicyDocument *string `locationName:"policyDocument" min:"1" type:"string"` // The name of the resource policy. PolicyName *string `locationName:"policyName" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourcePolicy) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResourcePolicy) GoString() string { return s.String() } // SetLastUpdatedTime sets the LastUpdatedTime field's value. func (s *ResourcePolicy) SetLastUpdatedTime(v int64) *ResourcePolicy { s.LastUpdatedTime = &v return s } // SetPolicyDocument sets the PolicyDocument field's value. func (s *ResourcePolicy) SetPolicyDocument(v string) *ResourcePolicy { s.PolicyDocument = &v return s } // SetPolicyName sets the PolicyName field's value. func (s *ResourcePolicy) SetPolicyName(v string) *ResourcePolicy { s.PolicyName = &v return s } // Contains one field from one log event returned by a CloudWatch Logs Insights // query, along with the value of that field. // // For more information about the fields that are generated by CloudWatch logs, // see Supported Logs and Discovered Fields (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_AnalyzeLogData-discoverable-fields.html). type ResultField struct { _ struct{} `type:"structure"` // The log event field. Field *string `locationName:"field" type:"string"` // The value of this field. Value *string `locationName:"value" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResultField) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ResultField) GoString() string { return s.String() } // SetField sets the Field field's value. func (s *ResultField) SetField(v string) *ResultField { s.Field = &v return s } // SetValue sets the Value field's value. func (s *ResultField) SetValue(v string) *ResultField { s.Value = &v return s } // Represents the search status of a log stream. type SearchedLogStream struct { _ struct{} `type:"structure"` // The name of the log stream. LogStreamName *string `locationName:"logStreamName" min:"1" type:"string"` // Indicates whether all the events in this log stream were searched. SearchedCompletely *bool `locationName:"searchedCompletely" type:"boolean"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s SearchedLogStream) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s SearchedLogStream) GoString() string { return s.String() } // SetLogStreamName sets the LogStreamName field's value. func (s *SearchedLogStream) SetLogStreamName(v string) *SearchedLogStream { s.LogStreamName = &v return s } // SetSearchedCompletely sets the SearchedCompletely field's value. func (s *SearchedLogStream) SetSearchedCompletely(v bool) *SearchedLogStream { s.SearchedCompletely = &v return s } // The service cannot complete the request. type ServiceUnavailableException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ServiceUnavailableException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s ServiceUnavailableException) GoString() string { return s.String() } func newErrorServiceUnavailableException(v protocol.ResponseMetadata) error { return &ServiceUnavailableException{ RespMetadata: v, } } // Code returns the exception type name. func (s *ServiceUnavailableException) Code() string { return "ServiceUnavailableException" } // Message returns the exception's message. func (s *ServiceUnavailableException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *ServiceUnavailableException) OrigErr() error { return nil } func (s *ServiceUnavailableException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *ServiceUnavailableException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *ServiceUnavailableException) RequestID() string { return s.RespMetadata.RequestID } type StartQueryInput struct { _ struct{} `type:"structure"` // The end of the time range to query. The range is inclusive, so the specified // end time is included in the query. Specified as epoch time, the number of // seconds since January 1, 1970, 00:00:00 UTC. // // EndTime is a required field EndTime *int64 `locationName:"endTime" type:"long" required:"true"` // The maximum number of log events to return in the query. If the query string // uses the fields command, only the specified fields and their values are returned. // The default is 1000. Limit *int64 `locationName:"limit" min:"1" type:"integer"` // The list of log groups to query. You can include up to 50 log groups. // // You can specify them by the log group name or ARN. If a log group that you're // querying is in a source account and you're using a monitoring account, you // must specify the ARN of the log group here. The query definition must also // be defined in the monitoring account. // // If you specify an ARN, the ARN can't end with an asterisk (*). // // A StartQuery operation must include exactly one of the following parameters: // logGroupName, logGroupNames, or logGroupIdentifiers. LogGroupIdentifiers []*string `locationName:"logGroupIdentifiers" type:"list"` // The log group on which to perform the query. // // A StartQuery operation must include exactly one of the following parameters: // logGroupName, logGroupNames, or logGroupIdentifiers. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` // The list of log groups to be queried. You can include up to 50 log groups. // // A StartQuery operation must include exactly one of the following parameters: // logGroupName, logGroupNames, or logGroupIdentifiers. LogGroupNames []*string `locationName:"logGroupNames" type:"list"` // The query string to use. For more information, see CloudWatch Logs Insights // Query Syntax (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html). // // QueryString is a required field QueryString *string `locationName:"queryString" type:"string" required:"true"` // The beginning of the time range to query. The range is inclusive, so the // specified start time is included in the query. Specified as epoch time, the // number of seconds since January 1, 1970, 00:00:00 UTC. // // StartTime is a required field StartTime *int64 `locationName:"startTime" type:"long" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartQueryInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartQueryInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *StartQueryInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "StartQueryInput"} if s.EndTime == nil { invalidParams.Add(request.NewErrParamRequired("EndTime")) } if s.Limit != nil && *s.Limit < 1 { invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.QueryString == nil { invalidParams.Add(request.NewErrParamRequired("QueryString")) } if s.StartTime == nil { invalidParams.Add(request.NewErrParamRequired("StartTime")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetEndTime sets the EndTime field's value. func (s *StartQueryInput) SetEndTime(v int64) *StartQueryInput { s.EndTime = &v return s } // SetLimit sets the Limit field's value. func (s *StartQueryInput) SetLimit(v int64) *StartQueryInput { s.Limit = &v return s } // SetLogGroupIdentifiers sets the LogGroupIdentifiers field's value. func (s *StartQueryInput) SetLogGroupIdentifiers(v []*string) *StartQueryInput { s.LogGroupIdentifiers = v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *StartQueryInput) SetLogGroupName(v string) *StartQueryInput { s.LogGroupName = &v return s } // SetLogGroupNames sets the LogGroupNames field's value. func (s *StartQueryInput) SetLogGroupNames(v []*string) *StartQueryInput { s.LogGroupNames = v return s } // SetQueryString sets the QueryString field's value. func (s *StartQueryInput) SetQueryString(v string) *StartQueryInput { s.QueryString = &v return s } // SetStartTime sets the StartTime field's value. func (s *StartQueryInput) SetStartTime(v int64) *StartQueryInput { s.StartTime = &v return s } type StartQueryOutput struct { _ struct{} `type:"structure"` // The unique ID of the query. QueryId *string `locationName:"queryId" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartQueryOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StartQueryOutput) GoString() string { return s.String() } // SetQueryId sets the QueryId field's value. func (s *StartQueryOutput) SetQueryId(v string) *StartQueryOutput { s.QueryId = &v return s } type StopQueryInput struct { _ struct{} `type:"structure"` // The ID number of the query to stop. To find this ID number, use DescribeQueries. // // QueryId is a required field QueryId *string `locationName:"queryId" type:"string" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StopQueryInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StopQueryInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *StopQueryInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "StopQueryInput"} if s.QueryId == nil { invalidParams.Add(request.NewErrParamRequired("QueryId")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetQueryId sets the QueryId field's value. func (s *StopQueryInput) SetQueryId(v string) *StopQueryInput { s.QueryId = &v return s } type StopQueryOutput struct { _ struct{} `type:"structure"` // This is true if the query was stopped by the StopQuery operation. Success *bool `locationName:"success" type:"boolean"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StopQueryOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s StopQueryOutput) GoString() string { return s.String() } // SetSuccess sets the Success field's value. func (s *StopQueryOutput) SetSuccess(v bool) *StopQueryOutput { s.Success = &v return s } // Represents a subscription filter. type SubscriptionFilter struct { _ struct{} `type:"structure"` // The creation time of the subscription filter, expressed as the number of // milliseconds after Jan 1, 1970 00:00:00 UTC. CreationTime *int64 `locationName:"creationTime" type:"long"` // The Amazon Resource Name (ARN) of the destination. DestinationArn *string `locationName:"destinationArn" min:"1" type:"string"` // The method used to distribute log data to the destination, which can be either // random or grouped by log stream. Distribution *string `locationName:"distribution" type:"string" enum:"Distribution"` // The name of the subscription filter. FilterName *string `locationName:"filterName" min:"1" type:"string"` // A symbolic description of how CloudWatch Logs should interpret the data in // each log event. For example, a log event can contain timestamps, IP addresses, // strings, and so on. You use the filter pattern to specify what to look for // in the log event message. FilterPattern *string `locationName:"filterPattern" type:"string"` // The name of the log group. LogGroupName *string `locationName:"logGroupName" min:"1" type:"string"` RoleArn *string `locationName:"roleArn" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s SubscriptionFilter) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s SubscriptionFilter) GoString() string { return s.String() } // SetCreationTime sets the CreationTime field's value. func (s *SubscriptionFilter) SetCreationTime(v int64) *SubscriptionFilter { s.CreationTime = &v return s } // SetDestinationArn sets the DestinationArn field's value. func (s *SubscriptionFilter) SetDestinationArn(v string) *SubscriptionFilter { s.DestinationArn = &v return s } // SetDistribution sets the Distribution field's value. func (s *SubscriptionFilter) SetDistribution(v string) *SubscriptionFilter { s.Distribution = &v return s } // SetFilterName sets the FilterName field's value. func (s *SubscriptionFilter) SetFilterName(v string) *SubscriptionFilter { s.FilterName = &v return s } // SetFilterPattern sets the FilterPattern field's value. func (s *SubscriptionFilter) SetFilterPattern(v string) *SubscriptionFilter { s.FilterPattern = &v return s } // SetLogGroupName sets the LogGroupName field's value. func (s *SubscriptionFilter) SetLogGroupName(v string) *SubscriptionFilter { s.LogGroupName = &v return s } // SetRoleArn sets the RoleArn field's value. func (s *SubscriptionFilter) SetRoleArn(v string) *SubscriptionFilter { s.RoleArn = &v return s } // Deprecated: Please use the generic tagging API model TagResourceRequest type TagLogGroupInput struct { _ struct{} `deprecated:"true" type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The key-value pairs to use for the tags. // // Tags is a required field Tags map[string]*string `locationName:"tags" min:"1" type:"map" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagLogGroupInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagLogGroupInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *TagLogGroupInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "TagLogGroupInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.Tags == nil { invalidParams.Add(request.NewErrParamRequired("Tags")) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(request.NewErrParamMinLen("Tags", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *TagLogGroupInput) SetLogGroupName(v string) *TagLogGroupInput { s.LogGroupName = &v return s } // SetTags sets the Tags field's value. func (s *TagLogGroupInput) SetTags(v map[string]*string) *TagLogGroupInput { s.Tags = v return s } type TagLogGroupOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagLogGroupOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagLogGroupOutput) GoString() string { return s.String() } type TagResourceInput struct { _ struct{} `type:"structure"` // The ARN of the resource that you're adding tags to. // // The ARN format of a log group is arn:aws:logs:Region:account-id:log-group:log-group-name // // The ARN format of a destination is arn:aws:logs:Region:account-id:destination:destination-name // // For more information about ARN format, see CloudWatch Logs resources and // operations (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html). // // ResourceArn is a required field ResourceArn *string `locationName:"resourceArn" min:"1" type:"string" required:"true"` // The list of key-value pairs to associate with the resource. // // Tags is a required field Tags map[string]*string `locationName:"tags" min:"1" type:"map" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *TagResourceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "TagResourceInput"} if s.ResourceArn == nil { invalidParams.Add(request.NewErrParamRequired("ResourceArn")) } if s.ResourceArn != nil && len(*s.ResourceArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceArn", 1)) } if s.Tags == nil { invalidParams.Add(request.NewErrParamRequired("Tags")) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(request.NewErrParamMinLen("Tags", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetResourceArn sets the ResourceArn field's value. func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput { s.ResourceArn = &v return s } // SetTags sets the Tags field's value. func (s *TagResourceInput) SetTags(v map[string]*string) *TagResourceInput { s.Tags = v return s } type TagResourceOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TagResourceOutput) GoString() string { return s.String() } type TestMetricFilterInput struct { _ struct{} `type:"structure"` // A symbolic description of how CloudWatch Logs should interpret the data in // each log event. For example, a log event can contain timestamps, IP addresses, // strings, and so on. You use the filter pattern to specify what to look for // in the log event message. // // FilterPattern is a required field FilterPattern *string `locationName:"filterPattern" type:"string" required:"true"` // The log event messages to test. // // LogEventMessages is a required field LogEventMessages []*string `locationName:"logEventMessages" min:"1" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TestMetricFilterInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TestMetricFilterInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *TestMetricFilterInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "TestMetricFilterInput"} if s.FilterPattern == nil { invalidParams.Add(request.NewErrParamRequired("FilterPattern")) } if s.LogEventMessages == nil { invalidParams.Add(request.NewErrParamRequired("LogEventMessages")) } if s.LogEventMessages != nil && len(s.LogEventMessages) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogEventMessages", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetFilterPattern sets the FilterPattern field's value. func (s *TestMetricFilterInput) SetFilterPattern(v string) *TestMetricFilterInput { s.FilterPattern = &v return s } // SetLogEventMessages sets the LogEventMessages field's value. func (s *TestMetricFilterInput) SetLogEventMessages(v []*string) *TestMetricFilterInput { s.LogEventMessages = v return s } type TestMetricFilterOutput struct { _ struct{} `type:"structure"` // The matched events. Matches []*MetricFilterMatchRecord `locationName:"matches" type:"list"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TestMetricFilterOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TestMetricFilterOutput) GoString() string { return s.String() } // SetMatches sets the Matches field's value. func (s *TestMetricFilterOutput) SetMatches(v []*MetricFilterMatchRecord) *TestMetricFilterOutput { s.Matches = v return s } // A resource can have no more than 50 tags. type TooManyTagsException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // The name of the resource. ResourceName *string `locationName:"resourceName" min:"1" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TooManyTagsException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s TooManyTagsException) GoString() string { return s.String() } func newErrorTooManyTagsException(v protocol.ResponseMetadata) error { return &TooManyTagsException{ RespMetadata: v, } } // Code returns the exception type name. func (s *TooManyTagsException) Code() string { return "TooManyTagsException" } // Message returns the exception's message. func (s *TooManyTagsException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *TooManyTagsException) OrigErr() error { return nil } func (s *TooManyTagsException) Error() string { return fmt.Sprintf("%s: %s\n%s", s.Code(), s.Message(), s.String()) } // Status code returns the HTTP status code for the request's response error. func (s *TooManyTagsException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *TooManyTagsException) RequestID() string { return s.RespMetadata.RequestID } // The most likely cause is an Amazon Web Services access key ID or secret key // that's not valid. type UnrecognizedClientException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UnrecognizedClientException) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UnrecognizedClientException) GoString() string { return s.String() } func newErrorUnrecognizedClientException(v protocol.ResponseMetadata) error { return &UnrecognizedClientException{ RespMetadata: v, } } // Code returns the exception type name. func (s *UnrecognizedClientException) Code() string { return "UnrecognizedClientException" } // Message returns the exception's message. func (s *UnrecognizedClientException) Message() string { if s.Message_ != nil { return *s.Message_ } return "" } // OrigErr always returns nil, satisfies awserr.Error interface. func (s *UnrecognizedClientException) OrigErr() error { return nil } func (s *UnrecognizedClientException) Error() string { return fmt.Sprintf("%s: %s", s.Code(), s.Message()) } // Status code returns the HTTP status code for the request's response error. func (s *UnrecognizedClientException) StatusCode() int { return s.RespMetadata.StatusCode } // RequestID returns the service's response RequestID for request. func (s *UnrecognizedClientException) RequestID() string { return s.RespMetadata.RequestID } // Deprecated: Please use the generic tagging API model UntagResourceRequest type UntagLogGroupInput struct { _ struct{} `deprecated:"true" type:"structure"` // The name of the log group. // // LogGroupName is a required field LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"` // The tag keys. The corresponding tags are removed from the log group. // // Tags is a required field Tags []*string `locationName:"tags" min:"1" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagLogGroupInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagLogGroupInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UntagLogGroupInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UntagLogGroupInput"} if s.LogGroupName == nil { invalidParams.Add(request.NewErrParamRequired("LogGroupName")) } if s.LogGroupName != nil && len(*s.LogGroupName) < 1 { invalidParams.Add(request.NewErrParamMinLen("LogGroupName", 1)) } if s.Tags == nil { invalidParams.Add(request.NewErrParamRequired("Tags")) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(request.NewErrParamMinLen("Tags", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetLogGroupName sets the LogGroupName field's value. func (s *UntagLogGroupInput) SetLogGroupName(v string) *UntagLogGroupInput { s.LogGroupName = &v return s } // SetTags sets the Tags field's value. func (s *UntagLogGroupInput) SetTags(v []*string) *UntagLogGroupInput { s.Tags = v return s } type UntagLogGroupOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagLogGroupOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagLogGroupOutput) GoString() string { return s.String() } type UntagResourceInput struct { _ struct{} `type:"structure"` // The ARN of the CloudWatch Logs resource that you're removing tags from. // // The ARN format of a log group is arn:aws:logs:Region:account-id:log-group:log-group-name // // The ARN format of a destination is arn:aws:logs:Region:account-id:destination:destination-name // // For more information about ARN format, see CloudWatch Logs resources and // operations (https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html). // // ResourceArn is a required field ResourceArn *string `locationName:"resourceArn" min:"1" type:"string" required:"true"` // The list of tag keys to remove from the resource. // // TagKeys is a required field TagKeys []*string `locationName:"tagKeys" type:"list" required:"true"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceInput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceInput) GoString() string { return s.String() } // Validate inspects the fields of the type to determine if they are valid. func (s *UntagResourceInput) Validate() error { invalidParams := request.ErrInvalidParams{Context: "UntagResourceInput"} if s.ResourceArn == nil { invalidParams.Add(request.NewErrParamRequired("ResourceArn")) } if s.ResourceArn != nil && len(*s.ResourceArn) < 1 { invalidParams.Add(request.NewErrParamMinLen("ResourceArn", 1)) } if s.TagKeys == nil { invalidParams.Add(request.NewErrParamRequired("TagKeys")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // SetResourceArn sets the ResourceArn field's value. func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput { s.ResourceArn = &v return s } // SetTagKeys sets the TagKeys field's value. func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput { s.TagKeys = v return s } type UntagResourceOutput struct { _ struct{} `type:"structure"` } // String returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceOutput) String() string { return awsutil.Prettify(s) } // GoString returns the string representation. // // API parameter values that are decorated as "sensitive" in the API will not // be included in the string output. The member name will be present, but the // value will be replaced with "sensitive". func (s UntagResourceOutput) GoString() string { return s.String() } const ( // DataProtectionStatusActivated is a DataProtectionStatus enum value DataProtectionStatusActivated = "ACTIVATED" // DataProtectionStatusDeleted is a DataProtectionStatus enum value DataProtectionStatusDeleted = "DELETED" // DataProtectionStatusArchived is a DataProtectionStatus enum value DataProtectionStatusArchived = "ARCHIVED" // DataProtectionStatusDisabled is a DataProtectionStatus enum value DataProtectionStatusDisabled = "DISABLED" ) // DataProtectionStatus_Values returns all elements of the DataProtectionStatus enum func DataProtectionStatus_Values() []string { return []string{ DataProtectionStatusActivated, DataProtectionStatusDeleted, DataProtectionStatusArchived, DataProtectionStatusDisabled, } } // The method used to distribute log data to the destination, which can be either // random or grouped by log stream. const ( // DistributionRandom is a Distribution enum value DistributionRandom = "Random" // DistributionByLogStream is a Distribution enum value DistributionByLogStream = "ByLogStream" ) // Distribution_Values returns all elements of the Distribution enum func Distribution_Values() []string { return []string{ DistributionRandom, DistributionByLogStream, } } const ( // ExportTaskStatusCodeCancelled is a ExportTaskStatusCode enum value ExportTaskStatusCodeCancelled = "CANCELLED" // ExportTaskStatusCodeCompleted is a ExportTaskStatusCode enum value ExportTaskStatusCodeCompleted = "COMPLETED" // ExportTaskStatusCodeFailed is a ExportTaskStatusCode enum value ExportTaskStatusCodeFailed = "FAILED" // ExportTaskStatusCodePending is a ExportTaskStatusCode enum value ExportTaskStatusCodePending = "PENDING" // ExportTaskStatusCodePendingCancel is a ExportTaskStatusCode enum value ExportTaskStatusCodePendingCancel = "PENDING_CANCEL" // ExportTaskStatusCodeRunning is a ExportTaskStatusCode enum value ExportTaskStatusCodeRunning = "RUNNING" ) // ExportTaskStatusCode_Values returns all elements of the ExportTaskStatusCode enum func ExportTaskStatusCode_Values() []string { return []string{ ExportTaskStatusCodeCancelled, ExportTaskStatusCodeCompleted, ExportTaskStatusCodeFailed, ExportTaskStatusCodePending, ExportTaskStatusCodePendingCancel, ExportTaskStatusCodeRunning, } } const ( // InheritedPropertyAccountDataProtection is a InheritedProperty enum value InheritedPropertyAccountDataProtection = "ACCOUNT_DATA_PROTECTION" ) // InheritedProperty_Values returns all elements of the InheritedProperty enum func InheritedProperty_Values() []string { return []string{ InheritedPropertyAccountDataProtection, } } const ( // OrderByLogStreamName is a OrderBy enum value OrderByLogStreamName = "LogStreamName" // OrderByLastEventTime is a OrderBy enum value OrderByLastEventTime = "LastEventTime" ) // OrderBy_Values returns all elements of the OrderBy enum func OrderBy_Values() []string { return []string{ OrderByLogStreamName, OrderByLastEventTime, } } const ( // PolicyTypeDataProtectionPolicy is a PolicyType enum value PolicyTypeDataProtectionPolicy = "DATA_PROTECTION_POLICY" ) // PolicyType_Values returns all elements of the PolicyType enum func PolicyType_Values() []string { return []string{ PolicyTypeDataProtectionPolicy, } } const ( // QueryStatusScheduled is a QueryStatus enum value QueryStatusScheduled = "Scheduled" // QueryStatusRunning is a QueryStatus enum value QueryStatusRunning = "Running" // QueryStatusComplete is a QueryStatus enum value QueryStatusComplete = "Complete" // QueryStatusFailed is a QueryStatus enum value QueryStatusFailed = "Failed" // QueryStatusCancelled is a QueryStatus enum value QueryStatusCancelled = "Cancelled" // QueryStatusTimeout is a QueryStatus enum value QueryStatusTimeout = "Timeout" // QueryStatusUnknown is a QueryStatus enum value QueryStatusUnknown = "Unknown" ) // QueryStatus_Values returns all elements of the QueryStatus enum func QueryStatus_Values() []string { return []string{ QueryStatusScheduled, QueryStatusRunning, QueryStatusComplete, QueryStatusFailed, QueryStatusCancelled, QueryStatusTimeout, QueryStatusUnknown, } } const ( // ScopeAll is a Scope enum value ScopeAll = "ALL" ) // Scope_Values returns all elements of the Scope enum func Scope_Values() []string { return []string{ ScopeAll, } } const ( // StandardUnitSeconds is a StandardUnit enum value StandardUnitSeconds = "Seconds" // StandardUnitMicroseconds is a StandardUnit enum value StandardUnitMicroseconds = "Microseconds" // StandardUnitMilliseconds is a StandardUnit enum value StandardUnitMilliseconds = "Milliseconds" // StandardUnitBytes is a StandardUnit enum value StandardUnitBytes = "Bytes" // StandardUnitKilobytes is a StandardUnit enum value StandardUnitKilobytes = "Kilobytes" // StandardUnitMegabytes is a StandardUnit enum value StandardUnitMegabytes = "Megabytes" // StandardUnitGigabytes is a StandardUnit enum value StandardUnitGigabytes = "Gigabytes" // StandardUnitTerabytes is a StandardUnit enum value StandardUnitTerabytes = "Terabytes" // StandardUnitBits is a StandardUnit enum value StandardUnitBits = "Bits" // StandardUnitKilobits is a StandardUnit enum value StandardUnitKilobits = "Kilobits" // StandardUnitMegabits is a StandardUnit enum value StandardUnitMegabits = "Megabits" // StandardUnitGigabits is a StandardUnit enum value StandardUnitGigabits = "Gigabits" // StandardUnitTerabits is a StandardUnit enum value StandardUnitTerabits = "Terabits" // StandardUnitPercent is a StandardUnit enum value StandardUnitPercent = "Percent" // StandardUnitCount is a StandardUnit enum value StandardUnitCount = "Count" // StandardUnitBytesSecond is a StandardUnit enum value StandardUnitBytesSecond = "Bytes/Second" // StandardUnitKilobytesSecond is a StandardUnit enum value StandardUnitKilobytesSecond = "Kilobytes/Second" // StandardUnitMegabytesSecond is a StandardUnit enum value StandardUnitMegabytesSecond = "Megabytes/Second" // StandardUnitGigabytesSecond is a StandardUnit enum value StandardUnitGigabytesSecond = "Gigabytes/Second" // StandardUnitTerabytesSecond is a StandardUnit enum value StandardUnitTerabytesSecond = "Terabytes/Second" // StandardUnitBitsSecond is a StandardUnit enum value StandardUnitBitsSecond = "Bits/Second" // StandardUnitKilobitsSecond is a StandardUnit enum value StandardUnitKilobitsSecond = "Kilobits/Second" // StandardUnitMegabitsSecond is a StandardUnit enum value StandardUnitMegabitsSecond = "Megabits/Second" // StandardUnitGigabitsSecond is a StandardUnit enum value StandardUnitGigabitsSecond = "Gigabits/Second" // StandardUnitTerabitsSecond is a StandardUnit enum value StandardUnitTerabitsSecond = "Terabits/Second" // StandardUnitCountSecond is a StandardUnit enum value StandardUnitCountSecond = "Count/Second" // StandardUnitNone is a StandardUnit enum value StandardUnitNone = "None" ) // StandardUnit_Values returns all elements of the StandardUnit enum func StandardUnit_Values() []string { return []string{ StandardUnitSeconds, StandardUnitMicroseconds, StandardUnitMilliseconds, StandardUnitBytes, StandardUnitKilobytes, StandardUnitMegabytes, StandardUnitGigabytes, StandardUnitTerabytes, StandardUnitBits, StandardUnitKilobits, StandardUnitMegabits, StandardUnitGigabits, StandardUnitTerabits, StandardUnitPercent, StandardUnitCount, StandardUnitBytesSecond, StandardUnitKilobytesSecond, StandardUnitMegabytesSecond, StandardUnitGigabytesSecond, StandardUnitTerabytesSecond, StandardUnitBitsSecond, StandardUnitKilobitsSecond, StandardUnitMegabitsSecond, StandardUnitGigabitsSecond, StandardUnitTerabitsSecond, StandardUnitCountSecond, StandardUnitNone, } }