Interface ILogStreamAttributes
Attributes for importing a LogStream.
Namespace: Amazon.CDK.AWS.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILogStreamAttributes
Syntax (vb)
Public Interface ILogStreamAttributes
Remarks
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.AWS.Logs;
var logStreamAttributes = new LogStreamAttributes {
LogGroupName = "logGroupName",
LogStreamName = "logStreamName"
};
Synopsis
Properties
| LogGroupName | The name of the log group. |
| LogStreamName | The name of the log stream. |
Properties
LogGroupName
The name of the log group.
string LogGroupName { get; }
Property Value
Remarks
Default: - When not provided, logStreamRef will throw an error
LogStreamName
The name of the log stream.
string LogStreamName { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated