Class LogStreamReference
A reference to a LogStream resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LogStreamReference : ILogStreamReference
Syntax (vb)
Public Class LogStreamReference Implements ILogStreamReference
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.Interfaces.Logs;
var logStreamReference = new LogStreamReference {
LogGroupName = "logGroupName",
LogStreamName = "logStreamName"
};
Synopsis
Constructors
| LogStreamReference() | A reference to a LogStream resource. |
Properties
| LogGroupName | The LogGroupName of the LogStream resource. |
| LogStreamName | The LogStreamName of the LogStream resource. |
Constructors
LogStreamReference()
A reference to a LogStream resource.
public LogStreamReference()
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.Interfaces.Logs;
var logStreamReference = new LogStreamReference {
LogGroupName = "logGroupName",
LogStreamName = "logStreamName"
};
Properties
LogGroupName
The LogGroupName of the LogStream resource.
public string LogGroupName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
LogStreamName
The LogStreamName of the LogStream resource.
public string LogStreamName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated