AwsLambdaFunctionCode.fromJson constructor
Implementation
factory AwsLambdaFunctionCode.fromJson(Map<String, dynamic> json) {
return AwsLambdaFunctionCode(
s3Bucket: json['S3Bucket'] as String?,
s3Key: json['S3Key'] as String?,
s3ObjectVersion: json['S3ObjectVersion'] as String?,
zipFile: json['ZipFile'] as String?,
);
}