interface CfnLogStreamMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnLogStreamMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnLogStreamMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnLogStreamMixinProps |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnLogStreamMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » CfnLogStreamMixinProps |
Properties for CfnLogStreamPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const cfnLogStreamMixinProps: logs_mixins.CfnLogStreamMixinProps = {
logGroupName: 'logGroupName',
logStreamName: 'logStreamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | ILog | The name of the log group where the log stream is created. |
| log | string | The name of the log stream. |
logGroupName?
Type:
string | ILog
(optional)
The name of the log group where the log stream is created.
logStreamName?
Type:
string
(optional)
The name of the log stream.
The name must be unique within the log group.

.NET
Go
Java
Python
TypeScript