CfnLoggerDefinitionVersionProps
- class aws_cdk.aws_greengrass.CfnLoggerDefinitionVersionProps(*, logger_definition_id, loggers)
Bases:
object
Properties for defining a
CfnLoggerDefinitionVersion
.- Parameters:
logger_definition_id (
str
) – The ID of the logger definition associated with this version. This value is a GUID.loggers (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,LoggerProperty
,Dict
[str
,Any
]]]]) – The loggers in this version.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_greengrass as greengrass cfn_logger_definition_version_props = greengrass.CfnLoggerDefinitionVersionProps( logger_definition_id="loggerDefinitionId", loggers=[greengrass.CfnLoggerDefinitionVersion.LoggerProperty( component="component", id="id", level="level", type="type", # the properties below are optional space=123 )] )
Attributes
- logger_definition_id
The ID of the logger definition associated with this version.
This value is a GUID.
- loggers
The loggers in this version.