CfnResourceSpecificLoggingMixinProps
- class aws_cdk.mixins_preview.aws_iot.mixins.CfnResourceSpecificLoggingMixinProps(*, log_level=None, target_name=None, target_type=None)
Bases:
objectProperties for CfnResourceSpecificLoggingPropsMixin.
- Parameters:
log_level (
Optional[str]) – The default log level.Valid Values:DEBUG | INFO | ERROR | WARN | DISABLED.target_name (
Optional[str]) – The target name.target_type (
Optional[str]) – The target type. Valid Values:DEFAULT | THING_GROUP
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_iot import mixins as iot_mixins cfn_resource_specific_logging_mixin_props = iot_mixins.CfnResourceSpecificLoggingMixinProps( log_level="logLevel", target_name="targetName", target_type="targetType" )
Attributes
- log_level
DEBUG | INFO | ERROR | WARN | DISABLED.- See:
- Type:
The default log level.Valid Values
- target_name
The target name.
- target_type
The target type.
Valid Values:
DEFAULT | THING_GROUP