toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'description': description,
    'engine': engine,
    'engineVersion': engineVersion,
    'maintenanceWindow': maintenanceWindow,
    'name': name,
    'nodeType': nodeType,
    'numShards': numShards,
    'parameterGroupName': parameterGroupName,
    'port': port,
    'snapshotRetentionLimit': snapshotRetentionLimit,
    'snapshotWindow': snapshotWindow,
    'subnetGroupName': subnetGroupName,
    'topicArn': topicArn,
    'vpcId': vpcId,
  };
}