Show / Hide Table of Contents

Class CfnLogStreamMixinProps

Properties for CfnLogStreamPropsMixin.

Inheritance
object
CfnLogStreamMixinProps
Implements
ICfnLogStreamMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname

Type union: either string or ILogGroupRef

LogStreamName

The name of the log stream.

public string? LogStreamName { get; set; }
Property Value

string

Remarks

The name must be unique within the log group.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname

Implements

ICfnLogStreamMixinProps
Back to top Generated by DocFX