Class LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters
(experimental) Type definition for RequestParameters.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Logs.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters : LogGroupEvents.AWSAPICallViaCloudTrail.IRequestParameters
Syntax (vb)
Public Class LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters Implements LogGroupEvents.AWSAPICallViaCloudTrail.IRequestParameters
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Logs.Events;
var requestParameters = new RequestParameters {
LogGroupName = new [] { "logGroupName" },
LogStreamName = new [] { "logStreamName" }
};
Synopsis
Constructors
| RequestParameters() | (experimental) Type definition for RequestParameters. |
Properties
| LogGroupName | (experimental) logGroupName property. |
| LogStreamName | (experimental) logStreamName property. |
Constructors
RequestParameters()
(experimental) Type definition for RequestParameters.
public RequestParameters()
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Logs.Events;
var requestParameters = new RequestParameters {
LogGroupName = new [] { "logGroupName" },
LogStreamName = new [] { "logStreamName" }
};
Properties
LogGroupName
(experimental) logGroupName property.
public string[]? LogGroupName { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of logGroupName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
Default: - Filter with the LogGroup reference
Stability: Experimental
LogStreamName
(experimental) logStreamName property.
public string[]? LogStreamName { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of logStreamName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
Default: - Do not filter on this field
Stability: Experimental