cloudwatchlogs - ActiveState ActiveGo 1.8
...

Package cloudwatchlogs

import "github.com/aws/aws-sdk-go/service/cloudwatchlogs"
Overview
Index
Subdirectories

Overview ▾

Package cloudwatchlogs provides the client and types for making API requests to Amazon CloudWatch Logs.

You can use Amazon CloudWatch Logs to monitor, store, and access your log files from EC2 instances, Amazon CloudTrail, or other sources. You can then retrieve the associated log data from CloudWatch Logs using the Amazon CloudWatch console, the CloudWatch Logs commands in the AWS CLI, the CloudWatch Logs API, or the CloudWatch Logs SDK.

You can use CloudWatch Logs to:

* Monitor Logs from Amazon EC2 Instances in Real-time: You can use CloudWatch
Logs to monitor applications and systems using log data. For example,
CloudWatch Logs can track the number of errors that occur in your application
logs and send you a notification whenever the rate of errors exceeds a
threshold you specify. CloudWatch Logs uses your log data for monitoring;
so, no code changes are required. For example, you can monitor application
logs for specific literal terms (such as "NullReferenceException") or
count the number of occurrences of a literal term at a particular position
in log data (such as "404" status codes in an Apache access log). When
the term you are searching for is found, CloudWatch Logs reports the data
to a Amazon CloudWatch metric that you specify.

* Monitor Amazon CloudTrail Logged Events: You can create alarms in Amazon
CloudWatch and receive notifications of particular API activity as captured
by CloudTrail and use the notification to perform troubleshooting.

* Archive Log Data: You can use CloudWatch Logs to store your log data
in highly durable storage. You can change the log retention setting so
that any log events older than this setting are automatically deleted.
The CloudWatch Logs agent makes it easy to quickly send both rotated and
non-rotated log data off of a host and into the log service. You can then
access the raw log data when you need it.

See https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28 for more information on this service.

See cloudwatchlogs package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/cloudwatchlogs/

Using the Client

To use the client for Amazon CloudWatch Logs you will first need to create a new instance of it.

When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.

Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.

// Create a session to share configuration, and load external configuration.
sess := session.Must(session.NewSession())

// Create the service's client with the session.
svc := cloudwatchlogs.New(sess)

See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/

See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon CloudWatch Logs client CloudWatchLogs for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/cloudwatchlogs/#New

Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.

The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".

result, err := svc.CancelExportTask(params)
if err != nil {
    // Cast err to awserr.Error to handle specific error codes.
    aerr, ok := err.(awserr.Error)
    if ok && aerr.Code() == <error code to check for> {
        // Specific error code handling
    }
    return err
}

fmt.Println("CancelExportTask result:")
fmt.Println(result)

Using the Client with Context

The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.

ctx := context.Background()

result, err := svc.CancelExportTaskWithContext(ctx, params)

See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/

Index ▾

Constants
type CancelExportTaskInput
    func (s CancelExportTaskInput) GoString() string
    func (s *CancelExportTaskInput) SetTaskId(v string) *CancelExportTaskInput
    func (s CancelExportTaskInput) String() string
    func (s *CancelExportTaskInput) Validate() error
type CancelExportTaskOutput
    func (s CancelExportTaskOutput) GoString() string
    func (s CancelExportTaskOutput) String() string
