-
Notifications
You must be signed in to change notification settings - Fork 17
/
ILogGroup.go
197 lines (165 loc) · 4.55 KB
/
ILogGroup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package awslogs
import (
_jsii_ "github.com/aws/jsii-runtime-go/runtime"
"github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch"
"github.com/aws/aws-cdk-go/awscdk/v2/awsiam"
"github.com/aws/aws-cdk-go/awscdk/v2/awslogs/internal"
)
type ILogGroup interface {
awsiam.IResourceWithPolicy
// Create a new Metric Filter on this Log Group.
AddMetricFilter(id *string, props *MetricFilterOptions) MetricFilter
// Create a new Log Stream for this Log Group.
AddStream(id *string, props *StreamOptions) LogStream
// Create a new Subscription Filter on this Log Group.
AddSubscriptionFilter(id *string, props *SubscriptionFilterOptions) SubscriptionFilter
// Extract a metric from structured log events in the LogGroup.
//
// Creates a MetricFilter on this LogGroup that will extract the value
// of the indicated JSON field in all records where it occurs.
//
// The metric will be available in CloudWatch Metrics under the
// indicated namespace and name.
//
// Returns: A Metric object representing the extracted metric.
ExtractMetric(jsonField *string, metricNamespace *string, metricName *string) awscloudwatch.Metric
// Give the indicated permissions on this log group and all streams.
Grant(grantee awsiam.IGrantable, actions ...*string) awsiam.Grant
// Give permissions to read from this log group and streams.
GrantRead(grantee awsiam.IGrantable) awsiam.Grant
// Give permissions to write to create and write to streams in this log group.
GrantWrite(grantee awsiam.IGrantable) awsiam.Grant
// Public method to get the physical name of this log group.
LogGroupPhysicalName() *string
// The ARN of this log group, with ':*' appended.
LogGroupArn() *string
// The name of this log group.
LogGroupName() *string
}
// The jsii proxy for ILogGroup
type jsiiProxy_ILogGroup struct {
internal.Type__awsiamIResourceWithPolicy
}
func (i *jsiiProxy_ILogGroup) AddMetricFilter(id *string, props *MetricFilterOptions) MetricFilter {
if err := i.validateAddMetricFilterParameters(id, props); err != nil {
panic(err)
}
var returns MetricFilter
_jsii_.Invoke(
i,
"addMetricFilter",
[]interface{}{id, props},
&returns,
)
return returns
}
func (i *jsiiProxy_ILogGroup) AddStream(id *string, props *StreamOptions) LogStream {
if err := i.validateAddStreamParameters(id, props); err != nil {
panic(err)
}
var returns LogStream
_jsii_.Invoke(
i,
"addStream",
[]interface{}{id, props},
&returns,
)
return returns
}
func (i *jsiiProxy_ILogGroup) AddSubscriptionFilter(id *string, props *SubscriptionFilterOptions) SubscriptionFilter {
if err := i.validateAddSubscriptionFilterParameters(id, props); err != nil {
panic(err)
}
var returns SubscriptionFilter
_jsii_.Invoke(
i,
"addSubscriptionFilter",
[]interface{}{id, props},
&returns,
)
return returns
}
func (i *jsiiProxy_ILogGroup) ExtractMetric(jsonField *string, metricNamespace *string, metricName *string) awscloudwatch.Metric {
if err := i.validateExtractMetricParameters(jsonField, metricNamespace, metricName); err != nil {
panic(err)
}
var returns awscloudwatch.Metric
_jsii_.Invoke(
i,
"extractMetric",
[]interface{}{jsonField, metricNamespace, metricName},
&returns,
)
return returns
}
func (i *jsiiProxy_ILogGroup) Grant(grantee awsiam.IGrantable, actions ...*string) awsiam.Grant {
if err := i.validateGrantParameters(grantee); err != nil {
panic(err)
}
args := []interface{}{grantee}
for _, a := range actions {
args = append(args, a)
}
var returns awsiam.Grant
_jsii_.Invoke(
i,
"grant",
args,
&returns,
)
return returns
}
func (i *jsiiProxy_ILogGroup) GrantRead(grantee awsiam.IGrantable) awsiam.Grant {
if err := i.validateGrantReadParameters(grantee); err != nil {
panic(err)
}
var returns awsiam.Grant
_jsii_.Invoke(
i,
"grantRead",
[]interface{}{grantee},
&returns,
)
return returns
}
func (i *jsiiProxy_ILogGroup) GrantWrite(grantee awsiam.IGrantable) awsiam.Grant {
if err := i.validateGrantWriteParameters(grantee); err != nil {
panic(err)
}
var returns awsiam.Grant
_jsii_.Invoke(
i,
"grantWrite",
[]interface{}{grantee},
&returns,
)
return returns
}
func (i *jsiiProxy_ILogGroup) LogGroupPhysicalName() *string {
var returns *string
_jsii_.Invoke(
i,
"logGroupPhysicalName",
nil, // no parameters
&returns,
)
return returns
}
func (j *jsiiProxy_ILogGroup) LogGroupArn() *string {
var returns *string
_jsii_.Get(
j,
"logGroupArn",
&returns,
)
return returns
}
func (j *jsiiProxy_ILogGroup) LogGroupName() *string {
var returns *string
_jsii_.Get(
j,
"logGroupName",
&returns,
)
return returns
}