interface CfnResourceSpecificLoggingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnResourceSpecificLoggingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnResourceSpecificLoggingMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnResourceSpecificLoggingMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnResourceSpecificLoggingMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnResourceSpecificLoggingMixinProps |
Properties for CfnResourceSpecificLoggingPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const cfnResourceSpecificLoggingMixinProps: iot_mixins.CfnResourceSpecificLoggingMixinProps = {
logLevel: 'logLevel',
targetName: 'targetName',
targetType: 'targetType',
};
Properties
| Name | Type | Description | ||||
|---|---|---|---|---|---|---|
| log | string | The default log level.Valid Values: `DEBUG | INFO | ERROR | WARN | DISABLED`. |
| target | string | The target name. | ||||
| target | string | The target type. |
logLevel?
Type:
string
(optional)
The default log level.Valid Values: DEBUG | INFO | ERROR | WARN | DISABLED.
targetName?
Type:
string
(optional)
The target name.
targetType?
Type:
string
(optional)
The target type.
Valid Values: DEFAULT | THING_GROUP

.NET
Go
Java
Python
TypeScript