ComponentVersionArgs

data class ComponentVersionArgs(val inlineRecipe: Output<String>? = null, val lambdaFunction: Output<ComponentVersionLambdaFunctionRecipeSourceArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ComponentVersionArgs>

Resource for Greengrass component version.

Constructors

Link copied to clipboard
constructor(inlineRecipe: Output<String>? = null, lambdaFunction: Output<ComponentVersionLambdaFunctionRecipeSourceArgs>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val inlineRecipe: Output<String>? = null

The recipe to use to create the component. The recipe defines the component's metadata, parameters, dependencies, lifecycle, artifacts, and platform compatibility. You must specify either InlineRecipe or LambdaFunction .

Link copied to clipboard

The parameters to create a component from a Lambda function. You must specify either InlineRecipe or LambdaFunction .

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Application-specific metadata to attach to the component version. 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 Tag your AWS IoT Greengrass Version 2 resources in the AWS IoT Greengrass V2 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.

Functions

Link copied to clipboard
open override fun toJava(): ComponentVersionArgs