Show / Hide Table of Contents

Interface ICfnLoggerDefinitionProps

Properties for defining a CfnLoggerDefinition.

Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.AWS.Greengrass.dll
Syntax (csharp)
public interface ICfnLoggerDefinitionProps
Syntax (vb)
Public Interface ICfnLoggerDefinitionProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html

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;

CfnLoggerDefinitionProps 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

Properties

InitialVersion

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.

Properties

InitialVersion

The logger definition version to include when the logger definition is created.

virtual object InitialVersion { get; }
Property Value

System.Object

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-initialversion

Name

The name of the logger definition.

string Name { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-name

Tags

Application-specific metadata to attach to the logger definition.

virtual object Tags { get; }
Property Value

System.Object

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"
}

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-loggerdefinition.html#cfn-greengrass-loggerdefinition-tags

Back to top Generated by DocFX