Interface CfnFunctionDefinitionVersionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionDefinitionVersionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.814Z")
@Stability(Stable)
public interface CfnFunctionDefinitionVersionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFunctionDefinitionVersionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.greengrass.*;
Object variables;
CfnFunctionDefinitionVersionMixinProps cfnFunctionDefinitionVersionMixinProps = CfnFunctionDefinitionVersionMixinProps.builder()
.defaultConfig(DefaultConfigProperty.builder()
.execution(ExecutionProperty.builder()
.isolationMode("isolationMode")
.runAs(RunAsProperty.builder()
.gid(123)
.uid(123)
.build())
.build())
.build())
.functionDefinitionId("functionDefinitionId")
.functions(List.of(FunctionProperty.builder()
.functionArn("functionArn")
.functionConfiguration(FunctionConfigurationProperty.builder()
.encodingType("encodingType")
.environment(EnvironmentProperty.builder()
.accessSysfs(false)
.execution(ExecutionProperty.builder()
.isolationMode("isolationMode")
.runAs(RunAsProperty.builder()
.gid(123)
.uid(123)
.build())
.build())
.resourceAccessPolicies(List.of(ResourceAccessPolicyProperty.builder()
.permission("permission")
.resourceId("resourceId")
.build()))
.variables(variables)
.build())
.execArgs("execArgs")
.executable("executable")
.memorySize(123)
.pinned(false)
.timeout(123)
.build())
.id("id")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunctionDefinitionVersionMixinPropsstatic final classAn implementation forCfnFunctionDefinitionVersionMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultConfig
The default configuration that applies to all Lambda functions in the group.Individual Lambda functions can override these settings.
Returns union: either
IResolvableorCfnFunctionDefinitionVersionPropsMixin.DefaultConfigProperty- See Also:
-
getFunctionDefinitionId
The ID of the function definition associated with this version.This value is a GUID.
- See Also:
-
getFunctions
The functions in this version.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFunctionDefinitionVersionPropsMixin.FunctionProperty>- See Also:
-
builder
-