Show / Hide Table of Contents

Class LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters

(experimental) Type definition for RequestParameters.

Inheritance
object
LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters
Implements
LogGroupEvents.AWSAPICallViaCloudTrail.IRequestParameters
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

Implements

LogGroupEvents.AWSAPICallViaCloudTrail.IRequestParameters
Back to top Generated by DocFX