GetFunctionLoggingConfig.fromMap constructor

GetFunctionLoggingConfig.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory GetFunctionLoggingConfig.fromMap(Map<String, dynamic> map) {
  return GetFunctionLoggingConfig(
    applicationLogLevel: pulumi.Input.fromValue(map['applicationLogLevel'] as String),
    logFormat: pulumi.Input.fromValue(map['logFormat'] as String),
    logGroup: pulumi.Input.fromValue(map['logGroup'] as String),
    systemLogLevel: pulumi.Input.fromValue(map['systemLogLevel'] as String),
  );
}