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