Class CfnLogStreamMixinProps
Properties for CfnLogStreamPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Logs
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnLogStreamMixinProps : ICfnLogStreamMixinProps
Syntax (vb)
Public Class CfnLogStreamMixinProps Implements ICfnLogStreamMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html
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.CfnPropertyMixins.AWS.Logs;
var cfnLogStreamMixinProps = new CfnLogStreamMixinProps {
LogGroupName = "logGroupName",
LogStreamName = "logStreamName"
};
Synopsis
Constructors
| CfnLogStreamMixinProps() | Properties for CfnLogStreamPropsMixin. |
Properties
| LogGroupName | The name of the log group where the log stream is created. |
| LogStreamName | The name of the log stream. |
Constructors
CfnLogStreamMixinProps()
Properties for CfnLogStreamPropsMixin.
public CfnLogStreamMixinProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html
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.CfnPropertyMixins.AWS.Logs;
var cfnLogStreamMixinProps = new CfnLogStreamMixinProps {
LogGroupName = "logGroupName",
LogStreamName = "logStreamName"
};
Properties
LogGroupName
The name of the log group where the log stream is created.
public object? LogGroupName { get; set; }
Property Value
Remarks
Type union: either string or ILogGroupRef
LogStreamName
The name of the log stream.
public string? LogStreamName { get; set; }
Property Value
Remarks
The name must be unique within the log group.