type CloudWatchLogs
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *CloudWatchLogs
    func (c *CloudWatchLogs) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error)
    func (c *CloudWatchLogs) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput)
    func (c *CloudWatchLogs) CancelExportTaskWithContext(ctx aws.Context, input *CancelExportTaskInput, opts ...request.Option) (*CancelExportTaskOutput, error)
    func (c *CloudWatchLogs) CreateExportTask(input *CreateExportTaskInput) (*CreateExportTaskOutput, error)
    func (c *CloudWatchLogs) CreateExportTaskRequest(input *CreateExportTaskInput) (req *request.Request, output *CreateExportTaskOutput)
    func (c *CloudWatchLogs) CreateExportTaskWithContext(ctx aws.Context, input *CreateExportTaskInput, opts ...request.Option) (*CreateExportTaskOutput, error)
    func (c *CloudWatchLogs) CreateLogGroup(input *CreateLogGroupInput) (*CreateLogGroupOutput, error)
    func (c *CloudWatchLogs) CreateLogGroupRequest(input *CreateLogGroupInput) (req *request.Request, output *CreateLogGroupOutput)
    func (c *CloudWatchLogs) CreateLogGroupWithContext(ctx aws.Context, input *CreateLogGroupInput, opts ...request.Option) (*CreateLogGroupOutput, error)
    func (c *CloudWatchLogs) CreateLogStream(input *CreateLogStreamInput) (*CreateLogStreamOutput, error)
    func (c *CloudWatchLogs) CreateLogStreamRequest(input *CreateLogStreamInput) (req *request.Request, output *CreateLogStreamOutput)
    func (c *CloudWatchLogs) CreateLogStreamWithContext(ctx aws.Context, input *CreateLogStreamInput, opts ...request.Option) (*CreateLogStreamOutput, error)
    func (c *CloudWatchLogs) DeleteDestination(input *DeleteDestinationInput) (*DeleteDestinationOutput, error)
    func (c *CloudWatchLogs) DeleteDestinationRequest(input *DeleteDestinationInput) (req *request.Request, output *DeleteDestinationOutput)
    func (c *CloudWatchLogs) DeleteDestinationWithContext(ctx aws.Context, input *DeleteDestinationInput, opts ...request.Option) (*DeleteDestinationOutput, error)
    func (c *CloudWatchLogs) DeleteLogGroup(input *DeleteLogGroupInput) (*DeleteLogGroupOutput, error)
    func (c *CloudWatchLogs) DeleteLogGroupRequest(input *DeleteLogGroupInput) (req *request.Request, output *DeleteLogGroupOutput)
    func (c *CloudWatchLogs) DeleteLogGroupWithContext(ctx aws.Context, input *DeleteLogGroupInput, opts ...request.Option) (*DeleteLogGroupOutput, error)
    func (c *CloudWatchLogs) DeleteLogStream(input *DeleteLogStreamInput) (*DeleteLogStreamOutput, error)
    func (c *CloudWatchLogs) DeleteLogStreamRequest(input *DeleteLogStreamInput) (req *request.Request, output *DeleteLogStreamOutput)
    func (c *CloudWatchLogs) DeleteLogStreamWithContext(ctx aws.Context, input *DeleteLogStreamInput, opts ...request.Option) (*DeleteLogStreamOutput, error)
    func (c *CloudWatchLogs) DeleteMetricFilter(input *DeleteMetricFilterInput) (*DeleteMetricFilterOutput, error)
    func (c *CloudWatchLogs) DeleteMetricFilterRequest(input *DeleteMetricFilterInput) (req *request.Request, output *DeleteMetricFilterOutput)
    func (c *CloudWatchLogs) DeleteMetricFilterWithContext(ctx aws.Context, input *DeleteMetricFilterInput, opts ...request.Option) (*DeleteMetricFilterOutput, error)
    func (c *CloudWatchLogs) DeleteRetentionPolicy(input *DeleteRetentionPolicyInput) (*DeleteRetentionPolicyOutput, error)
    func (c *CloudWatchLogs) DeleteRetentionPolicyRequest(input *DeleteRetentionPolicyInput) (req *request.Request, output *DeleteRetentionPolicyOutput)
    func (c *CloudWatchLogs) DeleteRetentionPolicyWithContext(ctx aws.Context, input *DeleteRetentionPolicyInput, opts ...request.Option) (*DeleteRetentionPolicyOutput, error)
    func (c *CloudWatchLogs) DeleteSubscriptionFilter(input *DeleteSubscriptionFilterInput) (*DeleteSubscriptionFilterOutput, error)
    func (c *CloudWatchLogs) DeleteSubscriptionFilterRequest(input *DeleteSubscriptionFilterInput) (req *request.Request, output *DeleteSubscriptionFilterOutput)
    func (c *CloudWatchLogs) DeleteSubscriptionFilterWithContext(ctx aws.Context, input *DeleteSubscriptionFilterInput, opts ...request.Option) (*DeleteSubscriptionFilterOutput, error)
    func (c *CloudWatchLogs) DescribeDestinations(input *DescribeDestinationsInput) (*DescribeDestinationsOutput, error)
    func (c *CloudWatchLogs) DescribeDestinationsPages(input *DescribeDestinationsInput, fn func(*DescribeDestinationsOutput, bool) bool) error
    func (c *CloudWatchLogs) DescribeDestinationsPagesWithContext(ctx aws.Context, input *DescribeDestinationsInput, fn func(*DescribeDestinationsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudWatchLogs) DescribeDestinationsRequest(input *DescribeDestinationsInput) (req *request.Request, output *DescribeDestinationsOutput)
    func (c *CloudWatchLogs) DescribeDestinationsWithContext(ctx aws.Context, input *DescribeDestinationsInput, opts ...request.Option) (*DescribeDestinationsOutput, error)
    func (c *CloudWatchLogs) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error)
    func (c *CloudWatchLogs) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput)
    func (c *CloudWatchLogs) DescribeExportTasksWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.Option) (*DescribeExportTasksOutput, error)
    func (c *CloudWatchLogs) DescribeLogGroups(input *DescribeLogGroupsInput) (*DescribeLogGroupsOutput, error)
    func (c *CloudWatchLogs) DescribeLogGroupsPages(input *DescribeLogGroupsInput, fn func(*DescribeLogGroupsOutput, bool) bool) error
    func (c *CloudWatchLogs) DescribeLogGroupsPagesWithContext(ctx aws.Context, input *DescribeLogGroupsInput, fn func(*DescribeLogGroupsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudWatchLogs) DescribeLogGroupsRequest(input *DescribeLogGroupsInput) (req *request.Request, output *DescribeLogGroupsOutput)
    func (c *CloudWatchLogs) DescribeLogGroupsWithContext(ctx aws.Context, input *DescribeLogGroupsInput, opts ...request.Option) (*DescribeLogGroupsOutput, error)
    func (c *CloudWatchLogs) DescribeLogStreams(input *DescribeLogStreamsInput) (*DescribeLogStreamsOutput, error)
    func (c *CloudWatchLogs) DescribeLogStreamsPages(input *DescribeLogStreamsInput, fn func(*DescribeLogStreamsOutput, bool) bool) error
    func (c *CloudWatchLogs) DescribeLogStreamsPagesWithContext(ctx aws.Context, input *DescribeLogStreamsInput, fn func(*DescribeLogStreamsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudWatchLogs) DescribeLogStreamsRequest(input *DescribeLogStreamsInput) (req *request.Request, output *DescribeLogStreamsOutput)
    func (c *CloudWatchLogs) DescribeLogStreamsWithContext(ctx aws.Context, input *DescribeLogStreamsInput, opts ...request.Option) (*DescribeLogStreamsOutput, error)
    func (c *CloudWatchLogs) DescribeMetricFilters(input *DescribeMetricFiltersInput) (*DescribeMetricFiltersOutput, error)
    func (c *CloudWatchLogs) DescribeMetricFiltersPages(input *DescribeMetricFiltersInput, fn func(*DescribeMetricFiltersOutput, bool) bool) error
    func (c *CloudWatchLogs) DescribeMetricFiltersPagesWithContext(ctx aws.Context, input *DescribeMetricFiltersInput, fn func(*DescribeMetricFiltersOutput, bool) bool, opts ...request.Option) error
    func (c *CloudWatchLogs) DescribeMetricFiltersRequest(input *DescribeMetricFiltersInput) (req *request.Request, output *DescribeMetricFiltersOutput)
    func (c *CloudWatchLogs) DescribeMetricFiltersWithContext(ctx aws.Context, input *DescribeMetricFiltersInput, opts ...request.Option) (*DescribeMetricFiltersOutput, error)
    func (c *CloudWatchLogs) DescribeSubscriptionFilters(input *DescribeSubscriptionFiltersInput) (*DescribeSubscriptionFiltersOutput, error)
    func (c *CloudWatchLogs) DescribeSubscriptionFiltersPages(input *DescribeSubscriptionFiltersInput, fn func(*DescribeSubscriptionFiltersOutput, bool) bool) error
    func (c *CloudWatchLogs) DescribeSubscriptionFiltersPagesWithContext(ctx aws.Context, input *DescribeSubscriptionFiltersInput, fn func(*DescribeSubscriptionFiltersOutput, bool) bool, opts ...request.Option) error
    func (c *CloudWatchLogs) DescribeSubscriptionFiltersRequest(input *DescribeSubscriptionFiltersInput) (req *request.Request, output *DescribeSubscriptionFiltersOutput)
    func (c *CloudWatchLogs) DescribeSubscriptionFiltersWithContext(ctx aws.Context, input *DescribeSubscriptionFiltersInput, opts ...request.Option) (*DescribeSubscriptionFiltersOutput, error)
    func (c *CloudWatchLogs) FilterLogEvents(input *FilterLogEventsInput) (*FilterLogEventsOutput, error)
    func (c *CloudWatchLogs) FilterLogEventsPages(input *FilterLogEventsInput, fn func(*FilterLogEventsOutput, bool) bool) error
    func (c *CloudWatchLogs) FilterLogEventsPagesWithContext(ctx aws.Context, input *FilterLogEventsInput, fn func(*FilterLogEventsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudWatchLogs) FilterLogEventsRequest(input *FilterLogEventsInput) (req *request.Request, output *FilterLogEventsOutput)
    func (c *CloudWatchLogs) FilterLogEventsWithContext(ctx aws.Context, input *FilterLogEventsInput, opts ...request.Option) (*FilterLogEventsOutput, error)
    func (c *CloudWatchLogs) GetLogEvents(input *GetLogEventsInput) (*GetLogEventsOutput, error)
    func (c *CloudWatchLogs) GetLogEventsPages(input *GetLogEventsInput, fn func(*GetLogEventsOutput, bool) bool) error
    func (c *CloudWatchLogs) GetLogEventsPagesWithContext(ctx aws.Context, input *GetLogEventsInput, fn func(*GetLogEventsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudWatchLogs) GetLogEventsRequest(input *GetLogEventsInput) (req *request.Request, output *GetLogEventsOutput)
    func (c *CloudWatchLogs) GetLogEventsWithContext(ctx aws.Context, input *GetLogEventsInput, opts ...request.Option) (*GetLogEventsOutput, error)
    func (c *CloudWatchLogs) ListTagsLogGroup(input *ListTagsLogGroupInput) (*ListTagsLogGroupOutput, error)
    func (c *CloudWatchLogs) ListTagsLogGroupRequest(input *ListTagsLogGroupInput) (req *request.Request, output *ListTagsLogGroupOutput)
    func (c *CloudWatchLogs) ListTagsLogGroupWithContext(ctx aws.Context, input *ListTagsLogGroupInput, opts ...request.Option) (*ListTagsLogGroupOutput, error)
    func (c *CloudWatchLogs) PutDestination(input *PutDestinationInput) (*PutDestinationOutput, error)
    func (c *CloudWatchLogs) PutDestinationPolicy(input *PutDestinationPolicyInput) (*PutDestinationPolicyOutput, error)
    func (c *CloudWatchLogs) PutDestinationPolicyRequest(input *PutDestinationPolicyInput) (req *request.Request, output *PutDestinationPolicyOutput)
    func (c *CloudWatchLogs) PutDestinationPolicyWithContext(ctx aws.Context, input *PutDestinationPolicyInput, opts ...request.Option) (*PutDestinationPolicyOutput, error)
    func (c *CloudWatchLogs) PutDestinationRequest(input *PutDestinationInput) (req *request.Request, output *PutDestinationOutput)
    func (c *CloudWatchLogs) PutDestinationWithContext(ctx aws.Context, input *PutDestinationInput, opts ...request.Option) (*PutDestinationOutput, error)
    func (c *CloudWatchLogs) PutLogEvents(input *PutLogEventsInput) (*PutLogEventsOutput, error)
    func (c *CloudWatchLogs) PutLogEventsRequest(input *PutLogEventsInput) (req *request.Request, output *PutLogEventsOutput)
    func (c *CloudWatchLogs) PutLogEventsWithContext(ctx aws.Context, input *PutLogEventsInput, opts ...request.Option) (*PutLogEventsOutput, error)
    func (c *CloudWatchLogs) PutMetricFilter(input *PutMetricFilterInput) (*PutMetricFilterOutput, error)
    func (c *CloudWatchLogs) PutMetricFilterRequest(input *PutMetricFilterInput) (req *request.Request, output *PutMetricFilterOutput)
    func (c *CloudWatchLogs) PutMetricFilterWithContext(ctx aws.Context, input *PutMetricFilterInput, opts ...request.Option) (*PutMetricFilterOutput, error)
    func (c *CloudWatchLogs) PutRetentionPolicy(input *PutRetentionPolicyInput) (*PutRetentionPolicyOutput, error)
    func (c *CloudWatchLogs) PutRetentionPolicyRequest(input *PutRetentionPolicyInput) (req *request.Request, output *PutRetentionPolicyOutput)
    func (c *CloudWatchLogs) PutRetentionPolicyWithContext(ctx aws.Context, input *PutRetentionPolicyInput, opts ...request.Option) (*PutRetentionPolicyOutput, error)
    func (c *CloudWatchLogs) PutSubscriptionFilter(input *PutSubscriptionFilterInput) (*PutSubscriptionFilterOutput, error)
    func (c *CloudWatchLogs) PutSubscriptionFilterRequest(input *PutSubscriptionFilterInput) (req *request.Request, output *PutSubscriptionFilterOutput)
    func (c *CloudWatchLogs) PutSubscriptionFilterWithContext(ctx aws.Context, input *PutSubscriptionFilterInput, opts ...request.Option) (*PutSubscriptionFilterOutput, error)
    func (c *CloudWatchLogs) TagLogGroup(input *TagLogGroupInput) (*TagLogGroupOutput, error)
    func (c *CloudWatchLogs) TagLogGroupRequest(input *TagLogGroupInput) (req *request.Request, output *TagLogGroupOutput)
    func (c *CloudWatchLogs) TagLogGroupWithContext(ctx aws.Context, input *TagLogGroupInput, opts ...request.Option) (*TagLogGroupOutput, error)
    func (c *CloudWatchLogs) TestMetricFilter(input *TestMetricFilterInput) (*TestMetricFilterOutput, error)
    func (c *CloudWatchLogs) TestMetricFilterRequest(input *TestMetricFilterInput) (req *request.Request, output *TestMetricFilterOutput)
    func (c *CloudWatchLogs) TestMetricFilterWithContext(ctx aws.Context, input *TestMetricFilterInput, opts ...request.Option) (*TestMetricFilterOutput, error)
    func (c *CloudWatchLogs) UntagLogGroup(input *UntagLogGroupInput) (*UntagLogGroupOutput, error)
    func (c *CloudWatchLogs) UntagLogGroupRequest(input *UntagLogGroupInput) (req *request.Request, output *UntagLogGroupOutput)
    func (c *CloudWatchLogs) UntagLogGroupWithContext(ctx aws.Context, input *UntagLogGroupInput, opts ...request.Option) (*UntagLogGroupOutput, error)
type CreateExportTaskInput
    func (s CreateExportTaskInput) GoString() string
    func (s *CreateExportTaskInput) SetDestination(v string) *CreateExportTaskInput
    func (s *CreateExportTaskInput) SetDestinationPrefix(v string) *CreateExportTaskInput
    func (s *CreateExportTaskInput) SetFrom(v int64) *CreateExportTaskInput
    func (s *CreateExportTaskInput) SetLogGroupName(v string) *CreateExportTaskInput
    func (s *CreateExportTaskInput) SetLogStreamNamePrefix(v string) *CreateExportTaskInput
    func (s *CreateExportTaskInput) SetTaskName(v string) *CreateExportTaskInput
    func (s *CreateExportTaskInput) SetTo(v int64) *CreateExportTaskInput
    func (s CreateExportTaskInput) String() string
    func (s *CreateExportTaskInput) Validate() error
type CreateExportTaskOutput
    func (s CreateExportTaskOutput) GoString() string
    func (s *CreateExportTaskOutput) SetTaskId(v string) *CreateExportTaskOutput
    func (s CreateExportTaskOutput) String() string
type CreateLogGroupInput
    func (s CreateLogGroupInput) GoString() string
    func (s *CreateLogGroupInput) SetLogGroupName(v string) *CreateLogGroupInput
    func (s *CreateLogGroupInput) SetTags(v map[string]*string) *CreateLogGroupInput
    func (s CreateLogGroupInput) String() string
    func (s *CreateLogGroupInput) Validate() error
type CreateLogGroupOutput
    func (s CreateLogGroupOutput) GoString() string
    func (s CreateLogGroupOutput) String() string
type CreateLogStreamInput
    func (s CreateLogStreamInput) GoString() string
    func (s *CreateLogStreamInput) SetLogGroupName(v string) *CreateLogStreamInput
    func (s *CreateLogStreamInput) SetLogStreamName(v string) *CreateLogStreamInput
    func (s CreateLogStreamInput) String() string
    func (s *CreateLogStreamInput) Validate() error
type CreateLogStreamOutput
    func (s CreateLogStreamOutput) GoString() string
    func (s CreateLogStreamOutput) String() string
type DeleteDestinationInput
    func (s DeleteDestinationInput) GoString() string
    func (s *DeleteDestinationInput) SetDestinationName(v string) *DeleteDestinationInput
    func (s DeleteDestinationInput) String() string
    func (s *DeleteDestinationInput) Validate() error
type DeleteDestinationOutput
    func (s DeleteDestinationOutput) GoString() string
    func (s DeleteDestinationOutput) String() string
type DeleteLogGroupInput
    func (s DeleteLogGroupInput) GoString() string
    func (s *DeleteLogGroupInput) SetLogGroupName(v string) *DeleteLogGroupInput
    func (s DeleteLogGroupInput) String() string
    func (s *DeleteLogGroupInput) Validate() error
type DeleteLogGroupOutput
    func (s DeleteLogGroupOutput) GoString() string
    func (s DeleteLogGroupOutput) String() string
type DeleteLogStreamInput
    func (s DeleteLogStreamInput) GoString() string
    func (s *DeleteLogStreamInput) SetLogGroupName(v string) *DeleteLogStreamInput
    func (s *DeleteLogStreamInput) SetLogStreamName(v string) *DeleteLogStreamInput
    func (s DeleteLogStreamInput) String() string
    func (s *DeleteLogStreamInput) Validate() error
type DeleteLogStreamOutput
    func (s DeleteLogStreamOutput) GoString() string
    func (s DeleteLogStreamOutput) String() string
type DeleteMetricFilterInput
    func (s DeleteMetricFilterInput) GoString() string
    func (s *DeleteMetricFilterInput) SetFilterName(v string) *DeleteMetricFilterInput
    func (s *DeleteMetricFilterInput) SetLogGroupName(v string) *DeleteMetricFilterInput
    func (s DeleteMetricFilterInput) String() string
    func (s *DeleteMetricFilterInput) Validate() error
type DeleteMetricFilterOutput
    func (s DeleteMetricFilterOutput) GoString() string
    func (s DeleteMetricFilterOutput) String() string
type DeleteRetentionPolicyInput
    func (s DeleteRetentionPolicyInput) GoString() string
    func (s *DeleteRetentionPolicyInput) SetLogGroupName(v string) *DeleteRetentionPolicyInput
    func (s DeleteRetentionPolicyInput) String() string
    func (s *DeleteRetentionPolicyInput) Validate() error
type DeleteRetentionPolicyOutput
    func (s DeleteRetentionPolicyOutput) GoString() string
    func (s DeleteRetentionPolicyOutput) String() string
type DeleteSubscriptionFilterInput
    func (s DeleteSubscriptionFilterInput) GoString() string
    func (s *DeleteSubscriptionFilterInput) SetFilterName(v string) *DeleteSubscriptionFilterInput
    func (s *DeleteSubscriptionFilterInput) SetLogGroupName(v string) *DeleteSubscriptionFilterInput
    func (s DeleteSubscriptionFilterInput) String() string
    func (s *DeleteSubscriptionFilterInput) Validate() error
type DeleteSubscriptionFilterOutput
    func (s DeleteSubscriptionFilterOutput) GoString() string
    func (s DeleteSubscriptionFilterOutput) String() string
type DescribeDestinationsInput
    func (s DescribeDestinationsInput) GoString() string
    func (s *DescribeDestinationsInput) SetDestinationNamePrefix(v string) *DescribeDestinationsInput
    func (s *DescribeDestinationsInput) SetLimit(v int64) *DescribeDestinationsInput
    func (s *DescribeDestinationsInput) SetNextToken(v string) *DescribeDestinationsInput
    func (s DescribeDestinationsInput) String() string
    func (s *DescribeDestinationsInput) Validate() error
type DescribeDestinationsOutput
    func (s DescribeDestinationsOutput) GoString() string
    func (s *DescribeDestinationsOutput) SetDestinations(v []*Destination) *DescribeDestinationsOutput
    func (s *DescribeDestinationsOutput) SetNextToken(v string) *DescribeDestinationsOutput
    func (s DescribeDestinationsOutput) String() string
type DescribeExportTasksInput
    func (s DescribeExportTasksInput) GoString() string
    func (s *DescribeExportTasksInput) SetLimit(v int64) *DescribeExportTasksInput
    func (s *DescribeExportTasksInput) SetNextToken(v string) *DescribeExportTasksInput
    func (s *DescribeExportTasksInput) SetStatusCode(v string) *DescribeExportTasksInput
    func (s *DescribeExportTasksInput) SetTaskId(v string) *DescribeExportTasksInput
    func (s DescribeExportTasksInput) String() string
    func (s *DescribeExportTasksInput) Validate() error
type DescribeExportTasksOutput
    func (s DescribeExportTasksOutput) GoString() string
    func (s *DescribeExportTasksOutput) SetExportTasks(v []*ExportTask) *DescribeExportTasksOutput
    func (s *DescribeExportTasksOutput) SetNextToken(v string) *DescribeExportTasksOutput
    func (s DescribeExportTasksOutput) String() string
type DescribeLogGroupsInput
    func (s DescribeLogGroupsInput) GoString() string
    func (s *DescribeLogGroupsInput) SetLimit(v int64) *DescribeLogGroupsInput
    func (s *DescribeLogGroupsInput) SetLogGroupNamePrefix(v string) *DescribeLogGroupsInput
    func (s *DescribeLogGroupsInput) SetNextToken(v string) *DescribeLogGroupsInput
    func (s DescribeLogGroupsInput) String() string
    func (s *DescribeLogGroupsInput) Validate() error
type DescribeLogGroupsOutput
    func (s DescribeLogGroupsOutput) GoString() string
    func (s *DescribeLogGroupsOutput) SetLogGroups(v []*LogGroup) *DescribeLogGroupsOutput
    func (s *DescribeLogGroupsOutput) SetNextToken(v string) *DescribeLogGroupsOutput
    func (s DescribeLogGroupsOutput) String() string
type DescribeLogStreamsInput
    func (s DescribeLogStreamsInput) GoString() string
    func (s *DescribeLogStreamsInput) SetDescending(v bool) *DescribeLogStreamsInput
    func (s *DescribeLogStreamsInput) SetLimit(v int64) *DescribeLogStreamsInput
    func (s *DescribeLogStreamsInput) SetLogGroupName(v string) *DescribeLogStreamsInput
    func (s *DescribeLogStreamsInput) SetLogStreamNamePrefix(v string) *DescribeLogStreamsInput
    func (s *DescribeLogStreamsInput) SetNextToken(v string) *DescribeLogStreamsInput
    func (s *DescribeLogStreamsInput) SetOrderBy(v string) *DescribeLogStreamsInput
    func (s DescribeLogStreamsInput) String() string
    func (s *DescribeLogStreamsInput) Validate() error
type DescribeLogStreamsOutput
    func (s DescribeLogStreamsOutput) GoString() string
    func (s *DescribeLogStreamsOutput) SetLogStreams(v []*LogStream) *DescribeLogStreamsOutput
    func (s *DescribeLogStreamsOutput) SetNextToken(v string) *DescribeLogStreamsOutput
    func (s DescribeLogStreamsOutput) String() string
type DescribeMetricFiltersInput
    func (s DescribeMetricFiltersInput) GoString() string
    func (s *DescribeMetricFiltersInput) SetFilterNamePrefix(v string) *DescribeMetricFiltersInput
    func (s *DescribeMetricFiltersInput) SetLimit(v int64) *DescribeMetricFiltersInput
    func (s *DescribeMetricFiltersInput) SetLogGroupName(v string) *DescribeMetricFiltersInput
    func (s *DescribeMetricFiltersInput) SetMetricName(v string) *DescribeMetricFiltersInput
    func (s *DescribeMetricFiltersInput) SetMetricNamespace(v string) *DescribeMetricFiltersInput
    func (s *DescribeMetricFiltersInput) SetNextToken(v string) *DescribeMetricFiltersInput
    func (s DescribeMetricFiltersInput) String() string
    func (s *DescribeMetricFiltersInput) Validate() error
type DescribeMetricFiltersOutput
    func (s DescribeMetricFiltersOutput) GoString() string
    func (s *DescribeMetricFiltersOutput) SetMetricFilters(v []*MetricFilter) *DescribeMetricFiltersOutput
    func (s *DescribeMetricFiltersOutput) SetNextToken(v string) *DescribeMetricFiltersOutput
    func (s DescribeMetricFiltersOutput) String() string
type DescribeSubscriptionFiltersInput
    func (s DescribeSubscriptionFiltersInput) GoString() string
    func (s *DescribeSubscriptionFiltersInput) SetFilterNamePrefix(v string) *DescribeSubscriptionFiltersInput
    func (s *DescribeSubscriptionFiltersInput) SetLimit(v int64) *DescribeSubscriptionFiltersInput
    func (s *DescribeSubscriptionFiltersInput) SetLogGroupName(v string) *DescribeSubscriptionFiltersInput
    func (s *DescribeSubscriptionFiltersInput) SetNextToken(v string) *DescribeSubscriptionFiltersInput
    func (s DescribeSubscriptionFiltersInput) String() string
    func (s *DescribeSubscriptionFiltersInput) Validate() error
type DescribeSubscriptionFiltersOutput
    func (s DescribeSubscriptionFiltersOutput) GoString() string
    func (s *DescribeSubscriptionFiltersOutput) SetNextToken(v string) *DescribeSubscriptionFiltersOutput
    func (s *DescribeSubscriptionFiltersOutput) SetSubscriptionFilters(v []*SubscriptionFilter) *DescribeSubscriptionFiltersOutput
    func (s DescribeSubscriptionFiltersOutput) String() string
type Destination
    func (s Destination) GoString() string
    func (s *Destination) SetAccessPolicy(v string) *Destination
    func (s *Destination) SetArn(v string) *Destination
    func (s *Destination) SetCreationTime(v int64) *Destination
    func (s *Destination) SetDestinationName(v string) *Destination
    func (s *Destination) SetRoleArn(v string) *Destination
    func (s *Destination) SetTargetArn(v string) *Destination
    func (s Destination) String() string
type ExportTask
    func (s ExportTask) GoString() string
    func (s *ExportTask) SetDestination(v string) *ExportTask
    func (s *ExportTask) SetDestinationPrefix(v string) *ExportTask
    func (s *ExportTask) SetExecutionInfo(v *ExportTaskExecutionInfo) *ExportTask
    func (s *ExportTask) SetFrom(v int64) *ExportTask
    func (s *ExportTask) SetLogGroupName(v string) *ExportTask
    func (s *ExportTask) SetStatus(v *ExportTaskStatus) *ExportTask
    func (s *ExportTask) SetTaskId(v string) *ExportTask
    func (s *ExportTask) SetTaskName(v string) *ExportTask
    func (s *ExportTask) SetTo(v int64) *ExportTask
    func (s ExportTask) String() string
type ExportTaskExecutionInfo
    func (s ExportTaskExecutionInfo) GoString() string
    func (s *ExportTaskExecutionInfo) SetCompletionTime(v int64) *ExportTaskExecutionInfo
    func (s *ExportTaskExecutionInfo) SetCreationTime(v int64) *ExportTaskExecutionInfo
    func (s ExportTaskExecutionInfo) String() string
type ExportTaskStatus
    func (s ExportTaskStatus) GoString() string
    func (s *ExportTaskStatus) SetCode(v string) *ExportTaskStatus
    func (s *ExportTaskStatus) SetMessage(v string) *ExportTaskStatus
    func (s ExportTaskStatus) String() string
type FilterLogEventsInput
    func (s FilterLogEventsInput) GoString() string
    func (s *FilterLogEventsInput) SetEndTime(v int64) *FilterLogEventsInput
    func (s *FilterLogEventsInput) SetFilterPattern(v string) *FilterLogEventsInput
    func (s *FilterLogEventsInput) SetInterleaved(v bool) *FilterLogEventsInput
    func (s *FilterLogEventsInput) SetLimit(v int64) *FilterLogEventsInput
    func (s *FilterLogEventsInput) SetLogGroupName(v string) *FilterLogEventsInput
    func (s *FilterLogEventsInput) SetLogStreamNames(v []*string) *FilterLogEventsInput
    func (s *FilterLogEventsInput) SetNextToken(v string) *FilterLogEventsInput
    func (s *FilterLogEventsInput) SetStartTime(v int64) *FilterLogEventsInput
    func (s FilterLogEventsInput) String() string
    func (s *FilterLogEventsInput) Validate() error
type FilterLogEventsOutput
    func (s FilterLogEventsOutput) GoString() string
    func (s *FilterLogEventsOutput) SetEvents(v []*FilteredLogEvent) *FilterLogEventsOutput
    func (s *FilterLogEventsOutput) SetNextToken(v string) *FilterLogEventsOutput
    func (s *FilterLogEventsOutput) SetSearchedLogStreams(v []*SearchedLogStream) *FilterLogEventsOutput
    func (s FilterLogEventsOutput) String() string
type FilteredLogEvent
    func (s FilteredLogEvent) GoString() string
    func (s *FilteredLogEvent) SetEventId(v string) *FilteredLogEvent
    func (s *FilteredLogEvent) SetIngestionTime(v int64) *FilteredLogEvent
    func (s *FilteredLogEvent) SetLogStreamName(v string) *FilteredLogEvent
    func (s *FilteredLogEvent) SetMessage(v string) *FilteredLogEvent
    func (s *FilteredLogEvent) SetTimestamp(v int64) *FilteredLogEvent
    func (s FilteredLogEvent) String() string
type GetLogEventsInput
    func (s GetLogEventsInput) GoString() string
    func (s *GetLogEventsInput) SetEndTime(v int64) *GetLogEventsInput
    func (s *GetLogEventsInput) SetLimit(v int64) *GetLogEventsInput
    func (s *GetLogEventsInput) SetLogGroupName(v string) *GetLogEventsInput
    func (s *GetLogEventsInput) SetLogStreamName(v string) *GetLogEventsInput
    func (s *GetLogEventsInput) SetNextToken(v string) *GetLogEventsInput
    func (s *GetLogEventsInput) SetStartFromHead(v bool) *GetLogEventsInput
    func (s *GetLogEventsInput) SetStartTime(v int64) *GetLogEventsInput
    func (s GetLogEventsInput) String() string
    func (s *GetLogEventsInput) Validate() error
type GetLogEventsOutput
    func (s GetLogEventsOutput) GoString() string
    func (s *GetLogEventsOutput) SetEvents(v []*OutputLogEvent) *GetLogEventsOutput
    func (s *GetLogEventsOutput) SetNextBackwardToken(v string) *GetLogEventsOutput
    func (s *GetLogEventsOutput) SetNextForwardToken(v string) *GetLogEventsOutput
    func (s GetLogEventsOutput) String() string
type InputLogEvent
    func (s InputLogEvent) GoString() string
    func (s *InputLogEvent) SetMessage(v string) *InputLogEvent
    func (s *InputLogEvent) SetTimestamp(v int64) *InputLogEvent
    func (s InputLogEvent) String() string
    func (s *InputLogEvent) Validate() error
type ListTagsLogGroupInput
    func (s ListTagsLogGroupInput) GoString() string
    func (s *ListTagsLogGroupInput) SetLogGroupName(v string) *ListTagsLogGroupInput
    func (s ListTagsLogGroupInput) String() string
    func (s *ListTagsLogGroupInput) Validate() error
type ListTagsLogGroupOutput
    func (s ListTagsLogGroupOutput) GoString() string
    func (s *ListTagsLogGroupOutput) SetTags(v map[string]*string) *ListTagsLogGroupOutput
    func (s ListTagsLogGroupOutput) String() string
type LogGroup
    func (s LogGroup) GoString() string
    func (s *LogGroup) SetArn(v string) *LogGroup
    func (s *LogGroup) SetCreationTime(v int64) *LogGroup
    func (s *LogGroup) SetLogGroupName(v string) *LogGroup
    func (s *LogGroup) SetMetricFilterCount(v int64) *LogGroup
    func (s *LogGroup) SetRetentionInDays(v int64) *LogGroup
    func (s *LogGroup) SetStoredBytes(v int64) *LogGroup
    func (s LogGroup) String() string
type LogStream
    func (s LogStream) GoString() string
    func (s *LogStream) SetArn(v string) *LogStream
    func (s *LogStream) SetCreationTime(v int64) *LogStream
    func (s *LogStream) SetFirstEventTimestamp(v int64) *LogStream
    func (s *LogStream) SetLastEventTimestamp(v int64) *LogStream
    func (s *LogStream) SetLastIngestionTime(v int64) *LogStream
    func (s *LogStream) SetLogStreamName(v string) *LogStream
    func (s *LogStream) SetStoredBytes(v int64) *LogStream
    func (s *LogStream) SetUploadSequenceToken(v string) *LogStream
    func (s LogStream) String() string
type MetricFilter
    func (s MetricFilter) GoString() string
    func (s *MetricFilter) SetCreationTime(v int64) *MetricFilter
    func (s *MetricFilter) SetFilterName(v string) *MetricFilter
    func (s *MetricFilter) SetFilterPattern(v string) *MetricFilter
    func (s *MetricFilter) SetLogGroupName(v string) *MetricFilter
    func (s *MetricFilter) SetMetricTransformations(v []*MetricTransformation) *MetricFilter
    func (s MetricFilter) String() string
type MetricFilterMatchRecord
    func (s MetricFilterMatchRecord) GoString() string
    func (s *MetricFilterMatchRecord) SetEventMessage(v string) *MetricFilterMatchRecord
    func (s *MetricFilterMatchRecord) SetEventNumber(v int64) *MetricFilterMatchRecord
    func (s *MetricFilterMatchRecord) SetExtractedValues(v map[string]*string) *MetricFilterMatchRecord
    func (s MetricFilterMatchRecord) String() string
type MetricTransformation
    func (s MetricTransformation) GoString() string
    func (s *MetricTransformation) SetDefaultValue(v float64) *MetricTransformation
    func (s *MetricTransformation) SetMetricName(v string) *MetricTransformation
    func (s *MetricTransformation) SetMetricNamespace(v string) *MetricTransformation
    func (s *MetricTransformation) SetMetricValue(v string) *MetricTransformation
    func (s MetricTransformation) String() string
    func (s *MetricTransformation) Validate() error
type OutputLogEvent
    func (s OutputLogEvent) GoString() string
    func (s *OutputLogEvent) SetIngestionTime(v int64) *OutputLogEvent
    func (s *OutputLogEvent) SetMessage(v string) *OutputLogEvent
    func (s *OutputLogEvent) SetTimestamp(v int64) *OutputLogEvent
    func (s OutputLogEvent) String() string
type PutDestinationInput
    func (s PutDestinationInput) GoString() string
    func (s *PutDestinationInput) SetDestinationName(v string) *PutDestinationInput
    func (s *PutDestinationInput) SetRoleArn(v string) *PutDestinationInput
    func (s *PutDestinationInput) SetTargetArn(v string) *PutDestinationInput
    func (s PutDestinationInput) String() string
    func (s *PutDestinationInput) Validate() error
type PutDestinationOutput
    func (s PutDestinationOutput) GoString() string
    func (s *PutDestinationOutput) SetDestination(v *Destination) *PutDestinationOutput
    func (s PutDestinationOutput) String() string
type PutDestinationPolicyInput
    func (s PutDestinationPolicyInput) GoString() string
    func (s *PutDestinationPolicyInput) SetAccessPolicy(v string) *PutDestinationPolicyInput
    func (s *PutDestinationPolicyInput) SetDestinationName(v string) *PutDestinationPolicyInput
    func (s PutDestinationPolicyInput) String() string
    func (s *PutDestinationPolicyInput) Validate() error
type PutDestinationPolicyOutput
    func (s PutDestinationPolicyOutput) GoString() string
    func (s PutDestinationPolicyOutput) String() string
type PutLogEventsInput
    func (s PutLogEventsInput) GoString() string
    func (s *PutLogEventsInput) SetLogEvents(v []*InputLogEvent) *PutLogEventsInput
    func (s *PutLogEventsInput) SetLogGroupName(v string) *PutLogEventsInput
    func (s *PutLogEventsInput) SetLogStreamName(v string) *PutLogEventsInput
    func (s *PutLogEventsInput) SetSequenceToken(v string) *PutLogEventsInput
    func (s PutLogEventsInput) String() string
    func (s *PutLogEventsInput) Validate() error
type PutLogEventsOutput
    func (s PutLogEventsOutput) GoString() string
    func (s *PutLogEventsOutput) SetNextSequenceToken(v string) *PutLogEventsOutput
    func (s *PutLogEventsOutput) SetRejectedLogEventsInfo(v *RejectedLogEventsInfo) *PutLogEventsOutput
    func (s PutLogEventsOutput) String() string
type PutMetricFilterInput
    func (s PutMetricFilterInput) GoString() string
    func (s *PutMetricFilterInput) SetFilterName(v string) *PutMetricFilterInput
    func (s *PutMetricFilterInput) SetFilterPattern(v string) *PutMetricFilterInput
    func (s *PutMetricFilterInput) SetLogGroupName(v string) *PutMetricFilterInput
    func (s *PutMetricFilterInput) SetMetricTransformations(v []*MetricTransformation) *PutMetricFilterInput
    func (s PutMetricFilterInput) String() string
    func (s *PutMetricFilterInput) Validate() error
type PutMetricFilterOutput
    func (s PutMetricFilterOutput) GoString() string
    func (s PutMetricFilterOutput) String() string
type PutRetentionPolicyInput
    func (s PutRetentionPolicyInput) GoString() string
    func (s *PutRetentionPolicyInput) SetLogGroupName(v string) *PutRetentionPolicyInput
    func (s *PutRetentionPolicyInput) SetRetentionInDays(v int64) *PutRetentionPolicyInput
    func (s PutRetentionPolicyInput) String() string
    func (s *PutRetentionPolicyInput) Validate() error
type PutRetentionPolicyOutput
    func (s PutRetentionPolicyOutput) GoString() string
    func (s PutRetentionPolicyOutput) String() string
type PutSubscriptionFilterInput
    func (s PutSubscriptionFilterInput) GoString() string
    func (s *PutSubscriptionFilterInput) SetDestinationArn(v string) *PutSubscriptionFilterInput
    func (s *PutSubscriptionFilterInput) SetDistribution(v string) *PutSubscriptionFilterInput
    func (s *PutSubscriptionFilterInput) SetFilterName(v string) *PutSubscriptionFilterInput
    func (s *PutSubscriptionFilterInput) SetFilterPattern(v string) *PutSubscriptionFilterInput
    func (s *PutSubscriptionFilterInput) SetLogGroupName(v string) *PutSubscriptionFilterInput
    func (s *PutSubscriptionFilterInput) SetRoleArn(v string) *PutSubscriptionFilterInput
    func (s PutSubscriptionFilterInput) String() string
    func (s *PutSubscriptionFilterInput) Validate() error
type PutSubscriptionFilterOutput
    func (s PutSubscriptionFilterOutput) GoString() string
    func (s PutSubscriptionFilterOutput) String() string
type RejectedLogEventsInfo
    func (s RejectedLogEventsInfo) GoString() string
    func (s *RejectedLogEventsInfo) SetExpiredLogEventEndIndex(v int64) *RejectedLogEventsInfo
    func (s *RejectedLogEventsInfo) SetTooNewLogEventStartIndex(v int64) *RejectedLogEventsInfo
    func (s *RejectedLogEventsInfo) SetTooOldLogEventEndIndex(v int64) *RejectedLogEventsInfo
    func (s RejectedLogEventsInfo) String() string
type SearchedLogStream
    func (s SearchedLogStream) GoString() string
    func (s *SearchedLogStream) SetLogStreamName(v string) *SearchedLogStream
    func (s *SearchedLogStream) SetSearchedCompletely(v bool) *SearchedLogStream
    func (s SearchedLogStream) String() string
type SubscriptionFilter
    func (s SubscriptionFilter) GoString() string
    func (s *SubscriptionFilter) SetCreationTime(v int64) *SubscriptionFilter
    func (s *SubscriptionFilter) SetDestinationArn(v string) *SubscriptionFilter
    func (s *SubscriptionFilter) SetDistribution(v string) *SubscriptionFilter
    func (s *SubscriptionFilter) SetFilterName(v string) *SubscriptionFilter
    func (s *SubscriptionFilter) SetFilterPattern(v string) *SubscriptionFilter
    func (s *SubscriptionFilter) SetLogGroupName(v string) *SubscriptionFilter
    func (s *SubscriptionFilter) SetRoleArn(v string) *SubscriptionFilter
    func (s SubscriptionFilter) String() string
type TagLogGroupInput
    func (s TagLogGroupInput) GoString() string
    func (s *TagLogGroupInput) SetLogGroupName(v string) *TagLogGroupInput
    func (s *TagLogGroupInput) SetTags(v map[string]*string) *TagLogGroupInput
    func (s TagLogGroupInput) String() string
    func (s *TagLogGroupInput) Validate() error
type TagLogGroupOutput
    func (s TagLogGroupOutput) GoString() string
    func (s TagLogGroupOutput) String() string
type TestMetricFilterInput
    func (s TestMetricFilterInput) GoString() string
    func (s *TestMetricFilterInput) SetFilterPattern(v string) *TestMetricFilterInput
    func (s *TestMetricFilterInput) SetLogEventMessages(v []*string) *TestMetricFilterInput
    func (s TestMetricFilterInput) String() string
    func (s *TestMetricFilterInput) Validate() error
type TestMetricFilterOutput
    func (s TestMetricFilterOutput) GoString() string
    func (s *TestMetricFilterOutput) SetMatches(v []*MetricFilterMatchRecord) *TestMetricFilterOutput
    func (s TestMetricFilterOutput) String() string
type UntagLogGroupInput
    func (s UntagLogGroupInput) GoString() string
    func (s *UntagLogGroupInput) SetLogGroupName(v string) *UntagLogGroupInput
    func (s *UntagLogGroupInput) SetTags(v []*string) *UntagLogGroupInput
    func (s UntagLogGroupInput) String() string
    func (s *UntagLogGroupInput) Validate() error
type UntagLogGroupOutput
    func (s UntagLogGroupOutput) GoString() string
    func (s UntagLogGroupOutput) String() string

Package files

api.go doc.go errors.go service.go

Constants

const (
    // DistributionRandom is a Distribution enum value
    DistributionRandom = "Random"

    // DistributionByLogStream is a Distribution enum value
    DistributionByLogStream = "ByLogStream"
)
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"
)
const (
    // OrderByLogStreamName is a OrderBy enum value
    OrderByLogStreamName = "LogStreamName"

    // OrderByLastEventTime is a OrderBy enum value
    OrderByLastEventTime = "LastEventTime"
)
const (

    // ErrCodeDataAlreadyAcceptedException for service response error code
    // "DataAlreadyAcceptedException".
    //
    // The event was already logged.
    ErrCodeDataAlreadyAcceptedException = "DataAlreadyAcceptedException"

    // ErrCodeInvalidOperationException for service response error code
    // "InvalidOperationException".
    //
    // The operation is not valid on the specified resource.
    ErrCodeInvalidOperationException = "InvalidOperationException"

    // ErrCodeInvalidParameterException for service response error code
    // "InvalidParameterException".
    //
    // A parameter is specified incorrectly.
    ErrCodeInvalidParameterException = "InvalidParameterException"

    // ErrCodeInvalidSequenceTokenException for service response error code
    // "InvalidSequenceTokenException".
    //
    // The sequence token is not valid.
    ErrCodeInvalidSequenceTokenException = "InvalidSequenceTokenException"

    // ErrCodeLimitExceededException for service response error code
    // "LimitExceededException".
    //
    // You have reached the maximum number of resources that can be created.
    ErrCodeLimitExceededException = "LimitExceededException"

    // ErrCodeOperationAbortedException for service response error code
    // "OperationAbortedException".
    //
    // Multiple requests to update the same resource were in conflict.
    ErrCodeOperationAbortedException = "OperationAbortedException"

    // ErrCodeResourceAlreadyExistsException for service response error code
    // "ResourceAlreadyExistsException".
    //
    // The specified resource already exists.
    ErrCodeResourceAlreadyExistsException = "ResourceAlreadyExistsException"

    // ErrCodeResourceNotFoundException for service response error code
    // "ResourceNotFoundException".
    //
    // The specified resource does not exist.
    ErrCodeResourceNotFoundException = "ResourceNotFoundException"

    // ErrCodeServiceUnavailableException for service response error code
    // "ServiceUnavailableException".
    //
    // The service cannot complete the request.
    ErrCodeServiceUnavailableException = "ServiceUnavailableException"
)

Service information constants

const (
    ServiceName = "logs"      // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata.
)

type CancelExportTaskInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CancelExportTaskRequest

type CancelExportTaskInput struct {

    // The ID of the export task.
    //
    // TaskId is a required field
    TaskId *string `locationName:"taskId" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CancelExportTaskInput) GoString

func (s CancelExportTaskInput) GoString() string

GoString returns the string representation

func (*CancelExportTaskInput) SetTaskId

func (s *CancelExportTaskInput) SetTaskId(v string) *CancelExportTaskInput

SetTaskId sets the TaskId field's value.

func (CancelExportTaskInput) String

func (s CancelExportTaskInput) String() string

String returns the string representation

func (*CancelExportTaskInput) Validate

func (s *CancelExportTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelExportTaskOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CancelExportTaskOutput

type CancelExportTaskOutput struct {
    // contains filtered or unexported fields
}

func (CancelExportTaskOutput) GoString

func (s CancelExportTaskOutput) GoString() string

GoString returns the string representation

func (CancelExportTaskOutput) String

func (s CancelExportTaskOutput) String() string

String returns the string representation

type CloudWatchLogs

CloudWatchLogs provides the API operation methods for making requests to Amazon CloudWatch Logs. See this package's package overview docs for details on the service.

CloudWatchLogs methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

type CloudWatchLogs struct {
    *client.Client
}

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *CloudWatchLogs

New creates a new instance of the CloudWatchLogs client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a CloudWatchLogs client from just a session.
svc := cloudwatchlogs.New(mySession)

// Create a CloudWatchLogs client with additional configuration
svc := cloudwatchlogs.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*CloudWatchLogs) CancelExportTask

func (c *CloudWatchLogs) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeInvalidOperationException "InvalidOperationException"
The operation is not valid on the specified resource.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CancelExportTask

func (*CloudWatchLogs) CancelExportTaskRequest

func (c *CloudWatchLogs) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput)

CancelExportTaskRequest generates a "aws/request.Request" representing the client's request for the CancelExportTask operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelExportTask for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelExportTask method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CancelExportTask

func (*CloudWatchLogs) CancelExportTaskWithContext

func (c *CloudWatchLogs) CancelExportTaskWithContext(ctx aws.Context, input *CancelExportTaskInput, opts ...request.Option) (*CancelExportTaskOutput, error)

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 (*CloudWatchLogs) CreateExportTask

func (c *CloudWatchLogs) CreateExportTask(input *CreateExportTaskInput) (*CreateExportTaskOutput, error)

CreateExportTask API operation for Amazon CloudWatch Logs.

Creates an export task, which allows you to efficiently export data from a log group to an Amazon S3 bucket.

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 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.

You can export logs from multiple log groups or multiple time ranges to the same S3 bucket. To separate out log data for each export task, you can specify a prefix that will be used as the Amazon S3 key prefix for all exported objects.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeLimitExceededException "LimitExceededException"
You have reached the maximum number of resources that can be created.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeResourceAlreadyExistsException "ResourceAlreadyExistsException"
The specified resource already exists.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateExportTask

func (*CloudWatchLogs) CreateExportTaskRequest

func (c *CloudWatchLogs) CreateExportTaskRequest(input *CreateExportTaskInput) (req *request.Request, output *CreateExportTaskOutput)

CreateExportTaskRequest generates a "aws/request.Request" representing the client's request for the CreateExportTask operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateExportTask for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateExportTask method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateExportTask

func (*CloudWatchLogs) CreateExportTaskWithContext

func (c *CloudWatchLogs) CreateExportTaskWithContext(ctx aws.Context, input *CreateExportTaskInput, opts ...request.Option) (*CreateExportTaskOutput, error)

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 (*CloudWatchLogs) CreateLogGroup

func (c *CloudWatchLogs) CreateLogGroup(input *CreateLogGroupInput) (*CreateLogGroupOutput, error)

CreateLogGroup API operation for Amazon CloudWatch Logs.

Creates a log group with the specified name.

You can create up to 5000 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 AWS 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), and '.' (period).

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceAlreadyExistsException "ResourceAlreadyExistsException"
The specified resource already exists.

* ErrCodeLimitExceededException "LimitExceededException"
You have reached the maximum number of resources that can be created.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogGroup

func (*CloudWatchLogs) CreateLogGroupRequest

func (c *CloudWatchLogs) CreateLogGroupRequest(input *CreateLogGroupInput) (req *request.Request, output *CreateLogGroupOutput)

CreateLogGroupRequest generates a "aws/request.Request" representing the client's request for the CreateLogGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateLogGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateLogGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogGroup

func (*CloudWatchLogs) CreateLogGroupWithContext

func (c *CloudWatchLogs) CreateLogGroupWithContext(ctx aws.Context, input *CreateLogGroupInput, opts ...request.Option) (*CreateLogGroupOutput, error)

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 (*CloudWatchLogs) CreateLogStream

func (c *CloudWatchLogs) CreateLogStream(input *CreateLogStreamInput) (*CreateLogStreamOutput, error)

CreateLogStream API operation for Amazon CloudWatch Logs.

Creates a log stream for the specified log group.

There is no limit on the number of log streams that you can create for a log group.

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.

* The ':' (colon) and '*' (asterisk) characters are not allowed.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceAlreadyExistsException "ResourceAlreadyExistsException"
The specified resource already exists.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogStream

func (*CloudWatchLogs) CreateLogStreamRequest

func (c *CloudWatchLogs) CreateLogStreamRequest(input *CreateLogStreamInput) (req *request.Request, output *CreateLogStreamOutput)

CreateLogStreamRequest generates a "aws/request.Request" representing the client's request for the CreateLogStream operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateLogStream for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateLogStream method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogStream

func (*CloudWatchLogs) CreateLogStreamWithContext

func (c *CloudWatchLogs) CreateLogStreamWithContext(ctx aws.Context, input *CreateLogStreamInput, opts ...request.Option) (*CreateLogStreamOutput, error)

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 (*CloudWatchLogs) DeleteDestination

func (c *CloudWatchLogs) DeleteDestination(input *DeleteDestinationInput) (*DeleteDestinationOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDestination

func (*CloudWatchLogs) DeleteDestinationRequest

func (c *CloudWatchLogs) DeleteDestinationRequest(input *DeleteDestinationInput) (req *request.Request, output *DeleteDestinationOutput)

DeleteDestinationRequest generates a "aws/request.Request" representing the client's request for the DeleteDestination operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteDestination for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteDestination method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDestination

func (*CloudWatchLogs) DeleteDestinationWithContext

func (c *CloudWatchLogs) DeleteDestinationWithContext(ctx aws.Context, input *DeleteDestinationInput, opts ...request.Option) (*DeleteDestinationOutput, error)

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 (*CloudWatchLogs) DeleteLogGroup

func (c *CloudWatchLogs) DeleteLogGroup(input *DeleteLogGroupInput) (*DeleteLogGroupOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogGroup

func (*CloudWatchLogs) DeleteLogGroupRequest

func (c *CloudWatchLogs) DeleteLogGroupRequest(input *DeleteLogGroupInput) (req *request.Request, output *DeleteLogGroupOutput)

DeleteLogGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteLogGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteLogGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteLogGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogGroup

func (*CloudWatchLogs) DeleteLogGroupWithContext

func (c *CloudWatchLogs) DeleteLogGroupWithContext(ctx aws.Context, input *DeleteLogGroupInput, opts ...request.Option) (*DeleteLogGroupOutput, error)

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 (*CloudWatchLogs) DeleteLogStream

func (c *CloudWatchLogs) DeleteLogStream(input *DeleteLogStreamInput) (*DeleteLogStreamOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogStream

func (*CloudWatchLogs) DeleteLogStreamRequest

func (c *CloudWatchLogs) DeleteLogStreamRequest(input *DeleteLogStreamInput) (req *request.Request, output *DeleteLogStreamOutput)

DeleteLogStreamRequest generates a "aws/request.Request" representing the client's request for the DeleteLogStream operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteLogStream for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteLogStream method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogStream

func (*CloudWatchLogs) DeleteLogStreamWithContext

func (c *CloudWatchLogs) DeleteLogStreamWithContext(ctx aws.Context, input *DeleteLogStreamInput, opts ...request.Option) (*DeleteLogStreamOutput, error)

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 (*CloudWatchLogs) DeleteMetricFilter

func (c *CloudWatchLogs) DeleteMetricFilter(input *DeleteMetricFilterInput) (*DeleteMetricFilterOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteMetricFilter

func (*CloudWatchLogs) DeleteMetricFilterRequest

func (c *CloudWatchLogs) DeleteMetricFilterRequest(input *DeleteMetricFilterInput) (req *request.Request, output *DeleteMetricFilterOutput)

DeleteMetricFilterRequest generates a "aws/request.Request" representing the client's request for the DeleteMetricFilter operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteMetricFilter for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteMetricFilter method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteMetricFilter

func (*CloudWatchLogs) DeleteMetricFilterWithContext

func (c *CloudWatchLogs) DeleteMetricFilterWithContext(ctx aws.Context, input *DeleteMetricFilterInput, opts ...request.Option) (*DeleteMetricFilterOutput, error)

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 (*CloudWatchLogs) DeleteRetentionPolicy

func (c *CloudWatchLogs) DeleteRetentionPolicy(input *DeleteRetentionPolicyInput) (*DeleteRetentionPolicyOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteRetentionPolicy

func (*CloudWatchLogs) DeleteRetentionPolicyRequest

func (c *CloudWatchLogs) DeleteRetentionPolicyRequest(input *DeleteRetentionPolicyInput) (req *request.Request, output *DeleteRetentionPolicyOutput)

DeleteRetentionPolicyRequest generates a "aws/request.Request" representing the client's request for the DeleteRetentionPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteRetentionPolicy for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteRetentionPolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteRetentionPolicy

func (*CloudWatchLogs) DeleteRetentionPolicyWithContext

func (c *CloudWatchLogs) DeleteRetentionPolicyWithContext(ctx aws.Context, input *DeleteRetentionPolicyInput, opts ...request.Option) (*DeleteRetentionPolicyOutput, error)

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 (*CloudWatchLogs) DeleteSubscriptionFilter

func (c *CloudWatchLogs) DeleteSubscriptionFilter(input *DeleteSubscriptionFilterInput) (*DeleteSubscriptionFilterOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteSubscriptionFilter

func (*CloudWatchLogs) DeleteSubscriptionFilterRequest

func (c *CloudWatchLogs) DeleteSubscriptionFilterRequest(input *DeleteSubscriptionFilterInput) (req *request.Request, output *DeleteSubscriptionFilterOutput)

DeleteSubscriptionFilterRequest generates a "aws/request.Request" representing the client's request for the DeleteSubscriptionFilter operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteSubscriptionFilter for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteSubscriptionFilter method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteSubscriptionFilter

func (*CloudWatchLogs) DeleteSubscriptionFilterWithContext

func (c *CloudWatchLogs) DeleteSubscriptionFilterWithContext(ctx aws.Context, input *DeleteSubscriptionFilterInput, opts ...request.Option) (*DeleteSubscriptionFilterOutput, error)

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 (*CloudWatchLogs) DescribeDestinations

func (c *CloudWatchLogs) DescribeDestinations(input *DescribeDestinationsInput) (*DescribeDestinationsOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeDestinations

func (*CloudWatchLogs) DescribeDestinationsPages

func (c *CloudWatchLogs) DescribeDestinationsPages(input *DescribeDestinationsInput, fn func(*DescribeDestinationsOutput, bool) bool) error

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 *DescribeDestinationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudWatchLogs) DescribeDestinationsPagesWithContext

func (c *CloudWatchLogs) DescribeDestinationsPagesWithContext(ctx aws.Context, input *DescribeDestinationsInput, fn func(*DescribeDestinationsOutput, bool) bool, opts ...request.Option) error

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 (*CloudWatchLogs) DescribeDestinationsRequest

func (c *CloudWatchLogs) DescribeDestinationsRequest(input *DescribeDestinationsInput) (req *request.Request, output *DescribeDestinationsOutput)

DescribeDestinationsRequest generates a "aws/request.Request" representing the client's request for the DescribeDestinations operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeDestinations for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeDestinations method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeDestinations

func (*CloudWatchLogs) DescribeDestinationsWithContext

func (c *CloudWatchLogs) DescribeDestinationsWithContext(ctx aws.Context, input *DescribeDestinationsInput, opts ...request.Option) (*DescribeDestinationsOutput, error)

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 (*CloudWatchLogs) DescribeExportTasks

func (c *CloudWatchLogs) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeExportTasks

func (*CloudWatchLogs) DescribeExportTasksRequest

func (c *CloudWatchLogs) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput)

DescribeExportTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeExportTasks operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeExportTasks for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeExportTasks method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeExportTasks

func (*CloudWatchLogs) DescribeExportTasksWithContext

func (c *CloudWatchLogs) DescribeExportTasksWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.Option) (*DescribeExportTasksOutput, error)

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 (*CloudWatchLogs) DescribeLogGroups

func (c *CloudWatchLogs) DescribeLogGroups(input *DescribeLogGroupsInput) (*DescribeLogGroupsOutput, error)

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.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogGroups

func (*CloudWatchLogs) DescribeLogGroupsPages

func (c *CloudWatchLogs) DescribeLogGroupsPages(input *DescribeLogGroupsInput, fn func(*DescribeLogGroupsOutput, bool) bool) error

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 *DescribeLogGroupsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudWatchLogs) DescribeLogGroupsPagesWithContext

func (c *CloudWatchLogs) DescribeLogGroupsPagesWithContext(ctx aws.Context, input *DescribeLogGroupsInput, fn func(*DescribeLogGroupsOutput, bool) bool, opts ...request.Option) error

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 (*CloudWatchLogs) DescribeLogGroupsRequest

func (c *CloudWatchLogs) DescribeLogGroupsRequest(input *DescribeLogGroupsInput) (req *request.Request, output *DescribeLogGroupsOutput)

DescribeLogGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeLogGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLogGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLogGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogGroups

func (*CloudWatchLogs) DescribeLogGroupsWithContext

func (c *CloudWatchLogs) DescribeLogGroupsWithContext(ctx aws.Context, input *DescribeLogGroupsInput, opts ...request.Option) (*DescribeLogGroupsOutput, error)

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 (*CloudWatchLogs) DescribeLogStreams

func (c *CloudWatchLogs) DescribeLogStreams(input *DescribeLogStreamsInput) (*DescribeLogStreamsOutput, error)

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.

This operation has a limit of five transactions per second, after which transactions are throttled.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogStreams

func (*CloudWatchLogs) DescribeLogStreamsPages

func (c *CloudWatchLogs) DescribeLogStreamsPages(input *DescribeLogStreamsInput, fn func(*DescribeLogStreamsOutput, bool) bool) error

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 *DescribeLogStreamsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudWatchLogs) DescribeLogStreamsPagesWithContext

func (c *CloudWatchLogs) DescribeLogStreamsPagesWithContext(ctx aws.Context, input *DescribeLogStreamsInput, fn func(*DescribeLogStreamsOutput, bool) bool, opts ...request.Option) error

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 (*CloudWatchLogs) DescribeLogStreamsRequest

func (c *CloudWatchLogs) DescribeLogStreamsRequest(input *DescribeLogStreamsInput) (req *request.Request, output *DescribeLogStreamsOutput)

DescribeLogStreamsRequest generates a "aws/request.Request" representing the client's request for the DescribeLogStreams operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLogStreams for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLogStreams method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogStreams

func (*CloudWatchLogs) DescribeLogStreamsWithContext

func (c *CloudWatchLogs) DescribeLogStreamsWithContext(ctx aws.Context, input *DescribeLogStreamsInput, opts ...request.Option) (*DescribeLogStreamsOutput, error)

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 (*CloudWatchLogs) DescribeMetricFilters

func (c *CloudWatchLogs) DescribeMetricFilters(input *DescribeMetricFiltersInput) (*DescribeMetricFiltersOutput, error)

DescribeMetricFilters API operation for Amazon CloudWatch Logs.

Lists the specified metric filters. You can list all the metric filters or filter the results by log name, prefix, metric name, and 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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeMetricFilters

func (*CloudWatchLogs) DescribeMetricFiltersPages

func (c *CloudWatchLogs) DescribeMetricFiltersPages(input *DescribeMetricFiltersInput, fn func(*DescribeMetricFiltersOutput, bool) bool) error

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 *DescribeMetricFiltersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudWatchLogs) DescribeMetricFiltersPagesWithContext

func (c *CloudWatchLogs) DescribeMetricFiltersPagesWithContext(ctx aws.Context, input *DescribeMetricFiltersInput, fn func(*DescribeMetricFiltersOutput, bool) bool, opts ...request.Option) error

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 (*CloudWatchLogs) DescribeMetricFiltersRequest

func (c *CloudWatchLogs) DescribeMetricFiltersRequest(input *DescribeMetricFiltersInput) (req *request.Request, output *DescribeMetricFiltersOutput)

DescribeMetricFiltersRequest generates a "aws/request.Request" representing the client's request for the DescribeMetricFilters operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeMetricFilters for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeMetricFilters method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeMetricFilters

func (*CloudWatchLogs) DescribeMetricFiltersWithContext

func (c *CloudWatchLogs) DescribeMetricFiltersWithContext(ctx aws.Context, input *DescribeMetricFiltersInput, opts ...request.Option) (*DescribeMetricFiltersOutput, error)

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 (*CloudWatchLogs) DescribeSubscriptionFilters

func (c *CloudWatchLogs) DescribeSubscriptionFilters(input *DescribeSubscriptionFiltersInput) (*DescribeSubscriptionFiltersOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeSubscriptionFilters

func (*CloudWatchLogs) DescribeSubscriptionFiltersPages

func (c *CloudWatchLogs) DescribeSubscriptionFiltersPages(input *DescribeSubscriptionFiltersInput, fn func(*DescribeSubscriptionFiltersOutput, bool) bool) error

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 *DescribeSubscriptionFiltersOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudWatchLogs) DescribeSubscriptionFiltersPagesWithContext

func (c *CloudWatchLogs) DescribeSubscriptionFiltersPagesWithContext(ctx aws.Context, input *DescribeSubscriptionFiltersInput, fn func(*DescribeSubscriptionFiltersOutput, bool) bool, opts ...request.Option) error

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 (*CloudWatchLogs) DescribeSubscriptionFiltersRequest

func (c *CloudWatchLogs) DescribeSubscriptionFiltersRequest(input *DescribeSubscriptionFiltersInput) (req *request.Request, output *DescribeSubscriptionFiltersOutput)

DescribeSubscriptionFiltersRequest generates a "aws/request.Request" representing the client's request for the DescribeSubscriptionFilters operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSubscriptionFilters for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSubscriptionFilters method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeSubscriptionFilters

func (*CloudWatchLogs) DescribeSubscriptionFiltersWithContext

func (c *CloudWatchLogs) DescribeSubscriptionFiltersWithContext(ctx aws.Context, input *DescribeSubscriptionFiltersInput, opts ...request.Option) (*DescribeSubscriptionFiltersOutput, error)

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 (*CloudWatchLogs) FilterLogEvents

func (c *CloudWatchLogs) FilterLogEvents(input *FilterLogEventsInput) (*FilterLogEventsOutput, error)

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.

By default, this operation returns as many log events as can fit in 1MB (up to 10,000 log events), or all the events found within the time range that you specify. If the results include a token, then there are more log events available, and you can get additional results by specifying the token in a subsequent call.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/FilterLogEvents

func (*CloudWatchLogs) FilterLogEventsPages

func (c *CloudWatchLogs) FilterLogEventsPages(input *FilterLogEventsInput, fn func(*FilterLogEventsOutput, bool) bool) error

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 *FilterLogEventsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudWatchLogs) FilterLogEventsPagesWithContext

func (c *CloudWatchLogs) FilterLogEventsPagesWithContext(ctx aws.Context, input *FilterLogEventsInput, fn func(*FilterLogEventsOutput, bool) bool, opts ...request.Option) error

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 (*CloudWatchLogs) FilterLogEventsRequest

func (c *CloudWatchLogs) FilterLogEventsRequest(input *FilterLogEventsInput) (req *request.Request, output *FilterLogEventsOutput)

FilterLogEventsRequest generates a "aws/request.Request" representing the client's request for the FilterLogEvents operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See FilterLogEvents for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the FilterLogEvents method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/FilterLogEvents

func (*CloudWatchLogs) FilterLogEventsWithContext

func (c *CloudWatchLogs) FilterLogEventsWithContext(ctx aws.Context, input *FilterLogEventsInput, opts ...request.Option) (*FilterLogEventsOutput, error)

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 (*CloudWatchLogs) GetLogEvents

func (c *CloudWatchLogs) GetLogEvents(input *GetLogEventsInput) (*GetLogEventsOutput, error)

GetLogEvents API operation for Amazon CloudWatch Logs.

Lists log events from the specified log stream. You can list all 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). If the results include tokens, there are more log events available. You can get additional log events by specifying one of the tokens in a subsequent call.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogEvents

func (*CloudWatchLogs) GetLogEventsPages

func (c *CloudWatchLogs) GetLogEventsPages(input *GetLogEventsInput, fn func(*GetLogEventsOutput, bool) bool) error

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 *GetLogEventsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudWatchLogs) GetLogEventsPagesWithContext

func (c *CloudWatchLogs) GetLogEventsPagesWithContext(ctx aws.Context, input *GetLogEventsInput, fn func(*GetLogEventsOutput, bool) bool, opts ...request.Option) error

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 (*CloudWatchLogs) GetLogEventsRequest

func (c *CloudWatchLogs) GetLogEventsRequest(input *GetLogEventsInput) (req *request.Request, output *GetLogEventsOutput)

GetLogEventsRequest generates a "aws/request.Request" representing the client's request for the GetLogEvents operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetLogEvents for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetLogEvents method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogEvents

func (*CloudWatchLogs) GetLogEventsWithContext

func (c *CloudWatchLogs) GetLogEventsWithContext(ctx aws.Context, input *GetLogEventsInput, opts ...request.Option) (*GetLogEventsOutput, error)

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 (*CloudWatchLogs) ListTagsLogGroup

func (c *CloudWatchLogs) ListTagsLogGroup(input *ListTagsLogGroupInput) (*ListTagsLogGroupOutput, error)

ListTagsLogGroup API operation for Amazon CloudWatch Logs.

Lists the tags for the specified log group.

To add tags, use TagLogGroup. To remove tags, use UntagLogGroup.

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 Codes:

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsLogGroup

func (*CloudWatchLogs) ListTagsLogGroupRequest

func (c *CloudWatchLogs) ListTagsLogGroupRequest(input *ListTagsLogGroupInput) (req *request.Request, output *ListTagsLogGroupOutput)

ListTagsLogGroupRequest generates a "aws/request.Request" representing the client's request for the ListTagsLogGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListTagsLogGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListTagsLogGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsLogGroup

func (*CloudWatchLogs) ListTagsLogGroupWithContext

func (c *CloudWatchLogs) ListTagsLogGroupWithContext(ctx aws.Context, input *ListTagsLogGroupInput, opts ...request.Option) (*ListTagsLogGroupOutput, error)

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.

func (*CloudWatchLogs) PutDestination

func (c *CloudWatchLogs) PutDestination(input *PutDestinationInput) (*PutDestinationOutput, error)

PutDestination API operation for Amazon CloudWatch Logs.

Creates or updates a destination. A destination encapsulates a physical resource (such as a Kinesis stream) and enables you to subscribe to a real-time stream of log events of a different account, ingested using PutLogEvents. Currently, the only supported physical resource is a Amazon Kinesis stream belonging to the same account as the destination.

A destination controls what is written to its Amazon Kinesis stream through an access policy. By default, PutDestination does not set any access policy with the destination, which means a cross-account user cannot call PutSubscriptionFilter against this destination. To enable this, the destination owner must call PutDestinationPolicy after PutDestination.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestination

func (*CloudWatchLogs) PutDestinationPolicy

func (c *CloudWatchLogs) PutDestinationPolicy(input *PutDestinationPolicyInput) (*PutDestinationPolicyOutput, error)

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 (http://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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationPolicy

func (*CloudWatchLogs) PutDestinationPolicyRequest

func (c *CloudWatchLogs) PutDestinationPolicyRequest(input *PutDestinationPolicyInput) (req *request.Request, output *PutDestinationPolicyOutput)

PutDestinationPolicyRequest generates a "aws/request.Request" representing the client's request for the PutDestinationPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutDestinationPolicy for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutDestinationPolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationPolicy

func (*CloudWatchLogs) PutDestinationPolicyWithContext

func (c *CloudWatchLogs) PutDestinationPolicyWithContext(ctx aws.Context, input *PutDestinationPolicyInput, opts ...request.Option) (*PutDestinationPolicyOutput, error)

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 (*CloudWatchLogs) PutDestinationRequest

func (c *CloudWatchLogs) PutDestinationRequest(input *PutDestinationInput) (req *request.Request, output *PutDestinationOutput)

PutDestinationRequest generates a "aws/request.Request" representing the client's request for the PutDestination operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutDestination for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutDestination method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestination

func (*CloudWatchLogs) PutDestinationWithContext

func (c *CloudWatchLogs) PutDestinationWithContext(ctx aws.Context, input *PutDestinationInput, opts ...request.Option) (*PutDestinationOutput, error)

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 (*CloudWatchLogs) PutLogEvents

func (c *CloudWatchLogs) PutLogEvents(input *PutLogEventsInput) (*PutLogEventsOutput, error)

PutLogEvents API operation for Amazon CloudWatch Logs.

Uploads a batch of log events to the specified log stream.

You must include the sequence token obtained from the response of the previous call. An upload in a newly created log stream does not require a sequence token. You can also get the sequence token using DescribeLogStreams.

The batch of events must satisfy the following constraints:

* The maximum batch size is 1,048,576 bytes, and 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 older than 14 days or the
retention period of the log group.

* The log events in the batch must be in chronological ordered by their
timestamp (the time the event occurred, expressed as the number of milliseconds
since Jan 1, 1970 00:00:00 UTC).

* The maximum number of log events in a batch is 10,000.

* A batch of log events in a single request cannot span more than 24 hours.
Otherwise, the operation fails.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeInvalidSequenceTokenException "InvalidSequenceTokenException"
The sequence token is not valid.

* ErrCodeDataAlreadyAcceptedException "DataAlreadyAcceptedException"
The event was already logged.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutLogEvents

func (*CloudWatchLogs) PutLogEventsRequest

func (c *CloudWatchLogs) PutLogEventsRequest(input *PutLogEventsInput) (req *request.Request, output *PutLogEventsOutput)

PutLogEventsRequest generates a "aws/request.Request" representing the client's request for the PutLogEvents operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutLogEvents for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutLogEvents method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutLogEvents

func (*CloudWatchLogs) PutLogEventsWithContext

func (c *CloudWatchLogs) PutLogEventsWithContext(ctx aws.Context, input *PutLogEventsInput, opts ...request.Option) (*PutLogEventsOutput, error)

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 (*CloudWatchLogs) PutMetricFilter

func (c *CloudWatchLogs) PutMetricFilter(input *PutMetricFilterInput) (*PutMetricFilterOutput, error)

PutMetricFilter API operation for Amazon CloudWatch Logs.

Creates or updates a metric filter and associates it with the specified log group. Metric filters allow you to configure rules to extract metric data from log events ingested through PutLogEvents.

The maximum number of metric filters that can be associated with a log group is 100.

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeLimitExceededException "LimitExceededException"
You have reached the maximum number of resources that can be created.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutMetricFilter

func (*CloudWatchLogs) PutMetricFilterRequest

func (c *CloudWatchLogs) PutMetricFilterRequest(input *PutMetricFilterInput) (req *request.Request, output *PutMetricFilterOutput)

PutMetricFilterRequest generates a "aws/request.Request" representing the client's request for the PutMetricFilter operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutMetricFilter for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutMetricFilter method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutMetricFilter

func (*CloudWatchLogs) PutMetricFilterWithContext

func (c *CloudWatchLogs) PutMetricFilterWithContext(ctx aws.Context, input *PutMetricFilterInput, opts ...request.Option) (*PutMetricFilterOutput, error)

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 (*CloudWatchLogs) PutRetentionPolicy

func (c *CloudWatchLogs) PutRetentionPolicy(input *PutRetentionPolicyInput) (*PutRetentionPolicyOutput, error)

PutRetentionPolicy API operation for Amazon CloudWatch Logs.

Sets the retention of the specified log group. A retention policy allows you to configure the number of days you want to retain log events in 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 PutRetentionPolicy for usage and error information.

Returned Error Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutRetentionPolicy

func (*CloudWatchLogs) PutRetentionPolicyRequest

func (c *CloudWatchLogs) PutRetentionPolicyRequest(input *PutRetentionPolicyInput) (req *request.Request, output *PutRetentionPolicyOutput)

PutRetentionPolicyRequest generates a "aws/request.Request" representing the client's request for the PutRetentionPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutRetentionPolicy for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutRetentionPolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutRetentionPolicy

func (*CloudWatchLogs) PutRetentionPolicyWithContext

func (c *CloudWatchLogs) PutRetentionPolicyWithContext(ctx aws.Context, input *PutRetentionPolicyInput, opts ...request.Option) (*PutRetentionPolicyOutput, error)

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 (*CloudWatchLogs) PutSubscriptionFilter

func (c *CloudWatchLogs) PutSubscriptionFilter(input *PutSubscriptionFilterInput) (*PutSubscriptionFilterOutput, error)

PutSubscriptionFilter API operation for Amazon CloudWatch Logs.

Creates or updates a subscription filter and associates it with the specified log group. Subscription filters allow you to subscribe to a real-time stream of log events ingested through PutLogEvents and have them delivered to a specific destination. 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 that belongs to a different account, for cross-account
delivery.

* An Amazon Kinesis Firehose stream that belongs to the same account as
the subscription filter, for same-account delivery.

* An AWS Lambda function that belongs to the same account as the subscription
filter, for same-account delivery.

There can only be one subscription filter associated with a log group. If you are updating an existing filter, you must specify the correct name in filterName. Otherwise, the call will fail because you cannot associate a second filter with a 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 PutSubscriptionFilter for usage and error information.

Returned Error Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeOperationAbortedException "OperationAbortedException"
Multiple requests to update the same resource were in conflict.

* ErrCodeLimitExceededException "LimitExceededException"
You have reached the maximum number of resources that can be created.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutSubscriptionFilter

func (*CloudWatchLogs) PutSubscriptionFilterRequest

func (c *CloudWatchLogs) PutSubscriptionFilterRequest(input *PutSubscriptionFilterInput) (req *request.Request, output *PutSubscriptionFilterOutput)

PutSubscriptionFilterRequest generates a "aws/request.Request" representing the client's request for the PutSubscriptionFilter operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutSubscriptionFilter for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutSubscriptionFilter method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutSubscriptionFilter

func (*CloudWatchLogs) PutSubscriptionFilterWithContext

func (c *CloudWatchLogs) PutSubscriptionFilterWithContext(ctx aws.Context, input *PutSubscriptionFilterInput, opts ...request.Option) (*PutSubscriptionFilterOutput, error)

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 (*CloudWatchLogs) TagLogGroup

func (c *CloudWatchLogs) TagLogGroup(input *TagLogGroupInput) (*TagLogGroupOutput, error)

TagLogGroup API operation for Amazon CloudWatch Logs.

Adds or updates the specified tags for the specified log group.

To list the tags for a log group, use ListTagsLogGroup. To remove tags, use UntagLogGroup.

For more information about tags, see Tag Log Groups in Amazon CloudWatch Logs (http://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/log-group-tagging.html) in the Amazon CloudWatch Logs User Guide.

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 Codes:

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagLogGroup

func (*CloudWatchLogs) TagLogGroupRequest

func (c *CloudWatchLogs) TagLogGroupRequest(input *TagLogGroupInput) (req *request.Request, output *TagLogGroupOutput)

TagLogGroupRequest generates a "aws/request.Request" representing the client's request for the TagLogGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See TagLogGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the TagLogGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagLogGroup

func (*CloudWatchLogs) TagLogGroupWithContext

func (c *CloudWatchLogs) TagLogGroupWithContext(ctx aws.Context, input *TagLogGroupInput, opts ...request.Option) (*TagLogGroupOutput, error)

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.

func (*CloudWatchLogs) TestMetricFilter

func (c *CloudWatchLogs) TestMetricFilter(input *TestMetricFilterInput) (*TestMetricFilterOutput, error)

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 Codes:

* ErrCodeInvalidParameterException "InvalidParameterException"
A parameter is specified incorrectly.

* ErrCodeServiceUnavailableException "ServiceUnavailableException"
The service cannot complete the request.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TestMetricFilter

func (*CloudWatchLogs) TestMetricFilterRequest

func (c *CloudWatchLogs) TestMetricFilterRequest(input *TestMetricFilterInput) (req *request.Request, output *TestMetricFilterOutput)

TestMetricFilterRequest generates a "aws/request.Request" representing the client's request for the TestMetricFilter operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See TestMetricFilter for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the TestMetricFilter method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TestMetricFilter

func (*CloudWatchLogs) TestMetricFilterWithContext

func (c *CloudWatchLogs) TestMetricFilterWithContext(ctx aws.Context, input *TestMetricFilterInput, opts ...request.Option) (*TestMetricFilterOutput, error)

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 (*CloudWatchLogs) UntagLogGroup

func (c *CloudWatchLogs) UntagLogGroup(input *UntagLogGroupInput) (*UntagLogGroupOutput, error)

UntagLogGroup API operation for Amazon CloudWatch Logs.

Removes the specified tags from the specified log group.

To list the tags for a log group, use ListTagsLogGroup. To add tags, use UntagLogGroup.

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 Codes:

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource does not exist.

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagLogGroup

func (*CloudWatchLogs) UntagLogGroupRequest

func (c *CloudWatchLogs) UntagLogGroupRequest(input *UntagLogGroupInput) (req *request.Request, output *UntagLogGroupOutput)

UntagLogGroupRequest generates a "aws/request.Request" representing the client's request for the UntagLogGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UntagLogGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UntagLogGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagLogGroup

func (*CloudWatchLogs) UntagLogGroupWithContext

func (c *CloudWatchLogs) UntagLogGroupWithContext(ctx aws.Context, input *UntagLogGroupInput, opts ...request.Option) (*UntagLogGroupOutput, error)

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.

type CreateExportTaskInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateExportTaskRequest

type CreateExportTaskInput struct {

    // The name of S3 bucket for the exported log data. The bucket must be in the
    // same AWS 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
    // since 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
    // since Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time
    // are not exported.
    //
    // To is a required field
    To *int64 `locationName:"to" type:"long" required:"true"`
    // contains filtered or unexported fields
}

func (CreateExportTaskInput) GoString

func (s CreateExportTaskInput) GoString() string

GoString returns the string representation

func (*CreateExportTaskInput) SetDestination

func (s *CreateExportTaskInput) SetDestination(v string) *CreateExportTaskInput

SetDestination sets the Destination field's value.

func (*CreateExportTaskInput) SetDestinationPrefix

func (s *CreateExportTaskInput) SetDestinationPrefix(v string) *CreateExportTaskInput

SetDestinationPrefix sets the DestinationPrefix field's value.

func (*CreateExportTaskInput) SetFrom

func (s *CreateExportTaskInput) SetFrom(v int64) *CreateExportTaskInput

SetFrom sets the From field's value.

func (*CreateExportTaskInput) SetLogGroupName

func (s *CreateExportTaskInput) SetLogGroupName(v string) *CreateExportTaskInput

SetLogGroupName sets the LogGroupName field's value.

func (*CreateExportTaskInput) SetLogStreamNamePrefix

func (s *CreateExportTaskInput) SetLogStreamNamePrefix(v string) *CreateExportTaskInput

SetLogStreamNamePrefix sets the LogStreamNamePrefix field's value.

func (*CreateExportTaskInput) SetTaskName

func (s *CreateExportTaskInput) SetTaskName(v string) *CreateExportTaskInput

SetTaskName sets the TaskName field's value.

func (*CreateExportTaskInput) SetTo

func (s *CreateExportTaskInput) SetTo(v int64) *CreateExportTaskInput

SetTo sets the To field's value.

func (CreateExportTaskInput) String

func (s CreateExportTaskInput) String() string

String returns the string representation

func (*CreateExportTaskInput) Validate

func (s *CreateExportTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateExportTaskOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateExportTaskResponse

type CreateExportTaskOutput struct {

    // The ID of the export task.
    TaskId *string `locationName:"taskId" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (CreateExportTaskOutput) GoString

func (s CreateExportTaskOutput) GoString() string

GoString returns the string representation

func (*CreateExportTaskOutput) SetTaskId

func (s *CreateExportTaskOutput) SetTaskId(v string) *CreateExportTaskOutput

SetTaskId sets the TaskId field's value.

func (CreateExportTaskOutput) String

func (s CreateExportTaskOutput) String() string

String returns the string representation

type CreateLogGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogGroupRequest

type CreateLogGroupInput struct {

    // 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 map[string]*string `locationName:"tags" min:"1" type:"map"`
    // contains filtered or unexported fields
}

func (CreateLogGroupInput) GoString

func (s CreateLogGroupInput) GoString() string

GoString returns the string representation

func (*CreateLogGroupInput) SetLogGroupName

func (s *CreateLogGroupInput) SetLogGroupName(v string) *CreateLogGroupInput

SetLogGroupName sets the LogGroupName field's value.

func (*CreateLogGroupInput) SetTags

func (s *CreateLogGroupInput) SetTags(v map[string]*string) *CreateLogGroupInput

SetTags sets the Tags field's value.

func (CreateLogGroupInput) String

func (s CreateLogGroupInput) String() string

String returns the string representation

func (*CreateLogGroupInput) Validate

func (s *CreateLogGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateLogGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogGroupOutput

type CreateLogGroupOutput struct {
    // contains filtered or unexported fields
}

func (CreateLogGroupOutput) GoString

func (s CreateLogGroupOutput) GoString() string

GoString returns the string representation

func (CreateLogGroupOutput) String

func (s CreateLogGroupOutput) String() string

String returns the string representation

type CreateLogStreamInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogStreamRequest

type CreateLogStreamInput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (CreateLogStreamInput) GoString

func (s CreateLogStreamInput) GoString() string

GoString returns the string representation

func (*CreateLogStreamInput) SetLogGroupName

func (s *CreateLogStreamInput) SetLogGroupName(v string) *CreateLogStreamInput

SetLogGroupName sets the LogGroupName field's value.

func (*CreateLogStreamInput) SetLogStreamName

func (s *CreateLogStreamInput) SetLogStreamName(v string) *CreateLogStreamInput

SetLogStreamName sets the LogStreamName field's value.

func (CreateLogStreamInput) String

func (s CreateLogStreamInput) String() string

String returns the string representation

func (*CreateLogStreamInput) Validate

func (s *CreateLogStreamInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateLogStreamOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogStreamOutput

type CreateLogStreamOutput struct {
    // contains filtered or unexported fields
}

func (CreateLogStreamOutput) GoString

func (s CreateLogStreamOutput) GoString() string

GoString returns the string representation

func (CreateLogStreamOutput) String

func (s CreateLogStreamOutput) String() string

String returns the string representation

type DeleteDestinationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDestinationRequest

type DeleteDestinationInput struct {

    // The name of the destination.
    //
    // DestinationName is a required field
    DestinationName *string `locationName:"destinationName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDestinationInput) GoString

func (s DeleteDestinationInput) GoString() string

GoString returns the string representation

func (*DeleteDestinationInput) SetDestinationName

func (s *DeleteDestinationInput) SetDestinationName(v string) *DeleteDestinationInput

SetDestinationName sets the DestinationName field's value.

func (DeleteDestinationInput) String

func (s DeleteDestinationInput) String() string

String returns the string representation

func (*DeleteDestinationInput) Validate

func (s *DeleteDestinationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDestinationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteDestinationOutput

type DeleteDestinationOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDestinationOutput) GoString

func (s DeleteDestinationOutput) GoString() string

GoString returns the string representation

func (DeleteDestinationOutput) String

func (s DeleteDestinationOutput) String() string

String returns the string representation

type DeleteLogGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogGroupRequest

type DeleteLogGroupInput struct {

    // The name of the log group.
    //
    // LogGroupName is a required field
    LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteLogGroupInput) GoString

func (s DeleteLogGroupInput) GoString() string

GoString returns the string representation

func (*DeleteLogGroupInput) SetLogGroupName

func (s *DeleteLogGroupInput) SetLogGroupName(v string) *DeleteLogGroupInput

SetLogGroupName sets the LogGroupName field's value.

func (DeleteLogGroupInput) String

func (s DeleteLogGroupInput) String() string

String returns the string representation

func (*DeleteLogGroupInput) Validate

func (s *DeleteLogGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteLogGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogGroupOutput

type DeleteLogGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteLogGroupOutput) GoString

func (s DeleteLogGroupOutput) GoString() string

GoString returns the string representation

func (DeleteLogGroupOutput) String

func (s DeleteLogGroupOutput) String() string

String returns the string representation

type DeleteLogStreamInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogStreamRequest

type DeleteLogStreamInput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DeleteLogStreamInput) GoString

func (s DeleteLogStreamInput) GoString() string

GoString returns the string representation

func (*DeleteLogStreamInput) SetLogGroupName

func (s *DeleteLogStreamInput) SetLogGroupName(v string) *DeleteLogStreamInput

SetLogGroupName sets the LogGroupName field's value.

func (*DeleteLogStreamInput) SetLogStreamName

func (s *DeleteLogStreamInput) SetLogStreamName(v string) *DeleteLogStreamInput

SetLogStreamName sets the LogStreamName field's value.

func (DeleteLogStreamInput) String

func (s DeleteLogStreamInput) String() string

String returns the string representation

func (*DeleteLogStreamInput) Validate

func (s *DeleteLogStreamInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteLogStreamOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteLogStreamOutput

type DeleteLogStreamOutput struct {
    // contains filtered or unexported fields
}

func (DeleteLogStreamOutput) GoString

func (s DeleteLogStreamOutput) GoString() string

GoString returns the string representation

func (DeleteLogStreamOutput) String

func (s DeleteLogStreamOutput) String() string

String returns the string representation

type DeleteMetricFilterInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteMetricFilterRequest

type DeleteMetricFilterInput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DeleteMetricFilterInput) GoString

func (s DeleteMetricFilterInput) GoString() string

GoString returns the string representation

func (*DeleteMetricFilterInput) SetFilterName

func (s *DeleteMetricFilterInput) SetFilterName(v string) *DeleteMetricFilterInput

SetFilterName sets the FilterName field's value.

func (*DeleteMetricFilterInput) SetLogGroupName

func (s *DeleteMetricFilterInput) SetLogGroupName(v string) *DeleteMetricFilterInput

SetLogGroupName sets the LogGroupName field's value.

func (DeleteMetricFilterInput) String

func (s DeleteMetricFilterInput) String() string

String returns the string representation

func (*DeleteMetricFilterInput) Validate

func (s *DeleteMetricFilterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteMetricFilterOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteMetricFilterOutput

type DeleteMetricFilterOutput struct {
    // contains filtered or unexported fields
}

func (DeleteMetricFilterOutput) GoString

func (s DeleteMetricFilterOutput) GoString() string

GoString returns the string representation

func (DeleteMetricFilterOutput) String

func (s DeleteMetricFilterOutput) String() string

String returns the string representation

type DeleteRetentionPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteRetentionPolicyRequest

type DeleteRetentionPolicyInput struct {

    // The name of the log group.
    //
    // LogGroupName is a required field
    LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteRetentionPolicyInput) GoString

func (s DeleteRetentionPolicyInput) GoString() string

GoString returns the string representation

func (*DeleteRetentionPolicyInput) SetLogGroupName

func (s *DeleteRetentionPolicyInput) SetLogGroupName(v string) *DeleteRetentionPolicyInput

SetLogGroupName sets the LogGroupName field's value.

func (DeleteRetentionPolicyInput) String

func (s DeleteRetentionPolicyInput) String() string

String returns the string representation

func (*DeleteRetentionPolicyInput) Validate

func (s *DeleteRetentionPolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteRetentionPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteRetentionPolicyOutput

type DeleteRetentionPolicyOutput struct {
    // contains filtered or unexported fields
}

func (DeleteRetentionPolicyOutput) GoString

func (s DeleteRetentionPolicyOutput) GoString() string

GoString returns the string representation

func (DeleteRetentionPolicyOutput) String

func (s DeleteRetentionPolicyOutput) String() string

String returns the string representation

type DeleteSubscriptionFilterInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteSubscriptionFilterRequest

type DeleteSubscriptionFilterInput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DeleteSubscriptionFilterInput) GoString

func (s DeleteSubscriptionFilterInput) GoString() string

GoString returns the string representation

func (*DeleteSubscriptionFilterInput) SetFilterName

func (s *DeleteSubscriptionFilterInput) SetFilterName(v string) *DeleteSubscriptionFilterInput

SetFilterName sets the FilterName field's value.

func (*DeleteSubscriptionFilterInput) SetLogGroupName

func (s *DeleteSubscriptionFilterInput) SetLogGroupName(v string) *DeleteSubscriptionFilterInput

SetLogGroupName sets the LogGroupName field's value.

func (DeleteSubscriptionFilterInput) String

func (s DeleteSubscriptionFilterInput) String() string

String returns the string representation

func (*DeleteSubscriptionFilterInput) Validate

func (s *DeleteSubscriptionFilterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteSubscriptionFilterOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeleteSubscriptionFilterOutput

type DeleteSubscriptionFilterOutput struct {
    // contains filtered or unexported fields
}

func (DeleteSubscriptionFilterOutput) GoString

func (s DeleteSubscriptionFilterOutput) GoString() string

GoString returns the string representation

func (DeleteSubscriptionFilterOutput) String

func (s DeleteSubscriptionFilterOutput) String() string

String returns the string representation

type DescribeDestinationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeDestinationsRequest

type DescribeDestinationsInput struct {

    // 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
    // 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"`
    // contains filtered or unexported fields
}

func (DescribeDestinationsInput) GoString

func (s DescribeDestinationsInput) GoString() string

GoString returns the string representation

func (*DescribeDestinationsInput) SetDestinationNamePrefix

func (s *DescribeDestinationsInput) SetDestinationNamePrefix(v string) *DescribeDestinationsInput

SetDestinationNamePrefix sets the DestinationNamePrefix field's value.

func (*DescribeDestinationsInput) SetLimit

func (s *DescribeDestinationsInput) SetLimit(v int64) *DescribeDestinationsInput

SetLimit sets the Limit field's value.

func (*DescribeDestinationsInput) SetNextToken

func (s *DescribeDestinationsInput) SetNextToken(v string) *DescribeDestinationsInput

SetNextToken sets the NextToken field's value.

func (DescribeDestinationsInput) String

func (s DescribeDestinationsInput) String() string

String returns the string representation

func (*DescribeDestinationsInput) Validate

func (s *DescribeDestinationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeDestinationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeDestinationsResponse

type DescribeDestinationsOutput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DescribeDestinationsOutput) GoString

func (s DescribeDestinationsOutput) GoString() string

GoString returns the string representation

func (*DescribeDestinationsOutput) SetDestinations

func (s *DescribeDestinationsOutput) SetDestinations(v []*Destination) *DescribeDestinationsOutput

SetDestinations sets the Destinations field's value.

func (*DescribeDestinationsOutput) SetNextToken

func (s *DescribeDestinationsOutput) SetNextToken(v string) *DescribeDestinationsOutput

SetNextToken sets the NextToken field's value.

func (DescribeDestinationsOutput) String

func (s DescribeDestinationsOutput) String() string

String returns the string representation

type DescribeExportTasksInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeExportTasksRequest

type DescribeExportTasksInput struct {

    // 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 zero
    // or one export tasks.
    TaskId *string `locationName:"taskId" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeExportTasksInput) GoString

func (s DescribeExportTasksInput) GoString() string

GoString returns the string representation

func (*DescribeExportTasksInput) SetLimit

func (s *DescribeExportTasksInput) SetLimit(v int64) *DescribeExportTasksInput

SetLimit sets the Limit field's value.

func (*DescribeExportTasksInput) SetNextToken

func (s *DescribeExportTasksInput) SetNextToken(v string) *DescribeExportTasksInput

SetNextToken sets the NextToken field's value.

func (*DescribeExportTasksInput) SetStatusCode

func (s *DescribeExportTasksInput) SetStatusCode(v string) *DescribeExportTasksInput

SetStatusCode sets the StatusCode field's value.

func (*DescribeExportTasksInput) SetTaskId

func (s *DescribeExportTasksInput) SetTaskId(v string) *DescribeExportTasksInput

SetTaskId sets the TaskId field's value.

func (DescribeExportTasksInput) String

func (s DescribeExportTasksInput) String() string

String returns the string representation

func (*DescribeExportTasksInput) Validate

func (s *DescribeExportTasksInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeExportTasksOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeExportTasksResponse

type DescribeExportTasksOutput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DescribeExportTasksOutput) GoString

func (s DescribeExportTasksOutput) GoString() string

GoString returns the string representation

func (*DescribeExportTasksOutput) SetExportTasks

func (s *DescribeExportTasksOutput) SetExportTasks(v []*ExportTask) *DescribeExportTasksOutput

SetExportTasks sets the ExportTasks field's value.

func (*DescribeExportTasksOutput) SetNextToken

func (s *DescribeExportTasksOutput) SetNextToken(v string) *DescribeExportTasksOutput

SetNextToken sets the NextToken field's value.

func (DescribeExportTasksOutput) String

func (s DescribeExportTasksOutput) String() string

String returns the string representation

type DescribeLogGroupsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogGroupsRequest

type DescribeLogGroupsInput struct {

    // 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 prefix to match.
    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"`
    // contains filtered or unexported fields
}

func (DescribeLogGroupsInput) GoString

func (s DescribeLogGroupsInput) GoString() string

GoString returns the string representation

func (*DescribeLogGroupsInput) SetLimit

func (s *DescribeLogGroupsInput) SetLimit(v int64) *DescribeLogGroupsInput

SetLimit sets the Limit field's value.

func (*DescribeLogGroupsInput) SetLogGroupNamePrefix

func (s *DescribeLogGroupsInput) SetLogGroupNamePrefix(v string) *DescribeLogGroupsInput

SetLogGroupNamePrefix sets the LogGroupNamePrefix field's value.

func (*DescribeLogGroupsInput) SetNextToken

func (s *DescribeLogGroupsInput) SetNextToken(v string) *DescribeLogGroupsInput

SetNextToken sets the NextToken field's value.

func (DescribeLogGroupsInput) String

func (s DescribeLogGroupsInput) String() string

String returns the string representation

func (*DescribeLogGroupsInput) Validate

func (s *DescribeLogGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeLogGroupsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogGroupsResponse

type DescribeLogGroupsOutput struct {

    // The log groups.
    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"`
    // contains filtered or unexported fields
}

func (DescribeLogGroupsOutput) GoString

func (s DescribeLogGroupsOutput) GoString() string

GoString returns the string representation

func (*DescribeLogGroupsOutput) SetLogGroups

func (s *DescribeLogGroupsOutput) SetLogGroups(v []*LogGroup) *DescribeLogGroupsOutput

SetLogGroups sets the LogGroups field's value.

func (*DescribeLogGroupsOutput) SetNextToken

func (s *DescribeLogGroupsOutput) SetNextToken(v string) *DescribeLogGroupsOutput

SetNextToken sets the NextToken field's value.

func (DescribeLogGroupsOutput) String

func (s DescribeLogGroupsOutput) String() string

String returns the string representation

type DescribeLogStreamsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogStreamsRequest

type DescribeLogStreamsInput struct {

    // 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"`

    // The name of the log group.
    //
    // LogGroupName is a required field
    LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"`

    // The prefix to match.
    //
    // You cannot specify this parameter if orderBy is LastEventTime.
    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 since 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 may take longer in some rare situations.
    OrderBy *string `locationName:"orderBy" type:"string" enum:"OrderBy"`
    // contains filtered or unexported fields
}

func (DescribeLogStreamsInput) GoString

func (s DescribeLogStreamsInput) GoString() string

GoString returns the string representation

func (*DescribeLogStreamsInput) SetDescending

func (s *DescribeLogStreamsInput) SetDescending(v bool) *DescribeLogStreamsInput

SetDescending sets the Descending field's value.

func (*DescribeLogStreamsInput) SetLimit

func (s *DescribeLogStreamsInput) SetLimit(v int64) *DescribeLogStreamsInput

SetLimit sets the Limit field's value.

func (*DescribeLogStreamsInput) SetLogGroupName

func (s *DescribeLogStreamsInput) SetLogGroupName(v string) *DescribeLogStreamsInput

SetLogGroupName sets the LogGroupName field's value.

func (*DescribeLogStreamsInput) SetLogStreamNamePrefix

func (s *DescribeLogStreamsInput) SetLogStreamNamePrefix(v string) *DescribeLogStreamsInput

SetLogStreamNamePrefix sets the LogStreamNamePrefix field's value.

func (*DescribeLogStreamsInput) SetNextToken

func (s *DescribeLogStreamsInput) SetNextToken(v string) *DescribeLogStreamsInput

SetNextToken sets the NextToken field's value.

func (*DescribeLogStreamsInput) SetOrderBy

func (s *DescribeLogStreamsInput) SetOrderBy(v string) *DescribeLogStreamsInput

SetOrderBy sets the OrderBy field's value.

func (DescribeLogStreamsInput) String

func (s DescribeLogStreamsInput) String() string

String returns the string representation

func (*DescribeLogStreamsInput) Validate

func (s *DescribeLogStreamsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeLogStreamsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeLogStreamsResponse

type DescribeLogStreamsOutput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DescribeLogStreamsOutput) GoString

func (s DescribeLogStreamsOutput) GoString() string

GoString returns the string representation

func (*DescribeLogStreamsOutput) SetLogStreams

func (s *DescribeLogStreamsOutput) SetLogStreams(v []*LogStream) *DescribeLogStreamsOutput

SetLogStreams sets the LogStreams field's value.

func (*DescribeLogStreamsOutput) SetNextToken

func (s *DescribeLogStreamsOutput) SetNextToken(v string) *DescribeLogStreamsOutput

SetNextToken sets the NextToken field's value.

func (DescribeLogStreamsOutput) String

func (s DescribeLogStreamsOutput) String() string

String returns the string representation

type DescribeMetricFiltersInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeMetricFiltersRequest

type DescribeMetricFiltersInput struct {

    // The prefix to match.
    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"`

    // The name of the CloudWatch metric.
    MetricName *string `locationName:"metricName" type:"string"`

    // The namespace of the CloudWatch metric.
    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"`
    // contains filtered or unexported fields
}

func (DescribeMetricFiltersInput) GoString

func (s DescribeMetricFiltersInput) GoString() string

GoString returns the string representation

func (*DescribeMetricFiltersInput) SetFilterNamePrefix

func (s *DescribeMetricFiltersInput) SetFilterNamePrefix(v string) *DescribeMetricFiltersInput

SetFilterNamePrefix sets the FilterNamePrefix field's value.

func (*DescribeMetricFiltersInput) SetLimit

func (s *DescribeMetricFiltersInput) SetLimit(v int64) *DescribeMetricFiltersInput

SetLimit sets the Limit field's value.

func (*DescribeMetricFiltersInput) SetLogGroupName

func (s *DescribeMetricFiltersInput) SetLogGroupName(v string) *DescribeMetricFiltersInput

SetLogGroupName sets the LogGroupName field's value.

func (*DescribeMetricFiltersInput) SetMetricName

func (s *DescribeMetricFiltersInput) SetMetricName(v string) *DescribeMetricFiltersInput

SetMetricName sets the MetricName field's value.

func (*DescribeMetricFiltersInput) SetMetricNamespace

func (s *DescribeMetricFiltersInput) SetMetricNamespace(v string) *DescribeMetricFiltersInput

SetMetricNamespace sets the MetricNamespace field's value.

func (*DescribeMetricFiltersInput) SetNextToken

func (s *DescribeMetricFiltersInput) SetNextToken(v string) *DescribeMetricFiltersInput

SetNextToken sets the NextToken field's value.

func (DescribeMetricFiltersInput) String

func (s DescribeMetricFiltersInput) String() string

String returns the string representation

func (*DescribeMetricFiltersInput) Validate

func (s *DescribeMetricFiltersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeMetricFiltersOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeMetricFiltersResponse

type DescribeMetricFiltersOutput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DescribeMetricFiltersOutput) GoString

func (s DescribeMetricFiltersOutput) GoString() string

GoString returns the string representation

func (*DescribeMetricFiltersOutput) SetMetricFilters

func (s *DescribeMetricFiltersOutput) SetMetricFilters(v []*MetricFilter) *DescribeMetricFiltersOutput

SetMetricFilters sets the MetricFilters field's value.

func (*DescribeMetricFiltersOutput) SetNextToken

func (s *DescribeMetricFiltersOutput) SetNextToken(v string) *DescribeMetricFiltersOutput

SetNextToken sets the NextToken field's value.

func (DescribeMetricFiltersOutput) String

func (s DescribeMetricFiltersOutput) String() string

String returns the string representation

type DescribeSubscriptionFiltersInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeSubscriptionFiltersRequest

type DescribeSubscriptionFiltersInput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DescribeSubscriptionFiltersInput) GoString

func (s DescribeSubscriptionFiltersInput) GoString() string

GoString returns the string representation

func (*DescribeSubscriptionFiltersInput) SetFilterNamePrefix

func (s *DescribeSubscriptionFiltersInput) SetFilterNamePrefix(v string) *DescribeSubscriptionFiltersInput

SetFilterNamePrefix sets the FilterNamePrefix field's value.

func (*DescribeSubscriptionFiltersInput) SetLimit

func (s *DescribeSubscriptionFiltersInput) SetLimit(v int64) *DescribeSubscriptionFiltersInput

SetLimit sets the Limit field's value.

func (*DescribeSubscriptionFiltersInput) SetLogGroupName

func (s *DescribeSubscriptionFiltersInput) SetLogGroupName(v string) *DescribeSubscriptionFiltersInput

SetLogGroupName sets the LogGroupName field's value.

func (*DescribeSubscriptionFiltersInput) SetNextToken

func (s *DescribeSubscriptionFiltersInput) SetNextToken(v string) *DescribeSubscriptionFiltersInput

SetNextToken sets the NextToken field's value.

func (DescribeSubscriptionFiltersInput) String

func (s DescribeSubscriptionFiltersInput) String() string

String returns the string representation

func (*DescribeSubscriptionFiltersInput) Validate

func (s *DescribeSubscriptionFiltersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeSubscriptionFiltersOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeSubscriptionFiltersResponse

type DescribeSubscriptionFiltersOutput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (DescribeSubscriptionFiltersOutput) GoString

func (s DescribeSubscriptionFiltersOutput) GoString() string

GoString returns the string representation

func (*DescribeSubscriptionFiltersOutput) SetNextToken

func (s *DescribeSubscriptionFiltersOutput) SetNextToken(v string) *DescribeSubscriptionFiltersOutput

SetNextToken sets the NextToken field's value.

func (*DescribeSubscriptionFiltersOutput) SetSubscriptionFilters

func (s *DescribeSubscriptionFiltersOutput) SetSubscriptionFilters(v []*SubscriptionFilter) *DescribeSubscriptionFiltersOutput

SetSubscriptionFilters sets the SubscriptionFilters field's value.

func (DescribeSubscriptionFiltersOutput) String

func (s DescribeSubscriptionFiltersOutput) String() string

String returns the string representation

type Destination

Represents a cross-account destination that receives subscription log events. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/Destination

type Destination struct {

    // An IAM policy document that governs which AWS 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
    // since 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
    // will be delivered (for example, a Kinesis stream).
    TargetArn *string `locationName:"targetArn" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (Destination) GoString

func (s Destination) GoString() string

GoString returns the string representation

func (*Destination) SetAccessPolicy

func (s *Destination) SetAccessPolicy(v string) *Destination

SetAccessPolicy sets the AccessPolicy field's value.

func (*Destination) SetArn

func (s *Destination) SetArn(v string) *Destination

SetArn sets the Arn field's value.

func (*Destination) SetCreationTime

func (s *Destination) SetCreationTime(v int64) *Destination

SetCreationTime sets the CreationTime field's value.

func (*Destination) SetDestinationName

func (s *Destination) SetDestinationName(v string) *Destination

SetDestinationName sets the DestinationName field's value.

func (*Destination) SetRoleArn

func (s *Destination) SetRoleArn(v string) *Destination

SetRoleArn sets the RoleArn field's value.

func (*Destination) SetTargetArn

func (s *Destination) SetTargetArn(v string) *Destination

SetTargetArn sets the TargetArn field's value.

func (Destination) String

func (s Destination) String() string

String returns the string representation

type ExportTask

Represents an export task. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ExportTask

type ExportTask struct {

    // The name of Amazon 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 info about the export task.
    ExecutionInfo *ExportTaskExecutionInfo `locationName:"executionInfo" type:"structure"`

    // The start time, expressed as the number of milliseconds since Jan 1, 1970
    // 00:00:00 UTC. Events with a timestamp prior to 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 since Jan 1, 1970 00:00:00
    // UTC. Events with a timestamp later than this time are not exported.
    To *int64 `locationName:"to" type:"long"`
    // contains filtered or unexported fields
}

func (ExportTask) GoString

func (s ExportTask) GoString() string

GoString returns the string representation

func (*ExportTask) SetDestination

func (s *ExportTask) SetDestination(v string) *ExportTask

SetDestination sets the Destination field's value.

func (*ExportTask) SetDestinationPrefix

func (s *ExportTask) SetDestinationPrefix(v string) *ExportTask

SetDestinationPrefix sets the DestinationPrefix field's value.

func (*ExportTask) SetExecutionInfo

func (s *ExportTask) SetExecutionInfo(v *ExportTaskExecutionInfo) *ExportTask

SetExecutionInfo sets the ExecutionInfo field's value.

func (*ExportTask) SetFrom

func (s *ExportTask) SetFrom(v int64) *ExportTask

SetFrom sets the From field's value.

func (*ExportTask) SetLogGroupName

func (s *ExportTask) SetLogGroupName(v string) *ExportTask

SetLogGroupName sets the LogGroupName field's value.

func (*ExportTask) SetStatus

func (s *ExportTask) SetStatus(v *ExportTaskStatus) *ExportTask

SetStatus sets the Status field's value.

func (*ExportTask) SetTaskId

func (s *ExportTask) SetTaskId(v string) *ExportTask

SetTaskId sets the TaskId field's value.

func (*ExportTask) SetTaskName

func (s *ExportTask) SetTaskName(v string) *ExportTask

SetTaskName sets the TaskName field's value.

func (*ExportTask) SetTo

func (s *ExportTask) SetTo(v int64) *ExportTask

SetTo sets the To field's value.

func (ExportTask) String

func (s ExportTask) String() string

String returns the string representation

type ExportTaskExecutionInfo

Represents the status of an export task. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ExportTaskExecutionInfo

type ExportTaskExecutionInfo struct {

    // The completion time of the export task, expressed as the number of milliseconds
    // since 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
    // since Jan 1, 1970 00:00:00 UTC.
    CreationTime *int64 `locationName:"creationTime" type:"long"`
    // contains filtered or unexported fields
}

func (ExportTaskExecutionInfo) GoString

func (s ExportTaskExecutionInfo) GoString() string

GoString returns the string representation

func (*ExportTaskExecutionInfo) SetCompletionTime

func (s *ExportTaskExecutionInfo) SetCompletionTime(v int64) *ExportTaskExecutionInfo

SetCompletionTime sets the CompletionTime field's value.

func (*ExportTaskExecutionInfo) SetCreationTime

func (s *ExportTaskExecutionInfo) SetCreationTime(v int64) *ExportTaskExecutionInfo

SetCreationTime sets the CreationTime field's value.

func (ExportTaskExecutionInfo) String

func (s ExportTaskExecutionInfo) String() string

String returns the string representation

type ExportTaskStatus

Represents the status of an export task. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ExportTaskStatus

type ExportTaskStatus struct {

    // 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"`
    // contains filtered or unexported fields
}

func (ExportTaskStatus) GoString

func (s ExportTaskStatus) GoString() string

GoString returns the string representation

func (*ExportTaskStatus) SetCode

func (s *ExportTaskStatus) SetCode(v string) *ExportTaskStatus

SetCode sets the Code field's value.

func (*ExportTaskStatus) SetMessage

func (s *ExportTaskStatus) SetMessage(v string) *ExportTaskStatus

SetMessage sets the Message field's value.

func (ExportTaskStatus) String

func (s ExportTaskStatus) String() string

String returns the string representation

type FilterLogEventsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/FilterLogEventsRequest

type FilterLogEventsInput struct {

    // The end of the time range, expressed as the number of milliseconds since
    // 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. If not provided, all the events are matched.
    FilterPattern *string `locationName:"filterPattern" type:"string"`

    // If the value is true, the operation makes a best effort 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. The default is false.
    Interleaved *bool `locationName:"interleaved" type:"boolean"`

    // The maximum number of events to return. The default is 10,000 events.
    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"`

    // Optional list of log stream names.
    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 since
    // Jan 1, 1970 00:00:00 UTC. Events with a timestamp prior to this time are
    // not returned.
    StartTime *int64 `locationName:"startTime" type:"long"`
    // contains filtered or unexported fields
}

func (FilterLogEventsInput) GoString

func (s FilterLogEventsInput) GoString() string

GoString returns the string representation

func (*FilterLogEventsInput) SetEndTime

func (s *FilterLogEventsInput) SetEndTime(v int64) *FilterLogEventsInput

SetEndTime sets the EndTime field's value.

func (*FilterLogEventsInput) SetFilterPattern

func (s *FilterLogEventsInput) SetFilterPattern(v string) *FilterLogEventsInput

SetFilterPattern sets the FilterPattern field's value.

func (*FilterLogEventsInput) SetInterleaved

func (s *FilterLogEventsInput) SetInterleaved(v bool) *FilterLogEventsInput

SetInterleaved sets the Interleaved field's value.

func (*FilterLogEventsInput) SetLimit

func (s *FilterLogEventsInput) SetLimit(v int64) *FilterLogEventsInput

SetLimit sets the Limit field's value.

func (*FilterLogEventsInput) SetLogGroupName

func (s *FilterLogEventsInput) SetLogGroupName(v string) *FilterLogEventsInput

SetLogGroupName sets the LogGroupName field's value.

func (*FilterLogEventsInput) SetLogStreamNames

func (s *FilterLogEventsInput) SetLogStreamNames(v []*string) *FilterLogEventsInput

SetLogStreamNames sets the LogStreamNames field's value.

func (*FilterLogEventsInput) SetNextToken

func (s *FilterLogEventsInput) SetNextToken(v string) *FilterLogEventsInput

SetNextToken sets the NextToken field's value.

func (*FilterLogEventsInput) SetStartTime

func (s *FilterLogEventsInput) SetStartTime(v int64) *FilterLogEventsInput

SetStartTime sets the StartTime field's value.

func (FilterLogEventsInput) String

func (s FilterLogEventsInput) String() string

String returns the string representation

func (*FilterLogEventsInput) Validate

func (s *FilterLogEventsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FilterLogEventsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/FilterLogEventsResponse

type FilterLogEventsOutput struct {

    // 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"`

    // Indicates which log streams have been searched and whether each has been
    // searched completely.
    SearchedLogStreams []*SearchedLogStream `locationName:"searchedLogStreams" type:"list"`
    // contains filtered or unexported fields
}

func (FilterLogEventsOutput) GoString

func (s FilterLogEventsOutput) GoString() string

GoString returns the string representation

func (*FilterLogEventsOutput) SetEvents

func (s *FilterLogEventsOutput) SetEvents(v []*FilteredLogEvent) *FilterLogEventsOutput

SetEvents sets the Events field's value.

func (*FilterLogEventsOutput) SetNextToken

func (s *FilterLogEventsOutput) SetNextToken(v string) *FilterLogEventsOutput

SetNextToken sets the NextToken field's value.

func (*FilterLogEventsOutput) SetSearchedLogStreams

func (s *FilterLogEventsOutput) SetSearchedLogStreams(v []*SearchedLogStream) *FilterLogEventsOutput

SetSearchedLogStreams sets the SearchedLogStreams field's value.

func (FilterLogEventsOutput) String

func (s FilterLogEventsOutput) String() string

String returns the string representation

type FilteredLogEvent

Represents a matched event. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/FilteredLogEvent

type FilteredLogEvent struct {

    // The ID of the event.
    EventId *string `locationName:"eventId" type:"string"`

    // The time the event was ingested, expressed as the number of milliseconds
    // since Jan 1, 1970 00:00:00 UTC.
    IngestionTime *int64 `locationName:"ingestionTime" type:"long"`

    // The name of the log stream this event belongs to.
    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 since
    // Jan 1, 1970 00:00:00 UTC.
    Timestamp *int64 `locationName:"timestamp" type:"long"`
    // contains filtered or unexported fields
}

func (FilteredLogEvent) GoString

func (s FilteredLogEvent) GoString() string

GoString returns the string representation

func (*FilteredLogEvent) SetEventId

func (s *FilteredLogEvent) SetEventId(v string) *FilteredLogEvent

SetEventId sets the EventId field's value.

func (*FilteredLogEvent) SetIngestionTime

func (s *FilteredLogEvent) SetIngestionTime(v int64) *FilteredLogEvent

SetIngestionTime sets the IngestionTime field's value.

func (*FilteredLogEvent) SetLogStreamName

func (s *FilteredLogEvent) SetLogStreamName(v string) *FilteredLogEvent

SetLogStreamName sets the LogStreamName field's value.

func (*FilteredLogEvent) SetMessage

func (s *FilteredLogEvent) SetMessage(v string) *FilteredLogEvent

SetMessage sets the Message field's value.

func (*FilteredLogEvent) SetTimestamp

func (s *FilteredLogEvent) SetTimestamp(v int64) *FilteredLogEvent

SetTimestamp sets the Timestamp field's value.

func (FilteredLogEvent) String

func (s FilteredLogEvent) String() string

String returns the string representation

type GetLogEventsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogEventsRequest

type GetLogEventsInput struct {

    // The end of the time range, expressed as the number of milliseconds since
    // Jan 1, 1970 00:00:00 UTC. Events with a timestamp 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 value,
    // the maximum is as many log events as can fit in a response size of 1MB, up
    // to 10,000 log events.
    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 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.
    StartFromHead *bool `locationName:"startFromHead" type:"boolean"`

    // The start of the time range, expressed as the number of milliseconds since
    // Jan 1, 1970 00:00:00 UTC. Events with a timestamp earlier than this time
    // are not included.
    StartTime *int64 `locationName:"startTime" type:"long"`
    // contains filtered or unexported fields
}

func (GetLogEventsInput) GoString

func (s GetLogEventsInput) GoString() string

GoString returns the string representation

func (*GetLogEventsInput) SetEndTime

func (s *GetLogEventsInput) SetEndTime(v int64) *GetLogEventsInput

SetEndTime sets the EndTime field's value.

func (*GetLogEventsInput) SetLimit

func (s *GetLogEventsInput) SetLimit(v int64) *GetLogEventsInput

SetLimit sets the Limit field's value.

func (*GetLogEventsInput) SetLogGroupName

func (s *GetLogEventsInput) SetLogGroupName(v string) *GetLogEventsInput

SetLogGroupName sets the LogGroupName field's value.

func (*GetLogEventsInput) SetLogStreamName

func (s *GetLogEventsInput) SetLogStreamName(v string) *GetLogEventsInput

SetLogStreamName sets the LogStreamName field's value.

func (*GetLogEventsInput) SetNextToken

func (s *GetLogEventsInput) SetNextToken(v string) *GetLogEventsInput

SetNextToken sets the NextToken field's value.

func (*GetLogEventsInput) SetStartFromHead

func (s *GetLogEventsInput) SetStartFromHead(v bool) *GetLogEventsInput

SetStartFromHead sets the StartFromHead field's value.

func (*GetLogEventsInput) SetStartTime

func (s *GetLogEventsInput) SetStartTime(v int64) *GetLogEventsInput

SetStartTime sets the StartTime field's value.

func (GetLogEventsInput) String

func (s GetLogEventsInput) String() string

String returns the string representation

func (*GetLogEventsInput) Validate

func (s *GetLogEventsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetLogEventsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetLogEventsResponse

type GetLogEventsOutput struct {

    // 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.
    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.
    NextForwardToken *string `locationName:"nextForwardToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (GetLogEventsOutput) GoString

func (s GetLogEventsOutput) GoString() string

GoString returns the string representation

func (*GetLogEventsOutput) SetEvents

func (s *GetLogEventsOutput) SetEvents(v []*OutputLogEvent) *GetLogEventsOutput

SetEvents sets the Events field's value.

func (*GetLogEventsOutput) SetNextBackwardToken

func (s *GetLogEventsOutput) SetNextBackwardToken(v string) *GetLogEventsOutput

SetNextBackwardToken sets the NextBackwardToken field's value.

func (*GetLogEventsOutput) SetNextForwardToken

func (s *GetLogEventsOutput) SetNextForwardToken(v string) *GetLogEventsOutput

SetNextForwardToken sets the NextForwardToken field's value.

func (GetLogEventsOutput) String

func (s GetLogEventsOutput) String() string

String returns the string representation

type InputLogEvent

Represents a log event, which is a record of activity that was recorded by the application or resource being monitored. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/InputLogEvent

type InputLogEvent struct {

    // The raw event message.
    //
    // 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 since
    // Jan 1, 1970 00:00:00 UTC.
    //
    // Timestamp is a required field
    Timestamp *int64 `locationName:"timestamp" type:"long" required:"true"`
    // contains filtered or unexported fields
}

func (InputLogEvent) GoString

func (s InputLogEvent) GoString() string

GoString returns the string representation

func (*InputLogEvent) SetMessage

func (s *InputLogEvent) SetMessage(v string) *InputLogEvent

SetMessage sets the Message field's value.

func (*InputLogEvent) SetTimestamp

func (s *InputLogEvent) SetTimestamp(v int64) *InputLogEvent

SetTimestamp sets the Timestamp field's value.

func (InputLogEvent) String

func (s InputLogEvent) String() string

String returns the string representation

func (*InputLogEvent) Validate

func (s *InputLogEvent) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsLogGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsLogGroupRequest

type ListTagsLogGroupInput struct {

    // The name of the log group.
    //
    // LogGroupName is a required field
    LogGroupName *string `locationName:"logGroupName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListTagsLogGroupInput) GoString

func (s ListTagsLogGroupInput) GoString() string

GoString returns the string representation

func (*ListTagsLogGroupInput) SetLogGroupName

func (s *ListTagsLogGroupInput) SetLogGroupName(v string) *ListTagsLogGroupInput

SetLogGroupName sets the LogGroupName field's value.

func (ListTagsLogGroupInput) String

func (s ListTagsLogGroupInput) String() string

String returns the string representation

func (*ListTagsLogGroupInput) Validate

func (s *ListTagsLogGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsLogGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListTagsLogGroupResponse

type ListTagsLogGroupOutput struct {

    // The tags.
    Tags map[string]*string `locationName:"tags" min:"1" type:"map"`
    // contains filtered or unexported fields
}

func (ListTagsLogGroupOutput) GoString

func (s ListTagsLogGroupOutput) GoString() string

GoString returns the string representation

func (*ListTagsLogGroupOutput) SetTags

func (s *ListTagsLogGroupOutput) SetTags(v map[string]*string) *ListTagsLogGroupOutput

SetTags sets the Tags field's value.

func (ListTagsLogGroupOutput) String

func (s ListTagsLogGroupOutput) String() string

String returns the string representation

type LogGroup

Represents a log group. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/LogGroup

type LogGroup struct {

    // 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
    // since Jan 1, 1970 00:00:00 UTC.
    CreationTime *int64 `locationName:"creationTime" type:"long"`

    // 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,
    // 1827, and 3653.
    RetentionInDays *int64 `locationName:"retentionInDays" type:"integer"`

    // The number of bytes stored.
    StoredBytes *int64 `locationName:"storedBytes" type:"long"`
    // contains filtered or unexported fields
}

func (LogGroup) GoString

func (s LogGroup) GoString() string

GoString returns the string representation

func (*LogGroup) SetArn

func (s *LogGroup) SetArn(v string) *LogGroup

SetArn sets the Arn field's value.

func (*LogGroup) SetCreationTime

func (s *LogGroup) SetCreationTime(v int64) *LogGroup

SetCreationTime sets the CreationTime field's value.

func (*LogGroup) SetLogGroupName

func (s *LogGroup) SetLogGroupName(v string) *LogGroup

SetLogGroupName sets the LogGroupName field's value.

func (*LogGroup) SetMetricFilterCount

func (s *LogGroup) SetMetricFilterCount(v int64) *LogGroup

SetMetricFilterCount sets the MetricFilterCount field's value.

func (*LogGroup) SetRetentionInDays

func (s *LogGroup) SetRetentionInDays(v int64) *LogGroup

SetRetentionInDays sets the RetentionInDays field's value.

func (*LogGroup) SetStoredBytes

func (s *LogGroup) SetStoredBytes(v int64) *LogGroup

SetStoredBytes sets the StoredBytes field's value.

func (LogGroup) String

func (s LogGroup) String() string

String returns the string representation

type LogStream

Represents a log stream, which is a sequence of log events from a single emitter of logs. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/LogStream

type LogStream struct {

    // 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
    // since 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 since
    // 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 since Jan 1, 1970
    // 00:00:00 UTC. lastEventTime updates on an eventual consistency basis. It
    // typically updates in less than an hour from ingestion, but may take longer
    // in some rare situations.
    LastEventTimestamp *int64 `locationName:"lastEventTimestamp" type:"long"`

    // The ingestion time, expressed as the number of milliseconds since Jan 1,
    // 1970 00:00:00 UTC.
    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.
    StoredBytes *int64 `locationName:"storedBytes" type:"long"`

    // The sequence token.
    UploadSequenceToken *string `locationName:"uploadSequenceToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (LogStream) GoString

func (s LogStream) GoString() string

GoString returns the string representation

func (*LogStream) SetArn

func (s *LogStream) SetArn(v string) *LogStream

SetArn sets the Arn field's value.

func (*LogStream) SetCreationTime

func (s *LogStream) SetCreationTime(v int64) *LogStream

SetCreationTime sets the CreationTime field's value.

func (*LogStream) SetFirstEventTimestamp

func (s *LogStream) SetFirstEventTimestamp(v int64) *LogStream

SetFirstEventTimestamp sets the FirstEventTimestamp field's value.

func (*LogStream) SetLastEventTimestamp

func (s *LogStream) SetLastEventTimestamp(v int64) *LogStream

SetLastEventTimestamp sets the LastEventTimestamp field's value.

func (*LogStream) SetLastIngestionTime

func (s *LogStream) SetLastIngestionTime(v int64) *LogStream

SetLastIngestionTime sets the LastIngestionTime field's value.

func (*LogStream) SetLogStreamName

func (s *LogStream) SetLogStreamName(v string) *LogStream

SetLogStreamName sets the LogStreamName field's value.

func (*LogStream) SetStoredBytes

func (s *LogStream) SetStoredBytes(v int64) *LogStream

SetStoredBytes sets the StoredBytes field's value.

func (*LogStream) SetUploadSequenceToken

func (s *LogStream) SetUploadSequenceToken(v string) *LogStream

SetUploadSequenceToken sets the UploadSequenceToken field's value.

func (LogStream) String

func (s LogStream) String() string

String returns the string representation

type MetricFilter

Metric filters express how CloudWatch Logs would extract metric observations from ingested log events and transform them into metric data in a CloudWatch metric. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/MetricFilter

type MetricFilter struct {

    // The creation time of the metric filter, expressed as the number of milliseconds
    // since 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 may 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"`
    // contains filtered or unexported fields
}

func (MetricFilter) GoString

func (s MetricFilter) GoString() string

GoString returns the string representation

func (*MetricFilter) SetCreationTime

func (s *MetricFilter) SetCreationTime(v int64) *MetricFilter

SetCreationTime sets the CreationTime field's value.

func (*MetricFilter) SetFilterName

func (s *MetricFilter) SetFilterName(v string) *MetricFilter

SetFilterName sets the FilterName field's value.

func (*MetricFilter) SetFilterPattern

func (s *MetricFilter) SetFilterPattern(v string) *MetricFilter

SetFilterPattern sets the FilterPattern field's value.

func (*MetricFilter) SetLogGroupName

func (s *MetricFilter) SetLogGroupName(v string) *MetricFilter

SetLogGroupName sets the LogGroupName field's value.

func (*MetricFilter) SetMetricTransformations

func (s *MetricFilter) SetMetricTransformations(v []*MetricTransformation) *MetricFilter

SetMetricTransformations sets the MetricTransformations field's value.

func (MetricFilter) String

func (s MetricFilter) String() string

String returns the string representation

type MetricFilterMatchRecord

Represents a matched event. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/MetricFilterMatchRecord

type MetricFilterMatchRecord struct {

    // 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"`
    // contains filtered or unexported fields
}

func (MetricFilterMatchRecord) GoString

func (s MetricFilterMatchRecord) GoString() string

GoString returns the string representation

func (*MetricFilterMatchRecord) SetEventMessage

func (s *MetricFilterMatchRecord) SetEventMessage(v string) *MetricFilterMatchRecord

SetEventMessage sets the EventMessage field's value.

func (*MetricFilterMatchRecord) SetEventNumber

func (s *MetricFilterMatchRecord) SetEventNumber(v int64) *MetricFilterMatchRecord

SetEventNumber sets the EventNumber field's value.

func (*MetricFilterMatchRecord) SetExtractedValues

func (s *MetricFilterMatchRecord) SetExtractedValues(v map[string]*string) *MetricFilterMatchRecord

SetExtractedValues sets the ExtractedValues field's value.

func (MetricFilterMatchRecord) String

func (s MetricFilterMatchRecord) String() string

String returns the string representation

type MetricTransformation

Indicates how to transform ingested log events into metric data in a CloudWatch metric. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/MetricTransformation

type MetricTransformation struct {

    // (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 name of the CloudWatch metric.
    //
    // MetricName is a required field
    MetricName *string `locationName:"metricName" type:"string" required:"true"`

    // The namespace of the CloudWatch metric.
    //
    // 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"`
    // contains filtered or unexported fields
}

func (MetricTransformation) GoString

func (s MetricTransformation) GoString() string

GoString returns the string representation

func (*MetricTransformation) SetDefaultValue

func (s *MetricTransformation) SetDefaultValue(v float64) *MetricTransformation

SetDefaultValue sets the DefaultValue field's value.

func (*MetricTransformation) SetMetricName

func (s *MetricTransformation) SetMetricName(v string) *MetricTransformation

SetMetricName sets the MetricName field's value.

func (*MetricTransformation) SetMetricNamespace

func (s *MetricTransformation) SetMetricNamespace(v string) *MetricTransformation

SetMetricNamespace sets the MetricNamespace field's value.

func (*MetricTransformation) SetMetricValue

func (s *MetricTransformation) SetMetricValue(v string) *MetricTransformation

SetMetricValue sets the MetricValue field's value.

func (MetricTransformation) String

func (s MetricTransformation) String() string

String returns the string representation

func (*MetricTransformation) Validate

func (s *MetricTransformation) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OutputLogEvent

Represents a log event. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/OutputLogEvent

type OutputLogEvent struct {

    // The time the event was ingested, expressed as the number of milliseconds
    // since 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 since
    // Jan 1, 1970 00:00:00 UTC.
    Timestamp *int64 `locationName:"timestamp" type:"long"`
    // contains filtered or unexported fields
}

func (OutputLogEvent) GoString

func (s OutputLogEvent) GoString() string

GoString returns the string representation

func (*OutputLogEvent) SetIngestionTime

func (s *OutputLogEvent) SetIngestionTime(v int64) *OutputLogEvent

SetIngestionTime sets the IngestionTime field's value.

func (*OutputLogEvent) SetMessage

func (s *OutputLogEvent) SetMessage(v string) *OutputLogEvent

SetMessage sets the Message field's value.

func (*OutputLogEvent) SetTimestamp

func (s *OutputLogEvent) SetTimestamp(v int64) *OutputLogEvent

SetTimestamp sets the Timestamp field's value.

func (OutputLogEvent) String

func (s OutputLogEvent) String() string

String returns the string representation

type PutDestinationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationRequest

type PutDestinationInput struct {

    // 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 Amazon
    // Kinesis PutRecord on the destination stream.
    //
    // RoleArn is a required field
    RoleArn *string `locationName:"roleArn" min:"1" type:"string" required:"true"`

    // The ARN of an Amazon Kinesis stream to deliver matching log events to.
    //
    // TargetArn is a required field
    TargetArn *string `locationName:"targetArn" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PutDestinationInput) GoString

func (s PutDestinationInput) GoString() string

GoString returns the string representation

func (*PutDestinationInput) SetDestinationName

func (s *PutDestinationInput) SetDestinationName(v string) *PutDestinationInput

SetDestinationName sets the DestinationName field's value.

func (*PutDestinationInput) SetRoleArn

func (s *PutDestinationInput) SetRoleArn(v string) *PutDestinationInput

SetRoleArn sets the RoleArn field's value.

func (*PutDestinationInput) SetTargetArn

func (s *PutDestinationInput) SetTargetArn(v string) *PutDestinationInput

SetTargetArn sets the TargetArn field's value.

func (PutDestinationInput) String

func (s PutDestinationInput) String() string

String returns the string representation

func (*PutDestinationInput) Validate

func (s *PutDestinationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutDestinationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationResponse

type PutDestinationOutput struct {

    // The destination.
    Destination *Destination `locationName:"destination" type:"structure"`
    // contains filtered or unexported fields
}

func (PutDestinationOutput) GoString

func (s PutDestinationOutput) GoString() string

GoString returns the string representation

func (*PutDestinationOutput) SetDestination

func (s *PutDestinationOutput) SetDestination(v *Destination) *PutDestinationOutput

SetDestination sets the Destination field's value.

func (PutDestinationOutput) String

func (s PutDestinationOutput) String() string

String returns the string representation

type PutDestinationPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationPolicyRequest

type PutDestinationPolicyInput struct {

    // An IAM policy document that authorizes cross-account users to deliver their
    // log events to the associated destination.
    //
    // 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"`
    // contains filtered or unexported fields
}

func (PutDestinationPolicyInput) GoString

func (s PutDestinationPolicyInput) GoString() string

GoString returns the string representation

func (*PutDestinationPolicyInput) SetAccessPolicy

func (s *PutDestinationPolicyInput) SetAccessPolicy(v string) *PutDestinationPolicyInput

SetAccessPolicy sets the AccessPolicy field's value.

func (*PutDestinationPolicyInput) SetDestinationName

func (s *PutDestinationPolicyInput) SetDestinationName(v string) *PutDestinationPolicyInput

SetDestinationName sets the DestinationName field's value.

func (PutDestinationPolicyInput) String

func (s PutDestinationPolicyInput) String() string

String returns the string representation

func (*PutDestinationPolicyInput) Validate

func (s *PutDestinationPolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutDestinationPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDestinationPolicyOutput

type PutDestinationPolicyOutput struct {
    // contains filtered or unexported fields
}

func (PutDestinationPolicyOutput) GoString

func (s PutDestinationPolicyOutput) GoString() string

GoString returns the string representation

func (PutDestinationPolicyOutput) String

func (s PutDestinationPolicyOutput) String() string

String returns the string representation

type PutLogEventsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutLogEventsRequest

type PutLogEventsInput struct {

    // 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.
    SequenceToken *string `locationName:"sequenceToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (PutLogEventsInput) GoString

func (s PutLogEventsInput) GoString() string

GoString returns the string representation

func (*PutLogEventsInput) SetLogEvents

func (s *PutLogEventsInput) SetLogEvents(v []*InputLogEvent) *PutLogEventsInput

SetLogEvents sets the LogEvents field's value.

func (*PutLogEventsInput) SetLogGroupName

func (s *PutLogEventsInput) SetLogGroupName(v string) *PutLogEventsInput

SetLogGroupName sets the LogGroupName field's value.

func (*PutLogEventsInput) SetLogStreamName

func (s *PutLogEventsInput) SetLogStreamName(v string) *PutLogEventsInput

SetLogStreamName sets the LogStreamName field's value.

func (*PutLogEventsInput) SetSequenceToken

func (s *PutLogEventsInput) SetSequenceToken(v string) *PutLogEventsInput

SetSequenceToken sets the SequenceToken field's value.

func (PutLogEventsInput) String

func (s PutLogEventsInput) String() string

String returns the string representation

func (*PutLogEventsInput) Validate

func (s *PutLogEventsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutLogEventsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutLogEventsResponse

type PutLogEventsOutput struct {

    // The next sequence token.
    NextSequenceToken *string `locationName:"nextSequenceToken" min:"1" type:"string"`

    // The rejected events.
    RejectedLogEventsInfo *RejectedLogEventsInfo `locationName:"rejectedLogEventsInfo" type:"structure"`
    // contains filtered or unexported fields
}

func (PutLogEventsOutput) GoString

func (s PutLogEventsOutput) GoString() string

GoString returns the string representation

func (*PutLogEventsOutput) SetNextSequenceToken

func (s *PutLogEventsOutput) SetNextSequenceToken(v string) *PutLogEventsOutput

SetNextSequenceToken sets the NextSequenceToken field's value.

func (*PutLogEventsOutput) SetRejectedLogEventsInfo

func (s *PutLogEventsOutput) SetRejectedLogEventsInfo(v *RejectedLogEventsInfo) *PutLogEventsOutput

SetRejectedLogEventsInfo sets the RejectedLogEventsInfo field's value.

func (PutLogEventsOutput) String

func (s PutLogEventsOutput) String() string

String returns the string representation

type PutMetricFilterInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutMetricFilterRequest

type PutMetricFilterInput struct {

    // 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 needed to define how metric data gets emitted.
    //
    // MetricTransformations is a required field
    MetricTransformations []*MetricTransformation `locationName:"metricTransformations" min:"1" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (PutMetricFilterInput) GoString

func (s PutMetricFilterInput) GoString() string

GoString returns the string representation

func (*PutMetricFilterInput) SetFilterName

func (s *PutMetricFilterInput) SetFilterName(v string) *PutMetricFilterInput

SetFilterName sets the FilterName field's value.

func (*PutMetricFilterInput) SetFilterPattern

func (s *PutMetricFilterInput) SetFilterPattern(v string) *PutMetricFilterInput

SetFilterPattern sets the FilterPattern field's value.

func (*PutMetricFilterInput) SetLogGroupName

func (s *PutMetricFilterInput) SetLogGroupName(v string) *PutMetricFilterInput

SetLogGroupName sets the LogGroupName field's value.

func (*PutMetricFilterInput) SetMetricTransformations

func (s *PutMetricFilterInput) SetMetricTransformations(v []*MetricTransformation) *PutMetricFilterInput

SetMetricTransformations sets the MetricTransformations field's value.

func (PutMetricFilterInput) String

func (s PutMetricFilterInput) String() string

String returns the string representation

func (*PutMetricFilterInput) Validate

func (s *PutMetricFilterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutMetricFilterOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutMetricFilterOutput

type PutMetricFilterOutput struct {
    // contains filtered or unexported fields
}

func (PutMetricFilterOutput) GoString

func (s PutMetricFilterOutput) GoString() string

GoString returns the string representation

func (PutMetricFilterOutput) String

func (s PutMetricFilterOutput) String() string

String returns the string representation

type PutRetentionPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutRetentionPolicyRequest

type PutRetentionPolicyInput struct {

    // 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,
    // 1827, and 3653.
    //
    // RetentionInDays is a required field
    RetentionInDays *int64 `locationName:"retentionInDays" type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (PutRetentionPolicyInput) GoString

func (s PutRetentionPolicyInput) GoString() string

GoString returns the string representation

func (*PutRetentionPolicyInput) SetLogGroupName

func (s *PutRetentionPolicyInput) SetLogGroupName(v string) *PutRetentionPolicyInput

SetLogGroupName sets the LogGroupName field's value.

func (*PutRetentionPolicyInput) SetRetentionInDays

func (s *PutRetentionPolicyInput) SetRetentionInDays(v int64) *PutRetentionPolicyInput

SetRetentionInDays sets the RetentionInDays field's value.

func (PutRetentionPolicyInput) String

func (s PutRetentionPolicyInput) String() string

String returns the string representation

func (*PutRetentionPolicyInput) Validate

func (s *PutRetentionPolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutRetentionPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutRetentionPolicyOutput

type PutRetentionPolicyOutput struct {
    // contains filtered or unexported fields
}

func (PutRetentionPolicyOutput) GoString

func (s PutRetentionPolicyOutput) GoString() string

GoString returns the string representation

func (PutRetentionPolicyOutput) String

func (s PutRetentionPolicyOutput) String() string

String returns the string representation

type PutSubscriptionFilterInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutSubscriptionFilterRequest

type PutSubscriptionFilterInput struct {

    // 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.
    //
    //    * An Amazon Kinesis Firehose stream belonging to the same account as the
    //    subscription filter, for same-account delivery.
    //
    //    * An AWS 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, when the destination
    // is an Amazon Kinesis stream. By default, log data is grouped by log stream.
    // For a more even distribution, you can group log data randomly.
    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. Otherwise, the call will
    // fail because you cannot associate a second filter with a log group. To find
    // the name of the filter currently associated with a log group, use DescribeSubscriptionFilters.
    //
    // 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"`
    // contains filtered or unexported fields
}

func (PutSubscriptionFilterInput) GoString

func (s PutSubscriptionFilterInput) GoString() string

GoString returns the string representation

func (*PutSubscriptionFilterInput) SetDestinationArn

func (s *PutSubscriptionFilterInput) SetDestinationArn(v string) *PutSubscriptionFilterInput

SetDestinationArn sets the DestinationArn field's value.

func (*PutSubscriptionFilterInput) SetDistribution

func (s *PutSubscriptionFilterInput) SetDistribution(v string) *PutSubscriptionFilterInput

SetDistribution sets the Distribution field's value.

func (*PutSubscriptionFilterInput) SetFilterName

func (s *PutSubscriptionFilterInput) SetFilterName(v string) *PutSubscriptionFilterInput

SetFilterName sets the FilterName field's value.

func (*PutSubscriptionFilterInput) SetFilterPattern

func (s *PutSubscriptionFilterInput) SetFilterPattern(v string) *PutSubscriptionFilterInput

SetFilterPattern sets the FilterPattern field's value.

func (*PutSubscriptionFilterInput) SetLogGroupName

func (s *PutSubscriptionFilterInput) SetLogGroupName(v string) *PutSubscriptionFilterInput

SetLogGroupName sets the LogGroupName field's value.

func (*PutSubscriptionFilterInput) SetRoleArn

func (s *PutSubscriptionFilterInput) SetRoleArn(v string) *PutSubscriptionFilterInput

SetRoleArn sets the RoleArn field's value.

func (PutSubscriptionFilterInput) String

func (s PutSubscriptionFilterInput) String() string

String returns the string representation

func (*PutSubscriptionFilterInput) Validate

func (s *PutSubscriptionFilterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutSubscriptionFilterOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutSubscriptionFilterOutput

type PutSubscriptionFilterOutput struct {
    // contains filtered or unexported fields
}

func (PutSubscriptionFilterOutput) GoString

func (s PutSubscriptionFilterOutput) GoString() string

GoString returns the string representation

func (PutSubscriptionFilterOutput) String

func (s PutSubscriptionFilterOutput) String() string

String returns the string representation

type RejectedLogEventsInfo

Represents the rejected events. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/RejectedLogEventsInfo

type RejectedLogEventsInfo struct {

    // 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 too old.
    TooOldLogEventEndIndex *int64 `locationName:"tooOldLogEventEndIndex" type:"integer"`
    // contains filtered or unexported fields
}

func (RejectedLogEventsInfo) GoString

func (s RejectedLogEventsInfo) GoString() string

GoString returns the string representation

func (*RejectedLogEventsInfo) SetExpiredLogEventEndIndex

func (s *RejectedLogEventsInfo) SetExpiredLogEventEndIndex(v int64) *RejectedLogEventsInfo

SetExpiredLogEventEndIndex sets the ExpiredLogEventEndIndex field's value.

func (*RejectedLogEventsInfo) SetTooNewLogEventStartIndex

func (s *RejectedLogEventsInfo) SetTooNewLogEventStartIndex(v int64) *RejectedLogEventsInfo

SetTooNewLogEventStartIndex sets the TooNewLogEventStartIndex field's value.

func (*RejectedLogEventsInfo) SetTooOldLogEventEndIndex

func (s *RejectedLogEventsInfo) SetTooOldLogEventEndIndex(v int64) *RejectedLogEventsInfo

SetTooOldLogEventEndIndex sets the TooOldLogEventEndIndex field's value.

func (RejectedLogEventsInfo) String

func (s RejectedLogEventsInfo) String() string

String returns the string representation

type SearchedLogStream

Represents the search status of a log stream. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/SearchedLogStream

type SearchedLogStream struct {

    // 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"`
    // contains filtered or unexported fields
}

func (SearchedLogStream) GoString

func (s SearchedLogStream) GoString() string

GoString returns the string representation

func (*SearchedLogStream) SetLogStreamName

func (s *SearchedLogStream) SetLogStreamName(v string) *SearchedLogStream

SetLogStreamName sets the LogStreamName field's value.

func (*SearchedLogStream) SetSearchedCompletely

func (s *SearchedLogStream) SetSearchedCompletely(v bool) *SearchedLogStream

SetSearchedCompletely sets the SearchedCompletely field's value.

func (SearchedLogStream) String

func (s SearchedLogStream) String() string

String returns the string representation

type SubscriptionFilter

Represents a subscription filter. Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/SubscriptionFilter

type SubscriptionFilter struct {

    // The creation time of the subscription filter, expressed as the number of
    // milliseconds since 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, when the destination
    // is an Amazon Kinesis 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 may 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"`
    // contains filtered or unexported fields
}

func (SubscriptionFilter) GoString

func (s SubscriptionFilter) GoString() string

GoString returns the string representation

func (*SubscriptionFilter) SetCreationTime

func (s *SubscriptionFilter) SetCreationTime(v int64) *SubscriptionFilter

SetCreationTime sets the CreationTime field's value.

func (*SubscriptionFilter) SetDestinationArn

func (s *SubscriptionFilter) SetDestinationArn(v string) *SubscriptionFilter

SetDestinationArn sets the DestinationArn field's value.

func (*SubscriptionFilter) SetDistribution

func (s *SubscriptionFilter) SetDistribution(v string) *SubscriptionFilter

SetDistribution sets the Distribution field's value.

func (*SubscriptionFilter) SetFilterName

func (s *SubscriptionFilter) SetFilterName(v string) *SubscriptionFilter

SetFilterName sets the FilterName field's value.

func (*SubscriptionFilter) SetFilterPattern

func (s *SubscriptionFilter) SetFilterPattern(v string) *SubscriptionFilter

SetFilterPattern sets the FilterPattern field's value.

func (*SubscriptionFilter) SetLogGroupName

func (s *SubscriptionFilter) SetLogGroupName(v string) *SubscriptionFilter

SetLogGroupName sets the LogGroupName field's value.

func (*SubscriptionFilter) SetRoleArn

func (s *SubscriptionFilter) SetRoleArn(v string) *SubscriptionFilter

SetRoleArn sets the RoleArn field's value.

func (SubscriptionFilter) String

func (s SubscriptionFilter) String() string

String returns the string representation

type TagLogGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagLogGroupRequest

type TagLogGroupInput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (TagLogGroupInput) GoString

func (s TagLogGroupInput) GoString() string

GoString returns the string representation

func (*TagLogGroupInput) SetLogGroupName

func (s *TagLogGroupInput) SetLogGroupName(v string) *TagLogGroupInput

SetLogGroupName sets the LogGroupName field's value.

func (*TagLogGroupInput) SetTags

func (s *TagLogGroupInput) SetTags(v map[string]*string) *TagLogGroupInput

SetTags sets the Tags field's value.

func (TagLogGroupInput) String

func (s TagLogGroupInput) String() string

String returns the string representation

func (*TagLogGroupInput) Validate

func (s *TagLogGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagLogGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagLogGroupOutput

type TagLogGroupOutput struct {
    // contains filtered or unexported fields
}

func (TagLogGroupOutput) GoString

func (s TagLogGroupOutput) GoString() string

GoString returns the string representation

func (TagLogGroupOutput) String

func (s TagLogGroupOutput) String() string

String returns the string representation

type TestMetricFilterInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TestMetricFilterRequest

type TestMetricFilterInput struct {

    // A symbolic description of how CloudWatch Logs should interpret the data in
    // each log event. For example, a log event may 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"`
    // contains filtered or unexported fields
}

func (TestMetricFilterInput) GoString

func (s TestMetricFilterInput) GoString() string

GoString returns the string representation

func (*TestMetricFilterInput) SetFilterPattern

func (s *TestMetricFilterInput) SetFilterPattern(v string) *TestMetricFilterInput

SetFilterPattern sets the FilterPattern field's value.

func (*TestMetricFilterInput) SetLogEventMessages

func (s *TestMetricFilterInput) SetLogEventMessages(v []*string) *TestMetricFilterInput

SetLogEventMessages sets the LogEventMessages field's value.

func (TestMetricFilterInput) String

func (s TestMetricFilterInput) String() string

String returns the string representation

func (*TestMetricFilterInput) Validate

func (s *TestMetricFilterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TestMetricFilterOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TestMetricFilterResponse

type TestMetricFilterOutput struct {

    // The matched events.
    Matches []*MetricFilterMatchRecord `locationName:"matches" type:"list"`
    // contains filtered or unexported fields
}

func (TestMetricFilterOutput) GoString

func (s TestMetricFilterOutput) GoString() string

GoString returns the string representation

func (*TestMetricFilterOutput) SetMatches

func (s *TestMetricFilterOutput) SetMatches(v []*MetricFilterMatchRecord) *TestMetricFilterOutput

SetMatches sets the Matches field's value.

func (TestMetricFilterOutput) String

func (s TestMetricFilterOutput) String() string

String returns the string representation

type UntagLogGroupInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagLogGroupRequest

type UntagLogGroupInput struct {

    // 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"`
    // contains filtered or unexported fields
}

func (UntagLogGroupInput) GoString

func (s UntagLogGroupInput) GoString() string

GoString returns the string representation

func (*UntagLogGroupInput) SetLogGroupName

func (s *UntagLogGroupInput) SetLogGroupName(v string) *UntagLogGroupInput

SetLogGroupName sets the LogGroupName field's value.

func (*UntagLogGroupInput) SetTags

func (s *UntagLogGroupInput) SetTags(v []*string) *UntagLogGroupInput

SetTags sets the Tags field's value.

func (UntagLogGroupInput) String

func (s UntagLogGroupInput) String() string

String returns the string representation

func (*UntagLogGroupInput) Validate

func (s *UntagLogGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UntagLogGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/UntagLogGroupOutput

type UntagLogGroupOutput struct {
    // contains filtered or unexported fields
}

func (UntagLogGroupOutput) GoString

func (s UntagLogGroupOutput) GoString() string

GoString returns the string representation

func (UntagLogGroupOutput) String

func (s UntagLogGroupOutput) String() string

String returns the string representation

Subdirectories

Name Synopsis
..
cloudwatchlogsiface Package cloudwatchlogsiface provides an interface to enable mocking the Amazon CloudWatch Logs service client for testing your code.