Class CfnLoggerDefinitionProps
Properties for defining a CfnLoggerDefinition
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLoggerDefinitionProps : Object, ICfnLoggerDefinitionProps
Syntax (vb)
Public Class CfnLoggerDefinitionProps
Inherits Object
Implements ICfnLoggerDefinitionProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Greengrass;
var tags;
var cfnLoggerDefinitionProps = new CfnLoggerDefinitionProps {
Name = "name",
// the properties below are optional
InitialVersion = new LoggerDefinitionVersionProperty {
Loggers = new [] { new LoggerProperty {
Component = "component",
Id = "id",
Level = "level",
Type = "type",
// the properties below are optional
Space = 123
} }
},
Tags = tags
};
Synopsis
Constructors
Cfn |
Properties
Initial |
The logger definition version to include when the logger definition is created. |
Name | The name of the logger definition. |
Tags | Application-specific metadata to attach to the logger definition. |
Constructors
CfnLoggerDefinitionProps()
public CfnLoggerDefinitionProps()
Properties
InitialVersion
The logger definition version to include when the logger definition is created.
public object InitialVersion { get; set; }
Property Value
System.
Remarks
A logger definition version contains a list of logger
property types.
To associate a logger definition version after the logger definition is created, create an AWS::Greengrass::LoggerDefinitionVersion
resource and specify the ID of this logger definition.
Name
The name of the logger definition.
public string Name { get; set; }
Property Value
System.
Remarks
Tags
Application-specific metadata to attach to the logger definition.
public object Tags { get; set; }
Property Value
System.
Remarks
You can use tags in IAM policies to control access to AWS IoT Greengrass resources. You can also use tags to categorize your resources. For more information, see Tagging Your AWS IoT Greengrass Resources in the Developer Guide .
This Json
property type is processed as a map of key-value pairs. It uses the following format, which is different from most Tags
implementations in AWS CloudFormation templates.
"Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value"
}