RuntimeManagementConfigState constructor

const RuntimeManagementConfigState({
  1. Input<String?>? functionArn,
  2. Input<String?>? functionName,
  3. Input<String?>? qualifier,
  4. Input<String?>? region,
  5. Input<String?>? runtimeVersionArn,
  6. Input<String?>? updateRuntimeOn,
})

Creates a new RuntimeManagementConfigState. functionArn ARN of the function. functionName Name or ARN of the Lambda function. qualifier Version of the function. This can be $LATEST or a published version number. If omitted, this resource will manage the runtime configuration for $LATEST. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. runtimeVersionArn ARN of the runtime version. Only required when updateRuntimeOn is Manual. updateRuntimeOn Runtime update mode. Valid values are Auto, FunctionUpdate, and Manual. When a function is created, the default mode is Auto.

Implementation

const RuntimeManagementConfigState({
  this.functionArn,
  this.functionName,
  this.qualifier,
  this.region,
  this.runtimeVersionArn,
  this.updateRuntimeOn,
});