FunctionConfiguration constructor

FunctionConfiguration({
  1. int? codeSize,
  2. String? configurationId,
  3. String? description,
  4. String? functionARN,
  5. String? functionName,
  6. String? handler,
  7. DateTime? lastModified,
  8. int? memorySize,
  9. Mode? mode,
  10. String? role,
  11. Runtime? runtime,
  12. int? timeout,
})

Implementation

FunctionConfiguration({
  this.codeSize,
  this.configurationId,
  this.description,
  this.functionARN,
  this.functionName,
  this.handler,
  this.lastModified,
  this.memorySize,
  this.mode,
  this.role,
  this.runtime,
  this.timeout,
});