interface CfnLogStreamMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnLogStreamMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnLogStreamMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnLogStreamMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnLogStreamMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » 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 { aws_logs as logs } from '@aws-cdk/cfn-property-mixins';
const cfnLogStreamMixinProps: logs.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