forked from TrueCloudLab/rclone
Switch to using the dep tool and update all the dependencies
This commit is contained in:
parent
5135ff73cb
commit
98c2d2c41b
5321 changed files with 4483201 additions and 5922 deletions
695
vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/examples_test.go
generated
vendored
Normal file
695
vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/examples_test.go
generated
vendored
Normal file
|
@ -0,0 +1,695 @@
|
|||
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
|
||||
|
||||
package cloudwatchlogs_test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/aws/session"
|
||||
"github.com/aws/aws-sdk-go/service/cloudwatchlogs"
|
||||
)
|
||||
|
||||
var _ time.Duration
|
||||
var _ bytes.Buffer
|
||||
|
||||
func ExampleCloudWatchLogs_CancelExportTask() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.CancelExportTaskInput{
|
||||
TaskId: aws.String("ExportTaskId"), // Required
|
||||
}
|
||||
resp, err := svc.CancelExportTask(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_CreateExportTask() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.CreateExportTaskInput{
|
||||
Destination: aws.String("ExportDestinationBucket"), // Required
|
||||
From: aws.Int64(1), // Required
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
To: aws.Int64(1), // Required
|
||||
DestinationPrefix: aws.String("ExportDestinationPrefix"),
|
||||
LogStreamNamePrefix: aws.String("LogStreamName"),
|
||||
TaskName: aws.String("ExportTaskName"),
|
||||
}
|
||||
resp, err := svc.CreateExportTask(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_CreateLogGroup() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.CreateLogGroupInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
Tags: map[string]*string{
|
||||
"Key": aws.String("TagValue"), // Required
|
||||
// More values...
|
||||
},
|
||||
}
|
||||
resp, err := svc.CreateLogGroup(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_CreateLogStream() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.CreateLogStreamInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
LogStreamName: aws.String("LogStreamName"), // Required
|
||||
}
|
||||
resp, err := svc.CreateLogStream(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DeleteDestination() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DeleteDestinationInput{
|
||||
DestinationName: aws.String("DestinationName"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteDestination(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DeleteLogGroup() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DeleteLogGroupInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteLogGroup(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DeleteLogStream() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DeleteLogStreamInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
LogStreamName: aws.String("LogStreamName"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteLogStream(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DeleteMetricFilter() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DeleteMetricFilterInput{
|
||||
FilterName: aws.String("FilterName"), // Required
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteMetricFilter(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DeleteRetentionPolicy() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DeleteRetentionPolicyInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteRetentionPolicy(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DeleteSubscriptionFilter() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DeleteSubscriptionFilterInput{
|
||||
FilterName: aws.String("FilterName"), // Required
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
}
|
||||
resp, err := svc.DeleteSubscriptionFilter(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DescribeDestinations() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DescribeDestinationsInput{
|
||||
DestinationNamePrefix: aws.String("DestinationName"),
|
||||
Limit: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
}
|
||||
resp, err := svc.DescribeDestinations(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DescribeExportTasks() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DescribeExportTasksInput{
|
||||
Limit: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
StatusCode: aws.String("ExportTaskStatusCode"),
|
||||
TaskId: aws.String("ExportTaskId"),
|
||||
}
|
||||
resp, err := svc.DescribeExportTasks(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DescribeLogGroups() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DescribeLogGroupsInput{
|
||||
Limit: aws.Int64(1),
|
||||
LogGroupNamePrefix: aws.String("LogGroupName"),
|
||||
NextToken: aws.String("NextToken"),
|
||||
}
|
||||
resp, err := svc.DescribeLogGroups(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DescribeLogStreams() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DescribeLogStreamsInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
Descending: aws.Bool(true),
|
||||
Limit: aws.Int64(1),
|
||||
LogStreamNamePrefix: aws.String("LogStreamName"),
|
||||
NextToken: aws.String("NextToken"),
|
||||
OrderBy: aws.String("OrderBy"),
|
||||
}
|
||||
resp, err := svc.DescribeLogStreams(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DescribeMetricFilters() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DescribeMetricFiltersInput{
|
||||
FilterNamePrefix: aws.String("FilterName"),
|
||||
Limit: aws.Int64(1),
|
||||
LogGroupName: aws.String("LogGroupName"),
|
||||
MetricName: aws.String("MetricName"),
|
||||
MetricNamespace: aws.String("MetricNamespace"),
|
||||
NextToken: aws.String("NextToken"),
|
||||
}
|
||||
resp, err := svc.DescribeMetricFilters(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_DescribeSubscriptionFilters() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.DescribeSubscriptionFiltersInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
FilterNamePrefix: aws.String("FilterName"),
|
||||
Limit: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
}
|
||||
resp, err := svc.DescribeSubscriptionFilters(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_FilterLogEvents() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.FilterLogEventsInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
EndTime: aws.Int64(1),
|
||||
FilterPattern: aws.String("FilterPattern"),
|
||||
Interleaved: aws.Bool(true),
|
||||
Limit: aws.Int64(1),
|
||||
LogStreamNames: []*string{
|
||||
aws.String("LogStreamName"), // Required
|
||||
// More values...
|
||||
},
|
||||
NextToken: aws.String("NextToken"),
|
||||
StartTime: aws.Int64(1),
|
||||
}
|
||||
resp, err := svc.FilterLogEvents(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_GetLogEvents() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.GetLogEventsInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
LogStreamName: aws.String("LogStreamName"), // Required
|
||||
EndTime: aws.Int64(1),
|
||||
Limit: aws.Int64(1),
|
||||
NextToken: aws.String("NextToken"),
|
||||
StartFromHead: aws.Bool(true),
|
||||
StartTime: aws.Int64(1),
|
||||
}
|
||||
resp, err := svc.GetLogEvents(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_ListTagsLogGroup() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.ListTagsLogGroupInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
}
|
||||
resp, err := svc.ListTagsLogGroup(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_PutDestination() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.PutDestinationInput{
|
||||
DestinationName: aws.String("DestinationName"), // Required
|
||||
RoleArn: aws.String("RoleArn"), // Required
|
||||
TargetArn: aws.String("TargetArn"), // Required
|
||||
}
|
||||
resp, err := svc.PutDestination(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_PutDestinationPolicy() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.PutDestinationPolicyInput{
|
||||
AccessPolicy: aws.String("AccessPolicy"), // Required
|
||||
DestinationName: aws.String("DestinationName"), // Required
|
||||
}
|
||||
resp, err := svc.PutDestinationPolicy(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_PutLogEvents() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.PutLogEventsInput{
|
||||
LogEvents: []*cloudwatchlogs.InputLogEvent{ // Required
|
||||
{ // Required
|
||||
Message: aws.String("EventMessage"), // Required
|
||||
Timestamp: aws.Int64(1), // Required
|
||||
},
|
||||
// More values...
|
||||
},
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
LogStreamName: aws.String("LogStreamName"), // Required
|
||||
SequenceToken: aws.String("SequenceToken"),
|
||||
}
|
||||
resp, err := svc.PutLogEvents(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_PutMetricFilter() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.PutMetricFilterInput{
|
||||
FilterName: aws.String("FilterName"), // Required
|
||||
FilterPattern: aws.String("FilterPattern"), // Required
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
MetricTransformations: []*cloudwatchlogs.MetricTransformation{ // Required
|
||||
{ // Required
|
||||
MetricName: aws.String("MetricName"), // Required
|
||||
MetricNamespace: aws.String("MetricNamespace"), // Required
|
||||
MetricValue: aws.String("MetricValue"), // Required
|
||||
DefaultValue: aws.Float64(1.0),
|
||||
},
|
||||
// More values...
|
||||
},
|
||||
}
|
||||
resp, err := svc.PutMetricFilter(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_PutRetentionPolicy() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.PutRetentionPolicyInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
RetentionInDays: aws.Int64(1), // Required
|
||||
}
|
||||
resp, err := svc.PutRetentionPolicy(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_PutSubscriptionFilter() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.PutSubscriptionFilterInput{
|
||||
DestinationArn: aws.String("DestinationArn"), // Required
|
||||
FilterName: aws.String("FilterName"), // Required
|
||||
FilterPattern: aws.String("FilterPattern"), // Required
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
Distribution: aws.String("Distribution"),
|
||||
RoleArn: aws.String("RoleArn"),
|
||||
}
|
||||
resp, err := svc.PutSubscriptionFilter(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_TagLogGroup() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.TagLogGroupInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
Tags: map[string]*string{ // Required
|
||||
"Key": aws.String("TagValue"), // Required
|
||||
// More values...
|
||||
},
|
||||
}
|
||||
resp, err := svc.TagLogGroup(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_TestMetricFilter() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.TestMetricFilterInput{
|
||||
FilterPattern: aws.String("FilterPattern"), // Required
|
||||
LogEventMessages: []*string{ // Required
|
||||
aws.String("EventMessage"), // Required
|
||||
// More values...
|
||||
},
|
||||
}
|
||||
resp, err := svc.TestMetricFilter(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
||||
|
||||
func ExampleCloudWatchLogs_UntagLogGroup() {
|
||||
sess := session.Must(session.NewSession())
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
params := &cloudwatchlogs.UntagLogGroupInput{
|
||||
LogGroupName: aws.String("LogGroupName"), // Required
|
||||
Tags: []*string{ // Required
|
||||
aws.String("TagKey"), // Required
|
||||
// More values...
|
||||
},
|
||||
}
|
||||
resp, err := svc.UntagLogGroup(params)
|
||||
|
||||
if err != nil {
|
||||
// Print the error, cast err to awserr.Error to get the Code and
|
||||
// Message from an error.
|
||||
fmt.Println(err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
// Pretty-print the response data.
|
||||
fmt.Println(resp)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue