Class CfnFunctionDefinitionVersion.DefaultConfigProperty
The default configuration that applies to all Lambda functions in the function definition version.
Inheritance
System.Object
CfnFunctionDefinitionVersion.DefaultConfigProperty
Namespace: Amazon.CDK.AWS.Greengrass
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DefaultConfigProperty : Object, CfnFunctionDefinitionVersion.IDefaultConfigProperty
Syntax (vb)
Public Class DefaultConfigProperty
Inherits Object
Implements CfnFunctionDefinitionVersion.IDefaultConfigProperty
Remarks
Individual Lambda functions can override these settings.
In an AWS CloudFormation template, DefaultConfig
is a property of the AWS::Greengrass::FunctionDefinitionVersion
resource.
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 defaultConfigProperty = new DefaultConfigProperty {
Execution = new ExecutionProperty {
IsolationMode = "isolationMode",
RunAs = new RunAsProperty {
Gid = 123,
Uid = 123
}
}
};
Synopsis
Constructors
DefaultConfigProperty() |
Properties
Execution | Configuration settings for the Lambda execution environment on the AWS IoT Greengrass core. |
Constructors
DefaultConfigProperty()
public DefaultConfigProperty()
Properties
Execution
Configuration settings for the Lambda execution environment on the AWS IoT Greengrass core.
public object Execution { get; set; }
Property Value
System.Object